    :root {
        --primary: #22c55e;
        --primary-dark: #16a34a;
        --accent: #38bdf8;
        --bg: #f8fafc;
        --text: #0f172a;
    }

    body {
        //font-family: 'Inter', sans-serif;
        background: linear-gradient(to bottom, #f8fafc, #eef2f7);
        color: var(--text);
        margin: 0;
    }
	
header {
    position: sticky;
    top: 0;
    z-index: 9999;

	background: linear-gradient(to bottom, rgba(50,100,30,0.5), rgba(16,46,4,1));
	backdrop-filter: blur(10px);
	color: #fff;	
	width: 100%;

    /*border-bottom: 1px solid rgba(255,255,255,0.08);*/
}

.parallax {
    min-height: 500px;

    background-image:
        linear-gradient(
            rgba(15,23,42,0.55),
            rgba(15,23,42,0.55)
        ),
        url('../assets/chor.jpg');

    background-attachment: fixed; /* 🔥 Parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
}

    /* ========================================
       HERO
    ======================================== */

    .hero {
        min-height: 70vh;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        color: white;

        background:
            linear-gradient(
                rgba(15,23,42,0.65),
                rgba(15,23,42,0.65)
            ),
            url('../assets/chor.jpg') center/cover no-repeat;

        border-radius: 0 0 25px 25px;

        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .hero-content {
        max-width: 750px;
        padding: 40px 20px;
        animation: fadeInUp 0.8s ease;
    }

    .hero h1 {
        font-size: 3.4rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.3rem;
        opacity: 0.95;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* ========================================
       BUTTONS
    ======================================== */

    .btn-modern {
        background: linear-gradient(135deg, #22c55e, #4ade80);
        border: none;
        border-radius: 12px;
        padding: 12px 22px;
        color: white;
        text-decoration: none;
        font-weight: 600;

        box-shadow: 0 8px 20px rgba(34,197,94,0.3);

        transition: 0.25s ease;
    }

    .btn-modern:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(34,197,94,0.4);
        color: white;
    }

    .btn-outline-modern {
        border: 1px solid rgba(255,255,255,0.8);
        border-radius: 12px;
        padding: 12px 22px;
        color: white;
        text-decoration: none;
        font-weight: 500;

        backdrop-filter: blur(6px);

        transition: 0.25s ease;
    }

    .btn-outline-modern:hover {
        background: white;
        color: #0f172a;
    }

    /* ========================================
       SECTIONS
    ======================================== */

    .section {
        padding: 70px 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .section-title p {
        color: #64748b;
    }

    /* ========================================
       CARDS
    ======================================== */

    .card-modern {
        background: white;
        border-radius: 18px;
        padding: 30px;

        border: none;

        box-shadow: 0 10px 30px rgba(0,0,0,0.05);

        transition: 0.25s ease;
        height: 100%;
    }

    .card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    }

    .card-modern i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    /* ========================================
       CTA
    ======================================== */

    .cta {
        background: linear-gradient(135deg, #22c55e, #4ade80);
        color: white;
        border-radius: 22px;
        padding: 50px 30px;
        text-align: center;

        box-shadow: 0 10px 30px rgba(34,197,94,0.3);
    }

    .cta h2 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta p {
        margin-bottom: 25px;
        opacity: 0.95;
    }

    /* ========================================
       ANIMATION
    ======================================== */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ========================================
       MOBILE
    ======================================== */

    @media (max-width: 768px) {
		
		.parallax {
			background-attachment: scroll;
		}

		.parallax-modern {
			position: relative;
			overflow: hidden;
		}

		.parallax-modern img {
			width: 100%;
			height: 120%;
			object-fit: cover;

			transform: translateY(0);
			transition: transform 0.1s linear;
		}

        .hero {
            min-height: auto;
            padding: 80px 20px;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1.05rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .section {
            padding: 50px 15px;
        }
    }
