
        :root {
            --primary: #65A30D;
            --secondary: #A3E635;
            --accent: #D9F99D;
            --bg-light: #F7FEE7;
            --dark: #14532d;
            --text: #166534;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #65A30D 0%, #A3E635 100%);
            --gradient-2: linear-gradient(135deg, #D9F99D 0%, #F7FEE7 100%);
            --neon-glow: 0 0 20px rgba(101, 163, 13, 0.5);
            --glass: rgba(255, 255, 255, 0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            /*background: var(--bg-light);*/
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--bg-light); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(101, 163, 13, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-menu li{
            margin-left:30px !important;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .logo:hover { transform: scale(1.05); }

        .logo i {
            font-size: 2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after { width: 100%; }
        .nav-menu a:hover { color: var(--primary); }

        .cta-btn {
            background: var(--gradient-1);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            box-shadow: var(--neon-glow);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(101, 163, 13, 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 4rem 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--gradient-1);
            border-radius: 50%;
            opacity: 0.1;
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--text);
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1s ease 0.6s both;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(101, 163, 13, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            animation: float 4s ease-in-out infinite;
        }

        .floating-card.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
        .floating-card.card-2 { bottom: 20%; right: -5%; animation-delay: 2s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Section Styles */
        section { padding: 5rem 2rem; }
        .container { max-width: 1400px; margin: 0 auto; }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* About Section */
        .about { background: var(--white); }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .about-card {
            background: var(--gradient-2);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(101, 163, 13, 0.2);
        }

        .about-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Milestones */
        .milestones {
            background: var(--gradient-1);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .milestones::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            opacity: 0.3;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }

        .milestone-item:hover { transform: translateY(-5px); }

        .milestone-number {
            font-size: 3.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        .milestone-label { font-size: 1.1rem; opacity: 0.9; }

        /* Features Section */
        .features { background: var(--bg-light); }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .feature-card:hover::before { opacity: 1; }
        .feature-card > * { position: relative; z-index: 1; }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(101, 163, 13, 0.3);
            border-color: var(--primary);
        }

        .feature-card:hover h3,
        .feature-card:hover p,
        .feature-card:hover i { color: var(--white); }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--white);
            transform: rotateY(360deg);
        }

        /* Work Process */
        .process { background: var(--white); }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: var(--gradient-2);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: var(--neon-glow);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.1) rotate(10deg);
        }

        .process-step h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        /* Packages */
        .packages { background: var(--gradient-2); }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid var(--accent);
        }

        .package-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            box-shadow: 0 20px 60px rgba(101, 163, 13, 0.3);
        }

        .package-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(101, 163, 13, 0.2);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .package-price {
            font-size: 3rem;
            color: var(--primary);
            font-weight: 700;
            margin: 1rem 0;
        }

        .package-price span { font-size: 1rem; color: var(--text); }

        .package-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .package-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--accent);
        }

        .package-features li i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* Services */
        .services { background: var(--white); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover img { transform: scale(1.1); }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(101, 163, 13, 0.95), transparent);
            padding: 2rem;
            color: var(--white);
            transform: translateY(20%);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-overlay { transform: translateY(0); }

        .service-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Booking Form */
        .booking {
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .form-group { margin-bottom: 1.5rem; }
        .form-group.full-width { grid-column: 1 / -1; }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--accent);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: var(--bg-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.1);
        }

        .form-group textarea { resize: vertical; min-height: 120px; }

        /* Testimonials */
        .testimonials { background: var(--bg-light); }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(101, 163, 13, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--accent);
            position: absolute;
            top: -10px;
            left: 20px;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }

        .testimonial-info h4 {
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .testimonial-info .stars { color: #fbbf24; }
        .testimonial-text { color: var(--text); font-style: italic; line-height: 1.8; }

        /* FAQ */
        .faq { background: var(--white); }

        .faq-list { max-width: 900px; margin: 0 auto; }

        .faq-item {
            background: var(--gradient-2);
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--accent);
            transition: all 0.3s ease;
        }

        .faq-item:hover { border-color: var(--primary); }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover { background: rgba(101, 163, 13, 0.05); }
        .faq-question i { transition: transform 0.3s ease; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-1);
            text-align: center;
            color: var(--white);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .cta-section::before { top: -150px; left: -150px; }
        .cta-section::after { bottom: -150px; right: -150px; }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .cta-section .cta-btn {
            background: var(--white);
            color: var(--primary) !important;
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
            position: relative;
            z-index: 1;
        }

        /* Contact */
        .contact { background: var(--bg-light); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info { display: flex; flex-direction: column; gap: 2rem; }

        .contact-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(101, 163, 13, 0.15);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .contact-details p,
        .contact-details a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover { color: var(--primary); }

        .contact-form-container {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 2rem 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-col p {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.75rem; }

        .footer-col ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-col ul li a i { font-size: 0.8rem; }

        .newsletter-form { display: flex; gap: 0.5rem; }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 8px;
            color: var(--white);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(101, 163, 13, 0.4);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a {
            color: var(--secondary);
            text-decoration: none;
            margin: 0 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container, .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.5rem; }
            .milestones-grid, .features-grid, .packages-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .process-steps::before { display: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .nav-menu.active { display: flex; }
            .mobile-menu { display: block; }
            .hero-content h1 { font-size: 2rem; }
            .hero-buttons { flex-direction: column; }
            .milestones-grid, .features-grid, .packages-grid, .services-grid, .testimonials-grid, .process-steps { grid-template-columns: 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .package-card.featured { transform: scale(1); }
        }

        /* Animations on Scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
