/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Mulish', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== VARIABLES ===== */
:root {
  --navy: #002D5B;
  --navy-dark: #001A36;
  --gold: #D59247;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --primary: #002D5B;
  --primary-light: #e6f0fa;
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  /* Increased for the large menu */
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

/* MENU & DROPDOWN */
.nav-menu {
  display: flex !important;
  gap: 20px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  padding: 15px 0;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-item>a i {
  margin-left: 5px;
  font-size: 10px;
  opacity: 0.6;
}

/* First Level Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--white);
  top: 100%;
  left: 0;
  min-width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 1001;
  border-top: 3px solid var(--gold);
}

.nav-item:hover>.dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.dropdown-link:hover {
  color: var(--gold);
  background: #fafafa;
}

.dropdown-link i {
  font-size: 10px;
  opacity: 0.5;
}

/* Second Level Dropdown (Nested) */
.submenu {
  display: none;
  position: absolute;
  background: var(--white);
  top: 0;
  left: 100%;
  min-width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  border-left: 3px solid var(--gold);
}

.dropdown-item:hover>.submenu {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-btn {
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}

.header-btn:hover {
  background: var(--navy);
}

.mobile-menu-footer {
  display: none !important;
}

.mobile-nav-toggle {
  display: none !important;
}

/* ===== PREMIUM MOBILE NAV TOGGLE ===== */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1200;
  padding: 0;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 3px;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 0;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ===== MODERN RESPONSIVE HEADER ===== */
@media (max-width: 991px) {
  header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .mobile-nav-toggle {
    display: block !important;
    order: 2;
  }

  .header-container {
    padding: 15px 20px;
    justify-content: space-between !important;
  }

  .header-btn {
    display: none !important;
  }

  .logo {
    order: 1;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column !important;
    padding: 100px 40px 40px;
    gap: 0;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1100;
    overflow-y: auto;
    display: none !important;
    /* Hide by default on mobile */
    opacity: 0;
    visibility: hidden;
  }

  .mobile-nav-active .nav-menu {
    left: 0;
    display: flex !important;
    /* Show only when active */
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-footer {
    display: flex !important;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gold);
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
  }

  .mobile-nav-active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
  }

  .dropdown-menu,
  .submenu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0 0 15px 20px;
    background: transparent;
  }

  .nav-item.active>.dropdown-menu,
  .dropdown-item.active>.submenu {
    display: block;
  }

  .dropdown-link {
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--gold);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-cta-btn {
    background: var(--navy);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== INTERNAL PAGE HERO ===== */
.page-hero {
  margin-top: 80px;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.badge {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

/* ===== GRID & CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--gray-light);
}

.text-center {
  text-align: center;
}

.align-center {
  align-items: center;
}

/* ===== CARDS ===== */
.feature-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ===== IMAGES ===== */
.rounded-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== INFO BANNER ===== */
.info-banner {
  background: var(--navy);
  color: white;
  padding: 60px 0;
}

/* ===== FOOTER SIMPLE ===== */
.footer-simple {
  background: var(--navy-dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* ===== SERVICE PAGES LAYOUT ===== */
.internal-hero {
  margin-top: 80px;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.internal-hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  padding: 80px 0;
}

.sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.service-nav {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-nav h4 {
  color: var(--navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}

.service-nav ul li a {
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.service-nav ul li a.active,
.service-nav ul li a:hover {
  background: var(--navy);
  color: var(--white);
}

.main-content img {
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
}

.content-text h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

@media (max-width: 1024px) {

  .nav-menu,
  .header-btn {
    display: none !important;
  }

  .header-container {
    justify-content: center !important;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .sidebar,
  .sidebar-premium {
    display: none;
  }

  .hero-split {
    padding: 80px 20px 40px;
    text-align: center;
  }

  .hero-split h1 {
    font-size: 2.2rem;
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-tag::before {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-image-wrapper {
    margin-top: 40px;
  }

  .hero-image-wrapper img {
    max-width: 80%;
    margin: 0 auto;
  }

  .section-header-modern h2 {
    font-size: 1.8rem;
  }

  .process-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .process-number {
    margin: 0 auto;
  }
}

/* ===== MODERN UI ADDITIONS ===== */

/* Glassmorphism */
.glass-sidebar {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 45, 91, 0.05) !important;
}

/* Premium Gradients */
.bg-premium {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.text-gradient {
  background: linear-gradient(to right, var(--gold), #f3e5ab);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.benefit-card-modern {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 4px solid transparent;
}

.benefit-card-modern:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 50px rgba(207, 177, 109, 0.15);
}

.benefit-card-modern i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 20px rgba(207, 177, 109, 0.4);
}

.process-content {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  width: 100%;
}

.process-content h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.zoom-bg {
  overflow: hidden;
}

.zoom-bg img {
  transition: transform 6s ease;
}

.zoom-bg:hover img {
  transform: scale(1.1);
}

/* Section Header Modern */
.section-header-modern {
  margin-bottom: 50px;
}

.section-header-modern .sub-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-header-modern h2 {
  font-size: 2.5rem;
  color: var(--navy);
  position: relative;
}

/* ===== SPLIT HERO ===== */
.hero-split {
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
  margin-top: 80px;
}

.hero-split .grid {
  align-items: center;
}

.hero-tag {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-split h1 {
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-split p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  animation: morph 8s ease-in-out infinite;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* ===== PREMIUM FLOATING SIDEBAR ===== */
.sidebar-premium {
  position: sticky;
  top: 120px;
  padding: 0;
}

.service-list-modern {
  background: var(--white);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
}

.service-list-modern h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-modern ul li {
  margin-bottom: 12px;
}

.service-list-modern ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  color: #555;
  font-weight: 600;
  transition: 0.3s;
}

.service-list-modern ul li a i {
  width: 30px;
  height: 30px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy);
  transition: 0.3s;
}

.service-list-modern ul li a.active,
.service-list-modern ul li a:hover {
  background: var(--navy);
  color: white;
  transform: translateX(5px);
}

.service-list-modern ul li a.active i,
.service-list-modern ul li a:hover i {
  background: var(--gold);
  color: var(--white);
}

.sidebar-contact-card {
  margin-top: 30px;
  background: var(--navy);
  border-radius: 25px;
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-contact-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sidebar-contact-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.sidebar-contact-card .btn-sm {
  width: 100%;
  background: var(--gold);
  color: white;
}

/* Section Header Modern */
.section-header-modern {
  margin-bottom: 50px;
}

.section-header-modern .sub-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-header-modern h2 {
  font-size: 2.5rem;
  color: var(--navy);
  position: relative;
}

/* ===== SPLIT HERO ===== */
.hero-split {
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
  margin-top: 80px;
}

.hero-split .grid {
  align-items: center;
}

.hero-tag {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero-split h1 {
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-split p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  animation: morph 8s ease-in-out infinite;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }

  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* ===== PREMIUM FLOATING SIDEBAR ===== */
.sidebar-premium {
  position: sticky;
  top: 120px;
  padding: 0;
}

.service-list-modern {
  background: var(--white);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
}

.service-list-modern h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-modern ul li {
  margin-bottom: 12px;
}

.service-list-modern ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  color: #555;
  font-weight: 600;
  transition: 0.3s;
}

.service-list-modern ul li a i {
  width: 30px;
  height: 30px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy);
  transition: 0.3s;
}

.service-list-modern ul li a.active,
.service-list-modern ul li a:hover {
  background: var(--navy);
  color: white;
  transform: translateX(5px);
}

.service-list-modern ul li a.active i,
.service-list-modern ul li a:hover i {
  background: var(--gold);
  color: var(--white);
}

.sidebar-contact-card {
  margin-top: 30px;
  background: var(--navy);
  border-radius: 25px;
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-contact-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sidebar-contact-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.sidebar-contact-card .btn-sm {
  width: 100%;
  background: var(--gold);
  color: white;
}

/* ===== HOMEPAGE SPECIFIC COMPONENTS ===== */

/* ===== HERO PREMIUM REDESIGN ===== */
.hero {
  height: 90vh;
  /* Reduced by 10% */
  width: 100%;
  background: url('assets/img/bde8b79ea3eb221bd782682a5328be88-min-1-1.jpeg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered for classic premium look */
  text-align: center;
  color: #ffffff;
  position: relative;
  margin-top: 0;
  /* Remove top margin, let header float over */
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 26, 54, 0.85) 0%, rgba(0, 45, 91, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 1000px;
  padding: 0 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  /* Offset for header */
}

.hero-subtitle {
  display: inline-block;
  font-size: 1.1rem;
  /* Increased from 14px */
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 25px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-size: 5.5rem;
  /* Increased from 4rem */
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
  opacity: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-title .text-gold {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.5rem;
  /* Increased from 1.25rem */
  margin-bottom: 45px;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
  transform: scale(1.1);
  /* Slightly larger buttons */
}

.hero-btn.primary {
  background: var(--gold);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(213, 146, 71, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn.primary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-badge .stars {
  color: #FFD700;
  font-size: 14px;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
    /* Was 2.5rem */
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 1.25rem;
    /* Was 1.1rem */
    padding: 0 10px;
  }

  .hero-btn.primary {
    padding: 15px 35px;
    width: 100%;
    justify-content: center;
  }
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-item p {
  color: #666;
  font-weight: 600;
}

/* Modern Section Headers */
.section-center-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(213, 146, 71, 0.3);
}

.step-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.service-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Testimonials / Swiper */
.testimonials-slider {
  padding: 40px 20px 80px;
}

.review-card-modern {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card-modern .stars {
  color: #FFD700;
  margin-bottom: 20px;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  flex-grow: 1;
}

.reviewer h4 {
  color: var(--navy);
  margin-bottom: 5px;
}

.reviewer span {
  color: #888;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .process-grid,
  .services-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

