@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* Navbar */
.custom-navbar {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
}

.logo img {
  border-radius: 6px;
  margin: 7px 0;
  width: 120px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 15px;
  display: block;
}

/* Dropdowns */
.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #000;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: max-content;
  width: 100%;
  z-index: 999;
}

.dropdown-menu a {
  padding: 5px 10px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
  font-weight: 400 !important;
}

.dropdown-menu a:hover {
  background: #c39c4d;
  color: #fff !important;
}

/* Subdropdown */
.has-subdropdown {
  position: relative;
}

.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 200px;
  width: max-content;
  border-radius: 4px;
  list-style: none;
}

.subdropdown-menu a {
  padding: 6px 12px !important;
  border-bottom: 1px solid #333;
  color: #fff !important;
}

.subdropdown-menu a:hover {
  background: #c39c4d;
}

/* === THIRD LEVEL DROPDOWN === */
.has-sub-subdropdown {
  position: relative;
}

.sub-subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  padding: 0;
  width: max-content;
  list-style: none;
  min-width: 220px;
  border-radius: 4px;
  z-index: 9999;
}

.sub-subdropdown-menu a {
  padding: 6px 12px !important;
  color: #fff !important;
  border-bottom: 1px solid #333;
}

.sub-subdropdown-menu a:hover {
  background: #c39c4d;
}

/* === DESKTOP ONLY: Hover === */
@media (min-width: 992px) {
  .has-dropdown:hover>.dropdown-menu {
    display: flex;
  }

  .has-subdropdown:hover>.subdropdown-menu {
    display: flex;
  }

  .has-sub-subdropdown:hover>.sub-subdropdown-menu {
    display: flex;
  }

  .contact-btn {
    background-color: #c39c4d;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 5px;
    font-weight: 500 !important;
  }
}

/* === MOBILE === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown-menu a {
    padding: 10px 15px !important;
    font-size: 16px !important;
    border-bottom: 1px solid #ccc;
    color: #000 !important;
    font-weight: 400 !important;
  }

  .dropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu {
    position: static;
    display: none;
    background: #000;
    border: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .subdropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu a {
    padding: 10px 20px !important;
    border-bottom: 1px solid #333;
    color: #fff !important;
  }

  .sub-subdropdown-menu {
    position: static;
    display: none;
    background: #fff;
    border: none;

    border-radius: 0;
    width: 100%;
  }

  .sub-subdropdown-menu.show {
    display: flex;
  }

  .sub-subdropdown-menu a {
    padding: 10px 25px !important;
    color: #000 !important;
  }
}

/* banner */
.banner-bg {
  background: url("../img/home/banner-bg.JPG") no-repeat center right/cover;
  display: flex;
  padding: 130px 0;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}



.banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-subtitle {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

.banner-text {
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .banner-bg {
    padding: 50px 0;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 22px;
    line-height: 28px;
  }

  .banner-text {
    font-size: 16px;
    max-width: 100%;
  }
}

.progress-item {
  border: 2px solid #fff;
  padding: 15px;
  background: #7f735f;
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.progress-number {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
}

.progress-title h4 {
  color: #fff;
  font-weight: 400;
  margin: 0;
  font-size: 1.1rem;
}

.theme-btn {
  background: #c39c4d;
  color: white !important;
  padding: 12px 30px !important;
  border-radius: 5px;
  font-weight: 600 !important;
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background: #b28844;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}



/* about us  */

.doc-pro-section {
  background: #b887433e;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.doc-pro-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doc-pro-office-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.doc-pro-office-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.35;
  display: block;
  border: 4px solid #fff;
  object-fit: cover;
  border-radius: 15px;
}


.doc-pro-name-title {
  font-size: 42px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.2;
}

.doc-pro-education-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.doc-pro-grad-icon {
  color: #333;
  font-size: 55px;
}

.doc-pro-education-text {
  color: #333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.doc-pro-quote-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 30px 0;
}

.doc-pro-quote-content {
  flex: 1;
  padding-top: 12px;
}

.doc-pro-quote-content p {
  color: #333;
  font-size: 17px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

.doc-pro-paragraph {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 400;
}


@media (max-width: 767px) {
  .doc-pro-section {
    padding: 40px 0;
  }

  .doc-pro-meet-text {
    font-size: 70px;
    letter-spacing: 4px;
  }

  .doc-pro-name-title {
    font-size: 32px;
  }

  .doc-pro-circle-image {
    max-width: 250px;
  }


  .doc-pro-education-text {
    font-size: 14px;
  }

  .doc-pro-quote-content p {
    font-size: 15px;
  }
}

.counter-section {
  background: url('../img/home/why-choosse-bg.jpg') top center/cover no-repeat;
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

/* why trust   */

.trust-section {
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.trust-card {
  background-color: #f4e8d6;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(32, 40, 80, 0.12);
  border-radius: 1.25rem;
  padding: 1rem;
  border: 1px solid #b88743;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  border-radius: 1.25rem;
  padding: 1px;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #b88743, #e3c98d);
  transition: all 0.3s ease;
}

.trust-card:hover::before {
  height: 102%;
}

.trust-card:hover {
  box-shadow: 0 8px 32px rgba(32, 40, 80, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.trust-icon {
  width: 90px;
  height: 90px;
  background: #b88743;
  border: 4px solid #fff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 10px #0000001e;
  margin-bottom: 1rem;
  position: relative;
}

.trust-card {
  h5 {
    font-size: 18px;
    color: #333;
    font-weight: 600 !important;
    position: relative;
  }
}

@media (max-width: 767px) {
  .trust-section {
    padding: 40px 0;
  }

  .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .trust-card h5 {
    font-size: 18px;
  }
}


/* service section  */

.section-title h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .section-title h2 {
    font-size: 24px;
  }
}


/* services */

.custom-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-overlay img {
  transition: transform 0.3s ease;
  width: 100%;
  aspect-ratio: 5/4;

  object-fit: cover;
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.card-img-overlay-custom {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

/* Hide all content initially */
.slide-content {
  opacity: 1;
  transform: translateY(85%);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Show all content on hover */
.custom-card:hover .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hid-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-card:hover .hid-text {
  opacity: 1;
}

.card-title {
  color: white;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-text {
  color: white;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-custom {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  align-self: flex-start;
}

.btn-custom:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, #224fa3, #5907bd);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.8rem;
    text-transform: capitalize;
  }

  .section-heading h2::before {
    width: 100px;
    height: 3px;
  }
}

.carousel-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.9);
}

.owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ab-carousel .item:hover .carousel-image {
  transform: scale(1.05);
  filter: brightness(1);
  /* Brighten on hover */
}






.ct-contact-enquiry-section {
            background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
        }

        .ct-contact-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(55, 54, 52, 0.1);
            padding: 30px;
            height: 100%;
        }

        .ct-section-title {
            font-size: 28px;
            font-weight: 700;
            color: #373634;
            position: relative;
            padding-bottom: 8px;
        }

        .ct-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #b88743, #d4a56a);
            border-radius: 2px;
        }

        .ct-contact-item {
            background: #faf9f7;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid #f0ede8;
        }

        .ct-contact-item:hover {
            background: #f5f2ed;
            transform: translateX(5px);
            border-color: #b88743;
        }

        .ct-contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #b88743, #d4a56a);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(184, 135, 67, 0.25);
        }

        .ct-contact-icon i {
            font-size: 24px;
            color: #ffffff;
        }

        .ct-contact-label {
            font-size: 14px;
            color: #626261;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .ct-contact-text {
            font-size: 16px;
            color: #373634;
            font-weight: 500;
            line-height: 18px;
        }

        .ct-enquiry-form {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(55, 54, 52, 0.1);
        }

        .ct-form-control {
            padding: 15px 20px;
            border: 2px solid #e8e6e3;
            border-radius: 12px;
            font-size: 15px;
            color: #373634;
            transition: all 0.3s ease;
            background: #faf9f7;
        }

        .ct-form-control:focus {
            outline: none;
            border-color: #b88743;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(184, 135, 67, 0.1);
        }

        .ct-form-control::placeholder {
            color: #a09d9a;
        }

        .ct-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .ct-submit-btn {
            background: linear-gradient(135deg, #b88743, #d4a56a);
            color: #ffffff;
            border: none;
            padding: 16px 50px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(184, 135, 67, 0.3);
        }

        .ct-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(184, 135, 67, 0.4);
            background: linear-gradient(135deg, #9a6f35, #b88743);
        }

        .ct-submit-btn:active {
            transform: translateY(-1px);
        }

        .ct-social-icon-link {
            width: 50px;
            height: 50px;
            background: #faf9f7;
            border-radius: 12px;
            transition: all 0.3s ease;
            color: #373634;
            text-decoration: none;
            border: 1px solid #e8e6e3;
        }

        .ct-social-icon-link:hover {
            background: linear-gradient(135deg, #b88743, #d4a56a);
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(184, 135, 67, 0.3);
            border-color: #b88743;
        }

        .ct-social-icon-link i {
            font-size: 20px;
        }

        @media (max-width: 768px) {

            .ct-contact-card,
            .ct-enquiry-form {
                padding: 20px 12px;
            }

            .ct-section-title {
                font-size: 26px;
            }

            .ct-contact-icon {
                width: 45px;
                height: 45px;
            }

            .ct-contact-icon i {
                font-size: 20px;
            }

            .ct-submit-btn {
                padding: 14px 40px;
                width: 100%;
            }
        }






/* gallery */

/* Event Glimpses Section */
.event-glimpses {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;

  justify-content: center;

}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  left: 30px;
  z-index: 1001;
}

.next-btn {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 15px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: 80%;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .close-btn {
    font-size: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 10px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}



/* faq */

.faq-item {
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(34, 79, 163, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f2ff 100%);
}

.faq-question.active {
  background: linear-gradient(135deg, #b88743 0%, #e3c98d 100%);
  color: white;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: #b88743;
  min-width: 20px;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-answer {
  display: none;
  padding: 12px 15px;
  background: white;
  border-top: 1px solid #e1e8f0;
  line-height: 1.7;
  font-weight: 400;
  color: #333;
}

.faq-answer strong {
  font-weight: 500;
}

.faq-answer.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-answer small a {
  color: #224fa3;
  text-decoration: underline !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-content {
    padding: 20px 0;
  }

  .question-text {
    font-size: 1rem;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-answer {
    padding: 12px;

    ul {
      padding-left: 20px;
    }
  }
}

/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(135deg, #7e6338 10%, #30302f 100%);
  color: white;
  padding: 50px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 30px 0;
  }
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%2333c89e' fill-opacity='0.1' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a i {
  font-size: 14px;
  height: 25px;
  width: 25px;
  display: inline-flex;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  color: #b88743;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
  color: #d4f6ec;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ffffffcc;
  margin: 0;
}

.breadcrumb-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumb-subtitle {
  font-size: 16px;
  color: #d9f4eb;
}

/* footer  */

.footer {
  background: #373634;
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.3" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.ftr-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.ftr-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  border-radius: 2px;
}

.footer-link {
  color: rgb(255, 255, 255);
  padding: 5px 8px;

  background: rgba(255, 255, 255, 0.1);
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 3px;
  /* border-bottom: 2px solid #ffffff6c; */
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s ease;
}

.footer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.footer-link:hover::before {
  width: 50%;
}

.footer-link:hover::after {
  width: 50%;
}

.company-logo {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.footer-about-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.social-link:hover {
  background: #fff;

  i {
    color: #373634;
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 12px 1rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

.copyright p {
  font-size: 20px;

  .small {
    font-size: 16px;
    color: inherit;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}