/* Main CSS */
:root {
  /* SkyInfra Theme Colors from your image #F7AD19;*/
  --light-blue: #9FE7F5;
  --medium-blue: #429EBD;
  --dark-blue: #053F5C;
  --saffron: #C89D4A;

 
  --green: var(--medium-blue);

  --chakra: var(--dark-blue);

  --white: #ffffff;
}
/* Background overlay */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 99999;
}

/* Spinner circle */
.spinner-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: 6px solid #e8e8e8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating arc */
.spinner-box::after {
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-right: 6px solid #053F5C;   /* orange arc */
    position: absolute;
    animation: spin 1.1s linear infinite;
}

/* Apartment Icon */
.spinner-box i {
    font-size: 45px;
    color: #053F5C;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ========== Topbar Styling ========== */
.topbar {
  background: var(--dark-blue);
  color: #fff !important;
  font-size: 14px;
}

.topbar a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--saffron);
}

.topbar i {
  margin-right: 6px;
  color: var(--saffron);
}


/* ========== Navbar Styling ========== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(13, 10, 10, 0.1);
  padding: 0.7rem 1rem;
}

/* Navbar Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

/* Logo */
.navbar-brand img {
  height: 90px;
  width: auto;
  max-width: 100%;
}

/* Text container */
.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  white-space: nowrap;
}

/* Company Name */
.brand-text {
  font-size: 22px;
  font-weight: 700;
  color: #C89D4A;
  letter-spacing: 1px;
}

/* Slogan */
.brand-slogan {
  font-size: 13px;
  font-weight: 400;
  color: #090909;
  letter-spacing: 0.5px;
  font-style: italic;
  text-align: right;
  width: 98%;
  display: block;
}

/* Hover */
.navbar-brand:hover .brand-text {
  color: var(--dark-blue);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 80px;
  }
}



/* Navbar links */
.nav-link {
  font-weight: 500 !important;
  color: #000 !important;
  position: relative;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

/* Hover underline (Tricolor effect) */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--dark-blue), var(--green));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active nav link */
.nav-link.active {
  color: var(--green) !important;
  font-weight: 600;
}

/* Small arrow before link */
.nav-link::before {
  /* content: "\1F3E2"; */
  content: " ➤";
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #000;
  font-weight: 600;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

/* Right side icons (search, cart) */
.icon-btn {
  font-size: 1.2rem;
  margin-left: 1rem;
  color: #000;
  cursor: pointer;
  position: relative;
}

/* ========== Dropdown Styling ========== */
.dropdown-menu {
  background: #fff;
  border: none;
  padding: 0.5rem 0;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.35s ease;
  position: absolute;
  z-index: 1050;
  min-width: 220px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown items animation */
.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 0.6rem 1rem;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  top: 100%;
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item {
  opacity: 1;
  transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(5) {
  transition-delay: 0.25s;
}

/* Hover underline on dropdown items */
.dropdown-item::after {
  content: ' ';
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--dark-blue), var(--green));
  transition: width 0.3s ease;
}

.dropdown-item:hover::after {
  width: 90%;
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.04);
  padding-left: 1.5rem;
}

.dropdown-item.active {
  background: rgba(0, 0, 0, 0.07);
  font-weight: 600;
}


.navbar .dropdown-toggle::after,
.offcanvas .dropdown-toggle::after {
  display: none !important;
}

.navbar .dropdown-toggle {
  position: relative;
  padding-right: 18px;
}

.navbar .dropdown-toggle::before {
  content: "\f282";
  font-family: "bootstrap-icons";
  margin-left: 6px;
  font-size: 0.75rem;
  color: #000!important;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

.navbar .nav-item.dropdown:hover .dropdown-toggle::before,
.navbar .dropdown-toggle[aria-expanded="true"]::before {
  transform: rotate(180deg);
}

/* Mobile dropdown arrow (always visible, after text) */
.offcanvas .dropdown-toggle {
  position: relative;
  padding-right: 0;
}

.offcanvas .dropdown-toggle::before {
  content: "\f285";
  /* chevron-right */
  font-family: "bootstrap-icons";
  margin-left: 6px;
  font-size: 0.9rem;
  color: #fff!important;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

.offcanvas .dropdown-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

/* Desktop hover dropdown (>=992px) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
  .offcanvas .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
    background: transparent;
  }

  .offcanvas .dropdown-menu.show {
    display: block;
  }

  .offcanvas .dropdown-item {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .offcanvas .dropdown-item:last-child {
    border-bottom: none;
  }
}

/* ========== Offcanvas (Mobile Menu) ========== */

.offcanvas-start {
  width: 85% !important;
  background: linear-gradient(135deg, #131313, #050505, #0f120f);
  color: #fff;
  padding-top: 1rem;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.offcanvas-header .btn-close {
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-close {
  transition: transform 0.3s ease !important;
}

.btn-close:hover {
  transform: rotate(90deg) scale(1.1) !important;
}

/* Offcanvas nav links */
.offcanvas .nav-link {
  color: #fff !important;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.offcanvas .nav-link i {
  margin-right: 8px;
  color: #fff;
}

.offcanvas .nav-link:hover {
  background: rgba(255, 255, 255, 0.3);
  padding-left: 1.5rem;
 border-radius: 0;
}

/* Dropdown inside mobile menu */
.offcanvas .dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #000;
  margin-left: 1rem;
}

.offcanvas .dropdown-item:hover {
  background: #000000;
}

/* Mobile search box */
.mobile-search {
  padding: 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--saffron);
}

.search-box i {
  color: #fff;
  margin-right: 8px;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-weight: 600;
  color: #fff;
}

.search-box input::placeholder {
  color: #ffffff;
}


/*======================= slider Section ================== */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 350px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease-in-out;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 700px;
}

/* Smooth Animation */
.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  animation-delay: 0.6s;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #ddd;
}

.hero-buttons {
  animation-delay: 1s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight Colors */
.hero-content h1 span.green {
  color: var(--green);
}

.hero-content h1 span.orange {
  color: var(--saffron);
}

/* Buttons */
.hero-buttons .btn {
  margin-right: 15px;
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.4s ease;
}

.btn-discover {
  background-color: var(--green);
  color: #fff;

}

.btn-contact {
  background-color: var(--saffron);
  color: #fff;

}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
}

@media (max-width: 576px) {
  .hero-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-right: 10px;
  }
}

/* Carousel Arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Dots */
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: var(--saffron);
}

/* Bootstrap fade + zoom effect */
.carousel-item {
  transition: opacity 1s ease, transform 6s ease;
}

.carousel-item.active .hero-bg {
  transform: scale(1.15);
}

.carousel-item .hero-bg {
  transform: scale(1);
}




/*--------------------------------------------------------------
# Features Section (Infra Theme Colors)
--------------------------------------------------------------*/

.features-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--medium-blue);
  margin-bottom: 30px;

}

@media (max-width: 767.98px) {
  .features-heading h2 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .features-heading h2 {
    font-size: 20px;
  }
}

.features .nav-tabs {
  border: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--medium-blue) !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid rgba(0, 0, 0, 0.1);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  color: var(--light-blue);
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Features Section Right Images Fixed Width */
.features .tab-pane .col-lg-6.order-1 img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 20px !important;
}

/* Responsive Font-size for Mobile */
@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }

  .features .nav-link i {
    font-size: 36px;
    padding-right: 10px;
  }
}

.features .nav-link:hover {
  color: var(--dark-blue);
}

.features .nav-link.active {
  color: var(--dark-blue);
  background-color: transparent;
  border-color: var(--medium-blue);
}

.features .tab-content {
  margin-top: 30px;
}

/* Tab Pane Heading */
.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--dark-blue);
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--saffron);
  left: 0;
  bottom: 0;
}

/* Tab Pane List */
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.8);
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 6px;
  color: var(--saffron);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.7);
}

/*---------------- Responsive Tab Pane ----------------*/
@media (max-width: 767.98px) {
  .features .tab-pane h3 {
    font-size: 28px;
  }

  .features .tab-pane ul li {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .features .tab-pane h3 {
    font-size: 24px;
  }

  .features .tab-pane ul li {
    font-size: 13px;
  }

  .features .tab-content {
    margin-top: 20px;
  }
}


/*----------------- Services Section ----------------*/
.text-dark-blue {
  color: var(--dark-blue);
}

.service-card {
  transition: all 0.3s ease;
  margin: 0 20px 40px 20px;
  overflow: hidden;
  border-radius: 0 !important;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 🔹 Equal image size for all cards */
.service-card img {
  width: 100%;
  height: 250px;
  /* fixed equal height */
  object-fit: cover;
  object-position: center;

}

.service-icon {
  margin-top: 10px !important;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  color: var(--saffron);
  font-size: 30px;
}

.btn-custom {
  background-color: var(--dark-blue);
  color: #fff;
  border: none;
  transition: all 0.3s;
  border-radius: 0 !important;
}

.btn-custom:hover {
  background-color: var(--saffron);
  color: #fff;
}





/*----------------- Projects Section ----------------*/
   .projects-section {
      padding: 60px 5%;
      background-color: #f8f9fa;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;
    }

    .projects-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header h2 {
      font-size: 2.2rem;
      color: #222;
      margin-bottom: 10px;
    }

    .section-header h2 span {
      color: #C89D4A;
    }

    .section-header p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .project-card {
      position: relative;
      overflow: hidden;
      border-radius: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .project-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover img {
      transform: scale(1.05);
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(55, 116, 140, 0.9);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      padding: 15px;
      text-align: center;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-overlay h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .project-overlay p {
      font-size: 0.9rem;
    }

    @media (max-width: 1024px) {
      .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .project-card img {
        height: 190px;
      }
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 1.8rem;
      }
      .project-overlay h3 {
        font-size: 1.1rem;
      }
      .project-card img {
        height: 170px;
      }
    }

    @media (max-width: 480px) {
      .projects-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .project-card img {
        height: 170px;
      }
      .project-overlay h3 {
        font-size: 1rem;
      }
      .project-overlay p {
        font-size: 0.85rem;
      }
    }








/* Director Section */
.text-saffron {
  color: var(--saffron);
}

.text-dark-blue {
  color: var(--dark-blue);
}

.text-medium-blue {
  color: var(--medium-blue);
}

.container-fluid.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.display-5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

@media (max-width: 767.98px) {
  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .display-5 {
    font-size: 1.6rem;
  }
}

/* Director Image Column */
.row.g-0 {
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.row.g-0:hover {
  transform: translateY(-5px);
}

/* Social Column */
.director-social {
  background: var(--light-blue);
  width: 100%;
}

.director-social .btn {
  color: #fff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  margin: 3px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--medium-blue);
  transition: 0.3s;
}

.director-social .btn:hover {
  background: var(--saffron);
}

/* Name & Position */
.bg-light {
  background: #f8f9fa !important;
}

.bg-light h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.bg-light span {
  font-size: 14px;
}

/* Director Text Link (Fix underline + color issue) */
.director-text-link {
  text-decoration: none;          
  color: inherit;                 
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Ensure h4 and span follow theme colors */
.director-text-link h4 {
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.director-text-link span {
  color: var(--medium-blue);
  font-size: 14px;
}

/* Hover effect: subtle color + zoom */
.director-text-link:hover h4 {
  color: var(--medium-blue);
  transform: scale(1.03);
}

.director-text-link:hover span {
  color: var(--saffron);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .col-10 {
    min-height: 250px !important;
  }

  .director-social .btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .col-10 {
    min-height: 200px !important;
  }

  .director-social .btn {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}





/*===============  faq section ============= */

.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #c6f2ff, #faf2d5);
}


    /* Heading */
    .faq-heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .faq-heading h5 {
      color:#C89D4A;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .faq-heading h2 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #002147;
    }

    /* Layout */
    .faq-divider {
      border-left: 2px solid #429EBD;
    }

    /* FAQ Item */
    .faq-item {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 18px 20px;
      margin-bottom: 18px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .faq-item:hover {
      border-color:#C89D4A;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    /* Question line */
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #002147;
      font-weight: 500;
      font-size: 1.05rem;
    }

    /* Icon */
    .faq-question i {
      font-size: 1.1rem;
      color: #C89D4A;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Answer */
    .faq-answer {
      display: none;
      margin-top: 12px;
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
      animation: fadeIn 0.3s ease;
    }

    /* Active */
    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-question i {
      transform: rotate(45deg);
      color: #429EBD;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 991px) {
      .faq-divider {
        border-left: none;
        margin-top: 40px;
      }
      .faq-heading h2 {
        font-size: 2.2rem;
      }
    }



/* ===================== TESTIMONIAL SECTION ===================== */
.testimonial-section {
   --light-overlay: rgba(5, 63, 92, 0.70);
  position: relative;
  padding: 60px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-bottom: 10px;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--light-overlay);
  z-index: 1;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.testimonial-container {
  position: relative;
  z-index: 3;
}

.testimonial-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid var(--saffron);
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
}

.testimonial-item h4 {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
  color: var(--saffron);
}

.stars i {
  color: var(--saffron);
  font-size: 15px;
}

.testimonial-text {
  font-size: 18px;
  max-width: 850px;
  margin: 25px auto;
  font-weight: 300;
  line-height: 1.6;
  padding: 0 20px;
}

/* Quotes */
.quote-left,
.quote-right {
  font-size: 30px;
  color: var(--saffron);
  opacity: 0.8;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  border: 2px solid var(--saffron) !important;
  background: transparent !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--saffron) !important;
}

/* ====================== RESPONSIVE ======================= */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 16px;
  }
  .testimonial-item img {
    width: 70px;
    height: 70px;
  }
  .testimonial-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 15px;
    padding: 0 10px;
  }
  .quote-left,
  .quote-right {
    font-size: 24px;
  }
}






/*----------------- Footer ----------------*/
.footer {
  --font-primary: 'Poppins', sans-serif;
  color: #fff;
  background: url("../images/slider/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 40px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--light-blue);
}

.footer-info p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-info .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-info .social-links a:hover {
  background: var(--saffron);
  color: #fff;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--medium-blue);
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  padding: 6px 0;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--saffron);
  text-decoration: underline;
}

.footer-legal {
  margin-top: 20px;
  /* background: var(--dark-blue); */
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
  color: var(--saffron);
  text-decoration: none;
}














  /* ====== BREADCRUMB SECTION ====== */
        .breadcrumb-section {
            background: linear-gradient(90deg, #053F5C 0%, #429EBD 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            color: #fff;
        }

        .breadcrumb-section h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--saffron);
            margin-bottom: 10px;
        }

        .breadcrumb-section .breadcrumb {
            justify-content: center;
            background: transparent;
            margin-bottom: 0;
        }

        .breadcrumb-section .breadcrumb-item a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .breadcrumb-section .breadcrumb-item a:hover {
            color: var(--saffron);
        }

        .breadcrumb-section .breadcrumb-item.active {
            color: #F7AD19;
            font-weight: 600;
        }



        #backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #C89D4A;  /* Orange – same as spinner */
    color: #fff;
    border: none;
    outline: none;
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

#backToTop:hover {
    background-color: #053F5C;
    transform: translateY(-3px);
}
