    :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: 100dvh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 120px 20px;

		background-image:
			linear-gradient(
				rgba(0,0,0,0.45),
				rgba(0,0,0,0.45)
			),
			url("../images/chor.jpg");

		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		text-align: center;
	}

	.hero-content {
		width: 100%;
		max-width: 900px;
		/*max-width: 750px;*/
		padding: 40px 20px;
		animation: fadeInUp 0.8s ease;
	}

    .hero h1 {
        font-size: 3.4rem;
        font-weight: 700;
        margin-bottom: 20px;
		color: #fff; /*rgba(16,46,4,1);*/
		background-color: rgba(255,255,255,0.8);
		border-radius:10px;
		text-shadow: 1px 1px 2px black, 0 0 25px green, 0 0 5px black;
    }

    .hero p {
        font-size: 1.3rem;
		color: rgba(255,255,255,1);
		text-shadow: 1px 1px 2px black, 0 0 25px green, 0 0 5px black;
        opacity: 0.95;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        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);*/
		background: linear-gradient(to bottom, rgba(50,100,30,0.5), rgba(16,46,4,1));
        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;
		color: #fff; /*rgba(16,46,4,1);*/
		background-color: rgba(255,255,255,0);
		border-radius:10px;
		text-shadow: 1px 1px 2px black, 0 0 25px green, 0 0 5px black;
    }

    .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-top: 140px;
			padding-bottom: 100px;
			align-items: flex-start;
		}
		
		.hero-content {
			width: 100%;
			max-width: 900px;
			/*max-width: 750px;*/
			margin-top: -180px;
			animation: fadeInUp 0.8s ease;
		}

		.hero h1 {
			font-size: 2rem;
		}

		.hero-buttons {
			flex-direction: column;
			width: 100%;
		}

		.hero-buttons a {
			width: 100%;
		}		
			
		.hero p {
			font-size: 1.05rem;
		}

		.section {
			padding: 50px 15px;
		}
		
		.dn {
			display: none;
		}
	}
