
        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        

    /* Hero Section - Modern Enhanced Version */
    .hero-section {
        background: 
            linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(224, 242, 254, 0.9) 100%),
            url('../assets/images/Hero.jpg') center/cover no-repeat;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
        min-height: 600px; /* Ensure minimum height */
        display: flex;
        align-items: center;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%, 
            rgba(224, 242, 254, 0.8) 0%, 
            rgba(224, 242, 254, 0) 50%);
        z-index: -1;
        animation: pulse 12s infinite alternate;
    }

    .hero-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        margin: 0 auto 1.5rem;
        padding: 0 1rem;
        max-width: 800px;
        width: 100%;
        color: var(--dark);
        position: relative;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-title span {
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

    .hero-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: var(--accent-light);
        z-index: -1;
        opacity: 0.6;
        border-radius: 4px;
        transform: scaleX(0);
        transform-origin: left;
        animation: underlineGrow 1.2s ease-out 0.5s forwards;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--gray);
        margin-bottom: 2.5rem;
        max-width: 600px;
        line-height: 1.7;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.3s forwards;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }

    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.6s forwards;
    }

    /* Feature Cards Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 4rem;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.9s forwards;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease-out;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }

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

    .feature-title {
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--dark);
        font-size: 1.2rem;
    }

    .feature-text {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Buttons */
    .btn {
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn-primary {
        background-color: var(--primary);
        border: 2px solid var(--primary);
        color: white;
        padding: 0.8rem 2rem;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, var(--primary-dark), var(--accent));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-outline-primary {
        color: var(--primary);
        border: 2px solid var(--primary);
        padding: 0.8rem 2rem;
        background-color: transparent;
    }

    .btn-outline-primary:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    /* Image Grid Layout */
    .hero-image-grid {
        position: relative;
        height: 450px;
        margin-top: 4rem;
        perspective: 1000px;
    }

    .hero-img {
        border-radius: 16px;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        position: absolute;
        border: 4px solid white;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
    }

    .hero-img:hover {
        transform: scale(1.05) rotate(2deg);
        z-index: 10;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .img-1 {
        width: 200px;
        height: 200px;
        top: 0;
        left: 0;
        animation: float 6s ease-in-out infinite;
    }

    .img-2 {
        width: 320px;
        height: 180px;
        top: 60px;
        left: 160px;
        animation: float 6s ease-in-out 0.5s infinite;
    }

    .img-3 {
        width: 180px;
        height: 180px;
        top: 220px;
        left: 60px;
        animation: float 6s ease-in-out 1s infinite;
    }

    .img-4 {
        width: 220px;
        height: 220px;
        top: 160px;
        left: 220px;
        animation: float 6s ease-in-out 1.5s infinite;
    }

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

    @keyframes underlineGrow {
        from {
            transform: scaleX(0);
        }
        to {
            transform: scaleX(1);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }
        50% {
            transform: scale(1.05);
            opacity: 0.6;
        }
        100% {
            transform: scale(1);
            opacity: 0.8;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-15px) rotate(1deg);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .hero-section {
            padding: 4rem 0 6rem;
        }
        
        .hero-image-grid {
            height: 350px;
            margin-top: 3rem;
        }
        
        .img-1 { width: 140px; height: 140px; left: 10px; }
        .img-2 { width: 200px; height: 120px; left: 100px; top: 40px; }
        .img-3 { width: 130px; height: 130px; top: 180px; left: 20px; }
        .img-4 { width: 160px; height: 160px; top: 140px; left: 140px; }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-image-grid {
            height: 280px;
        }
        
        .img-1 { width: 120px; height: 120px; }
        .img-2 { width: 160px; height: 90px; left: 80px; top: 30px; }
        .img-3 { width: 110px; height: 110px; top: 150px; left: 10px; }
        .img-4 { width: 130px; height: 130px; top: 120px; left: 100px; }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
        /* ===== Services Section ===== */
        .section {
            padding: 100px 0; /* Increased vertical spacing */
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: clamp(28px, 4vw, 42px); /* Responsive font scaling */
            font-weight: 800; /* Bolder for impact */
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background-color: white;
            border-radius: 12px; /* Smoother corners */
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        /* Subtle border accent */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary);
            transition: height 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            height: 100%;
        }  

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        /* Underline animation */
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .service-card:hover h3::after {
            width: 50px;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .frameworks {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }

        .framework-tag {
            background-color: rgba(30, 100, 235, 0.1);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .framework-tag:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
        .section {
            padding: 70px 0;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .service-card {
            padding: 30px 25px;
        }
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 16px;
        }
        

            /* ===== Modern Document Library ===== */
        .document-library {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
        }

        .tabs {
            display: inline-flex;
            background: white;
            padding: 6px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin: 0 auto 40px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .tab-button {
            padding: 10px 24px;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            color: var(--gray);
            position: relative;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            font-size: 15px;
        }

        .tab-button:hover {
            color: var(--primary);
            background: rgba(59, 130, 246, 0.05);
        }

            .tab-button.active {
            color: var(--primary);
            background: rgba(59, 130, 246, 0.1);
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .document-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(226, 232, 240, 0.7);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
        }

        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-light);
        }

        .document-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .document-card:hover::before {
            opacity: 1;
        }

        .document-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--dark);
            line-height: 1.4;
        }

            .document-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .document-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }

        /* Premium Button Styles */
        .premium-btn {
            /* Base Styles */
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 18px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #4f46e5, #6366f1);
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);    
            text-decoration: none !important;

            /* Arrow Icon (using pseudo-element) */
            padding-right: 48px;
        }

        .premium-btn::after {
            content: "→";
            position: absolute;
            right: 20px;
            transition: transform 0.3s ease;
        }

        /* Glow Effect */
        .premium-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(79, 70, 229, 0.4) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        /* Hover Effects */
            .premium-btn:hover {
            background: linear-gradient(135deg, #4338ca, #5b5fe8);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
            animation: pulse 1.5s infinite;
        }

        .premium-btn:hover::after {
            transform: translateX(4px);
        }

        .premium-btn:hover::before {
            opacity: 1;
        }

            /* Active State */
        .premium-btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
            transition: all 0.1s ease;
        }

            /* Pulse Animation */
        @keyframes pulse {
            0% { transform: translateY(-2px) scale(1); }
            50% { transform: translateY(-2px) scale(1.02); }
            100% { transform: translateY(-2px) scale(1); }
        }
                
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
                
        .price {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
        }

        .free-badge {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(30, 100, 235, 0.2);
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .tabs {
                flex-wrap: wrap;
                border-radius: 12px;
                padding: 8px;
            }
            
            .tab-button {
                padding: 8px 16px;
                font-size: 14px;
            }
            
            .documents-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .document-card {
            background: linear-gradient(to bottom, #ffffff, #f9fafb);
        }
            
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 24px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            transition: transform 0.3s ease;
        }
        
        /* Show first 6 cards in All Documents view */
        .document-card:nth-child(-n+6) {
            display: block;
        }

        .tab-button.active::after {
            transform: translateX(-50%) scaleX(1);
        }
            
        .download-btn:active {
            transform: scale(0.97);
            box-shadow: none;           
        }

            /* Badges */
        .free-badge {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(30, 100, 235, 0.2);
        }

        .premium-badge {
            background: linear-gradient(135deg, #8b5cf6, #6d28d9);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
        }
            
        .tabs {
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
        }
            
        .tabs::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }
            
        .tab-button {
            display: inline-block;
            
        }
            
        .document-card.frameworks::before { background: #3b82f6; }            
        .document-card.templates::before { background: #10b981; }            
        .document-card.guides::before { background: #f59e0b; }

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6366f1, #3b82f6);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient shift on hover */
.explore-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.55);
}

/* Arrow icon that slides */
.explore-btn::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.35s ease;
}

.explore-btn:hover::after {
  transform: translateX(6px);
}

/* Subtle glowing animation */
@keyframes glowPulse {
  0% { box-shadow: 0 0 0 rgba(99, 102, 241, 0.4); }
  50% { box-shadow: 0 0 15px rgba(99, 102, 241, 0.6); }
  100% { box-shadow: 0 0 0 rgba(99, 102, 241, 0.4); }
}

.explore-btn {
  animation: glowPulse 3s infinite ease-in-out;
}

   
    /* ===== Modern Blog Section ===== */
        .blog-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            padding: 20px 0;
        }

        .blog-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .blog-image {
            height: 220px;
            background-color: #f1f5f9;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .blog-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-card:hover .blog-image::after {
            opacity: 1;
        }

        .blog-content {
            padding: 25px;
            position: relative;
        }

        .blog-category {
            position: absolute;
            top: -15px;
            left: 25px;
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(30, 100, 235, 0.2);
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin: 15px 0 12px;
            line-height: 1.4;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .blog-card:hover h3 {
            color: var(--primary);
        }

        .blog-excerpt {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: var(--gray-light);
            margin-bottom: 20px;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .read-more svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .read-more:hover {
            color: var(--primary-dark);
        }

        .read-more:hover svg {
            transform: translateX(3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .blog-image {
                height: 200px;
            }
        }

        /* Lead Capture */
        .lead-capture {
            background: 
                linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(224, 242, 254, 0.9) 100%),
                url('../assets/images/Hero.jpg') center/cover no-repeat;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
            border-radius: 12px;
            margin: 80px 0;
        }
        
        .lead-capture h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .lead-capture p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .email-form {
            max-width: 500px;
            margin: 0 auto;
            align-items: center;
        }
        
        .email-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 16px;
            margin-bottom: 15px;
            align-items: center;
        }
        

        @keyframes wave {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
                
        /* Apply to all sections except footer */
        section:not(footer) {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        section.animate-in {
        opacity: 1;
        transform: translateY(0);
        }
        
                /* Add pointer cursor to all clickable elements */
        .logo, .nav-links a, .cta-button {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Active link styling */
        .nav-links a.active {
            color: #2563eb; /* Your primary color */
            font-weight: 600;
        }

        /* Hover effects */
        .nav-links a:hover:not(.active) {
            color: #2563eb; /* Your primary color */
            transform: translateY(-2px);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }