/*==================================================
GLOBAL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Open',sans-serif;
    background:#040b14;
    color:#fff;
    overflow-x:hidden;
}

/*==================================================
HERO SECTION
==================================================*/

.hero{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

/*================ VIDEO =================*/

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

/*================ OVERLAY =================*/

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(to right,
    rgba(0,0,0,.50),
    rgba(0,0,0,.25),
    rgba(0,0,0,.48));

}

/*================ CONTENT =================*/

.hero-content{

    position:relative;
    z-index:5;

    width:90%;
    max-width:620px;

    margin:auto;

    text-align:center;

    padding:45px 35px;

    background:rgba(0,0,0,.18);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    overflow:hidden;

    box-sizing:border-box;

}

.hero-logo{

    width:120px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:40px;

    line-height:1.1;

    font-weight:600;

    letter-spacing:1px;

    color:#ffffff;

    text-transform:uppercase;

    margin:18px 0;

    white-space:nowrap;

}

.hero-content h3{

    font-size:24px;

    letter-spacing:6px;

    font-weight:600;

    color:#8affc1;

    margin-bottom:18px;

    text-transform:uppercase;

}

.hero-content h4{

    font-size:17px;

    font-weight:500;

    color:#ffffff;

    line-height:1.8;

    text-transform:uppercase;

    letter-spacing:1.5px;

}

.hero-content h4 strong{

    color:#8affc1;

}

.hero-tagline{

    margin-top:30px;

    font-size:42px;

    color:#8affc1;

    font-family:cursive;

    font-weight:700;

}

.hero-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:35px;

}

.hero-social a{

    width:55px;
    height:55px;

    border-radius:50%;

    background:#fff;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:22px;

    transition:.4s;

}

.hero-social a:hover{

    background:#8affc1;

    transform:translateY(-8px);

}

/*================ SUB TITLE =================*/

.hero-subtitle{

    display:inline-block;

    color:#8affc1;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:18px;

}

/*================ TITLE =================*/

.hero h1{

    font-size:82px;

    line-height:1;

    margin-bottom:25px;

    color:#fff;

}

.hero h1 span{

    display:block;

    margin-top:20px;

    font-size:28px;

    line-height:1.5;

    color:#8affc1;

    font-weight:600;

}

/*================ DESCRIPTION =================*/

.hero p{

    max-width:650px;

    margin:30px auto;

    color:#e7e7e7;

    line-height:1.9;

    font-size:18px;

}

/*================ BUTTONS =================*/

.hero-btns{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:16px 36px;

    background:#8affc1;

    color:#04120d;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-6px);

}

.btn-secondary{

    padding:16px 36px;

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    backdrop-filter:blur(10px);

    transition:.35s;

}

.btn-secondary:hover{

    background:#8affc1;

    color:#04120d;

}

/*================ SCROLL =================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    z-index:50;

}

.scroll-down span{

    display:block;

    width:28px;
    height:48px;

    border:2px solid #fff;

    border-radius:25px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:7px;
    height:7px;

    background:#8affc1;

    border-radius:50%;

    left:50%;
    top:8px;

    transform:translateX(-50%);

    animation:scroll 2s infinite;

}

/*================ FLOATING LEAVES =================*/

.leaf{

    position:absolute;

    width:22px;
    height:22px;

    background:#8affc1;

    border-radius:50% 0;

    opacity:.35;

    animation:leafMove linear infinite;

}

.leaf1{

    left:10%;
    animation-duration:12s;

}

.leaf2{

    left:35%;
    animation-duration:18s;

}

.leaf3{

    left:65%;
    animation-duration:15s;

}

.leaf4{

    left:90%;
    animation-duration:20s;

}

/*================ ANIMATION =================*/

@keyframes leafMove{

    from{

        transform:translateY(110vh) rotate(0deg);

    }

    to{

        transform:translateY(-120px) rotate(360deg);

    }

}

@keyframes scroll{

    0%{

        opacity:0;
        top:8px;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;
        top:28px;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(70px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero h1{

    font-size:60px;

}

.hero h1 span{

    font-size:22px;

}

.hero-content{

    padding:35px;

}

}

@media(max-width:768px){

.hero{

    height:auto;

    min-height:100vh;

    padding:130px 0 80px;

}

.hero h1{

    font-size:42px;

}

.hero h1 span{

    font-size:19px;

}

.hero p{

    font-size:16px;

}

.hero-content{

    padding:30px 20px;

}

.hero-btns{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

}

}


/*==========================================
ABOUT SECTION
==========================================*/

.about{

    position:relative;

    padding:120px 0;

    background:#07131a;

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    left:-150px;
    top:-150px;

    border-radius:50%;

    background:#32d29620;

    filter:blur(140px);

}

.about::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    right:-120px;
    bottom:-120px;

    border-radius:50%;

    background:#0ea5e915;

    filter:blur(130px);

}

.about-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*==========================
COVERFLOW
==========================*/

.about-gallery{

    position:relative;

    height:650px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.coverflow{

   position:relative;

    width:100%;

    height:100%;

    perspective:1500px;

    overflow:visible;

    cursor:grab;

}

/*==========================*/

.cover{

    position:absolute;

    width:360px;

    height:480px;

    border-radius:30px;

    overflow:hidden;

    transition:.8s ease;

    cursor:pointer;

    left:50%;

    top:50%;

    transform-style:preserve-3d;

    transform:
    translate(-50%,-50%);

    box-shadow:0 30px 80px rgba(0,0,0,.45);

    transform-origin:center center;
    will-change: transform;

}

.cover img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*==========================
CENTER
==========================*/

.cover:nth-child(1){

    transform:
    translate(-50%,-50%)
    scale(1);

    z-index:5;

}

/*==========================
LEFT
==========================*/

.cover:nth-child(2){

    transform:
    translate(-135%,-50%)
    rotateY(35deg)
    scale(.82);

    z-index:4;

    opacity:.75;

}

/*==========================
RIGHT
==========================*/

.cover:nth-child(3){

    transform:
    translate(35%,-50%)
    rotateY(-35deg)
    scale(.82);

    z-index:4;

    opacity:.75;

}

/*==========================
BACK
==========================*/

.cover:nth-child(4){

    transform:
    translate(-220%,-50%)
    rotateY(55deg)
    scale(.65);

    opacity:.25;

}

.cover:nth-child(5){

    transform:
    translate(120%,-50%)
    rotateY(-55deg)
    scale(.65);

    opacity:.25;

}

/*==========================
HOVER
==========================*/

.cover:hover{

    filter:brightness(1.1);

}


/*==========================
CONTENT
==========================*/

.section-tag{

    color:#8affc1;

    letter-spacing:3px;

    font-size:14px;

    display:inline-block;

    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;

    line-height:1.25;

    margin-bottom:25px;

}

.about-content p{

    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:40px;

}

/*==========================
GRID
==========================*/

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:40px;

}

.about-box{

    padding:25px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.about-box:hover{

    transform:translateY(-10px);

    border-color:#8affc1;

}

.about-box i{

    font-size:28px;

    color:#8affc1;

    margin-bottom:15px;

}

.about-box h4{

    margin-bottom:10px;

    font-size:22px;

}

.about-box p{

    margin:0;

    font-size:15px;

    line-height:1.8;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

    .about-container{

    grid-template-columns:1fr;

    }

    .about-gallery{

    height:560px;

    margin-bottom:40px;

    }

    }

    @media(max-width:768px){

    .about{

    padding:80px 0;

    }

    .about-content h2{

    font-size:34px;

    }

    .about-grid{

    grid-template-columns:1fr;

    }

    .cover{

    width:260px;

    height:360px;

    }

    .cover:nth-child(2){

    transform:
    translate(-95%,-50%)
    rotateY(30deg)
    scale(.75);

    }

    .cover:nth-child(3){

    transform:
    translate(-5%,-50%)
    rotateY(-30deg)
    scale(.75);

    }

    .cover:nth-child(4),
    .cover:nth-child(5){

    display:none;

    }

    .experience-card{

    position:relative;

    bottom:auto;

    right:auto;

    margin:30px auto 0;

    width:max-content;

    }

}

/*======================================
IMPACT SECTION
======================================*/

.impact{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
    rgba(3,12,18,.65),
    rgba(3,12,18,.25)
    ),
    url("../images/impact-bg.jfif");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    overflow:hidden;

}

.impact::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at left,
    rgba(73,255,170,.12),
    transparent 45%),

    radial-gradient(circle at right,
    rgba(0,170,255,.08),
    transparent 40%);

    pointer-events:none;

}

.impact-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top left,#8affc11a,transparent 45%),
    radial-gradient(circle at bottom right,#00d9ff18,transparent 45%);

}

.impact-container{

    width:90%;
    max-width:1350px;

    margin:auto;

    position:relative;
    z-index:2;

}

/*========================*/

.impact-heading{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.impact-heading span{

    color:#8affc1;

    font-size:15px;

    letter-spacing:4px;

    font-weight:600;

}

.impact-heading h2{

    font-size:52px;

    margin:18px 0;

    line-height:1.2;

}

.impact-heading p{

    color:#d8d8d8;

    line-height:1.9;

}

/*========================*/

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*========================*/

.impact-card{

    padding:45px 30px;

    text-align:center;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.4s;

}

.impact-card:hover{

    transform:translateY(-12px);

    border-color:#8affc1;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.impact-card i{

    font-size:45px;

    color:#8affc1;

    margin-bottom:20px;

}

.impact-card h3{

    font-size:50px;

    color:#fff;

    margin-bottom:12px;

}

.impact-card p{

    color:#d8d8d8;

    font-size:17px;

}

/*========================*/

@media(max-width:991px){

.impact-grid{

grid-template-columns:repeat(2,1fr);

}

.impact-heading h2{

font-size:40px;

}

}

@media(max-width:768px){

.impact{

padding:80px 0;

}

.impact-grid{

grid-template-columns:1fr;

}

.impact-heading h2{

font-size:30px;

}

.impact-card{

padding:35px 20px;

}

.impact-card h3{

font-size:38px;

}

}

/*==========================================
OUR INITIATIVES
==========================================*/

.initiatives{

    position:relative;

    padding:120px 0;

    background:#07131a;

    overflow:hidden;

}

.section-title{

    width:90%;
    max-width:760px;

    margin:auto auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#8affc1;

    letter-spacing:4px;

    font-size:15px;

    font-weight:600;

    margin-bottom:15px;

}

.section-title h2{

    font-size:52px;

    margin-bottom:20px;

    line-height:1.2;

}

.section-title p{

    color:#d8d8d8;

    line-height:1.8;

}

/*=========================*/

.initiatives-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================*/

.initiative-card{

    position:relative;

    padding:45px 35px;

    border-radius:25px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.45s;

    overflow:hidden;

}

.initiative-card::before{

content:"";

position:absolute;

top:0;
left:0;

height:4px;
width:0;

background:linear-gradient(
90deg,
#8affc1,
#00d9ff,
#8affc1
);

background-size:300%;

transition:.6s;

}

.initiative-card:hover::before{

width:100%;

animation:borderMove 2s linear infinite;

}

@keyframes borderMove{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}

.initiative-card:hover{

    transform:translateY(-12px);

    border-color:#8affc1;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

/*=========================*/

.icon{

    width:75px;
    height:75px;

    border-radius:20px;

    background:#8affc1;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    transition:.4s;

}

.icon i{

    font-size:34px;

    color:#04120d;

}

.initiative-card:hover .icon{

    transform:rotate(-10deg) scale(1.1);

}

/*=========================*/

.initiative-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.initiative-card p{

    color:#d6d6d6;

    line-height:1.9;

}

/*=========================*/

@media(max-width:991px){

.initiatives-container{

grid-template-columns:repeat(2,1fr);

}

.section-title h2{

font-size:40px;

}

}

@media(max-width:768px){

.initiatives{

padding:80px 0;

}

.initiatives-container{

grid-template-columns:1fr;

}

.section-title h2{

font-size:30px;

}

.initiative-card{

padding:35px 25px;

}

}



/*==========================================
PAST EVENTS
==========================================*/

.past-events{

    padding:120px 0;

    background:#07131a;

}

.past-events-grid{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.past-card{

    position:relative;

    height:380px;

    border-radius:25px;

    overflow:hidden;

    cursor:pointer;

}

.past-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.past-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

}

.past-overlay span{

    color:#8affc1;

    margin-bottom:10px;

    font-size:14px;

    letter-spacing:2px;

}

.past-overlay h3{

    font-size:28px;

    line-height:1.3;

}

.past-card:hover img{

    transform:scale(1.12);

}

.events-btn{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:60px;

}

@media(max-width:991px){

.past-events-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.past-events{

padding:80px 0;

}

.past-events-grid{

grid-template-columns:1fr;

}

.past-card{

height:300px;

}

.past-overlay h3{

font-size:22px;

}

}


/*======================================
GUEST SPEAKERS SECTION
======================================*/

.speakers{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(135deg,#041018,#071922,#0a2330);

    overflow:hidden;

}

.speakers::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#39ffb622;

    border-radius:50%;

    filter:blur(180px);

    left:-180px;
    top:-120px;

}

.speakers::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:#00bfff22;

    border-radius:50%;

    filter:blur(180px);

    right:-120px;
    bottom:-100px;

}

/*========================*/

.section-heading{

    width:90%;
    max-width:900px;

    margin:auto;
    margin-bottom:70px;

    text-align:center;

    position:relative;

    z-index:2;

}

.section-heading span{

    display:inline-block;

    color:#82ffcb;

    letter-spacing:4px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:52px;

    line-height:1.2;

    margin-bottom:22px;

}

.section-heading p{

    color:#d8d8d8;

    line-height:1.9;

    max-width:720px;

    margin:auto;
    font-size: 18px;

}

/*========================*/

.speaker-grid{

    width:96%;
    max-width:1700px;

    margin:60px auto 0;

    display:flex;
    flex-wrap:wrap;

    justify-content:center;

    gap:35px;

}

/*========================*/

.speaker-card{

    position:relative;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    overflow:hidden;

    transition:.45s;
    width:320px;
    min-height:470px;

    flex:0 0 320px;

}

.speaker-card:hover{

    transform:translateY(-15px);

    border-color:#78ffb9;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

/*========================*/

.speaker-image{

    position:relative;

    padding:25px 25px 0;

    text-align:center;

}

.speaker-image img{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #7cffc2;

    box-shadow:0 0 35px rgba(124,255,194,.35);

    transition:.5s;

}

.speaker-card:hover .speaker-image img{

    transform:scale(1.06);

}

/*========================*/

.speaker-content{

    padding:22px 22px 25px;

    text-align:center;

}

.speaker-role{

    display:inline-block;

    background:#78ffb91a;

    color:#78ffb9;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:12px;

}

.speaker-content h3{

    font-size:31px;

    margin-bottom:4px;

}

.speaker-content h5{

    font-size:18px;

    color:#cfd6db;

    font-weight:500;

    margin-bottom:12px;

}

/*==========================
EVENT BADGE
==========================*/

.speaker-event{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 16px;

    background:rgba(120,255,185,.08);

    border:1px solid rgba(120,255,185,.18);

    border-radius:30px;

    color:#82ffcb;

    font-size:13px;

    font-weight:700;

    margin-bottom:14px;

}

.speaker-event i{

    color:#82ffcb;

    font-size:14px;

}

/*==========================
DESCRIPTION
==========================*/

.speaker-content p{

    color:#cfd7db;

    line-height:1.75;

    font-size:14px;

    min-height:80px;

    margin-bottom:10px;

}

/*==========================
QUOTE
==========================*/

.quote-icon{

    margin-top:8px;

    font-size:32px;

    color:#7cffc2;

    transition:.4s;

}

.speaker-card:hover .quote-icon{

    transform:scale(1.25) rotate(-10deg);

    color:#ffffff;

}

/*==========================
HOVER GLOW
==========================*/

.speaker-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:1px;

    background:linear-gradient(135deg,#7cffc2,#00bfff);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    opacity:0;

    transition:.4s;

}

.speaker-card:hover::before{

    opacity:1;

}

/*==========================
IMAGE GLOW
==========================*/

.speaker-image::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    background:#78ffb930;

    border-radius:50%;

    filter:blur(50px);

    left:50%;

    top:48%;

    transform:translate(-50%,-50%);

    z-index:-1;

}

/*==========================
ANIMATION
==========================*/

.speaker-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1400px){

.speaker-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:991px){

.speakers{

    padding:90px 0;

}

.section-heading h2{

    font-size:40px;

}

.speaker-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

}

@media(max-width:768px){

.speaker-grid{

    grid-template-columns:1fr;

}

.speaker-image img{

    width:170px;

    height:170px;

}

.section-heading h2{

    font-size:32px;

}

.speaker-content h3{

    font-size:26px;

}

.speaker-content h5{

    font-size:16px;

}

.speaker-content{

    padding:25px;

}

}

/*==========================================
GALLERY
==========================================*/

.gallery{

    padding:120px 0;

    background:#07131a;

}

.gallery-grid{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:260px;

    gap:25px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    cursor:pointer;

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:flex-end;

    flex-direction:column;

    padding:30px;

    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.08));

    opacity:0;

    transition:.45s;

}

.gallery-overlay h3{

    color:#fff;

    font-size:28px;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item.large{

grid-row:span 1;

}

}

@media(max-width:768px){

.gallery{

padding:80px 0;

}

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:260px;

}

.gallery-overlay{

opacity:1;

}

.gallery-overlay h3{

font-size:22px;

}

}


/*==========================================
AWARDS
==========================================*/

.awards{

    position:relative;

    overflow:hidden;

    padding:120px 8%;

    background:
    linear-gradient(
        rgba(4,16,20,.60),
        rgba(3,14,18,.68)
    ),
    url("../images/awards-bg.jfif");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

}

.awards::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(0,255,170,.15),
    transparent 40%),

    radial-gradient(circle at 80% 80%,
    rgba(0,170,255,.12),
    transparent 45%);

    pointer-events:none;

}

.awards-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.award-card{

    background:rgba(10,22,30,.70);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

}

.award-card:hover{

    transform:translateY(-12px);

    border-color:#8affc1;

}

.award-card img{

    width:90px;

    margin-bottom:25px;

}

.award-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.award-card p{

    color:#d8d8d8;

    line-height:1.8;

}

.awards-section{

    position:relative;
    padding:120px 0;

    background:
    radial-gradient(circle at 15% 20%,#0bbd7d18 0%,transparent 35%),
    radial-gradient(circle at 85% 75%,#00bfff10 0%,transparent 35%),
    linear-gradient(135deg,#041018,#07161e,#041018);

    overflow:hidden;
}

.awards-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at left,#1aff9c15 0%,transparent 45%),
        radial-gradient(circle at right,#00d4ff12 0%,transparent 45%);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px){

.awards-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.awards{

padding:80px 0;

}

.awards-container{

grid-template-columns:1fr;

}

.partners-track{

gap:45px;

}

.partners-track img{

width:90px;

}

}


/*==========================================
CALL TO ACTION
==========================================*/

.cta-section{

    position:relative;

    padding:140px 0;

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    text-align:center;

    overflow:hidden;

}

.cta-section::before{

content:"";

position:absolute;

inset:0;

background:

radial-gradient(circle at 20% 25%,
rgba(0,255,170,.14),
transparent 40%),

radial-gradient(circle at 85% 70%,
rgba(0,170,255,.10),
transparent 45%),

radial-gradient(circle at 50% 100%,
rgba(0,255,170,.08),
transparent 50%);

pointer-events:none;

animation:auroraMove 12s linear infinite alternate;
}

.cta-section::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:#00d9ff15;

    border-radius:50%;

    filter:blur(160px);

    right:-120px;
    bottom:-120px;

}

.cta-container{

    position:relative;

    z-index:5;

    width:90%;
    max-width:900px;

    margin:auto;

}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(138,255,193,.12);

    color:#8affc1;

    letter-spacing:2px;

    margin-bottom:25px;

}

.cta-container h2{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.cta-container p{

    max-width:760px;

    margin:auto;

    color:#ddd;

    line-height:2;

    font-size:18px;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    min-width:200px;

}

@media(max-width:768px){

.cta-section{

padding:90px 0;

background-attachment:scroll;

}

.cta-container h2{

font-size:34px;

}

.cta-container p{

font-size:16px;

}

}


/*=========================================
INITIATIVE MOTION EFFECT
=========================================*/

/* Fade Up Animation */

@keyframes initiativeFade{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* Floating Animation */

@keyframes floating{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* Icon Glow */

@keyframes glowPulse{

    0%{

        box-shadow:0 0 0 rgba(138,255,193,.2);

    }

    50%{

        box-shadow:
        0 0 18px rgba(138,255,193,.45),
        0 0 35px rgba(138,255,193,.25);

    }

    100%{

        box-shadow:0 0 0 rgba(138,255,193,.2);

    }

}

/* Card */

.initiative-card{

    animation:initiativeFade .8s ease forwards;

    opacity:0;

}

/* Delay */

.initiative-card:nth-child(1){animation-delay:.1s;}
.initiative-card:nth-child(2){animation-delay:.2s;}
.initiative-card:nth-child(3){animation-delay:.3s;}
.initiative-card:nth-child(4){animation-delay:.4s;}
.initiative-card:nth-child(5){animation-delay:.5s;}
.initiative-card:nth-child(6){animation-delay:.6s;}

/* Hover */

.initiative-card:hover{

    transform:translateY(-12px) scale(1.02);

}

/* Icon */

.initiative-card .icon{

    animation:glowPulse 3s infinite;

}

/* Hover Floating Icon */

.initiative-card:hover .icon{

    animation:
    glowPulse 2s infinite,
    floating 2s ease-in-out infinite;

}