        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1A237E;
            --accent: #FFD700;
            --background: #FFFFFF;
            --foreground: #0D1B4C;
            --muted: #6B7280;
            --border: #E5E7EB;
            --selection-bg: #FFB6C1;
            --card-bg: #FFFFFF;
            --shadow-elegant: 0 10px 40px -10px rgba(26, 35, 126, 0.2);
            --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
        }
        .vertical-line {
            border-left: 2px solid black; /* Adjust thickness, style, and color */
            height: 20px; /* Adjust height as needed */
            margin: 1px; /* Optional: Add some spacing */
}
        ::selection {
            background-color: var(--selection-bg);
            color: var(--foreground);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--background);
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom-color: var(--accent);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
        }

        .logo-text h1 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--muted);
        }

        nav {
            display: flex;
            gap: 1.5rem;
        }

        nav a {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        nav a:hover {
            color: var(--accent);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 5rem;
            background: linear-gradient(to bottom, rgba(26, 35, 126, 0.03), transparent);
            position: relative;
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .hero::before {
            top: 5rem;
            left: 2.5rem;
            width: 128px;
            height: 128px;
            background: rgba(255, 215, 0, 0.05);
        }

        .hero::after {
            bottom: 5rem;
            right: 2.5rem;
            width: 160px;
            height: 160px;
            background: rgba(26, 35, 126, 0.05);
        }

        .hero-content {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 10;
            animation: fadeIn 0.6s ease-out;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 7vw, 4.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-gradient {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            color: var(--muted);
            margin-bottom: 3rem;
            font-style: italic;
            font-weight: 300;
        }

        .tab-container {
            display: inline-flex;
            gap: 1rem;
            padding: 0.5rem;
            background: var(--card-bg);
            border-radius: 1rem;
            box-shadow: var(--shadow-elegant);
            border: 2px solid rgba(255, 215, 0, 0.2);
        }

        .tab-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            color: var(--foreground);
        }

        .tab-button.active {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-gold);
        }

        .tab-button:not(.active):hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--accent);
        }

        .hero-badges {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.875rem;
            color: var(--muted);
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeIn 0.6s ease-out;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: var(--muted);
        }

        .divider {
            width: 128px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            margin: 1rem auto;
        }

        /* Service Cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: var(--card-bg);
            border: 2px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-gold);
            border-color: var(--accent);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .service-card p {
            font-size: 0.875rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* Forms */
        .form-container {
            max-width: 640px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: 1rem;
            box-shadow: var(--shadow-elegant);
            border: 2px solid rgba(255, 215, 0, 0.2);
            padding: 2rem;
        }

        .form-container h3 {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--foreground);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-button {
            width: 100%;
            padding: 1.5rem;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }

        .adaptive-fields {
            animation: fadeIn 0.3s ease-out;
        }

        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(to bottom, rgba(26, 35, 126, 0.03), transparent);
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 1rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 2px solid rgba(255, 215, 0, 0.2);
            border-radius: 1rem;
            box-shadow: var(--shadow-elegant);
            padding: 2rem;
            text-align: center;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .star {
            color: var(--accent);
            fill: var(--accent);
        }

        .testimonial-text {
            font-size: 1.125rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.125rem;
        }

        .author-info {
            text-align: left;
        }

        .author-name {
            font-weight: 600;
            color: var(--foreground);
        }

        .author-role {
            font-size: 0.875rem;
            color: var(--muted);
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .indicator {
            height: 8px;
            border-radius: 4px;
            background: var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 32px;
            background: var(--accent);
        }

        .indicator:not(.active) {
            width: 8px;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hidden class for tab content */
        .hidden {
            display: none;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 2rem;
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            animation: slideIn 0.3s ease-out;
            display: none;
        }

        .notification.show {
            display: block;
        }

        @keyframes slideIn {
            from {
                transform: translateX(400px);
            }
            to {
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .tab-container {
                flex-direction: column;
                width: 100%;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  transition: opacity 0.3s;
}


/* ===============================
   Responsive Navigation Styles
   =============================== */

/* Basic hamburger (menu button) */
.hamburger {
  display: none; /* Hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1rem; /* Show on right side of header */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

/* Make Lucide menu icon visible and large enough */
.hamburger svg {
  width: 28px;
  height: 28px;
  stroke: var(--foreground, #0D1B4C);
}

/* Mobile nav container (initially hidden) */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 84px; /* adjust if header taller */
  right: 0;
  left: 0;
  background: #ffffff; /* Lighter background for contrast */
  padding: 1.25rem;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  gap: 1rem;
}

/* Mobile nav links */
.mobile-nav a {
  color: var(--foreground, #0D1B4C);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--accent, #FFD700);
}

/* When menu is open */
.mobile-nav.open {
  display: flex;
}

/* Prevent page scroll when mobile menu is open */
.no-scroll {
  overflow: hidden;
}

/* ===============================
   Responsive Visibility Rules
   =============================== */

@media (max-width: 900px) {
  /* Hide the desktop nav on mobile */
  nav:not(#mobileNav) {
    display: none;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: inline-flex;
  }
}

/* ===============================
   Optional header alignment fix
   =============================== */
.header-container {
  position: relative;
}

/* If you want the nav links in center and logo left, add this */
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Example color variable fallbacks */
:root {
  --primary: #1A237E;
  --accent: #FFD700;
  --foreground: #0D1B4C;
}
