@import url("https://fonts.googleapis.com/css2?family=Stack+Sans+Text:wght@200..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #9ccc65;
  --secondary-color: #1f1f1f;
  --accent-color: #2d3436;
  --light-bg: #f8f9fa;
  --text-dark: #1f1f1f;
  --text-light: #6c757d;
}

body {
  font-family: "Stack Sans Text", sans-serif;
  color: var(--text-dark);
   overflow-x: hidden; 
  background-color: #fff;
}

/* Navigation */
/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.navbar-brand .text-success {
  font-size: 1.8rem;
  vertical-align: middle;
}

.nav-link {
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* -------------------------
   Premium Smooth Dropdown - Desktop Only
-------------------------- */
/* Desktop hover behavior */
@media (min-width: 992px) {
  .custom-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown menu base styling */
.custom-dropdown .dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 20px 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  z-index: 9999;
}

/* Desktop-only animation */
@media (min-width: 992px) {
  .custom-dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
  }
}

/* Dropdown item styling */
.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  color: var(--primary-color);
  padding-left: 28px;
}

/* Active nav link state */
.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* -------------------------
   Mobile Fixes (< 992px)
-------------------------- */
@media (max-width: 991px) {
  /* Fix navbar collapse */
  .navbar-collapse {
    background: #fff;
    padding: 1rem 0;
  }

  /* Stack nav items vertically */
  .navbar-nav {
    width: 100%;
  }

  /* Adjust nav link margins */
  .nav-link {
    margin: 0;
    padding: 0.75rem 1rem;
  }

  /* Mobile dropdown - remove animations */
  .custom-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border-left: 3px solid var(--primary-color);
    margin-left: 1rem;
    padding: 0.5rem 0;
    background: #f8f9fa;
  }

  /* Dropdown items in mobile */
  .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
  }

  .dropdown-menu .dropdown-item:hover {
    padding-left: 1.25rem !important;
  }

  /* Book button in mobile */
  .book-btn {
    margin: 1rem 1rem 0;
    display: inline-block;
    width: auto;
  }

  /* Fix toggle button appearance */
  .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.75rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary-color);
  }

  .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* -------------------------------
   DEFAULT: Show btn-1, hide btn-2
----------------------------------*/
.btn-1 {
  display: inline-flex !important;
}

.btn-2 {
  display: none !important;
}

/* -------------------------------
   BUTTON STYLING
----------------------------------*/

.book-btn:hover .btn-icon {
  transform: rotate(-35deg);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #5d5513;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  padding: 4px 4px 4px 15px;
  font-size: 16px;
  box-shadow: 0 5px 25px rgba(0, 26, 78, 0.2);
  transition: all 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  background-color: #fff;
  color: #001a4e;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* -------------------------------
   RESPONSIVE VISIBILITY CONTROL
----------------------------------*/

/* Tablets & Mobile (<= 991px): hide btn-1, show btn-2 */
@media (max-width: 991px) {
  .btn-1 {
    display: none !important;
  }
  .btn-2 {
    display: flex !important;
  }
}

/* Optional styling refinement for btn-2 layout on smaller screens */
@media (max-width: 767px) {
  .btn-2 {
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    text-align: center;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  .book-btn {
    font-size: 13px;
    padding: 6px 5px 6px 14px;
    gap: 8px;
  }

  .btn-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .book-btn {
    font-size: 12px;
    padding: 6px 10px 6px 12px;
    gap: 6px;
  }

  .btn-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  /* .book-btn {
    width: 65% !important;
    justify-content: center;
  } */
}

/* Hero Section */
section {
  /* overflow-y: hidden !important;
  overflow-x: hidden !important; */
  overflow: hidden;
  padding: 60px 0px;
}

.hero-section {
  padding: 50px 60px;
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  border-radius: 40px;
  overflow: hidden !important;
}

.hero-title {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.text-highlight {
  color: var(--primary-color);
}

.typing-text {
  border-right: 2px solid #333;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

/* -------------------------------------
   MEDIUM DEVICES (TABLETS ≤ 991px)
------------------------------------- */
@media (max-width: 991px) {
  .hero-section {
    padding: 50px 30px;
    border-radius: 35px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section img {
    width: 85%;
    display: block;
    margin: 30px auto 0;
  }

  /* .book-btn {
    padding: 12px 24px;
    font-size: 1rem;
  } */
}

/* -------------------------------------
   SMALL DEVICES (≤ 768px)
------------------------------------- */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-label {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .hero-section img {
    width: 90%;
    margin-top: 20px;
  }

  /* .text-muted.fs-5 {
    font-size: 1rem !important;
  } */

  /* .book-btn {
    margin: 0 auto;
    display: inline-flex;
  } */
}

/* -------------------------------------
   EXTRA SMALL DEVICES (≤ 576px)
------------------------------------- */
@media (max-width: 576px) {
  .hero-section {
    padding: 30px 15px;
    border-radius: 25px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-section img {
    width: 100%;
  }

  .typing-text {
    font-size: 1.2rem;
  }

  /* .book-btn {
    width: 100%;
    justify-content: center;
    padding: 6px 3px 6px 5px;
  } */
}

@keyframes blink {
  0% {
    border-color: transparent;
  }

  50% {
    border-color: #333;
  }

  100% {
    border-color: transparent;
  }
}

.stats-card {
  width: 100%;
  max-width: 480px;
  height: ;
  background: #102a2d;
  border-radius: 20px;
  padding: 20px;
  color: #ecf7f2;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease-in-out;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Avatars */
.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #102a2d;
  margin-right: -12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Number */
.big-number {
  font-size: 48px;
  font-weight: 800;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #c8f24a;
  margin-top: 20px;
}

/* Progress */
.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-bar {
  background: linear-gradient(90deg, #d7ff63, #b5f34b, #8bd53d);
  border-radius: 999px;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.more-link {
  color: #eaf4e9;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.more-link:hover {
  color: #c8f24a;
}

.circle-btn {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}

.circle-btn:hover {
  transform: rotate(-35deg);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

/* -------------------------------------
   MEDIUM DEVICES (≤ 991px)
------------------------------------- */
@media (max-width: 991px) {
  #about {
    padding: 50px 0;
    text-align: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  #about img {
    height: auto;
    width: 80%;
    margin: 0 auto 20px auto;
  }

  .about-sec p {
    text-align: justify;
  }

  /* .stats-card {
    margin: 0 auto;
  }

  .avatars {
    justify-content: center;
  }

  .bottom-row {
    justify-content: center !important;
  } */
}

/* -------------------------------------
   TABLET / SMALL DEVICES (≤ 768px)
------------------------------------- */
@media (max-width: 768px) {
  #about {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  #about img {
    width: 85%;
  }

  .about-sec p {
    text-align: justify;
  }

  /* .stats-card {
    max-width: 370px;
    padding: 18px;
  }

  .big-number {
    font-size: 1.5rem;
  }

  .fw-semibold.fs-5,
  .fw-bold.fs-5 {
    font-size: 1.1rem !important;
  } */
}

/* -------------------------------------
   EXTRA SMALL DEVICES (≤ 576px)
------------------------------------- */
@media (max-width: 576px) {
  #about {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  #about img {
    width: 100%;
    margin-bottom: 15px;
  }

  .stats-card {
    /* max-width: 100%;
    padding: 15px; */
    display: none;
  }

  .about-sec p {
    text-align: justify;
  }
}

.brand-section {
  overflow: hidden;
  /* background: #fafaf5; */
  /* position: relative; */
}

/* Sliding Track */
.brand-track {
  display: flex;
  gap: 120px;
  align-items: center;
  white-space: nowrap;
  animation: slide 20s linear infinite;
  padding: 25px 0;
}

.brand-track-clone {
  position: absolute;
  top: 0;
  left: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Brand logo images */
.brand-item img {
  height: 70px; /* FIXED HEIGHT for perfect alignment */
  width: auto; /* Keeps natural width */
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.4s ease;
}

/* Hover Effect */
.brand-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Blur Masks */
.blur-left,
.blur-right {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.blur-left {
  left: 0;
  background: linear-gradient(to right, #fafaf5 40%, transparent);
}

.blur-right {
  right: 0;
  background: linear-gradient(to left, #fafaf5 40%, transparent);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-track {
    gap: 60px;
  }
  .brand-item img {
    width: 100px;
  }
}

/* ABOUT SECTION */

.section-label {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 1rem;
  color: var(--primary-color);
}

/* STATISTICS */

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.stat {
  flex: 1; /* All columns equal width */
  text-align: center;
  justify-content: center;
}

.stat-inner {
  padding: 0 20px;
}

.divider {
  width: 2px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.15);
}

/* @media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 30px;
  }
  .divider {
    display: none;
  }
} */

/* digit viewport */
.digit-viewport {
  width: auto;
  display: inline-block;
  overflow: hidden;
  height: 56px;
  /* digit height */
  vertical-align: middle;
}

/* the roller stack */
.digit-roller {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.2, 0.9, 0.25, 1);
  will-change: transform;
}

.digit-roller div {
  height: 56px;
  line-height: 56px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  min-width: 28px;
}

.stat-caption {
  font-size: 16px;
  color: #133232;
  margin-top: 6px;
  font-weight: 600;
}

/* make static symbols look aligned */
.symbol {
  display: inline-block;
  height: 56px;
  line-height: 56px;
  font-size: 48px;
  font-weight: 800;
  vertical-align: middle;
  margin-left: 4px;
  margin-right: 4px;
}

/* subtle settle */
.settle {
  transform: translateY(-6px) scale(1.02);
  transition: transform 0.25s ease;
}

/* @media (max-width: 767px) {
  .digit-viewport {
    height: 48px;
  }

  .digit-roller div {
    height: 48px;
    line-height: 48px;
    font-size: 40px;
  }
} */

/* ================================
   LARGE TABLETS (≤ 991px)
================================ */
@media (max-width: 991px) {
  .stats-row {
    gap: 50px;
  }

  .digit-roller div,
  .symbol {
    font-size: 42px;
  }

  .stat-caption {
    font-size: 15px;
  }

  .divider {
    height: 50px;
  }
}

/* ================================
   TABLET / SMALL DEVICES (≤ 768px)
================================ */
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .divider {
    /* display: none; */
  }

  .divider {
    display: block;
    width: 50%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.15);
    /* margin: 10px auto 0 auto; */
  }

  /* Add spacing between blocks */
  .stat {
    padding-bottom: 15px;
  }

  /* Hide divider after the last stat */
  .stats-row .stat:last-child + .divider {
    display: none;
  }

  .digit-viewport {
    height: 46px;
  }

  .digit-roller div,
  .symbol {
    font-size: 36px;
    height: 46px;
    line-height: 46px;
  }

  .stat-caption {
    margin-top: 4px;
    font-size: 14px;
  }
}

/* ================================
   EXTRA SMALL DEVICES (≤ 576px)
================================ */
@media (max-width: 576px) {
  .stats-row {
    gap: 25px;
    /* padding: 0 10px; */
  }

  .stat-inner {
    padding: 0 10px;
  }

  .digit-viewport {
    height: 40px;
  }

  .digit-roller div,
  .symbol {
    font-size: 32px;
    height: 40px;
    line-height: 40px;
  }

  .stat-caption {
    font-size: 13px;
  }

  section {
    padding: 30px 0;
  }

  .products-section {
    padding: 30px 0 !important;
  }
}

/* Section spacing */
.why-choose-section {
  padding: 60px 0;
  overflow: hidden;
}

/* Checklist spacing fix */
.why-list p {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Icons */
.why-list i {
  color: #28a745;
  margin-right: 8px;
  font-size: 1.1rem;
}

/* --------------------------
   RESPONSIVE FIXES
---------------------------*/

/* Medium devices (tablets) */
@media (max-width: 991px) {
  .section-title {
    font-size: 1.8rem;
  }

  .why-img {
    /* max-width: 70%; */
    display: none;
  }
}

/* Small devices (mobile) */
@media (max-width: 767px) {
  .why-choose-section {
    text-align: center;
  }

  .section-label {
    margin-top: 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .why-img {
    /* max-width: 80%;
        margin-bottom: 25px; */
    display: none;
  }

  .why-list p {
    font-size: 0.95rem;
  }
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  color: white;
  padding: 60px 0;
  overflow: hidden;
}

.billing-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.toggle-btn {
  background: white;
  border: 2px solid white;
  color: #0d3e3e;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: white;
  color: #0d3e3e;
}

.toggle-btn:not(.active) {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.toggle-btn.discount {
  background: #8dd3a8;
  border-color: #8dd3a8;
  color: #0d3e3e;
}

.service-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.filter-btn {
  background: #c8e6c9;
  border: 2px solid #c8e6c9;
  color: #0d3e3e;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
  background: #0d3e3e;
  color: white;
  border-color: #0d3e3e;
}

.content-container {
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}

.content-left {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: clamp(10px, 5vw, 40px);
  font-weight: 700;
  color: #0d3e3e;
  margin-bottom: 10px;
}

.price-period {
  font-size: 16px;
  color: #0d3e3e;
  margin-bottom: 30px;
}

.services-title {
  font-size: 20px;
  font-weight: 700;
  color: #0d3e3e;
  margin-bottom: 10px;
}

.services-desc {
  font-size: 14px;
  color: #0d3e3e;
  margin-bottom: 20px;
  text-align: justify;
}

.service-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #0d3e3e;
  align-items: flex-start;
}

.service-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cta-btn {
  background: #0d3e3e;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  width: fit-content;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  background: #0a2e2e;
  transform: translateX(4px);
}

.content-right {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
  min-height: 380px;
}

.image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  animation: slideIn 0.6s ease-in-out;
}

.image-wrapper.out {
  animation: slideOut 0.6s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .content-right {
    min-height: 300px;
  }

  .service-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .price {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 20px;
    border-radius: 15px;
  }

  .service-filters {
    flex-direction: column;
    gap: 8px;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .billing-toggle {
    flex-direction: column;
  }

  .toggle-btn {
    flex: 1;
  }

  .price {
    font-size: 28px;
  }

  .service-item {
    font-size: 13px;
  }

  .content-right {
    min-height: 250px;
  }
}

/* OUR PHILOSOPHY CARDS */

.premium-card {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.premium-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transition: all 0.6s ease-out;
  opacity: 0;
}

.premium-card:hover::after {
  top: -30%;
  right: -30%;
  opacity: 1;
}

.premium-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Philosophy Card */
/* .card-philosophy {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
} */

/* Mission Card */
/* .card-mission {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
} */

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.premium-card:hover .card-icon {
  transform: scale(1.09) rotate(10deg);
  opacity: 1;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

.card-list {
  list-style: none;
  margin-bottom: 25px;
}

.card-list li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.btn-learn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-learn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-learn:hover {
  transform: translateX(5px);
  border-color: white;
  color: white;
  background: rgba(0, 0, 0, 0.423);
}

.btn-learn:hover::before {
  left: 0;
}

.card-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.btn-container {
  position: relative;
  z-index: 2;
}

/* Decorative elements */
.card-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.decoration-1 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  background: white;
}

.decoration-2 {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
  background: white;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.8rem;
  }

  .premium-card {
    padding: 30px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .cards-container {
    gap: 20px;
  }

  .premium-card:hover {
    transform: translateY(-10px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .premium-card {
    padding: 25px;
  }

  .card-icon {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.85rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.service-card {
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-home {
  background: linear-gradient(135deg, #fcf8b3 0%, #e8ea80 100%);
  color: #4d4d00;
}

.card-home::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(0, 77, 64, 0.05);
  border-radius: 50%;
}

.card-health {
  background: linear-gradient(135deg, #ffccbc 0%, #ffab91 100%);
  color: #3e2723;
}

.card-health::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(62, 39, 35, 0.05);
  border-radius: 50%;
}

.card-auto {
  background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
  color: #4a148c;
}

.card-auto::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(74, 20, 140, 0.05);
  border-radius: 50%;
}

.card-travel {
  background: linear-gradient(135deg, #f0f4c3 0%, #e6ee9c 100%);
  color: #33691e;
}

.card-travel::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(51, 105, 30, 0.05);
  border-radius: 50%;
}

.savings-badge {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.85;
}

.card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-placeholder {
  font-size: 2.5rem;
  opacity: 0.8;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.learn-more-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid currentColor;
  border-radius: 25px;
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.learn-more-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.view-all-btn {
  text-align: center;
  margin-top: 20px;
}

.view-all-btn .btn {
  background-color: #1a3d3a;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.view-all-btn .btn:hover {
  background-color: #0f2622;
  transform: scale(1.05);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.card-home .icon-circle {
  background-color: rgba(0, 77, 64, 0.1);
}

.card-health .icon-circle {
  background-color: rgba(62, 39, 35, 0.1);
}

.card-auto .icon-circle {
  background-color: rgba(74, 20, 140, 0.1);
}

.card-travel .icon-circle {
  background-color: rgba(51, 105, 30, 0.1);
}

@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.85rem;
  }

  .service-card {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

/* .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  grid-template-areas:
    "card1 card4 card3"
    "card2 card4 card5";
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card-1 {
  grid-area: card1;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&h=500&fit=crop");
}

.service-card-2 {
  grid-area: card2;
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&h=500&fit=crop");
}

.service-card-3 {
  grid-area: card3;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&h=500&fit=crop");
}

.service-card-4 {
  grid-area: card4;
  min-height: 580px;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&h=500&fit=crop");
}

.service-card-5 {
  grid-area: card5;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&h=500&fit=crop");
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(183, 222, 97, 0.416) 0%,
    rgba(155, 205, 86, 0.5) 100%
  );
  transition: all 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(155, 205, 86, 0.3) 100%
  );
}

.service-card-text {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  padding: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
} */

.matters-section {
  background: white;
  padding: 5rem 0;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  height: 200px;
  background: linear-gradient(135deg, #ddd 0%, #999 100%);
  border-radius: 15px;
  overflow: hidden;
}

/* Testimonials Section */
.test-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 60px 0;
  /* position: relative; */
  overflow: hidden;
}

.testimonial-card {
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  border-radius: 32px;
  padding: 35px;
  /* box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.02); */
  transition: 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.1);
}

.stars i {
  color: #ff8c00;
  margin-right: 3px;
}

.user-info {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.user-info img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.swiper-container {
  position: relative;
}

/* BLUR LEFT & RIGHT */
.blur-start,
.blur-end {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
  pointer-events: none;
}

.blur-start {
  left: 0;
  background: linear-gradient(to right, #f5f7ff 0%, transparent 100%);
}

.blur-end {
  right: 0;
  background: linear-gradient(to left, #f5f7ff 0%, transparent 100%);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

/* Swiper Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #4f46e5;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background: #6366f1 !important;
}

/* Blog Section */
.blog-section {
  background: white;
  padding: 5rem 0;
  overflow: hidden;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.card-text {
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.badge {
  background: #e8f4e8 !important;
  color: #4b8f4b !important;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* FOOTER SECTION */

.footer-section {
  background: #000000;
  color: #b9bccf;
  overflow: hidden;
}

.footer-title {
  font-size: 180px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #fff, #888, #222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  color: #b9bccf;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c3c4d4;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.newsletter-box {
  background: white;
  border-radius: 50px;
  overflow: hidden;
  padding-left: 15px;
}

.newsletter-input {
  border: none;
  border-radius: 0;
  padding: 12px 15px;
  box-shadow: none !important;
}

.subscribe-btn {
  border: none;
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  color: rgb(0, 0, 0);
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.subscribe-btn:hover {
  opacity: 0.85;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.323);
  /* height: ; */
}

.footer-copy {
  color: #80829c;
  font-size: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2b2b3d;
  border-radius: 50%;
  color: #c7c8d9;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #3030ff;
  color: white;
  border-color: #3030ff;
}

/* --- TOP SOCIAL ICONS (Mobile + Tablet) --- */

.footer-social-top {
  display: none !important;
  /* flex-direction: row !important;
  justify-content: flex-start;
  gap: 12px; */
}

.footer-social-top a {
  margin: 0 !important;
}

/* --- BOTTOM SOCIAL ICONS (Desktop only) --- */
/* already handled by Bootstrap d-none d-lg-flex */
/* but we force horizontal layout for safety */

.footer-social-bottom {
  /* display: none !important; */
  flex-direction: row !important;
  gap: 12px;
}

/* RESPONSIVE OPTIMIZATION */
@media (max-width: 992px) {
  .footer-title {
    font-size: 110px;
  }

  .footer-social-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 70px;
  }

  .footer-social-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .footer-social-top {
    display: none !important;
  }

  .footer-social-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-title {
    font-size: 50px;
  }

  .newsletter-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 0;
  }

  .subscribe-btn {
    width: 100%;
    justify-content: center;
    border-radius: 20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-1,
  .card-2,
  .card-3 {
    grid-column: 1;
    grid-row: auto;
  }

  .gateway-image-container,
  .growth-image-container {
    height: 300px;
  }

  .circle-bg {
    width: 150px;
    height: 150px;
  }

  .woman-image {
    width: 120px;
    height: 150px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .product-card {
    height: 180px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-circles {
    gap: 1.5rem;
  }

  .circle-avatar {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.75rem 0;
  }

  /* .hero-section,
  .gateway-section,
  .growth-section,
  .products-section,
  .matters-section,
  .testimonials-section,
  .blog-section,
  .cta-section,
  .footer-section {
    padding: 3rem 0;
  } */

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cards-grid {
    gap: 1rem;
  }

  .investment-card {
    padding: 1rem;
  }

  .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .btn-lg {
    width: 100%;
  }
}

/* CONTACT PAGE */

.contact-section {
  padding: 60px 0px;
  /* background-color: #f8f7f4; */
}

.breadcrumb-badge {
  background: #f1f5f9; /* soft light grey */
  border: 1px solid #e2e8f0;
}

.bc-head {
  font-size: 70px;
}

.breadcrumb {
  font-size: 1rem;
}

.breadcrumb a {
  color: #5dcb26;
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #000;
  font-weight: 600;
}

/* Left Column - Form */
.form-section {
  background: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.badge-label {
  background: #fff3cd;
  color: #ff9800;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.form-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-control:focus {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: #999;
}

.row-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  margin: 25px 0;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.form-check-label {
  margin-left: 10px;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-submit {
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #1d4ed8;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Right Column - Info */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* padding: 40px; */
  /* background-color: #155724; */
}

.profile-image {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  object-fit: cover;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #e3f2fd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-content p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
    border-radius: 20px;
  }

  .form-section {
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .row-two-cols {
    grid-template-columns: 1fr;
  }

  .info-section {
    gap: 15px;
  }

  .profile-image {
    margin-bottom: 0;
  }

  .contact-card {
    padding: 15px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .contact-container {
    padding: 15px;
  }

  .form-section {
    padding: 20px;
  }

  .form-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .form-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .badge-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .contact-card {
    padding: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-content h5 {
    font-size: 0.85rem;
  }

  .contact-content p {
    font-size: 0.8rem;
  }
}

/* Success Message */
.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  animation: slideIn 0.3s ease;
}

.success-message.show {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading State */
.btn-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.map-wrapper {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.map-wrapper h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

/* FAQ SECTION */

.faq-section {
  /* min-height: 100vh; */
  /* display: flex; */
  /* align-items: center; */
  padding: 60px 0;
  /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
}

/* .faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
} */

/* Left Column - FAQ List */
.faq-content {
  animation: slideInLeft 0.8s ease-out;
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.faq-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
}

.faq-divider {
  width: 60px;
  height: 3px;
  background: #1a1a1a;
  margin: 30px 0;
}

.faq-list {
  list-style: none;
  padding-left: 0px !important;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
  color: var(--primary-color);
}

.faq-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #1a1a1a;
}

.faq-item.active .faq-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-top: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  animation: slideDown 0.5s ease-out;
}

/* Right Column - CTA Box */
.faq-cta {
  animation: slideInRight 0.8s ease-out;
}

.cta-box {
  background: linear-gradient(135deg, #fffacd 0%, #fdf7e0 100%);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  min-height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 3.5rem;
  height: 100px;
}

.cta-icon-yellow {
  color: var(--primary-color);
  animation: float 3s ease-in-out infinite;
}

.cta-icon-dark {
  color: #1a1a1a;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 15px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
  color: #1a1a1a;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-box {
    position: relative;
    top: 0;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .cta-icons {
    font-size: 2.5rem;
    height: 80px;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .faq-header {
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 15px;
    overflow: hidden !important;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .cta-icons {
    font-size: 2rem;
    height: 60px;
    gap: 10px;
  }

  .cta-title {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 35px;
    font-size: 0.9rem;
  }
}

/* ABOUT PAGE */

.about-section {
  padding: 0;
  max-width: 1220px;
  margin: 0 auto;
  background: linear-gradient(150deg, #fffbea 0%, #eafef1 100%);
  border-radius: 50px;
}

/* Responsive Breadcrumb Fix */
.breadcrumb-badge {
  max-width: 100%;
  overflow: hidden;
}

/* Make breadcrumb text wrap on small devices */
.breadcrumb {
  flex-wrap: wrap;
  font-size: 14px;
}

/* Center everything on small screens */
@media (max-width: 768px) {
  .breadcrumb-badge {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .bc-head {
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .bc-head {
    font-size: 13px;
  }
}

/* SERVICE DETAILS PAGE */

/* Smooth slide & fade animation */
#navbarNav {
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
