/* Reset and Base Styles */

/* Performance optimizations for smooth experience */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on form inputs */
input, select, textarea {
    font-size: 16px !important;
}

/* GPU acceleration for smooth animations */
.hero, .service-card, .benefit-item, .pricing-card, .contact-form, .step-content {
    will-change: transform;
    transform: translateZ(0);
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Completely disable zoom and horizontal scrolling */
html, body {
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #64748b, #475569, #334155);
    border-radius: 1px;
    opacity: 0.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.2);
    cursor: pointer;
    letter-spacing: 0.015em;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    border-color: rgba(148, 163, 184, 0.3);
}

.cta-button-large {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    animation: float 2s ease-in-out infinite;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4b5563;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    animation: float-bg 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-bg {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        rgba(99, 102, 241, 0.1) 0deg,
        rgba(139, 92, 246, 0.1) 60deg,
        rgba(236, 72, 153, 0.1) 120deg,
        rgba(251, 146, 60, 0.1) 180deg,
        rgba(34, 197, 94, 0.1) 240deg,
        rgba(59, 130, 246, 0.1) 300deg,
        rgba(99, 102, 241, 0.1) 360deg
    );
    animation: rotate-gradient 20s linear infinite;
    z-index: 0;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(236, 72, 153, 0.1) 30%,
        rgba(251, 146, 60, 0.08) 60%,
        transparent 100%
    );
    border-radius: 50%;
    animation: float-colorful 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-colorful {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-10px) scale(0.9);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(
        45deg,
        rgba(99, 102, 241, 0.2),
        rgba(139, 92, 246, 0.2),
        rgba(236, 72, 153, 0.2)
    );
    border-radius: 50%;
    animation: orbit 15s linear infinite;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.2),
        rgba(59, 130, 246, 0.2),
        rgba(251, 146, 60, 0.2)
    );
    border-radius: 50%;
    animation: orbit-reverse 12s linear infinite;
    z-index: -1;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes orbit-reverse {
    0% {
        transform: rotate(0deg) translateX(-80px) rotate(0deg);
    }
    100% {
        transform: rotate(-360deg) translateX(-80px) rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}



.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}



.hero-gradient-text {
    background: linear-gradient(
        45deg,
        #22c55e 0%,
        #3b82f6 25%,
        #8b5cf6 50%,
        #ec4899 75%,
        #f97316 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #f1f5f9;
    margin-bottom: 3rem;
    line-height: 1.75;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0.3;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(148, 163, 184, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(148, 163, 184, 0.3);
}

.service-icon {
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}



/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="process-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23cbd5e1" opacity="0.3"/><circle cx="15" cy="15" r="1" fill="%23e2e8f0" opacity="0.4"/><circle cx="45" cy="45" r="1" fill="%23cbd5e1" opacity="0.2"/></pattern></defs><rect width="60" height="60" fill="url(%23process-pattern)"/></svg>') repeat;
    opacity: 0.4;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #cbd5e1, #94a3b8, #cbd5e1);
    transform: translateX(-50%);
    opacity: 0.6;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 2rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
    border: 3px solid rgba(148, 163, 184, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(20px);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}



/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="0" cy="0" r="0.5" fill="%23cbd5e1" opacity="0.15"/><circle cx="50" cy="50" r="0.5" fill="%23cbd5e1" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>') repeat;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stats-grid-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(148, 163, 184, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.025em;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(148, 163, 184, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e293b, #334155, #475569);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15), 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(148, 163, 184, 0.3);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.pricing-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.benefit-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(148, 163, 184, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: transform 0.6s ease;
    transform: rotate(0deg);
}

.benefit-item:hover::before {
    transform: rotate(180deg);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1), 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(148, 163, 184, 0.25);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="200" height="200" fill="url(%23contact-pattern)"/></svg>') repeat;
    opacity: 0.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.contact-form:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}



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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-links a,
.footer-contact p {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Mobile Responsive Design - Scaled for Smooth Luxury Experience */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Container scaling */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    /* Header scaling */
    .header {
        padding: 0.3rem 0;
        min-height: 40px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    /* Hide CTA button on mobile */
    .cta-button {
        display: none;
    }
    
    /* Hero Section - Scaled for mobile luxury */
    .hero {
        padding: 120px 0 60px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
        min-height: 70vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 2.5rem;
        line-height: 1.4;
        color: #ffffff;
        letter-spacing: -0.025em;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        color: #f1f5f9;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    

    
    .hero-stats {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 2rem;
    }
    
    .hero-stats .stat-item {
        text-align: center;
        flex: 1;
        min-width: 100px;
        max-width: 120px;
    }
    
    .hero-stats .stat-number {
        display: block;
        font-size: 1.3rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
        color: #64748b;
        font-weight: 500;
    }
    
    /* Section Titles - Scaled */
    .section-title {
        font-size: 2.4rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 3rem;
        color: #1f2937;
        position: relative;
        display: inline-block;
        width: 100%;
        letter-spacing: -0.02em;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    /* Services Section - Scaled */
    .services {
        padding: 80px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        position: relative;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .service-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2.5rem;
        border-radius: 24px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.04);
        border: 2px solid rgba(148, 163, 184, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(25px);
    }
    
    .service-icon {
        color: #ffffff;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        border-radius: 50%;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        transition: all 0.4s ease;
    }
    
    /* Process Section - Scaled */
    .process {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
        position: relative;
    }
    
    .process-timeline {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }
    
    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 800;
        margin: 0 0 1.5rem 0;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
        border: 3px solid rgba(148, 163, 184, 0.2);
        position: relative;
        z-index: 2;
    }
    
    .step-content {
        flex: 1;
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(148, 163, 184, 0.1);
        backdrop-filter: blur(20px);
        max-width: 100%;
    }
    
    /* Stats Section - Scaled */
    .stats {
        padding: 80px 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
        position: relative;
    }
    
    .stats-grid-three {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        backdrop-filter: blur(20px);
        transition: all 0.4s ease;
    }
    
    .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: #e2e8f0;
        margin-bottom: 0.3rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.02em;
    }
    
    .stat-label {
        font-size: 0.85rem;
        color: #cbd5e1;
        font-weight: 500;
        letter-spacing: 0.025em;
    }
    
    /* Pricing Section - Scaled */
    .pricing {
        padding: 80px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        position: relative;
    }
    
    .pricing-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2.5rem;
        border-radius: 24px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 2px solid rgba(148, 163, 184, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(20px);
    }
    
    /* Why Choose Section - Scaled */
    .why-choose {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
        position: relative;
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .benefit-item {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2.5rem;
        border-radius: 24px;
        text-align: center;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(0, 0, 0, 0.04);
        border: 2px solid rgba(148, 163, 184, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(25px);
    }
    
    .benefit-icon {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        display: inline-block;
        padding: 1rem;
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        border-radius: 50%;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }
    
    /* Contact Section - Scaled */
    .contact {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }
    
    .contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
        position: relative;
        z-index: 1;
    }
    
    .contact-form {
        background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
        padding: 2.5rem;
        border-radius: 24px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
    }
    
    /* Footer - Scaled */
    .footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
        padding: 60px 0 20px;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Container scaling for small screens */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Header scaling for small screens */
    .header {
        padding: 0.2rem 0;
        min-height: 35px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    /* Hide CTA button on small mobile */
    .cta-button {
        display: none;
    }
    
    /* Hero Section - Optimized for small screens */
    .hero {
        padding: 100px 0 40px;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
        min-height: 60vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
        font-weight: 900;
        margin-bottom: 2rem;
        line-height: 1.4;
        color: #ffffff;
        letter-spacing: -0.025em;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        color: #f1f5f9;
        margin-bottom: 2rem;
        line-height: 1.5;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    

    
    .hero-stats {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-stats .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
        max-width: 100px;
    }
    
    .hero-stats .stat-number {
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0.1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
        color: #64748b;
        font-weight: 500;
    }
    
    /* Section Titles - Optimized for small screens */
    .section-title {
        font-size: 2rem;
        font-weight: 800;
        text-align: center;
        margin-bottom: 2.5rem;
        color: #1f2937;
        position: relative;
        display: inline-block;
        width: 100%;
        letter-spacing: -0.02em;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    /* All Sections - Optimized for small screens */
    .services {
        padding: 60px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        position: relative;
    }
    
    .process {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
        position: relative;
    }
    
    .stats {
        padding: 60px 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
        position: relative;
    }
    
    .pricing {
        padding: 60px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        position: relative;
    }
    
    .why-choose {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
        position: relative;
    }
    
    .contact {
        padding: 60px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }
    
    /* Cards - Optimized for small screens */
    .service-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.04);
        border: 2px solid rgba(148, 163, 184, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(25px);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-item {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(0, 0, 0, 0.04);
        border: 2px solid rgba(148, 163, 184, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(25px);
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .pricing-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 2px solid rgba(148, 163, 184, 0.2);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(20px);
    }
    
    .contact-form {
        background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid rgba(148, 163, 184, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
    }
    
    /* Stats grid for small screens */
    .stats-grid-three {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Process steps for small screens */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}



.hero-accent {
    color: #2563eb;
    position: relative;
}



.hero-gradient {
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}



.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* New Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}



