:root{

    --primary-green:#006B3F;
    --dark-green:#014D2D;
    --navy-blue:#0A1F5C;
    --light-bg:#F8F9FA;
    --white:#FFFFFF;
    --silver:#D9D9D9;
    --text-dark:#1F2937;

}

/* Fonts */

body{
    font-family:'Poppins',sans-serif;
    color:var(--text-dark);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
}

.section-title{
    color:var(--navy-blue);
    font-weight:700;
}


.navbar{

    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 92%;
    max-width: 1400px;

    background: rgba(0,0,0,.25);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    border-radius: 50px;

    padding: 12px 0;

    z-index: 1000;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 8px 32px rgba(0,0,0,.15);
}

.navbar-hide{
    transform: translateX(-50%) translateY(-150%);
}

.brand-wrapper{

    display:flex;

    align-items:center;

    gap:12px;
}

.brand-wrapper h5{

    color:white;

    margin:0;

    font-size:1rem;
}

.brand-wrapper span{

    color:rgba(255,255,255,.7);

    font-size:.75rem;

    letter-spacing:2px;

    text-transform:uppercase;
}


.nav-link{

    color: white;

    font-weight: 500;

    margin-left: 18px;

    position: relative;

    transition: .3s;
}


.nav-link::before{

    content:'';

    position:absolute;

    bottom:-8px;

    left:50%;

    width:0;

    height:3px;

    background:white;

    border-radius:50px;

    transition:.4s;

    transform:translateX(-50%);
}

.nav-link:hover::before{

    width:70%;
}

.nav-link.active{

    color:white;
}

.nav-link.active::before{

    width:70%;
}

.btn-contact{
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #e8f5ef
        );

    color:var(--primary-green);

    border:none;

    font-weight:600;

    box-shadow:
        0 10px 25px rgba(255,255,255,.15);

    transition:.4s;

    padding: 10px 24px;

    border-radius: 10px;

}

.btn-contact:hover{

   transform:translateY(-3px);

    background:white;

    color:var(--primary-green);
}

.navbar.scrolled{

    padding:8px 0;

    background:rgba(1,77,45,.95);

    transition:
    transform .4s ease,
    opacity .4s ease,
    padding .4s ease,
    background .4s ease;
}

.hero{
    position: relative;
    min-height:100vh;
    overflow: hidden;
    background-color: black;
}

.hero-bg{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    animation:heroZoom 8s linear infinite;

    z-index:1;
}

.hero-content{
    position:relative;
    margin-top: 120px;
    z-index:20;
}

@media (max-width:1200px){

    .hero-title{
        font-size:4rem;
        line-height:1.05;
    }

    .hero-description{
        font-size:1rem;
        max-width:550px;
    }

    .hero-buttons{
        margin-top:25px;
    }
}

@media (max-width:1199px){

    .hero-content{
        max-width:700px;
    }

    .hero-buttons{
        gap:12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        padding:12px 28px;
    }
}

.hero-overlay{
    position: relative;
    min-height: 100vh;
    display:flex;
    align-items:center;
    background:
        linear-gradient(
            90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.10) 100%
        );
     z-index:2;    
}

.hero-badge{

    display:inline-block;

    padding:12px 24px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(15px);

    border-radius:50px;

    color:white;

    font-size:.8rem;

    letter-spacing:2px;

    font-weight:600;
}

.hero-title{

    color:white;

    font-size:clamp(2.8rem, 6vw, 5rem);

    line-height:.95;

    margin-top: 30px;

    margin-bottom:25px;

    font-weight:700;
}

.hero-description{

    color:white;

    font-size:1rem;

    max-width:650px;

    opacity:.95;

    margin-top:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:40px;
}


.hero-slide{
    min-height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

@keyframes heroZoom{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.1);
    }
}

.heroSwiper{
    height:100vh;
}

.swiper-wrapper{
    height:100%;
}

.swiper-slide{
    height:100%;
}

.swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:rgba(255,255,255,.4);

    opacity:1;
}

.swiper-pagination-bullet-active{

    width:35px;

    border-radius:50px;

    background:white;
}

@media (max-width:991px){

    .hero{
        text-align:center;
    }

    .hero-title{
        font-size:3rem;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
    }
}

.hero-btn-primary{

    background:white;

    color:var(--dark-green);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;
}

.hero-btn-primary:hover{

    background:var(--primary-green);

    color:white;
}

.hero-btn-secondary{

    border:2px solid white;

    color:white;

    padding:14px 35px;

    border-radius:50px;
}

.hero-btn-secondary:hover{

    background:white;

    color:var(--dark-green);
}

.hero-floating-cards{

    position:absolute;

    top:0;
    right:0;

    width:40%;
    height:100%;

    z-index:20;

    pointer-events:none;
}

.floating-card{

    position:absolute;

    width:200px;

    padding:20px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:20px;

    color:white;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    animation:float 5s ease-in-out infinite;
}

.card-one{
    top:180px;
    left:20px;
}

.card-two{
    top:280px;
    left:120px;
}

.card-three{
    top:380px;
    left:40px;
}

.floating-card h2{

    font-size:3rem;

    font-weight:700;

    margin-bottom:5px;

    color:white;
}

.floating-card p{

    margin:0;

    font-size:.95rem;

    opacity:.9;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    letter-spacing:3px;

    animation:bounce 2s infinite;

    z-index:50;
}

@keyframes bounce{

    0%,20%,50%,80%,100%{
        transform:translateX(-50%) translateY(0);
    }

    40%{
        transform:translateX(-50%) translateY(-10px);
    }

    60%{
        transform:translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 991px){

    .hero{
        text-align:center;
    }

    /* .hero-title{
        font-size:3rem;
    } */

    .hero-description{
        margin:auto;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
        margin-top:30px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
    }

    .floating-card{

        position:relative;

        width:100%;

        margin-top:20px;

        top:auto;
        left:auto;
        right:auto;
        bottom:auto;

        animation:none;
    }

    .col-lg-5{
        margin-top:40px;
    }
}

@media(max-width:768px){

    .navbar{

        width:95%;

        top:10px;

        border-radius:15px;
    }
}

.section-title{
    font-size:clamp(2.2rem,5vw,3rem);
    line-height:1.1;
    max-width:700px;
    color:var(--navy-blue);
    font-weight:700;
}

.section-tag{
    color:var(--primary-green);
    font-weight:600;
    letter-spacing:2px;
}

.about-section{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:120px 0;
}

.about-section .container{
    position:relative;
    z-index:2;
}

.about-bg-shape{

    position:absolute;

    width:600px;
    height:600px;

    background:rgba(0, 107, 62, 0.63);

    border-radius:50%;

    top:-250px;
    right:-200px;

    z-index:0;
}

.about-image-wrapper{
    overflow:hidden;
    border-radius:30px;
    padding-bottom:30px;
    position:relative;
}

.about-image{

    height: 500px;

    border-radius:30px;

    width:100%;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transform:rotate(-2deg);

    transition:.5s;

    transition:
        transform .8s ease,
        filter .8s ease;
}

.about-image:hover{
    transform:scale(1.05);

    filter:brightness(1.05);
    transform:rotate(0deg) scale(1.02);
}

.title-accent{

    width:80px;
    height:4px;

    background:var(--primary-green);

    border-radius:10px;

    margin:20px 0;
}

.experience-badge{

    position:absolute;

    bottom: 0;

    right:30px;

    background:rgba(1,77,45,.85);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    color:white;

    padding:25px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.experience-badge h3{
    color:white;
}

.experience-badge h3{

    margin:0;

    font-size:2rem;

    font-weight:700;
}

.experience-badge span{

    font-size:.9rem;
}

.about-text{

    font-size:1rem;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;
}

.about-stat-card{

    background:linear-gradient(
        135deg,
        #ffffff,
        #f8f9fa
    );

    border:none;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    overflow:hidden;

    position:relative;

    padding:25px;

    border-radius:20px;

    /* border:1px solid rgba(0,0,0,.08); */
    height:100%;

    transition:.3s;
}

.about-stat-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:5px;
    height:100%;

    background:var(--primary-green);
}

.about-stat-card:hover{

    transform:translateY(-8px);
}

.about-stat-card h3{

    color:var(--primary-green);

    margin-bottom:10px;

    font-weight:700;
}

.about-stat-card p{

    margin:0;

    color:#666;
}


.pillars-section{

    position:relative;

    padding:140px 0;

    background:#f8f9fa;

    overflow:hidden;
}

.pillars-section::before{

    content:"PILLARS";

    position:absolute;

    top:30px;
    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.041);

    white-space:nowrap;

    z-index:0;
}

.pillars-header{
    position:relative;
    z-index:2;
}

.pillar-card{

    position:relative;

    height:350px;

    overflow:hidden;

    border-radius:30px;

    cursor:pointer;
}

.large-card{
    height:450px;
}

.culture-card{
    height:420px;
}

.pillar-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;
}

.pillar-card:hover img{

    transform:scale(1.1);
}

.pillar-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.25)
        );

    padding:40px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    color:white;

    transition:.4s;
}

.pillar-card:hover .pillar-overlay{

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.15)
        );
}

.pillar-overlay h3,
.pillar-overlay p{

    transform:translateY(20px);

    opacity:.85;

    transition:.5s;
}

.pillar-card:hover h3,
.pillar-card:hover p{

    transform:translateY(0);

    opacity:1;
}

.pillar-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

    animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }
}

.pillar-icon i{

    font-size:1.8rem;

    color:white;
}

.pillar-overlay h3{

    font-size:2rem;

    color:white;

    margin-bottom:10px;
}

.pillar-overlay p{

    color:rgba(255,255,255,.9);

    max-width:500px;

    margin-bottom:0;
}


.why-section{

    position:relative;

    padding: 80px 0;

    background:#fff;

    overflow:hidden;
}

.why-watermark{

    position:absolute;

    top:100px;

    left:50%;

    transform:translateX(-50%);

    font-size:11rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.055);

    white-space:nowrap;

    pointer-events:none;
}

.why-header{

    max-width:900px;

    margin:auto auto 120px;

    position:relative;

    z-index:2;
}

.why-intro{

    font-size:1.15rem;

    line-height:2;

    color:#666;

    max-width:800px;

    margin:auto;
}

.why-timeline{

    position:relative;

    max-width:1000px;

    margin:auto;
}

.why-timeline::before{

    content:'';

    position:absolute;

    top:0;

    bottom:0;

    left:50%;

    width:2px;

    background:
        linear-gradient(
            var(--primary-green),
            var(--navy-blue)
        );

    transform:translateX(-50%);
}

/* .why-stats{

    display:flex;

    justify-content:center;

    gap:60px;

    margin-top:60px;

    flex-wrap:wrap;
}

.why-stat{

    text-align:center;
}

.why-stat h3{

    color:var(--primary-green);

    font-size:3rem;

    margin-bottom:5px;
}

.why-stat span{

    color:#666;

    font-size:.95rem;
} */

.why-item{

    width:50%;

    position:relative;

    margin-bottom:80px;
}

.why-item:nth-child(odd){
    right:-12px;
    padding-right:60px;
}

.why-item:nth-child(even){

    margin-left:auto;

    padding-left:60px;
}

.why-item:nth-child(even)::before{

    left:-12px;
}

.why-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-radius:30px;

    padding:40px;

    position:relative;

    border:1px solid rgba(255,255,255,.5);

    overflow:hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

    transition:.4s;
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.12);
}

.why-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:5px;

    background:
        linear-gradient(
            90deg,
            var(--primary-green),
            var(--navy-blue)
        );
}

.why-card::after{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    top:-120px;
    right:-120px;

    background:
    radial-gradient(
        rgba(0,107,63,.15),
        transparent 70%
    );

    pointer-events:none;
}

.why-item::before{

    content:'';

    position:absolute;

    top:70px;

    width:24px;
    height:24px;

    background:white;

    border:4px solid var(--primary-green);

    border-radius:50%;

    z-index:10;
}

.why-item:nth-child(2){

    margin-top:80px;
}

.why-item:nth-child(4){

    margin-top:80px;
}

.why-number{

    display:block;

    font-size:7rem;

    font-weight:800;

    color:rgba(0,107,63,.08);

    line-height:1;

    margin-bottom:20px;
}

.why-card:hover .why-number{

    transform:translateY(-8px);

    color:rgba(0,107,63,.15);
}

.why-card h3{

    color:var(--navy-blue);

    margin-bottom:20px;

    font-size:1.8rem;
}

.why-card p{

    color:#666;

    line-height:1.9;

    margin:0;
}

.why-icon{

    font-size:2.2rem;

    color:var(--primary-green);

    display:block;

    margin-bottom:20px;
}

.why-cta{

    margin-top:120px;

    padding-top:60px;

    border-top:1px solid rgba(0,0,0,.08);
}

.why-cta h3{

    color:var(--navy-blue);

    margin-bottom:20px;

    font-size:2rem;
}

.why-cta p{

    color:#666;

    max-width:700px;

    margin:0 auto 30px;
}


@media (max-width: 1199px){

    .why-watermark{
        font-size:7rem;
    }

    .why-card{
        padding:35px;
    }

    .why-card h3{
        font-size:1.5rem;
    }

    .why-number{
        font-size:5rem;
    }

}

@media (max-width: 991px){

    .why-section{
        padding:100px 0;
    }

    .why-watermark{
        font-size:4rem;
        top:50px;
    }

    .why-header{
        margin-bottom:70px;
    }

    .why-timeline::before{
        left:25px;
    }

    .why-item{

        width:100%;

        margin-left:0 !important;

        padding-left:70px !important;

        padding-right:0 !important;

        margin-bottom:40px;
    }

    .why-item:nth-child(2),
    .why-item:nth-child(4){
        margin-top:0;
    }

    .why-item::before{
        left:13px !important;
        right:auto !important;
    }

    .why-card{
        padding:30px;
    }

    .why-number{
        font-size:4rem;
    }

    .why-card h3{
        font-size:1.4rem;
    }

    .why-intro{
        font-size:1rem;
        line-height:1.8;
    }

    /* .why-stats{
        gap:30px;
    } */

}

@media (max-width: 576px){

    .why-watermark{
        display:none;
    }

    .why-item{
        padding-left:55px !important;
    }

    .why-timeline::before{
        left:18px;
    }

    .why-item::before{
        left:6px !important;
    }

    .why-card{
        padding:25px;
        border-radius:20px;
    }

    .why-number{
        font-size:3rem;
    }

    .why-card h3{
        font-size:1.2rem;
    }

    /* .why-stats{
        flex-direction:column;
        gap:15px;
    } */

    .why-stat h3{
        font-size:2rem;
    }

    .why-cta{
        margin-top:80px;
    }

    .why-cta h3{
        font-size:1.5rem;
    }

}

.hero-btn-primary{

    background:var(--primary-green);

    color:white;

    border:2px solid var(--primary-green);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s ease;
}

.hero-btn-primary:hover{

    background:white;

    color:var(--primary-green);

    border-color:var(--primary-green);
}

.why-cta .hero-btn-primary{

    padding:16px 42px;

    font-size:1rem;

    box-shadow:
        0 15px 35px rgba(0,107,63,.25);
}


.founder-section{

    position:relative;

    padding: 50px 0 50px;

    background:white;

    overflow:hidden;
}

.founder-watermark{

    position:absolute;

    top:100px;

    right:-50px;

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.055);

    transform:rotate(-90deg);

    pointer-events:none;
}

.founder-image-wrapper{

    position:relative;
}

.founder-image{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:35px;

    object-position:center top;

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}

.founder-experience{

    position:absolute;

    bottom:30px;

    right:-30px;

    padding:25px 30px;

    border-radius:25px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    text-align:center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}

.founder-experience h3{

    color:var(--primary-green);

    margin:0;

    font-size:2rem;
}

.founder-role{

    color:var(--primary-green);

    margin-bottom:30px;
}

.founder-quote{

    font-size:1.4rem;

    line-height:1.8;

    font-style:italic;

    color:var(--navy-blue);

    padding-left:25px;

    border-left:4px solid var(--primary-green);

    margin:30px 0;
}

.founder-text{

    color:#666;

    line-height:2;

    margin-bottom:20px;
}

.founder-stats{

    display:flex;

    gap:30px;

    margin-top:40px;

    flex-wrap:wrap;
}

.founder-stat{

    background:white;

    padding:25px 35px;

    border-radius:20px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    text-align:center;
}

.founder-stat h3{

    color:var(--primary-green);

    margin-bottom:5px;
}

.founder-stat span{

    color:#666;
}


@media(max-width:991px){

    .founder-section{

        padding: 50px 0;
    }

    .founder-watermark{

        display:none;
    }

    .founder-image{
        object-position:center top;

        height:450px;
    }

    .founder-experience{

        right:10px;
        bottom:10px;
    }

    .founder-stats{

        justify-content:center;
    }

    .founder-quote{

        font-size:1.1rem;
    }

}

.founder-countries{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:35px;
}

.founder-countries span{

    padding:10px 18px;

    border-radius:50px;

    background:
        rgba(0,107,63,.08);

    color:var(--primary-green);

    font-size:.9rem;

    font-weight:600;

    border:1px solid rgba(0,107,63,.15);
}

.founder-achievements{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;

    margin-top:50px;
}

.achievement-card{

    padding:30px;

    border-radius:25px;

    background:
        rgba(255,255,255,.8);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.6);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    transition:.4s;
}

.achievement-card:hover{

    transform:translateY(-10px);
}

.achievement-card i{

    font-size:2rem;

    color:var(--primary-green);

    margin-bottom:15px;

    display:block;
}

.achievement-card h4{

    color:var(--navy-blue);

    margin-bottom:10px;
}

.achievement-card p{

    color:#666;

    margin:0;
}

.founder-timeline{

    margin-top:60px;
}

.timeline-title{

    text-align:center;

    color:var(--navy-blue);

    font-size:2rem;

    margin-bottom:50px;

    font-weight:700;
}

.timeline-wrapper{

    display:flex;

    justify-content:space-between;

    position:relative;

    gap:20px;
}

.timeline-wrapper::before{

    content:'';

    position:absolute;

    left:0;
    right:0;

    top:30px;

    height:3px;

    background:
        linear-gradient(
            90deg,
            var(--primary-green),
            var(--navy-blue)
        );
}

.timeline-item{

    text-align:center;

    position:relative;

    flex:1;
}

.timeline-item::before{

    content:'';

    width:20px;
    height:20px;

    border-radius:50%;

    background:var(--primary-green);

    position:absolute;

    top:22px;

    left:50%;

    transform:translateX(-50%);
}

.timeline-item span{

    display:block;

    color:var(--primary-green);

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:50px;
}

.timeline-item h4{

    color:var(--navy-blue);

    font-size:1rem;
}

.founder-name{

    font-size:clamp(3rem,5vw,5rem);

    color:var(--navy-blue);

    line-height:1;

    margin-bottom:15px;

    position:relative;
}

.founder-name::after{

    content:'Founder';

    position:absolute;

    left:0;

    bottom:-15px;

    font-size:1rem;

    letter-spacing:8px;

    color:rgba(0,107,63,.25);

    text-transform:uppercase;
}

@media(max-width:991px){

    .founder-achievements{

        grid-template-columns:1fr;
    }

    .timeline-wrapper{

        flex-direction:column;

        gap:40px;
    }

    .timeline-wrapper::before{

        display:none;
    }

    .timeline-item::before{

        display:none;
    }

    .timeline-item span{

        margin-bottom:10px;
    }

}


.events-section{

    position:relative;

    padding:160px 0;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8f9fa
    );

    overflow:hidden;
}

.events-watermark{

    position:absolute;

    top:80px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.075);

    pointer-events:none;
}

.events-header{

    max-width:850px;

    margin:0 auto 80px;
}

.events-intro{

    color:#666;

    line-height:2;

    max-width:750px;

    margin:auto;
}

.event-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:30px;

    overflow:hidden;

    height:100%;

    transition:.5s;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    position:relative;
}

.event-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.15);
}

.event-image{

    position:relative;

    height:280px;

    overflow:hidden;
}

.event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;
}

.event-card:hover img{

    transform:scale(1.08);
}

.event-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.7),
            transparent
        );

    display:flex;

    align-items:flex-start;

    justify-content:flex-end;

    padding:20px;
}

.event-badge{

    background:white;

    color:var(--primary-green);

    padding:8px 16px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;
}

.event-content{

    padding:30px;
}

.event-date{

    color:var(--primary-green);

    font-weight:700;

    margin-bottom:12px;
}

.event-content h3{

    color:var(--navy-blue);

    margin-bottom:15px;

    font-size:1.5rem;
}

.event-description{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

.event-location{

    display:flex;

    align-items:center;

    gap:8px;

    color:#777;

    margin-bottom:25px;
}

.event-btn{

    width:100%;

    border-radius:50px;

    padding:14px;

    background:var(--primary-green);

    color:white;

    border:none;

    font-weight:600;

    transition:.4s;
}

.event-btn:hover{

    background:white;

    color:var(--primary-green);

    border:1px solid var(--primary-green);
}

.event-country{

    position:absolute;

    top:20px;

    left:20px;

    background:white;

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    color:var(--primary-green);
}


.host-country-cta{

    margin-top:100px;

    text-align:center;

    padding:80px 40px;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        var(--primary-green),
        var(--navy-blue)
    );

    color:white;
}

.host-country-cta h3{

    font-size:2.5rem;

    margin-bottom:20px;
}

.host-country-cta p{

    max-width:700px;

    margin:0 auto 30px;

    opacity:.95;
}

.event-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:20px;
}

.event-tags span{

    background:rgba(0,107,63,.08);

    color:var(--primary-green);

    padding:8px 14px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:600;
}

.host-btn{

    background:white;

    color:var(--primary-green);

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;
}

.host-btn:hover{

    background:transparent;

    color:white;

    border:2px solid white;
}

@media(max-width:991px){

    .events-section{

        padding:100px 0;
    }

    .host-country-cta{

        padding:50px 25px;
    }

    .host-country-cta h3{

        font-size:1.8rem;
    }

}

.partners-section{

    position:relative;

    padding: 60px 0;

    overflow:hidden;

     background:
        linear-gradient(
            135deg,
            var(--navy-blue),
            var(--dark-green)
        );
}

.partners-watermark{

    position:absolute;

    top:100px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.062);

    pointer-events:none;
}

.partners-header{

    max-width:850px;

    margin:0 auto 80px;
}

.partners-intro{

    color:#666;

    line-height:2;

    max-width:750px;

    margin:auto;

    opacity:.85;
}

.partners-slider-wrapper{

    overflow:hidden;

    width:100%;

    margin-top:80px;

    position:relative;
}

.partners-slider{

    display:flex;

    gap:30px;

    width:max-content;

    animation: partnerScroll 30s linear infinite;
}

@keyframes partnerScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.partners-slider:hover{

    animation-play-state:paused;
}


.partner-card{

    min-width:260px;

    height:180px;

    flex-shrink:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:.5s ease;
}

.partner-card:hover{

    transform:
        translateY(-12px)
        scale(1.03);

    border-color:
        rgba(255,255,255,.4);

    box-shadow:
        0 30px 70px rgba(0,0,0,.15);
}

.partner-card i{

    font-size:3rem;

    color:var(--primary-green);

    margin-bottom:20px;

    transition:.4s;
}

.partner-card h4{

    margin:0;

    color:white;

    font-weight:600;

    font-size:1.15rem;
}

.partner-card:hover i{
    font-size:3.2rem;

    color:#7CFFB2;

    margin-bottom:20px;

    transition:.5s;

    transform:scale(1.15);
}

.partner-card::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

   inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.25),
            rgba(255,255,255,0)
        );

    pointer-events:none;

    transition:.8s;
}

.partner-card:hover::before{

    left:100%;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after{

    content:'';

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

    pointer-events:none;
}

.partners-slider-wrapper::before{

    left:0;

    background:
        linear-gradient(
            to right,
            white,
            transparent
        );
}

.partners-slider-wrapper::after{

    right:0;

    background:
        linear-gradient(
            to left,
            white,
            transparent
        );
}

.partners-section .section-title,
.partners-section .section-tag,
.partners-section .partners-intro{

    color:white;
}


/* .partner-card{

    background:white;

    height:150px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.partner-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}

.partner-card img{

    max-width:140px;

    max-height:80px;

    opacity:.75;

    transition:.4s;
}

.partner-card:hover img{

    opacity:1;
} */

.sponsor-cta{

    margin-top:100px;

    padding:80px 40px;

    border-radius:40px;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            var(--navy-blue),
            var(--primary-green)
        );

    color:white;
}

.sponsor-cta h3{

    font-size:2.5rem;

    margin-bottom:20px;
}

.sponsor-cta p{

    max-width:700px;

    margin:0 auto 30px;
}

.sponsor-btn{

    background:white;

    color:var(--primary-green);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;
}

.sponsor-btn:hover{

    background:transparent;

    border:2px solid white;

    color:white;
}


.opportunities-section{

    position:relative;

    padding:160px 0;

    background:#fff;

    overflow:hidden;
}

.opportunities-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(0,107,63,.08);

    border-radius:50%;

    filter:blur(120px);

    top:100px;
    left:-150px;
}

.opportunities-section::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(10,31,92,.08);

    border-radius:50%;

    filter:blur(120px);

    bottom:-150px;
    right:-150px;
}

.opportunities-watermark{

    position:absolute;

    top:80px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.062);

    pointer-events:none;
}

.opportunities-header{

    max-width:850px;

    margin:0 auto 80px;
}

.opportunities-intro{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:2;
}


.opportunity-card{

    height:100%;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            rgba(248,249,250,.95)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:.5s;

    position:relative;

    overflow:hidden;
}

.opportunity-card.featured{
    transform:translateY(-20px);
}

.opportunity-card:hover{

    transform:
        translateY(-12px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.12);
}

.opportunity-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--navy-blue)
        );
}

.opportunity-icon i{

    color:white;

    font-size:2rem;
}

.opportunity-card:hover .opportunity-icon{

    transform:
        rotate(8deg)
        scale(1.1);
}

.opportunity-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            var(--primary-green),
            var(--navy-blue)
        );

    transform:scaleX(0);

    transition:.5s;
}

.opportunity-card:hover::before{

    transform:scaleX(1);
}

.opportunities-cta{

    margin-top:100px;

    padding:80px 40px;

    text-align:center;

    border-radius:40px;

    background:
        linear-gradient(
            135deg,
            var(--primary-green),
            var(--navy-blue)
        );

    color:white;
}

.opportunities-btn{

    background:white;

    color:var(--primary-green);

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;
}

.opportunities-btn:hover{

    background:transparent;

    border:2px solid white;

    color:white;
}

.premium-ribbon{

    position:absolute;

    top:20px;
    right:-35px;

    background:var(--primary-green);

    color:white;

    padding:8px 40px;

    transform:rotate(45deg);

    font-size:.75rem;

    font-weight:600;
}


.impact-section{

    padding:110px 0;
    background:#fff;

}

.impact-image{

    overflow:hidden;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.impact-image img{

    width:100%;
    display:block;
    transition:.6s;

}

.impact-image:hover img{

    transform:scale(1.05);

}

.impact-section h2{

    font-size:46px;
    font-weight:700;
    color:#0B4F2F;
    margin-bottom:25px;

}

.impact-section p{

    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;

}

.impact-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;

}

.impact-list div{

    background:#F8F9FA;
    padding:18px;
    border-radius:12px;
    border-left:4px solid #C8A24D;
    font-weight:600;
    transition:.3s;

}

.impact-list div:hover{

    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

@media(max-width:991px){

    .impact-section{

        padding:80px 0;

    }

    .impact-section h2{

        font-size:34px;
        text-align:center;

    }

    .impact-section p{

        text-align:center;

    }

    .impact-list{

        grid-template-columns:1fr;

    }

}


.team-section{

    position:relative;

    padding: 60px 0;

    overflow:hidden;

    background:#f8f9fa;
}

.team-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(0,107,63,.06);

    border-radius:50%;

    filter:blur(120px);

    top:0;
    left:-150px;
}

.team-section::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
        rgba(10,31,92,.05);

    border-radius:50%;

    filter:blur(120px);

    bottom:-150px;
    right:-150px;
}

.team-header,
.team-card{

    position:relative;

    z-index:2;
}

.team-watermark{

    position:absolute;

    top:80px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.062);

    pointer-events:none;
}

.team-header{

    max-width:850px;

    margin:0 auto 80px;
}

.team-intro{

    color:#666;

    line-height:2;

    max-width:700px;

    margin:auto;
}

.team-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:30px;

    overflow:hidden;

    height:100%;

    transition:.5s;

    position:relative;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 35px 80px rgba(0,0,0,.15);
}

.team-image{
    position:relative;

    height:380px;

    overflow:hidden;
}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;
}

.team-card:hover img{

    transform:scale(1.08);
}

.team-content{

    padding:30px;
}

/* .team-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.15)
        );

    display:flex;

    align-items:flex-end;

    padding:30px;

    opacity:0;

    transition:.5s;
}

.team-card:hover .team-overlay{

    opacity:1;
}

.team-overlay p{

    color:white;

    margin:0;

    line-height:1.8;
} */

.team-overlay p{

    color:white;

    margin:0;

    line-height:1.8;
}

.team-content h3{
    font-size:1.5rem;

    color:var(--navy-blue);

    margin-bottom:10px;
}

.team-content span{

    color:var(--primary-green);

    font-weight:600;

    display:block;

    margin-bottom:20px;
}

.team-content p{

    color:#666;

    line-height:1.8;

    margin:0;
}

.team-role{

    display:block;

    color:var(--primary-green);

    font-weight:600;

    margin-bottom:15px;
}

.team-country{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:
        rgba(0,107,63,.08);

    color:var(--primary-green);

    padding:8px 16px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;
}

@media(max-width:991px){

    .team-section{

        padding:100px 0;
    }

    .team-watermark{

        font-size:4rem;
    }

    .team-image{

        height:320px;
    }
}

.contact-section{

    position:relative;

    padding: 80px 0;

    background:#fff;

    overflow:hidden;
}

.contact-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(0,107,63,.06);

    border-radius:50%;

    filter:blur(120px);

    top:-150px;
    left:-150px;
}

.contact-section::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(10,31,92,.05);

    border-radius:50%;

    filter:blur(120px);

    bottom:-150px;
    right:-150px;
}

.contact-watermark{

    position:absolute;

    top:80px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:800;

    color:rgba(0, 0, 0, 0.068);

    pointer-events:none;
}

.contact-intro{

    color:#666;

    line-height:2;

    margin-top:20px;
}

.contact-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:30px;

    padding:40px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}

.form-control{

    border:none;

   background:rgba(248,249,250,.9);

    border-radius:18px;

    padding:18px 22px;

    transition:.3s;

    min-height:60px;
}

textarea.form-control{

    min-height:180px;
}

.form-control:focus{

   background:white;

    border:1px solid var(--primary-green);

    box-shadow:
        0 0 0 4px rgba(0,107,63,.08);
}

.contact-btn{

    background:linear-gradient(
        135deg,
        var(--primary-green),
        var(--dark-green)
    );

    color:white;

    border:none;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.contact-btn:hover{

    transform:translateY(-3px);

    background:white;

    color:var(--primary-green);

    box-shadow:
        0 15px 35px rgba(0,107,63,.25);
}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;
}

.contact-item i{

    width:60px;
    height:60px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        rgba(0,107,63,.08);

    color:var(--primary-green);

    font-size:1.3rem;
}

.contact-item h5{

    color:var(--navy-blue);

    margin-bottom:5px;
}

.contact-item p{

    margin:0;

    color:#666;
}

.contact-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(0,107,63,.08);

    color:var(--primary-green);

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:30px;
}

.contact-socials{

    display:flex;

    gap:15px;

    margin-top:40px;
}

.contact-socials a{

    width:55px;
    height:55px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:white;

    color:var(--primary-green);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    transition:.4s;
}

.contact-socials a:hover{

    background:var(--primary-green);

    color:white;

    transform:translateY(-6px);
}

.contact-trust{

    margin-top:20px;

    color:#777;

    font-size:.9rem;

    text-align:center;
}

.footer-section{

    position:relative;

    background:#08153d;

    color:white;

    padding:120px 0 40px;

    overflow:hidden;
}

.footer-glow{

    position:absolute;

    width:600px;
    height:600px;

    background:
        rgba(0,107,63,.12);

    border-radius:50%;

    filter:blur(150px);

    top:-250px;
    right:-250px;
}

.footer-logo{

    font-size:2rem;

    font-weight:700;

    margin-bottom:25px;

    color:white;
}

.footer-text{

    color:rgba(255,255,255,.75);

    line-height:2;

    margin-bottom:30px;
}

.footer-socials{

    display:flex;

    gap:15px;
}

.footer-socials a{

    width:50px;
    height:50px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        rgba(255,255,255,.08);

    color:white;

    transition:.4s;
}

.footer-socials a:hover{

    background:var(--primary-green);

    transform:translateY(-5px);
}

.footer-title{

    margin-bottom:25px;

    color:white;

    font-weight:600;
}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;
}

.footer-links li{

    margin-bottom:15px;
}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:white;

    padding-left:5px;
}

.footer-contact p{

    color:rgba(255,255,255,.75);

    margin-bottom:15px;
}

.footer-contact i{

    color:var(--primary-green);

    margin-right:10px;
}

.footer-divider{

    margin:60px 0 30px;

    border-color:
        rgba(255,255,255,.08);
}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:15px;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.6);
}

@media(max-width:991px){

    .footer-section{

        text-align:center;
    }

    .footer-socials{

        justify-content:center;
    }

    .footer-bottom{

        justify-content:center;
    }
}


.event-detail-hero{

    position:relative;

    height:80vh;

    overflow:hidden;
}

.event-detail-hero img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );

    display:flex;

    align-items:center;
}

.hero-overlay h1{

    color:white;

    font-size:clamp(3rem,6vw,5rem);

    margin-bottom:20px;
}

.hero-overlay p{

    color:white;

    font-size:1.2rem;

    margin-bottom:15px;
}

.hero-overlay span{

    color:#fff;

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);
}

.event-detail-content{

    padding:100px 0;
}

.event-detail-content h2{

    color:var(--navy-blue);

    margin-bottom:25px;
}

.event-detail-content p{

    color:#666;

    line-height:2;
}


.event-countdown{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;
}

.countdown-box{

    width:120px;

    height:120px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}

.countdown-box span{

    font-size:2.5rem;

    font-weight:800;

    line-height:1;
}

.countdown-box small{

    margin-top:8px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.75rem;
}

@media(max-width:768px){

    .event-countdown{

        justify-content:center;
    }

    .countdown-box{

        width:90px;

        height:90px;
    }

    .countdown-box span{

        font-size:1.8rem;
    }

}

/* .ticket-section{

    padding: 50px 0;
} */

.ticket-card{

    max-width:900px;

    margin:auto;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:35px;

    padding:50px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);
}

.ticket-header{

    text-align:center;

    margin-bottom:40px;
}

.ticket-header h2{

    color:var(--navy-blue);

    margin-top:15px;

    margin-bottom:15px;
}

.ticket-header p{

    color:#666;
}

.ticket-form{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:25px;
}

.form-group{

    display:flex;

    flex-direction:column;
}

.form-group label{

    margin-bottom:10px;

    font-weight:600;

    color:var(--navy-blue);
}

.form-group input,
.form-group select,
.form-group textarea{

    border:none;

    background:#f7f9fb;

    padding:16px 20px;

    border-radius:15px;

    outline:none;

    transition:.3s;
}

.form-group input:focus,
.form-group select:focus{

    box-shadow:
        0 0 0 3px rgba(0,107,63,.15);
}

.ticket-btn{

    grid-column:span 2;

    padding:18px;

    border:none;

    border-radius:50px;

    background:var(--primary-green);

    color:white;

    font-weight:700;

    transition:.4s;
}

.ticket-btn:hover{

    background:white;

    color:var(--primary-green);

    border:1px solid var(--primary-green);
}

@media(max-width:768px){

    .ticket-card{

        padding:30px;
    }

    .ticket-form{

        grid-template-columns:1fr;
    }

    .ticket-btn{

        grid-column:span 1;
    }

}


.ticket-types-section{

    padding:100px 0 60px;
}

.ticket-types-header{

    text-align:center;

    margin-bottom:60px;
}

.ticket-type-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:40px;

    text-align:center;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:.4s;
}

.ticket-type-card:hover{

    transform:translateY(-10px);
}

.ticket-price{

    font-size:3rem;

    font-weight:800;

    color:var(--primary-green);

    margin:20px 0;
}

.ticket-availability{

    color:#666;
}

.vip-ticket{

    border:2px solid var(--primary-green);

    transform:scale(1.03);
}

.vip-ticket::before{

    content:'MOST POPULAR';

    position:absolute;

    top:20px;
    right:-35px;

    background:var(--primary-green);

    color:white;

    padding:8px 40px;

    font-size:.75rem;

    transform:rotate(45deg);
}

.form-group select{

    background:#f7f9fb;

    border:none;

    padding:16px 20px;

    border-radius:15px;

    width:100%;
}


.sponsor-hero{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #ffffff
        );
}

.sponsor-watermark{

    position:absolute;

    top:60px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:900;

    color:rgba(0,0,0,.03);

    white-space:nowrap;

    pointer-events:none;
}

.sponsor-header{

    max-width:900px;

    margin:0 auto 80px;
}

.sponsor-header h1{

    font-size:4rem;

    color:var(--navy-blue);

    margin-bottom:25px;
}

.sponsor-header p{

    max-width:750px;

    margin:auto;

    line-height:2;

    color:#666;
}

.sponsor-form-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:35px;

    padding:60px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;
}

.sponsor-form-card::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
        rgba(0,107,63,.08);

    border-radius:50%;

    filter:blur(100px);

    top:-150px;
    right:-100px;
}

.sponsor-form-card label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

    color:var(--navy-blue);
}

.sponsor-form-card input,
.sponsor-form-card select,
.sponsor-form-card textarea{

    width:100%;

    padding:18px 22px;

    border:none;

    border-radius:18px;

    background:#f8fafc;

    transition:.4s;
}

.sponsor-form-card textarea{

    min-height:180px;
}

.sponsor-form-card input:focus,
.sponsor-form-card select:focus,
.sponsor-form-card textarea:focus{

    outline:none;

    box-shadow:
        0 0 0 3px rgba(0,107,63,.15);
}

.sponsor-submit-btn{

    padding:16px 40px;

    border-radius:50px;

    background:var(--primary-green);

    color:white;

    font-weight:600;

    border:none;

    transition:.4s;
}

.sponsor-submit-btn:hover{

    background:white;

    color:var(--primary-green);

    border:1px solid var(--primary-green);

    transform:translateY(-3px);
}


@media(max-width:768px){

    .sponsor-header h1{

        font-size:2.5rem;
    }

    .sponsor-form-card{

        padding:35px;
    }

    .sponsor-watermark{

        font-size:4rem;
    }
}


.opportunity-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:20px;

    color:var(--primary-green);

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.opportunity-link:hover{

    gap:14px;

    color:var(--navy-blue);
}


.vendor-hero{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;
}

.vendor-watermark{

    position:absolute;

    top:60px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:900;

    color:rgba(0,0,0,.03);

    pointer-events:none;
}

.vendor-header{

    max-width:850px;

    margin:0 auto 80px;
}

.vendor-header h1{

    font-size:4rem;

    color:var(--navy-blue);

    margin-bottom:25px;
}

.vendor-header p{

    color:#666;

    max-width:700px;

    margin:auto;

    line-height:2;
}

.vendor-form-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:35px;

    padding:60px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.08);
}

.vendor-form-card label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

    color:var(--navy-blue);
}

.vendor-form-card input,
.vendor-form-card select,
.vendor-form-card textarea{

    width:100%;

    padding:18px 20px;

    border:none;

    border-radius:18px;

    background:#f8fafc;
}

.vendor-form-card textarea{

    min-height:180px;
}

.vendor-submit-btn{

    background:var(--primary-green);

    color:white;

    border:none;

    border-radius:50px;

    padding:16px 40px;

    font-weight:600;
}


.host-hero{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;
}

.host-watermark{

    position:absolute;

    top:60px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:900;

    color:rgba(0,0,0,.03);

    pointer-events:none;
}

.host-header{

    max-width:850px;

    margin:0 auto 80px;
}

.host-header h1{

    font-size:4rem;

    color:var(--navy-blue);

    margin-bottom:25px;
}

.host-header p{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:2;
}

.host-benefit-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);

    transition:.4s;
}

.host-benefit-card:hover{

    transform:translateY(-8px);
}

.host-benefit-card i{

    font-size:2.5rem;

    color:var(--primary-green);

    margin-bottom:15px;
}

.host-form-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:35px;

    padding:60px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.08);
}

.host-form-card label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

    color:var(--navy-blue);
}

.host-form-card input,
.host-form-card select,
.host-form-card textarea{

    width:100%;

    padding:18px 20px;

    border:none;

    border-radius:18px;

    background:#f8fafc;
}

.host-form-card textarea{

    min-height:180px;
}

.host-submit-btn{

    background:var(--primary-green);

    color:white;

    border:none;

    border-radius:50px;

    padding:16px 40px;

    font-weight:600;

    transition:.4s;
}

.host-submit-btn:hover{

    background:white;

    color:var(--primary-green);

    border:1px solid var(--primary-green);
}

@media(max-width:768px){

    .host-header h1{

        font-size:2.5rem;
    }

    .host-watermark{

        font-size:4rem;
    }

    .host-form-card{

        padding:35px;
    }
}

.sponsor-hero{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;
}

.sponsor-watermark{

    position:absolute;

    top:60px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:900;

    color:rgba(0,0,0,.03);

    pointer-events:none;
}

.sponsor-header{

    max-width:850px;

    margin:0 auto 80px;
}

.sponsor-header h1{

    font-size:4rem;

    color:var(--navy-blue);

    margin-bottom:25px;
}

.sponsor-header p{

    color:#666;

    line-height:2;

    max-width:700px;

    margin:auto;
}

.sponsor-benefit-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:35px;

    text-align:center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.06);

    transition:.4s;
}

.sponsor-benefit-card:hover{

    transform:translateY(-8px);
}

.sponsor-benefit-card i{

    font-size:2.5rem;

    color:var(--primary-green);

    margin-bottom:15px;
}

.sponsor-form-card{

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:35px;

    padding:60px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.08);
}

.sponsor-form-card label{

    display:block;

    margin-bottom:12px;

    font-weight:600;

    color:var(--navy-blue);
}

.sponsor-form-card input,
.sponsor-form-card select,
.sponsor-form-card textarea{

    width:100%;

    padding:18px 20px;

    border:none;

    border-radius:18px;

    background:#f8fafc;
}

.sponsor-form-card textarea{

    min-height:180px;
}

.sponsor-submit-btn{

    background:var(--primary-green);

    color:white;

    border:none;

    border-radius:50px;

    padding:16px 40px;

    font-weight:600;

    transition:.4s;
}

.sponsor-submit-btn:hover{

    transform:translateY(-3px);
}


.success-section{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:160px 0;

    overflow:hidden;
}

.success-watermark{

    position:absolute;

    top:80px;

    left:50%;

    transform:translateX(-50%);

    font-size:10rem;

    font-weight:900;

    color:rgba(0,0,0,.03);

    pointer-events:none;
}

.success-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.5);

    border-radius:40px;

    padding:80px 60px;

    text-align:center;

    max-width:850px;

    margin:auto;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);
}

.success-icon{

    font-size:5rem;

    color:var(--primary-green);

    margin-bottom:25px;
}

.success-card h1{

    font-size:3rem;

    color:var(--navy-blue);

    margin-bottom:25px;
}

.success-card p{

    max-width:650px;

    margin:0 auto 40px;

    color:#666;

    line-height:2;
}

.success-actions{

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;
}

.success-home-btn{

    background:var(--primary-green);

    color:white;

    border:none;

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;
}

.success-events-btn{

    background:var(--navy-blue);

    color:white;

    border:none;

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;
}

.success-home-btn:hover,
.success-events-btn:hover{

    transform:translateY(-3px);
}


.checkout-section{

    padding:120px 0;

    background:#f8f9fb;

}

.checkout-card{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.checkout-header{

    text-align:center;

    margin-bottom:40px;

}

.checkout-summary{

    border:1px solid #ececec;

    border-radius:15px;

    overflow:hidden;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    padding:18px 25px;

    border-bottom:1px solid #eee;

}

.summary-row.total{

    background:#111;

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.pay-btn{

    width:100%;

    margin-top:35px;

    background:#0BAA60;

    color:#fff;

    border:none;

    padding:18px;

    border-radius:12px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.pay-btn:hover{

    transform:translateY(-2px);

}

.secure-text{

    margin-top:20px;

    text-align:center;

    color:#777;

}


.checkin-page{

    padding:80px 20px;
    background:#f6f8fb;
    min-height:100vh;

}

.checkin-card{

    max-width:650px;
    margin:auto;
    padding:50px;
    border-radius:20px;
    background:#fff;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.checkin-card.success{

    border-top:8px solid #0B8A3B;

}

.checkin-card.used{

    border-top:8px solid #F0A500;

}

.checkin-card.invalid{

    border-top:8px solid #D62828;

}

.checkin-card .icon{

    font-size:70px;
    margin-bottom:20px;

}

.checkin-card h1{

    font-size:32px;
    margin-bottom:15px;

}

.checkin-card h2{

    margin-top:35px;
    color:#0B4F2F;

}

.checkin-card p{

    font-size:18px;
    margin:10px 0;

}