    body {
      background-color: #9E6B06;
      color: #ffffff;
      font-family:'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Smooth transition utility */
    a, button, div, .feature-item, .icon-circle {
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* ==========================================
       HEADER & NAVIGATION
    ========================================== */
    .main-header {
      /*padding-top: 25px;*/
      /*padding-bottom: 15px;*/
    }



.main-logo {
    height: 68px;
    width: 189px;
    object-fit: contain;
}




    /* Navigation Menu */
    .navbar-nav .nav-link {
      font-family:'Montserrat', sans-serif;
      color: rgba(255, 255, 255, 0.9) !important;
      font-size: 0.95rem;
      font-weight: 400;
      padding-left: 18px !important;
      padding-right: 18px !important;
      position: relative;
    }

    /* Hover underline animation for Nav Links */
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: 2px;
      left: 50%;
      background-color: #9E6B06;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 60%;
    }

    .navbar-nav .nav-link:hover {
      color: #ffffff !important;
    }

    /* Language & Hotline Header Info */
    .lang-box {
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .lang-box:hover {
      opacity: 0.8;
    }

    .hotline-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .hotline-link:hover {
      color: #9E6B06;
    }

    /* ==========================================
       RIGHT FLOATING SIDEBAR TABS
    ========================================== */
    .floating-tabs {
      position: fixed;
      right: 0;
      top: 320px;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .side-tab {
      background: #9E6B06;
      color: #000000;
      text-decoration: none;
      width: 95px;
      padding: 12px 6px;
      border-top-left-radius: 6px;
      border-bottom-left-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1.25;
      box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15);
      transform: translateX(0);
    }

    .side-tab i {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    /* Side tab Hover Slide Effect */
    .side-tab:hover {
      background-color: #ffffff;
      color: #000000;
      transform: translateX(-6px);
      box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.25);
    }

    /* ==========================================
       HERO MAIN SECTION & ALIGNMENT
    ========================================== */
.hero-wrapper {
  /* Full screen size minus header height */
  min-height: calc(100vh - 100px); 
  position: relative;
  /* Flex direction vertically end positioning support */
  display: flex;
  align-items: flex-end; 
  justify-content: center;
}

/* Red container spacing adjust karne ke liye */
.hero-wrapper .container {
  max-width: 1270px; /* Horizontally nicely centered boundary */
  margin-left: auto;
  margin-right: auto;
}

    /* Left Side Features */
    .feature-item {
      padding: 8px 12px;
      border-radius: 6px;
      margin-bottom: 24px;
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateX(6px);
    }

    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 4px;
      letter-spacing: 0.3px;
    }

    .feature-desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.45;
      font-weight: 300;
      max-width: 320px;
    }

    .feature-svg-icon {
      width: 38px;
      height: 38px;
      fill: none;
      stroke: #ffffff;
      stroke-width: 1.5;
    }

    /* Right Main Heading */
    .hero-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.2rem;
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.5px;
      color: #ffffff;
    }

    @media (max-width: 991px) {
      .hero-heading {
        font-size: 2.8rem;
      }
    }

    /* CTA Appointment Button */
    .btn-appointment {
      background: linear-gradient(135deg, #e7c688 0%, #d8b26c 100%);
      color: #000000;
      font-family:'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 500;
      border: none;
      padding: 6px 6px 6px 28px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      display: inline-flex;
      align-items: center;
    }

    .btn-appointment .btn-text {
      margin-right: 18px;
    }

    .btn-appointment .icon-circle {
      width: 44px;
      height: 44px;
      background-color: #000000;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    /* Button Hover Effect */
    .btn-appointment:hover {
      background: linear-gradient(135deg, #f4d8a0 0%, #e5c282 100%);
      color: #000000;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .btn-appointment:hover .icon-circle {
      background-color: #1a1a1a;
      transform: rotate(12deg);
    }
    
    
    
    
    
    
    
    
    /* Section Container */
.luxury-section {
  background-color: #ffffff;
}

/* Sub-title Style */
.luxury-section .sub-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2b2b2b;
}

/* Main Heading Style */
.luxury-section .main-heading {
  'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

/* Description Text */
.luxury-section .description-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #737373;
  line-height: 1.6;
  font-weight: 400;
}

/* Feature Cards */
.luxury-section .feature-card {
  transition: transform 0.3s ease;
}

.luxury-section .feature-card:hover {
  transform: translateY(-4px);
}

/* Icon Box Style */
.luxury-section .icon-box {
  width: 32px;
  height: 32px;
  background-color: #dcb873;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

/* Feature Headings */
.luxury-section .feature-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* Feature Description Text */
.luxury-section .feature-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.88rem;
  color: #737373;
  line-height: 1.6;
  font-weight: 400;
}

/* Learn More Button Style */
.luxury-section .btn-learn-more {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f3dfaa 0%, #d8b368 100%);
  color: #000000;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 6px 6px 6px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(220, 184, 115, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.luxury-section .btn-learn-more .btn-label {
  margin-right: 18px;
}

.luxury-section .btn-learn-more .arrow-circle {
  width: 38px;
  height: 38px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Button Hover Animation */
.btn-learn-more:hover {
  background: linear-gradient(135deg, #f8e8be 0%, #e3c178 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 184, 115, 0.4);
}

.btn-learn-more:hover .arrow-circle {
  transform: translateX(3px);
  background-color: #1a1a1a;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
 .luxury-section .main-heading {
    font-size: 2.3rem;
  }
}


.row.space {
    margin-top: 54px;
}







.trusted-experts-section {
  background-color: #000000;
}

/* Subtitle & Main Title */
.trusted-experts-section .section-sub-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #cccccc;
}

.trusted-experts-section .section-main-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
}

/* Custom Nav Tabs Styling */
.trusted-experts-section .custom-tabs {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 3px;
  display: inline-flex;
  width: 100%;
}

.trusted-experts-section .custom-tabs .nav-item {
  flex: 1;
  text-align: center;
}

.trusted-experts-section .custom-tabs .nav-link {
  color: #000000;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  border: none !important;
  border-radius: 4px;
  padding: 8px 16px;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
}

/* Active Tab Styling (Gold Gradient Match) */
.trusted-experts-section .custom-tabs .nav-link.active {
  background: linear-gradient(180deg, #F3E2B8 0%, #E3C17C 100%);
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trusted-experts-section .custom-tab-content {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  min-height: 55px;
}

/* Feature Gold Cards */
.trusted-experts-section .gold-card {
  background: linear-gradient(180deg, #F5E5C0 0%, #D8B26B 100%);
  color: #121212;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} 

.trusted-experts-section .gold-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(216, 178, 107, 0.25);
}

.trusted-experts-section .card-icon-box {
  font-size: 1.5rem;
  color: #000000;
  line-height: 1;
}

.trusted-experts-section .card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.trusted-experts-section .card-desc {
  font-size: 0.82rem;
  color: #3a3a3a;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}

/* Stats Counter Row */
.trusted-experts-section .stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-experts-section .stat-item {
  position: relative;
}

.trusted-experts-section .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.trusted-experts-section .stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.trusted-experts-section .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trusted-experts-section .section-main-heading {
    font-size: 2.2rem;
  }
  .trusted-experts-section .stat-item:not(:last-child)::after {
    display: none;
  }
  .trusted-experts-section .stat-item {
    margin-bottom: 20px;
  }
}