  /* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1E3A8A;
            --primary-light: #3B82F6;
            --primary-dark: #1E40AF;
            --foreground: #111827;
            --foreground-light: #374151;
            --background: #FFFFFF;
            --light-grey: #F9FAFB;
            --grey: #E5E7EB;
            --dark-grey: #6B7280;
            --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--foreground);
            background-color: var(--background);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Nunito Sans', sans-serif;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            letter-spacing: -0.01em;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 100rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* FIXED Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 100rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--foreground);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: none;
            margin-left: auto;
        }

        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
                gap: 2rem;
                align-items: center;
            }
        }

        .nav-link {
            color: #374151;
            font-weight: 600;
            font-size: 0.875rem;
            position: relative;
            padding: 0.5rem 0;
        }
        .nav-link:hover {
            color: var(--foreground);
        }

        /* Partners Dropdown Styling */
        .nav-item-dropdown {
            position: relative;
        }
        .nav-dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            border-radius: 8px;
            border: 1px solid #E5E7EB;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 0.5rem 0;
        }
        .nav-item-dropdown:hover .nav-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            font-weight: 600;
            font-size: 0.875rem;
        }
        .nav-dropdown-item:hover {
            background-color: #F9FAFB;
            color: var(--foreground);
        }

       
        .cta-button {
            background: linear-gradient(135deg, var(--foreground) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 0.875rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            cursor: pointer;
            font-family: 'Nunito Sans', sans-serif;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 1.5rem;
            background-color: white;
            min-width: 250px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #E5E7EB;
            z-index: 1001;
        }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--foreground);
            border-bottom: 1px solid #F9FAFB;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .menu-toggle {
                display: none;
            }
        }

        /* ========== CONTACT HERO SECTION ========== */
        .contact-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: white;
            padding-top: 120px;
            padding-bottom: 100px;
            text-align: center;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
            z-index: 1;
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--foreground) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (min-width: 768px) {
            .contact-hero h1 {
                font-size: 4rem;
            }
        }

        .contact-hero p {
            font-size: 1.25rem;
            color: var(--dark-grey);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* ========== CONTACT DETAILS SECTION ========== */
        .contact-details {
            padding: 6rem 0;
            background-color: var(--light-grey);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Equal sized boxes */
        .contact-card {
            background: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            border: 1px solid var(--grey);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-card h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--foreground);
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            flex-grow: 1;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .contact-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 1rem;
            background: rgba(30, 58, 138, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background: var(--primary);
            color: white;
            transform: rotate(45deg);
        }

        .contact-content {
            flex-grow: 1;
        }

        .contact-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .contact-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
            display: block;
            text-decoration: none;
            word-break: break-all;
        }

        .contact-description {
            font-size: 0.9375rem;
            color: var(--dark-grey);
            line-height: 1.4;
        }

        /* ========== CONTACT FORM SECTION ========== */
        .contact-form-section {
            padding: 6rem 0;
            background-color: white;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .form-container h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--foreground);
            text-align: center;
        }

        .contact-form {
            background: var(--light-grey);
            padding: 2.5rem;
            border-radius: 1.5rem;
            border: 1px solid var(--grey);
        }

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

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

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--grey);
            border-radius: 0.75rem;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }

        .submit-button {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--foreground) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 9999px;
            font-family: 'Nunito Sans', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
        }

        /* Success message styling */
        .success-message {
            display: none;
            padding: 1.5rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 0.75rem;
            color: #065f46;
            margin-top: 1.5rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

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

        /* ========== FOOTER ========== */
        .footer {
            background: var(--foreground);
            color: white;
            padding: 5rem 0 2.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 3rem;
        }
        .footer h3 {
            font-size: 1.75rem;
            color: white;
        }
        .footer h4 {
            font-size: 1.1rem;
            color: var(--primary-light);
            margin-bottom: 1.25rem;
        }
        .footer p, .footer a {
            color: #9CA3AF;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            display: block;
        }
        .footer a:hover {
            color: white;
        }
        .footer-bottom {
            margin-top: 5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }
        
        .footer-bottom p {
            color: #9CA3AF;
            margin-bottom: 0;
        }
        
        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-legal a {
            color: #9CA3AF;
            font-size: 0.9rem;
        }
        
        .footer-legal a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            font-size: 1.25rem;
            color: #9CA3AF;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: white;
        }

        /* Animations */
        .animate-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }
        .animate-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 480px) {

    /* Header */
    .header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Contact Hero */
    .contact-hero {
        min-height: 50vh;
        padding-top: 250px;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    /* Contact Section */
    .contact-details {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 1.75rem;
    }

    .contact-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .contact-value {
        font-size: 1.2rem;
    }

    /* Form Section */
    .contact-form-section {
        padding: 3.5rem 0;
    }

    .form-container h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    /* Footer */
    .footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-bottom {
        gap: 1rem;
        text-align: center;
    }
}


@media (min-width: 481px) and (max-width: 1023px) {

    /* Header */
    .header {
        padding: 0.85rem 0;
    }

    /* Contact Hero */
    .contact-hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .contact-hero h1 {
        font-size: 3.25rem;
    }

    .contact-hero p {
        font-size: 1.15rem;
    }

    /* Contact Grid */
    .contact-details {
        padding: 5rem 0;
    }

    .contact-card {
        padding: 2.25rem;
    }

    .contact-card h2 {
        font-size: 1.9rem;
    }

    /* Form */
    .contact-form-section {
        padding: 5rem 0;
    }

    .form-container h2 {
        font-size: 2.25rem;
    }

    /* Footer */
    .footer-content {
        gap: 2.5rem;
    }
}

/* ============================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ============================================================ */

/* --- TABLETS & SMALL LAPTOPS (1024px and below) --- */
@media (max-width: 1024px) {
    .part-discovery-container {
        padding: 0 2rem;
    }

    .component-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* --- MOBILE DEVICES (768px and below) --- */
@media (max-width: 768px) {
    /* Hide Desktop Nav, enable Hamburger */
    .nav-links {
        display: none; 
    }

    .menu-toggle {
        display: block; 
    }

    /* Hero Section adjustments */
    .discovery-hero {
        padding: 120px 1.5rem 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto;
    }

    /* Grid becomes single column */
    .component-grid {
        grid-template-columns: 1fr; 
        gap: 1.25rem;
    }

    .layer-header {
        padding: 1.25rem;
    }

    /* Search Bar */
    .search-container {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Detail Modal (Pop-up) responsive fixes */
    .modal-content {
        width: 95%;
        margin: 10px auto;
        padding: 1.5rem;
        max-height: 90vh; /* Prevents modal from going off-screen */
        overflow-y: auto; /* Adds scroll inside modal if content is long */
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    /* Footer stacking */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* --- SMALL PHONES (480px and below) --- */
@media (max-width: 480px) {
    .primary-button, .secondary-button, .cta-button {
        width: 100%; /* Full width buttons for easier tapping */
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }
    
    .part-discovery-header h2 {
        font-size: 1.5rem;
    }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================================
   CONTACT HERO – MOVING BACKGROUND IMAGE
   (IMAGE OPACITY ONLY – CONTENT UNAFFECTED)
========================================= */

.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-top: 120px;
  padding-bottom: 100px;
  text-align: center;

  background: none;              /* ❌ remove background-image */
  overflow: hidden;
}

/* Moving background image */
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('https://static.wixstatic.com/media/3d4c2a_2f337be5b7da445db58a7946af6d1fe4~mv2.jpg');
  background-repeat: repeat-x;
  background-position: 0% 50%;
  background-size: 75% auto;

  opacity: 0.15;                 /* ✅ IMAGE OPACITY ONLY */
  animation: gradientShift 10s linear infinite;

  z-index: 0;
  pointer-events: none;
}

/* Soft white wash (optional but recommended for readability) */
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);  /* light wash */
  z-index: 1;
  pointer-events: none;
}

/* Content stays 100% opaque */
.contact-hero > * {
  position: relative;
  z-index: 2;
}

/* ================= MOBILE TUNING ================= */
@media (max-width: 767px) {
  .contact-hero {
    min-height: 50vh;
    padding-top: 250px;
    padding-bottom: 80px;
  }

  .contact-hero::before {
    background-size: cover;
    animation-duration: 30s;
    opacity: 0.14;              /* slightly softer on small screens */
  }
}