@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --navbar-color: #0B3C5D;
  /* --primary: #155bd5; */
  --primary: #0B3C5D;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}
.section-title-five h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-five p {
  color: var(--dark-3);
}

.made-in-ayroui{
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover{
  transform: translateY(-5px);
}


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--navbar-color);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.sticky {
  position: fixed !important;
  z-index:99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
  }
}
.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-area.navbar-nine .navbar-brand .main-logo {
  height: auto;
  width: auto;
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Responsive logo sizing */
@media (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar-brand .main-logo {
    max-height: 90px;
    max-width: 135px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .navbar-area.navbar-nine .navbar-brand .main-logo {
    max-height: 75px;
    max-width: 112px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar-brand .main-logo {
    max-height: 65px;
    max-width: 98px;
  }
}

@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar-brand .main-logo {
    max-height: 55px;
    max-width: 83px;
  }
}

@media (max-width: 480px) {
  .navbar-area.navbar-nine .navbar-brand .main-logo {
    max-height: 45px;
    max-width: 68px;
  }
}
.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 16px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin: 0;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i.lni-chevron-down {
    float: right;
    margin-left: auto;
    margin-top: 3px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: max-height 0.3s ease-out 0s;
    -moz-transition: max-height 0.3s ease-out 0s;
    -ms-transition: max-height 0.3s ease-out 0s;
    -o-transition: max-height 0.3s ease-out 0s;
    transition: max-height 0.3s ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    max-height: 500px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
    padding: 10px 0 10px 30px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    margin: 0;
    border-radius: 0;
    display: block;
    width: 100%;
    white-space: normal;
    line-height: 1.5;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a:hover {
    color: var(--white) !important;
    padding-left: 35px !important;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--primary);
  padding-left: 22px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i.lni-chevron-down {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover a i.lni-chevron-down {
  transform: rotate(180deg);
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  width: 280px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  padding: 12px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-logo {
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-left .sidebar-content .sidebar-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .sidebar-left .sidebar-content .sidebar-logo img {
    max-width: 150px;
  }
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item {
  margin-bottom: 0;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 0;
  margin-top: 0;
  background-color: transparent;
  box-shadow: none;
  border: none;
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu.show {
  max-height: 500px;
  padding-top: 5px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu li {
  margin: 0;
  padding: 0;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu li a {
  padding: 8px 0 8px 25px !important;
  font-size: 14px;
  color: var(--dark-2);
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu li a:hover {
  color: var(--primary);
  padding-left: 30px !important;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item a i.lni-chevron-down {
  float: right;
  margin-top: 3px;
  transition: transform 0.3s ease;
}
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item .sub-menu.show ~ a i.lni-chevron-down,
.sidebar-left .sidebar-content .sidebar-menu ul li.nav-item a.active i.lni-chevron-down {
  transform: rotate(180deg);
}
.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}
.overlay-left.open {
  display: block;
}


/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding:160px 0 100px 0;
  background: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 130px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .header-eight {
    padding: 100px 0 60px 0;
  }
}
.header-eight .header-image img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}
.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}
.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1  {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .header-eight .header-content h1  {
    font-size: 30px;
    line-height: 42px;
  }
}
.header-eight .header-content h1 span {
  display: block;
}
.header-eight .header-content p {
  margin-top: 30px;
  color: var(--white);
  opacity: 0.7;
}
.header-eight .button {
  margin-top: 40px;
}
.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}
.header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}
.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}
.header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 100px;
    padding-bottom:70px;
  }
}
@media (max-width: 767px) {
  .about-five {
    padding-top: 80px;
    padding-bottom:60px;
  }
}
.about-five-content{
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
  }
}
.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}
.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}
.about-five-content .main-title {
  margin-top: 20px;
}
.about-five-content .about-five-tab {
  margin-top: 40px;
}
.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}
.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin-right: 20px;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}
.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}
.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}
.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}
.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 30px;
}
.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}
.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}
.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .about-image-five::before {
    display: none;
  }
}
.about-image-five img {
  width: 100%;
  z-index: 2;
}


/*===========================
  services css 
===========================*/
.services-eight {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 80px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .services-eight {
    padding: 60px 0 30px 0;
  }
}
.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  background: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
/* Product card background colors */
.services-eight .row > div:nth-child(1) .single-services {
  background: linear-gradient(135deg, #e2f1ff 0%, #d0e8ff 100%);
  border-color: #b8daff;
}
.services-eight .row > div:nth-child(2) .single-services {
  background: linear-gradient(135deg, #dff9f8 0%, #c8f3f1 100%);
  border-color: #a8e8e5;
}
.services-eight .row > div:nth-child(3) .single-services {
  background: linear-gradient(135deg, #e0f5fa 0%, #c8edf5 100%);
  border-color: #a8dce8;
}
.services-eight .row > div:nth-child(4) .single-services {
  background: linear-gradient(135deg, #e8f4fd 0%, #d0e8fb 100%);
  border-color: #b8d8f9;
}
.services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-5px);
}
.services-eight .row > div:nth-child(1) .single-services:hover {
  background: linear-gradient(135deg, #d0e8ff 0%, #b8daff 100%);
}
.services-eight .row > div:nth-child(2) .single-services:hover {
  background: linear-gradient(135deg, #c8f3f1 0%, #a8e8e5 100%);
}
.services-eight .row > div:nth-child(3) .single-services:hover {
  background: linear-gradient(135deg, #c8edf5 0%, #a8dce8 100%);
}
.services-eight .row > div:nth-child(4) .single-services:hover {
  background: linear-gradient(135deg, #d0e8fb 0%, #b8d8f9 100%);
}
.services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--primary);
}
.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}
.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}
.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.services-eight .single-services .service-content p {
  color: var(--dark-3);
}
.services-eight .single-services .product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 15px;
  border-radius: 10px;
  background: var(--light-1);
  border: 2px solid var(--light-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.services-eight .single-services .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.services-eight .single-services:hover .product-image {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}


/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}
.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}
.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}
.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}
.pricing-style-fourteen .price {
  padding-top: 30px;
}
.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}
.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}
.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}
.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}
.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}
.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}




/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content {
  text-align: center;
}
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}
.call-action .inner-content p {
  color: var(--white);
}
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}



/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}
.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}
.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.contact-form-wrapper .contact-form .active.primary-btn, .contact-form-wrapper .contact-form .primary-btn:hover, .contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.contact-section {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 60px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 60px;
  }
}
.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}
/* Attractive contact card design */
.contact-section .contact-item-wrapper .contact-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-section .contact-item-wrapper .contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.contact-section .contact-item-wrapper .contact-card:hover::before {
  transform: scaleX(1);
}
.contact-section .contact-item-wrapper .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}
.contact-section .contact-item-wrapper .contact-card .contact-icon {
  width: 70px;
  height: 70px;
  font-size: 28px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 15px rgba(21, 91, 213, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-item-wrapper .contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(21, 91, 213, 0.4);
}
.contact-section .contact-item-wrapper .contact-card .contact-content {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  text-align: center;
}
.contact-section .contact-item-wrapper .contact-card .contact-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  color: var(--black);
  text-align: center;
  width: 100%;
  padding: 0;
}
.contact-section .contact-item-wrapper .contact-card .contact-content p {
  margin-bottom: 5px;
  color: var(--dark-3);
  line-height: 1.5;
}
.contact-section .contact-item-wrapper .contact-card .contact-content p a {
  color: var(--dark-2);
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.contact-section .contact-item-wrapper .contact-card .contact-content p a:hover {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-card {
    flex-direction: column;
    align-items: center;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-content {
    text-align: center;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-content h4 {
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-card {
    flex-direction: column;
    padding: 20px 15px;
    align-items: center;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-content {
    text-align: center;
    margin-left: 0;
    padding: 0;
  }
  .contact-section .contact-item-wrapper .contact-card .contact-content h4 {
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
  .contact-section .contact-item-wrapper .row {
    margin: 0;
  }
  .contact-section .contact-item-wrapper .row > div {
    padding: 0 15px;
    margin-bottom: 20px;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}
.contact-section .contact-item-wrapper .contact-card .contact-content {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}
.contact-section .contact-item-wrapper .contact-item .contact-content .contact-content-title,
.contact-section .contact-item-wrapper .contact-card .contact-content .contact-content-title,
.contact-section .contact-item-wrapper .contact-card .contact-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin: 0 auto 10px auto !important;
  padding: 0 !important;
  width: 100%;
  text-align: center !important;
  display: block;
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}
.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
  color: var(--dark-3);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}
.map-style-9 {
  margin-top: 0;
  padding-top: 0;
}


/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #0a2540 0%, #0B3C5D 50%, #0d4a6f 100%);
  position: relative;
  overflow: hidden;
}
.footer-eleven::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 215, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11, 60, 93, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
  pointer-events: none;
  z-index: 0;
}
.footer-eleven::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
  z-index: 1;
}
.footer-eleven .footer-top {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}
.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}
.footer-eleven .f-about {
  padding-right: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}
.footer-eleven .f-about .logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-eleven .f-about .footer-main-logo {
  height: auto;
  width: auto;
  max-height: 100px;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Responsive footer logo sizing */
@media (min-width: 1400px) {
  .footer-eleven .f-about .footer-main-logo {
    max-height: 110px;
    max-width: 165px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .footer-eleven .f-about .footer-main-logo {
    max-height: 95px;
    max-width: 143px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .f-about .footer-main-logo {
    max-height: 85px;
    max-width: 128px;
  }
}

@media (max-width: 767px) {
  .footer-eleven .f-about .footer-main-logo {
    max-height: 75px;
    max-width: 113px;
  }
}

@media (max-width: 480px) {
  .footer-eleven .f-about .footer-main-logo {
    max-height: 65px;
    max-width: 98px;
  }
}

.footer-eleven .f-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  line-height: 1.8;
}
.footer-eleven .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100%;
  gap: 15px;
}
.footer-eleven .copyright-text span {
  white-space: nowrap;
}
.footer-eleven .copyright-text span:first-child {
  flex: 0 0 auto;
}
.footer-eleven .copyright-text span:last-child {
  flex: 0 0 auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .footer-eleven .copyright-text {
    margin-top: 20px;
    padding-top: 20px;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 10px;
  }
  .footer-eleven .copyright-text span {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
  .footer-eleven .copyright-text span:first-child {
    flex: 1 1 100%;
  }
  .footer-eleven .copyright-text span:last-child {
    flex: 1 1 100%;
    margin-left: 0 !important;
    margin-top: 5px;
  }
}
@media (max-width: 991px) {
  .footer-eleven .copyright-text {
    flex-wrap: wrap;
  }
}
.footer-eleven .f-about .copyright-text a {
  color: var(--accent);
  transition: color 0.3s ease;
}
.footer-eleven .f-about .copyright-text a:hover {
  color: var(--white);
}
.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-eleven .f-link li:last-child {
  margin: 0;
}
.footer-eleven .f-link li a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-eleven .f-link li a:hover {
  color: var(--accent);
  padding-left: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer-eleven .newsletter {
    padding-left: 80px;
  }
}
.footer-eleven .newsletter p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}
.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}
.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}
.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

/* ===== Label Image Carousel Styles ===== */
.label-image-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  position: relative;
  overflow: hidden;
}

.label-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(11, 60, 93, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 212, 215, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.label-image-wrapper {
  position: relative;
  padding: 20px;
}

.label-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.label-carousel:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.1);
}

.carousel-slide {
  padding: 10px;
}

.slide-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.slide-content img {
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.carousel-slide:hover .slide-content img {
  transform: scale(1.02);
}

/* Tiny Slider Navigation Dots */
.label-carousel .tns-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.label-carousel .tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.label-carousel .tns-nav button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.label-carousel .tns-nav button.tns-nav-active {
  background: var(--primary);
  border-color: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .label-image-section {
    padding: 50px 0;
  }
  
  .label-image-wrapper {
    padding: 10px;
  }
  
  .label-carousel .tns-nav {
    bottom: 15px;
  }
  
  .label-carousel .tns-nav button {
    width: 10px;
    height: 10px;
  }
  
  .label-carousel .tns-nav button.tns-nav-active {
    width: 25px;
  }
}

/*===========================
  Statistics Section CSS
===========================*/
.statistics-section {
  position: relative;
  overflow: hidden;
}
.statistics-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.statistics-section .stat-item {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px !important;
}
.statistics-section .stat-item:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}
.statistics-section .stat-icon {
  transition: all 0.4s ease;
  display: inline-block;
  padding: 20px;
  background: rgba(0, 212, 215, 0.2);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.statistics-section .stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(0, 212, 215, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 215, 0.4);
}
.statistics-section .stat-number {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.statistics-section .stat-item:hover .stat-number {
  transform: scale(1.1);
}

/*===========================
  Why Choose Us / Features Section CSS
===========================*/
.why-choose-section {
  position: relative;
  background: 
    linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 25%, #f8f9fa 50%, #e9ecef 75%, #f0f4f8 100%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(11, 60, 93, 0.015) 40px, rgba(11, 60, 93, 0.015) 80px) !important;
  overflow: hidden;
}
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(11, 60, 93, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 212, 215, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(11, 60, 93, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, transparent 0%, rgba(11, 60, 93, 0.03) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.why-choose-section::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(11, 60, 93, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float 25s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-40px, -40px) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(40px, -20px) scale(0.95) rotate(240deg);
  }
}
.why-choose-section .container {
  position: relative;
  z-index: 1;
}
.why-choose-section .feature-card {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.why-choose-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.1), transparent);
  transition: left 0.5s ease;
}
.why-choose-section .feature-card:hover::before {
  left: 100%;
}
.why-choose-section .feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(11, 60, 93, 0.2);
  border-color: var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.why-choose-section .feature-icon {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(11, 60, 93, 0.2);
}
.why-choose-section .feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.4);
}
.why-choose-section .feature-card h4 {
  transition: color 0.3s ease;
}
.why-choose-section .feature-card:hover h4 {
  color: var(--primary);
}

/*===========================
  Coverage Section CSS
===========================*/
.coverage-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.coverage-section .coverage-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}
.coverage-section .coverage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.coverage-section .coverage-card:hover::after {
  opacity: 0.1;
}
.coverage-section .coverage-card > * {
  position: relative;
  z-index: 1;
}
.coverage-section .coverage-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(11, 60, 93, 0.25);
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%) !important;
}
.coverage-section .coverage-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(11, 60, 93, 0.3);
  position: relative;
}
.coverage-section .coverage-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.coverage-section .coverage-card:hover .coverage-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.5);
}
.coverage-section .coverage-card:hover .coverage-icon::before {
  opacity: 0.3;
}
.coverage-section .coverage-card h4 {
  transition: color 0.3s ease;
}
.coverage-section .coverage-card:hover h4 {
  color: var(--primary);
}
.coverage-note {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.coverage-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.1), transparent);
  transition: left 0.8s ease;
}
.coverage-note:hover::before {
  left: 100%;
}
.coverage-note:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(11, 60, 93, 0.15);
}

/*===========================
  Partners Section CSS
===========================*/
.partners-section {
  position: relative;
}
.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(11, 60, 93, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 212, 215, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.partners-section .partner-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}
.partners-section .partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  z-index: 1;
}
.partners-section .partner-card:hover::before {
  transform: scaleY(1);
}
.partners-section .partner-card:hover {
  transform: translateY(-10px) translateX(5px);
  box-shadow: 0 15px 40px rgba(11, 60, 93, 0.25);
  border-color: var(--primary-light);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.partners-section .partner-icon {
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(11, 60, 93, 0.2);
}
.partners-section .partner-card:hover .partner-icon {
  transform: scale(1.2) rotate(-10deg);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
}
.partners-section .partner-card h4 {
  transition: color 0.3s ease;
}
.partners-section .partner-card:hover h4 {
  color: var(--primary);
}
.partners-note {
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.partners-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.05), transparent);
  transition: left 0.8s ease;
}
.partners-note:hover::before {
  left: 100%;
}
.partners-note:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 60, 93, 0.15);
}

/*===========================
  Privacy Policy Page CSS
===========================*/
.privacy-policy-section {
  min-height: 100vh;
}

.privacy-policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-content h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.privacy-policy-content h2 {
  font-size: 1.75em;
  font-weight: 600;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-1);
}

.privacy-policy-content h3 {
  font-size: 1.35em;
  font-weight: 600;
  color: var(--dark-1);
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-policy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--dark-2);
}

.privacy-policy-content ul {
  margin-left: 30px;
  margin-bottom: 15px;
  line-height: 2;
}

.privacy-policy-content ul li {
  margin-bottom: 8px;
  color: var(--dark-2);
}

.privacy-policy-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.privacy-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--light-1);
}

.privacy-section {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .privacy-policy-content {
    padding: 30px 20px !important;
  }
  
  .privacy-policy-content h1 {
    font-size: 2em;
  }
  
  .privacy-policy-content h2 {
    font-size: 1.5em;
  }
  
  .privacy-policy-content h3 {
    font-size: 1.2em;
  }
  
  .privacy-policy-content ul {
    margin-left: 20px;
  }
}

/* Responsive enhancements for new sections */
@media (max-width: 991px) {
  .statistics-section .stat-item {
    margin-bottom: 30px;
  }
  .statistics-section .stat-number {
    font-size: 40px !important;
  }
  .why-choose-section .feature-card {
    margin-bottom: 25px;
  }
  .coverage-section .coverage-card {
    margin-bottom: 25px;
  }
  .partners-section .partner-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .statistics-section {
    padding: 60px 0 !important;
  }
  .statistics-section .stat-item {
    padding: 30px 15px !important;
  }
  .statistics-section .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 36px !important;
  }
  .statistics-section .stat-number {
    font-size: 36px !important;
  }
  .why-choose-section {
    padding: 60px 0 !important;
  }
  .why-choose-section .feature-card {
    padding: 30px 20px !important;
  }
  .why-choose-section .feature-icon {
    width: 60px !important;
    height: 60px !important;
  }
  .why-choose-section .feature-icon i {
    font-size: 28px !important;
  }
  .coverage-section {
    padding: 60px 0 !important;
  }
  .coverage-section .coverage-card {
    padding: 30px 20px !important;
  }
  .coverage-section .coverage-icon {
    width: 70px !important;
    height: 70px !important;
  }
  .coverage-section .coverage-icon i {
    font-size: 32px !important;
  }
  .partners-section {
    padding: 60px 0 !important;
  }
  .partners-section .partner-card {
    padding: 30px 20px !important;
  }
  .partners-section .partner-icon {
    width: 50px !important;
    height: 50px !important;
  }
  .partners-section .partner-icon i {
    font-size: 24px !important;
  }
}

/* Animation keyframes for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Apply animations to stat items */
.statistics-section .stat-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.statistics-section .stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.statistics-section .stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.statistics-section .stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.statistics-section .stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

/* Apply animations to feature cards */
.why-choose-section .feature-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.why-choose-section .feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why-choose-section .feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why-choose-section .feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.why-choose-section .feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.why-choose-section .feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.why-choose-section .feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Apply animations to coverage cards */
.coverage-section .coverage-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.coverage-section .coverage-card:nth-child(1) {
  animation-delay: 0.1s;
}
.coverage-section .coverage-card:nth-child(2) {
  animation-delay: 0.2s;
}
.coverage-section .coverage-card:nth-child(3) {
  animation-delay: 0.3s;
}

/*===========================
  Service Pages CSS
===========================*/
.service-hero-section {
  position: relative;
  overflow: hidden;
}
.service-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.service-hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}
.service-hero-content {
  position: relative;
  z-index: 1;
}
/* SAIMPEX App Mockup Image Styles */
.service-hero-image img {
  transition: transform 0.3s ease;
}
.service-hero-image:hover img {
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .service-hero-image > div {
    width: 250px !important;
    height: 500px !important;
    padding: 15px !important;
  }
  .service-hero-image img {
    width: 100% !important;
    height: 100% !important;
  }
}

/* Desktop Mockup Styles (for Business Management) */
.service-hero-image > div[style*="800px"] {
  max-width: 100%;
}
.service-hero-image > div[style*="800px"] > div[style*="padding-bottom"] {
  padding-bottom: 62.5% !important;
}
@media (max-width: 991px) {
  .service-hero-image > div[style*="800px"] {
    width: 90% !important;
    max-width: 600px !important;
  }
}
@media (max-width: 767px) {
  .service-hero-image > div[style*="800px"] {
    width: 100% !important;
    padding: 15px !important;
  }
  .service-hero-image > div[style*="800px"] > div[style*="padding-bottom"] {
    padding-bottom: 60% !important;
  }
}

.service-hero-image {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}
.service-features-section .feature-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.service-features-section .feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(11, 60, 93, 0.05), transparent);
  transition: left 0.5s ease;
}
.service-features-section .feature-box:hover::before {
  left: 100%;
}
.service-features-section .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(11, 60, 93, 0.2);
}
.service-features-section .feature-icon {
  transition: all 0.4s ease;
}
.service-features-section .feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.3);
}
.service-description-section {
  position: relative;
}
/* Service Description Image Styles */
.service-description-image img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-description-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(11, 60, 93, 0.15);
}
@media (max-width: 767px) {
  .service-description-image > div {
    padding: 30px !important;
  }
  .service-description-image img {
    max-width: 100% !important;
  }
}

.service-description-image {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.service-description-content {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.feature-list-box {
  transition: all 0.3s ease;
}
.feature-list-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.15);
}
.feature-list-box li {
  transition: all 0.3s ease;
}
.feature-list-box li:hover {
  padding-left: 10px;
  color: var(--primary);
}
.feature-list-box li:hover i {
  transform: scale(1.2);
}
