/* HEADER */
header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
padding:20px 5%;
backdrop-filter:blur(20px);
background:rgba(2,5,45,.75);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
height: 60px;
}

.logo img{
height:100px;
}

.menu{
display:flex;
gap:40px;
list-style:none;
}

.menu a{
text-decoration:none;
color:#fff;
font-weight:600;
font-size:14px;
letter-spacing:1px;
}

.menu a:hover{
color:#00ff95;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:160px 5% 80px;
position:relative;
}

.hero-left{
max-width:750px;
z-index:2;
}

.badge{
display:inline-block;
padding:10px 22px;
background:rgba(0,166,81,.2);
border:1px solid rgba(0,255,150,.4);
border-radius:50px;
margin-bottom:25px;
font-weight:700;
}

.hero h1{
font-size:34px;

}

.hero p{
font-size:20px;
line-height:1.7;
color:#d6d6d6;
margin-bottom:40px;
text-align:justify;
}

.buttons{
display:flex;
gap:20px;
}

.btn{
padding:18px 35px;
border-radius:50px;
text-decoration:none;
font-weight:700;
}

.btn-green{
background:var(--green);
color:#fff;
}

.btn-outline{
border:2px solid #fff;
color:#fff;
}

/* RIGHT GRAPHIC */

.hero-right{
position:relative;
}

.energy{
width:550px;
height:550px;
border-radius:50%;
position:relative;

background:
radial-gradient(circle,
rgba(183,255,224,.95) 0%,
rgba(0,166,81,.35) 35%,
rgba(0,120,255,.15) 70%,
transparent 100%);

animation:pulse 5s infinite alternate;
}

.energy:before{
content:'';
position:absolute;
inset:80px;
border:1px solid rgba(255,255,255,.15);
border-radius:50%;
}

.energy:after{
content:'';
position:absolute;
inset:180px;
border:1px solid rgba(255,255,255,.15);
border-radius:50%;
}

@keyframes pulse{
from{
transform:scale(.95);
}
to{
transform:scale(1.05);
}
}

/* MOBILE */

.mobile-btn{
display:none;
font-size:34px;
cursor:pointer;
}

@media(max-width:991px){

.mobile-btn{
display:block;
}

.menu{
display:none;
}

.hero{
flex-direction:column;
text-align:center;
padding-top:160px;
}

.hero h1{
font-size:35px;
}

.hero p{
font-size:18px;
}

.hero-right{
margin-top:50px;
}

.energy{
width:320px;
height:320px;
}

.energy:before{
inset:40px;
}
 
.energy:after{
inset:90px;
}

.buttons{
justify-content:center;
flex-wrap:wrap;
}

.logo img{
height: 131px;
margin-left: -50px;
margin-top: 60px;
}

}
.impact-section{
    position:relative;
    padding:120px 0;
    background:#02052d;
    overflow:hidden;
}

.impact-section:before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,
    rgba(0,255,150,.15),
    transparent 70%);
    left:-200px;
    top:-200px;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.sub-title{
    display:inline-block;
    color:#00ff95;
    letter-spacing:3px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.section-header h2{
    font-size:64px;
    font-weight:900;
    margin-bottom:25px;
}

.section-header p{
    color:#cfd4e1;
    font-size:20px;
    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:70px;
}

.stat-card{
    text-align:center;
    padding:40px;
    border-radius:25px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#00ff95;
}

.stat-card h3{
    font-size:60px;
    font-weight:900;
    color:#00ff95;
}

.stat-card span{
    font-size:18px;
    color:#d6d6d6;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-box{
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
    background:rgba(0,255,150,.08);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.feature-box h4{
    font-size:28px;
    margin-bottom:15px;
}

.feature-box p{
    color:#cfd4e1;
    line-height:1.8;
}

@media(max-width:991px){

.section-header h2{
    font-size:42px;
}

.section-header p{
    font-size:17px;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.features-grid{
    grid-template-columns:1fr;
}

.stat-card h3{
    font-size:42px;
}

}

@media(max-width:576px){

.stats-grid{
    grid-template-columns:1fr;
}

.section-header h2{
    font-size:34px;
}

}
.event-showcase{
    padding:20px 0;
    background:#f7f7f7;
    position:relative;
}

.event-showcase .container{
    width:90%;
    max-width:1450px;
    margin:auto;
}

.section-top{
    display:flex;
    justify-content:space-between;
    gap:80px;
    margin-bottom:60px;
    align-items:flex-end;
}

.tag{
    color:#00a651;
    font-weight:700;
    letter-spacing:3px;
    display:block;
    margin-bottom:20px;
}

.section-top h2{
    font-size:72px;
    font-weight:900;
    line-height:1;
    color:#101010;
}

.section-content{
    max-width:500px;
    color:#555;
    line-height:1.9;
    font-size:18px;
}

.gallery-wrapper{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:30px;
}

.gallery-main{
    position:relative;
    overflow:hidden;
    border-radius:30px;
}

.gallery-main img{
    width:100%;
    height:750px;
    object-fit:cover;
    transition:1s;
}

.gallery-main:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:40px;
    bottom:40px;
    color:#fff;
}

.gallery-overlay span{
    background:#00a651;
    padding:10px 18px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:15px;
}

.gallery-overlay h3{
    font-size:42px;
    max-width:500px;
}

.gallery-side{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.gallery-side img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:30px;
    transition:.5s;
}

.gallery-side img:hover{
    transform:translateY(-10px);
}

.slider-nav{
    display:flex;
    justify-content:flex-end;
    gap:20px;
    margin-top:40px;
}

.nav-btn{
    width:70px;
    height:70px;
    border-radius:50%;
    border:2px solid #ddd;
    background:#fff;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
}

.nav-btn:hover{
    background:#00a651;
    color:#fff;
    border-color:#00a651;
}

/* Mobile */

@media(max-width:991px){

.section-top{
    flex-direction:column;
    gap:25px;
}

.section-top h2{
    font-size:42px;
}

.gallery-wrapper{
    grid-template-columns:1fr;
}

.gallery-main img{
    height:350px;
}

.gallery-side{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.gallery-side img{
    height:180px;
}

.gallery-overlay{
    left:20px;
    bottom:20px;
}

.gallery-overlay h3{
    font-size:26px;
}

.slider-nav{
    justify-content:center;
}

}
.testimonial-slider{
    position:relative;
    min-height:350px;
}

.testimonial{
    display:none;
    animation:fadeUp .7s ease;
}

.testimonial.active{
    display:block;
}

.testimonial-text{
    font-size:36px;
    line-height:1.6;
    font-weight:700;
    text-align:center;
    color:#fff;
    margin-bottom:40px;
    padding: 90px;
}

.author{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.author img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #00ff95;
}

.author h4{
    font-size:24px;
    margin-bottom:5px;
}

.author span{
    color:#cfcfcf;
}

.testimonial-controls{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-top:50px;
}

.testimonial-controls button{
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#00a651;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.dots{
    display:flex;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#666;
}

.dot.active{
    background:#00ff95;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@media(max-width:768px){

.testimonial-text{
font-size:22px;
}

.author{
flex-direction:column;
}

.author img{
width:70px;
height:70px;
}

.author h4{
font-size:20px;
}

}
.speakers-section{
    padding:120px 0;
    background:#02052d;
    overflow:hidden;
}

.speakers-section .container{
    width:90%;
    max-width:1500px;
    margin:auto;
}

.speaker-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:60px;
}

.subtitle{
    color:#00ff95;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    display:block;
    margin-bottom:15px;
}

.speaker-header h2{
    font-size:70px;
    color:#fff;
    margin-bottom:15px;
    font-weight:900;
}

.speaker-header p{
    max-width:650px;
    color:#d2d2d2;
    line-height:1.8;
}

.see-more-btn{
    border:1px solid rgba(255,255,255,.3);
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
}

.speaker-slider-wrapper{
    position:relative;
}

.speaker-slider{
    display:flex;
    gap:35px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.speaker-slider::-webkit-scrollbar{
    display:none;
}

.speaker-card{
    min-width:320px;
    flex-shrink:0;
}

.speaker-image{
    width:320px;
    height:320px;
    border-radius:50%;
    overflow:hidden;
    margin-bottom:30px;
    position:relative;
}

.speaker-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.speaker-card:hover img{
    transform:scale(1.08);
}

.speaker-card:hover .speaker-image{
    box-shadow:
    0 0 40px rgba(0,255,150,.35);
}

.speaker-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
    font-weight:800;
}

.speaker-card p{
    color:#c8d0d5;
    line-height:1.8;
}

.speaker-nav{
    width:65px;
    height:65px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    background:transparent;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    position:absolute;
    top:130px;
    z-index:10;
}

.prev{
    left:-20px;
}

.next{
    right:-20px;
}

.speaker-nav:hover{
    background:#00a651;
    border-color:#00a651;
}

@media(max-width:991px){

.speaker-header{
    flex-direction:column;
    gap:25px;
}

.speaker-header h2{
    font-size:42px;
}

.speaker-image{
    width:240px;
    height:240px;
}

.speaker-card{
    min-width:240px;
}

.speaker-card h3{
    font-size:24px;
}

.speaker-nav{
    display:none;
}

}
/* =========================
   MODERN FOOTER DESIGN
========================= */

.footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#041c32,#04293a,#064663);
    color:#fff;
    padding:80px 0 25px;
    margin-top:80px;
}

.footer::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,255,170,.08);
    border-radius:50%;
    top:-150px;
    left:-150px;
    filter:blur(50px);
}

.footer::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,.08);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
    filter:blur(50px);
}

.footer-noise{
    position:absolute;
    inset:0;
    background-image:
    radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:20px 20px;
    pointer-events:none;
}

.footer .container{
    position:relative;
    z-index:2;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   TOP SECTION
========================= */

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:60px;
    align-items:flex-start;
}

/* =========================
   LOGO AREA
========================= */

.footer-logo{
    max-width:350px;
}

.footer-logo img{
    max-width:280px;
    margin-bottom:20px;
    transition:.4s;
    margin-left: -23px;
}

.footer-logo img:hover{
    transform:scale(1.08) rotate(-3deg);
}

.footer-logo h3{
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
    background:linear-gradient(90deg,#00e5ff,#00ff99);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer-logo p{
    color:#d9e6f2;
    line-height:1.8;
    font-size:15px;
}

/* =========================
   LINKS
========================= */

.footer-links{
    display:flex;
    flex:1;
    justify-content:space-between;
    gap:40px;
}

.footer-column{
    min-width:200px;
}

.footer-column h4{
    font-size:20px;
    margin-bottom:20px;
    color:#00ffcc;
    position:relative;
}

.footer-column h4::after{
    content:'';
    width:50px;
    height:3px;
    background:#00ffcc;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:14px;
    color:#d7e4ef;
    transition:.3s;
}

.footer-column ul li:hover{
    transform:translateX(6px);
}

.footer-column ul li a{
    color:#d7e4ef;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#00ffcc;
}

/* =========================
   CONTACT
========================= */

.footer-column ul li i{
    color:#00ffcc;
    width:24px;
    margin-right:8px;
}

/* =========================
   DIVIDER
========================= */

.footer-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin:45px 0 25px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.copyright{
    color:#c7d6e2;
    font-size:14px;
}

.footer-policy{
    display:flex;
    gap:20px;
}

.footer-policy a{
    color:#c7d6e2;
    text-decoration:none;
    transition:.3s;
}

.footer-policy a:hover{
    color:#00ffcc;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    color:#fff;
    text-decoration:none;
    transition:.4s;
    border:1px solid rgba(255,255,255,.1);
}

.social-icons a:hover{
    transform:translateY(-6px) scale(1.1);
    background:linear-gradient(135deg,#00e5ff,#00ff99);
    color:#04293a;
    box-shadow:0 10px 25px rgba(0,255,170,.4);
}

/* =========================
   ANIMATION
========================= */

.footer-top,
.footer-bottom{
    animation:footerFade 1s ease;
}

@keyframes footerFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .footer-top{
        flex-direction:column;
    }

    .footer-links{
        width:100%;
        flex-wrap:wrap;
    }

    .footer-column{
        width:45%;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{
        padding:60px 0 25px;
        text-align:center;
    }

    .footer-logo{
        margin:auto;
    }

    .footer-logo h3{
        font-size:28px;
    }

    .footer-links{
        flex-direction:column;
        gap:35px;
    }

    .footer-column{
        width:100%;
    }

    .footer-column h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-policy{
        justify-content:center;
        flex-wrap:wrap;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-column ul li:hover{
        transform:none;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .footer-logo img{
        max-width:100px;
    }

    .footer-logo h3{
        font-size:24px;
    }

    .social-icons a{
        width:42px;
        height:42px;
    }

    .footer-column ul li{
        font-size:14px;
    }
}

/* ==========================
   AIDA REGISTRATION SECTION
========================== */

.aida-pricing{
    padding:100px 20px;
    position:relative;
    overflow:hidden;
}

.aida-pricing-bg{
    background:
    linear-gradient(135deg,#f7fafc,#edf7ff);
}

.aida-pricing h2{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#0b2545;
    margin-bottom:15px;
    position:relative;
}

.aida-pricing h2:after{
    content:'';
    width:90px;
    height:5px;
    background:linear-gradient(90deg,#00c853,#00b0ff);
    display:block;
    margin:15px auto 0;
    border-radius:30px;
}

.aida-email{
    text-align:center;
    font-size:18px;
    margin-bottom:50px;
    color:#444;
}

.aida-email a{
    color:#00a86b;
    font-weight:700;
    text-decoration:none;
}

.aida-email a:hover{
    color:#0077ff;
}

/* ==========================
   GRID
========================== */

.pricing-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

/* ==========================
   CARD DESIGN
========================== */

.price-card{
    background:#fff;
    border-radius:25px;
    padding:35px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
}

.price-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    top:-120px;
    right:-120px;
    opacity:.08;
}

.price-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

/* ==========================
   CARD COLORS
========================== */

.blue::before{
    background:#007bff;
}

.green::before{
    background:#00c853;
}

.orange::before{
    background:#ff9800;
}

.purple::before{
    background:#7b1fa2;
}

.red::before{
    background:#e53935;
}

.price-card h3{
    font-size:24px;
    font-weight:700;
    color:#0b2545;
    margin-bottom:25px;
    min-height:65px;
}

/* ==========================
   PRICE CIRCLE
========================== */

.price-circle{
    width:140px;
    height:140px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
    box-shadow:
    0 15px 30px rgba(0,0,0,.15);
}

.blue .price-circle{
    background:linear-gradient(135deg,#2196f3,#1565c0);
}

.green .price-circle{
    background:linear-gradient(135deg,#00c853,#009624);
}

.orange .price-circle{
    background:linear-gradient(135deg,#ff9800,#ef6c00);
}

.purple .price-circle{
    background:linear-gradient(135deg,#ab47bc,#6a1b9a);
}

.red .price-circle{
    background:linear-gradient(135deg,#ff5252,#c62828);
}

.price-card p{
    color:#666;
    font-size:15px;
    margin-bottom:25px;
}

/* ==========================
   BUTTON
========================== */

.reg-btn{
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    color:#fff;
    background:
    linear-gradient(135deg,#00c853,#00b0ff);
    transition:.4s;
    width:100%;
}

.reg-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 10px 25px rgba(0,176,255,.35);
}

/* ==========================
   POPULAR CARD EFFECT
========================== */

.price-card:nth-child(3){
    transform:scale(1.05);
    border:3px solid #00c853;
}

.price-card:nth-child(3):hover{
    transform:scale(1.08);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .pricing-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .aida-pricing{
        padding:70px 15px;
    }

    .aida-pricing h2{
        font-size:34px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .price-card{
        padding:30px 20px;
    }

    .price-card:nth-child(3){
        transform:none;
    }

    .price-card:nth-child(3):hover{
        transform:translateY(-8px);
    }

    .price-circle{
        width:120px;
        height:120px;
        font-size:26px;
    }

    .price-card h3{
        font-size:22px;
        min-height:auto;
    }

    .aida-email{
        font-size:16px;
        padding:0 10px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .aida-pricing h2{
        font-size:28px;
    }

    .price-circle{
        width:110px;
        height:110px;
        font-size:24px;
    }

    .reg-btn{
        font-size:14px;
        padding:12px 20px;
    }

}

/* ===========================
   SPONSORSHIP SECTION
=========================== */

.sponsorship-section{
    padding:100px 5%;
    background:linear-gradient(135deg,#f4f7ff,#eef5ff);
    position:relative;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.sub-title{
    display:inline-block;
    padding:8px 20px;
    background:#e7fff3;
    color:#00a86b;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.section-header h2{
    font-size:48px;
    margin:20px 0;
    color:#13294b;
}

.section-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.sponsor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.sponsor-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.sponsor-card:hover{
    transform:translateY(-10px);
}

.card-header{
    background:#7c82d7;
    color:#fff;
    padding:25px;
    display:flex;
    align-items:center;
    gap:15px;
    min-height:100px;
}

.card-header .icon{
    font-size:34px;
    color:#d8ff6d;
}

.card-header h3{
    font-size:28px;
    margin:0;
    line-height:1.1;
    font-weight:800;
}

.card-body{
    padding:30px;
    flex:1;
}

.card-body p{
    margin-bottom:20px;
    color:#333;
    line-height:1.6;
}

.card-body ul{
    margin:0;
    padding-left:20px;
}

.card-body li{
    margin-bottom:12px;
    line-height:1.6;
    color:#444;
}

.card-footer{
    background:#7c82d7;
    color:#fff;
    text-align:center;
    padding:22px;
    font-size:22px;
    font-weight:800;
    text-transform:uppercase;
}

/* Featured Card */
.featured{
    transform:scale(1.03);
    border:3px solid #7c82d7;
}

/* Colors */
.title-sponsor .card-header,
.title-sponsor .card-footer{
    background:#6d74d2;
}

.featured .card-header,
.featured .card-footer{
    background:#7c82d7;
}

.gold .card-header,
.gold .card-footer{
    background:#8d82d8;
}

/* Tablet */
@media(max-width:991px){

    .sponsor-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

    .section-header h2{
        font-size:38px;
    }
}

/* Mobile */
@media(max-width:576px){

    .sponsorship-section{
        padding:70px 20px;
    }

    .card-header h3{
        font-size:22px;
    }

    .card-footer{
        font-size:18px;
    }

    .section-header h2{
        font-size:32px;
    }
}
/* 5 Card Layout */
.sponsor-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Second Row Cards */
.silver-card{
    border:2px solid #8d82d8;
}

.tech-card{
    border:2px solid #00c896;
}

/* Silver */
.silver-card .card-header{
    background:linear-gradient(135deg,#8b8fdc,#787fd1);
}

.silver-card .card-footer{
    background:linear-gradient(135deg,#8b8fdc,#787fd1);
}

/* Tech Hub */
.tech-card .card-header{
    background:linear-gradient(135deg,#00c896,#00a97f);
}

.tech-card .card-footer{
    background:linear-gradient(135deg,#00c896,#00a97f);
}

/* Modern Hover Effects */
.silver-card:hover,
.tech-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/* Glowing Border Effect */
.tech-card{
    position:relative;
    overflow:hidden;
}

.tech-card::before{
    content:'';
    position:absolute;
    top:-100%;
    left:-100%;
    width:300%;
    height:300%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform:rotate(25deg);
    transition:.8s;
}

.tech-card:hover::before{
    left:100%;
}

/* Tablet */
@media(max-width:991px){

    .sponsor-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:768px){

    .sponsor-grid{
        grid-template-columns:1fr;
    }

    .sponsor-card{
        margin-bottom:20px;
    }
}

/* ===========================
   AGENDA SECTION
=========================== */

.agenda-section{
    padding:100px 20px;
    background:
    radial-gradient(circle at top left,#e0fff1,transparent 35%),
    radial-gradient(circle at bottom right,#e6f2ff,transparent 35%),
    #f8fbff;
}

.agenda-header{
    text-align:center;
    margin-bottom:70px;
}

.agenda-badge{
    background:linear-gradient(135deg,#00c853,#00b0ff);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.agenda-header h2{
    font-size:54px;
    margin:20px 0 10px;
    font-weight:800;
    color:#0f172a;
}

.agenda-header p{
    color:#64748b;
    font-size:18px;
}

/* TIMELINE */

.agenda-timeline{
    max-width:1200px;
    margin:auto;
    position:relative;
}


/* ITEM */

.agenda-item{
    display:flex;
    gap:40px;
    margin-bottom:30px;
    position:relative;
}

.agenda-time{
    min-width:150px;
    text-align:center;
    background:#0f172a;
    color:#fff;
    padding:15px;
    border-radius:15px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.agenda-content{
    flex:1;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.agenda-content:hover{
    transform:translateY(-5px);
}

.agenda-content h3{
    color:#00a651;
    margin-bottom:15px;
    font-size:28px;
}

.agenda-content p{
    color:#555;
    line-height:1.8;
}

.agenda-content ul{
    margin:0;
    padding-left:20px;
}

.agenda-content li{
    margin-bottom:8px;
}

/* SPECIAL CARDS */

.break .agenda-content{
    background:linear-gradient(135deg,#fff3cd,#ffe082);
}

.lunch .agenda-content{
    background:linear-gradient(135deg,#d4edda,#a5d6a7);
}

.tea .agenda-content{
    background:linear-gradient(135deg,#ffe0b2,#ffcc80);
}

.highlight .agenda-content{
    background:linear-gradient(135deg,#e1f5fe,#b3e5fc);
    border-left:6px solid #00b0ff;
}

/* MOBILE */

@media(max-width:768px){

    .agenda-header h2{
        font-size:36px;
    }

    .agenda-timeline::before{
        display:none;
    }

    .agenda-item{
        flex-direction:column;
        gap:15px;
    }

    .agenda-time{
        min-width:100%;
    }

    .agenda-content{
        padding:25px;
    }

    .agenda-content h3{
        font-size:22px;
    }
}

/* ====================================
   GREEN ENERGY HERO SECTION
==================================== */

.hero-section{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:100px 20px;

    background:
    linear-gradient(135deg,
    rgba(0,40,90,.95),
    rgba(0,90,120,.9)),
    url(images/green-energy-bg.jpg);

    background-size:cover;
    background-position:center;
}

/* Animated Background */

.hero-section::before{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    background:
    radial-gradient(circle,#00ffb31c 2px,transparent 2px);
    background-size:60px 60px;
    animation:moveBg 30s linear infinite;
}

@keyframes moveBg{
    from{
        transform:translate(0,0);
    }
    to{
        transform:translate(-200px,-200px);
    }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(0,255,170,.15),
    transparent 35%);
}

/* CONTENT */

.hero-content{
    max-width:1100px;
    position:relative;
    z-index:5;
}

.event-label{
    display:inline-block;
    padding:12px 24px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border-radius:50px;
    color:#fff;
    font-size:14px;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:30px;
}

/* TITLE */

.hero-content h1{
    font-size:75px;
    line-height:1;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-content h1 span{
    display:block;
    font-size:40px;
    letter-spacing:12px;
    margin-top:15px;
    color:#00ffb3;
}

/* THEME */

.theme-box{
    margin:40px auto;
    max-width:850px;
}

.theme-box small{
    color:#ffffff;
    font-size:20px;
}

.theme-box h3{
    color:#fff;
    font-size:34px;
    margin-top:10px;
    line-height:1.4;
}

/* DETAILS */

.event-details{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:50px;
}

.detail-card{
    min-width:250px;
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px 25px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    border-radius:20px;
    color:#fff;
    transition:.4s;
}

.detail-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.detail-card i{
    font-size:32px;
    color:#00ffb3;
}

.detail-card strong{
    display:block;
    font-size:20px;
}

.detail-card span{
    font-size:14px;
    opacity:.85;
}

/* BUTTONS */

.hero-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-register{
    padding:18px 45px;
    background:
    linear-gradient(135deg,#00c853,#00b0ff);
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.btn-register:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,255,170,.4);
}

.btn-agenda{
    padding:18px 45px;
    background:transparent;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.btn-agenda:hover{
    background:#fff;
    color:#002855;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .hero-content h1{
        font-size:60px;
    }

    .hero-content h1 span{
        font-size:40px;
        letter-spacing:6px;
    }

    .theme-box h3{
        font-size:26px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .hero-section{
        min-height:auto;
        padding:120px 15px 80px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h1 span{
        font-size:26px;
        letter-spacing:3px;
    }

    .theme-box h3{
        font-size:20px;
    }

    .detail-card{
        width:100%;
        min-width:100%;
        text-align:left;
    }

    .btn-register,
    .btn-agenda{
        width:100%;
    }

}
/* ==================================
   ABOUT SEMINAR
================================== */

.about-seminar{
    padding:100px 20px;
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,#dffaf0,transparent 30%),
    radial-gradient(circle at bottom right,#e5f1ff,transparent 30%),
    #f8fbff;
}

.about-seminar .container{
    max-width:1400px;
    margin:auto;
}

/* ========================= */

.about-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:60px;
    align-items:center;
}

/* ========================= */

.section-tag{
    display:inline-block;
    background:linear-gradient(135deg,#00c853,#00b0ff);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.about-content h2{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    font-size:18px;
    color:#475569;
    line-height:1.9;
    margin-bottom:18px;
    text-align: justify;
}

/* ========================= */

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.fuel-icon{
    width:300px;
    height:300px;
    border-radius:40px;

    background:
    linear-gradient(135deg,#00c853,#00a651);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:130px;

    box-shadow:
    0 30px 60px rgba(0,200,83,.35);

    animation:floatFuel 4s ease-in-out infinite;
}

@keyframes floatFuel{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ========================= */

.about-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.stat-box{
    flex:1;
    text-align:center;
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:
    0 15px 35px rgba(0,0,0,.06);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h3{
    color:#00a651;
    font-size:34px;
    margin-bottom:5px;
}

.stat-box span{
    color:#64748b;
}

/* ========================= */

.highlight-box{
    margin-top:80px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;

    background:#fff;
    padding:30px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.highlight-image img{
    width:100%;
    border-radius:20px;
    display:block;
    transition:.5s;
}

.highlight-image img:hover{
    transform:scale(1.04);
}

.highlight-content{
    display:flex;
    align-items:center;
}

.highlight-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.highlight-content li{
    position:relative;
    padding-left:35px;
    margin-bottom:22px;
    font-size:20px;
    line-height:1.7;
    color:#334155;
}

.highlight-content li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#00c853;
    font-size:22px;
    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .highlight-box{
        grid-template-columns:1fr;
    }

    .fuel-icon{
        width:220px;
        height:220px;
        font-size:90px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .about-seminar{
        padding:70px 15px;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-stats{
        flex-direction:column;
    }

    .fuel-icon{
        width:180px;
        height:180px;
        font-size:70px;
    }

    .highlight-content li{
        font-size:16px;
        line-height:1.6;
    }

}
/* WHY ATTEND SECTION */

.why-attend{
    position:relative;
    padding:100px 20px;
    overflow:hidden;
    background:linear-gradient(135deg,#021b79,#0575e6);
}

.why-attend::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-250px;
    right:-200px;
    animation:float 10s infinite linear;
}

.why-attend::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,255,128,0.08);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
    animation:float 12s infinite linear reverse;
}

.container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.section-heading{
    text-align:center;
    color:#fff;
    margin-bottom:60px;
}

.section-heading .tag{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,.2);
    color:#9cff57;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:15px;
    font-weight:600;
}

.section-heading h2{
    font-size:52px;
    margin-bottom:15px;
    font-weight:800;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    opacity:.9;
    line-height:1.7;
}

.attend-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.attend-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    padding:30px;
    display:flex;
    gap:18px;
    transition:.4s;
    animation:fadeUp 1s ease;
}

.attend-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.14);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.icon{
    min-width:55px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#8bc34a,#4caf50);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

.content h3{
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
}

.content p{
    color:rgba(255,255,255,.9);
    line-height:1.7;
    font-size:15px;
}

/* Animation */

@keyframes float{
    0%{
        transform:translateY(0px) rotate(0deg);
    }
    50%{
        transform:translateY(20px) rotate(180deg);
    }
    100%{
        transform:translateY(0px) rotate(360deg);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

    .attend-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */

@media(max-width:767px){

    .why-attend{
        padding:70px 15px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:15px;
    }

    .attend-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .attend-card{
        padding:22px;
    }

    .content h3{
        font-size:20px;
    }

    .icon{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:20px;
    }
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Floating Glow */
.hero-right::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,
    rgba(0,255,136,.35),
    transparent 70%);
    animation:pulseGlow 4s infinite alternate;
    z-index:0;
}

.energy-image{
    position:relative;
    z-index:2;
}

.energy-image img{
    width:100%;
    max-width:350px;
    height:auto;
    display:block;
    animation:floatImage 5s ease-in-out infinite;
    filter:drop-shadow(0 20px 40px rgba(0,255,136,.25));
    transition:.4s ease;
}

.energy-image:hover img{
    transform:scale(1.05);
}

/* Floating Animation */
@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Glow Animation */
@keyframes pulseGlow{
    from{
        transform:scale(1);
        opacity:.5;
    }
    to{
        transform:scale(1.2);
        opacity:1;
    }
}

/* Tablet */
@media(max-width:991px){

    .energy-image img{
        max-width:500px;
    }

    .hero-right::before{
        width:350px;
        height:350px;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero-right{
        margin-top:40px;
    }

    .energy-image img{
        max-width:320px;
    }

    .hero-right::before{
        width:250px;
        height:250px;
    }
}

/* ==========================
   AGENDA SECTION
========================== */

.agenda-section{
    padding:100px 6%;
    background:
    linear-gradient(135deg,#f4fdf7,#eef8ff);
    position:relative;
    overflow:hidden;
}


.agenda-header{
    text-align:center;
    margin-bottom:70px;
}

.agenda-tag{
    background:#00a651;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
}

.agenda-header h2{
    font-size:55px;
    margin:20px 0;
    color:#0a2342;
    font-weight:800;
}

.agenda-header p{
    max-width:700px;
    margin:auto;
    color:#555;
    font-size:18px;
}

/* Timeline */

.agenda-timeline{
    max-width:1200px;
    margin:auto;
    position:relative;
}



/* Item */

.agenda-item{
    display:flex;
    gap:40px;
    margin-bottom:40px;
    position:relative;
}

.agenda-time{
    width:120px;
    min-width:120px;
    text-align:center;
    background:#fff;
    border-radius:20px;
    padding:20px 15px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    z-index:2;
}

.agenda-time span{
    display:block;
    font-size:20px;
    font-weight:700;
    color:#00a651;
}

.agenda-time small{
    display:block;
    margin-top:8px;
    color:#666;
}

/* Content Card */

.agenda-content{
    flex:1;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);
    padding:35px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
}

.agenda-content:hover{
    transform:translateY(-8px);
}

.agenda-number{
    position:absolute;
    top:-15px;
    right:25px;
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#00c853,#00d4ff);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
}

.agenda-content h3{
    color:#0a2342;
    margin-bottom:15px;
    font-size:32px;
}

.agenda-content h4{
    color:#00a651;
    margin-bottom:20px;
    font-size:22px;
}

.agenda-content ul{
    margin:0;
    padding-left:20px;
}

.agenda-content li{
    margin-bottom:12px;
    line-height:1.7;
    color:#444;
}

.agenda-content p{
    line-height:1.8;
    color:#444;
}

/* Break */

.agenda-break{
    background:linear-gradient(
    135deg,
    #007bff,
    #00d4ff
    );
    color:#fff;
    text-align:center;
    padding:18px;
    border-radius:20px;
    font-size:22px;
    font-weight:700;
    margin:30px 0;
    box-shadow:0 15px 30px rgba(0,123,255,.25);
}

.lunch{
    background:linear-gradient(
    135deg,
    #00c853,
    #00a651
    );
}

/* Mobile */

@media(max-width:768px){

    .agenda-header h2{
        font-size:38px;
    }

    .agenda-item{
        flex-direction:column;
        gap:20px;
    }

    .agenda-time{
        width:100%;
    }

    .agenda-timeline::before{
        display:none;
    }

    .agenda-content{
        padding:25px;
    }

    .agenda-content h3{
        font-size:24px;
    }

    .agenda-content h4{
        font-size:18px;
    }

    .agenda-break{
        font-size:18px;
    }
}
.high-tea{
    background:linear-gradient(
        135deg,
        #ff9800,
        #ff5722
    );
    color:#fff;
    box-shadow:0 15px 30px rgba(255,87,34,.25);
}

/* Session Number Animation */
.agenda-number{
    animation:pulseAgenda 3s infinite;
}

@keyframes pulseAgenda{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

/* Alternate Card Styling */
.agenda-item:nth-child(even) .agenda-content{
    border-left:5px solid #00c853;
}

.agenda-item:nth-child(odd) .agenda-content{
    border-left:5px solid #2196f3;
}

.about-page{
    position:relative;
    padding:140px 0 100px;
    overflow:hidden;
    background:
    linear-gradient(135deg,#02052D 0%,#07195d 50%,#031b10 100%);
}

.about-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.4;
}

.shape1{
    width:350px;
    height:350px;
    background:#00ff95;
    top:-100px;
    left:-100px;
}

.shape2{
    width:400px;
    height:400px;
    background:#00bfff;
    right:-150px;
    bottom:-150px;
}

.about-hero{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:80px;
}

.about-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(0,255,149,.15);
    color:#00ff95;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.about-hero h1{
    font-size:65px;
    margin:25px 0;
    line-height:1.1;
    font-weight:900;
}

.about-hero h1 span{
    background:linear-gradient(90deg,#00ff95,#00d4ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-hero p{
    font-size:18px;
    line-height:1.8;
    color:#d7d7d7;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:100px;
}

.about-card{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    transition:.4s;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,255,149,.25);
}

.about-card .icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#00ff95,#00bfff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:30px;
}

.about-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.about-card p{
    color:#d5d5d5;
    line-height:1.8;
}

.about-story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:100px;
}

.section-subtitle{
    color:#00ff95;
    font-weight:700;
    letter-spacing:2px;
}

.about-story h2{
    font-size:50px;
    margin:15px 0 25px;
}

.about-story p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:15px;
}

.story-image{
    display:flex;
    justify-content:center;
}

.energy-circle{
    width:300px;
    height:300px;
    border-radius:50%;
    background:
    linear-gradient(135deg,#00ff95,#00d4ff);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:120px;
    color:#fff;
    animation:float 4s ease-in-out infinite;
    box-shadow:0 0 60px rgba(0,255,149,.5);
}

.stats-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:rgba(255,255,255,.05);
    border-radius:25px;
    padding:35px;
    text-align:center;
}

.stat-box h3{
    font-size:48px;
    color:#00ff95;
    margin-bottom:10px;
}

.stat-box span{
    color:#ddd;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* Mobile */

@media(max-width:991px){

    .about-hero h1{
        font-size:42px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-story{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-story h2{
        font-size:34px;
    }

    .energy-circle{
        width:220px;
        height:220px;
        font-size:80px;
    }

    .stats-section{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .about-page{
        padding:120px 15px 80px;
    }

    .about-hero h1{
        font-size:34px;
    }

    .about-hero p{
        font-size:16px;
    }

    .stats-section{
        grid-template-columns:1fr;
    }

    .about-card{
        padding:30px;
    }
}

.sessions-page{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
    linear-gradient(135deg,#02052D,#051b64,#042b1a);
}

.sessions-bg{
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(0,255,153,.25),
    transparent 70%);
    top:-250px;
    right:-200px;
    animation:rotateGlow 20s linear infinite;
}

.session-header{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.session-tag{
    display:inline-block;
    padding:12px 26px;
    background:rgba(0,255,149,.15);
    border:1px solid rgba(0,255,149,.25);
    color:#00ff95;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
}

.session-header h1{
    font-size:70px;
    margin:20px 0;
    font-weight:900;
    color:#fff;
}

.session-header h1 span{
    background:
    linear-gradient(90deg,#00ff95,#00c8ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.session-header p{
    color:#d5d5d5;
    line-height:1.8;
    font-size:18px;
}

.sessions-timeline{
    max-width:1200px;
    margin:auto;
    position:relative;
}

.sessions-timeline:before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:
    linear-gradient(#00ff95,#00c8ff);
    transform:translateX(-50%);
}

.session-card{
    position:relative;
    width:48%;
    margin-bottom:60px;
    padding:35px;
    background:
    rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    transition:.4s;
}

.session-card:nth-child(odd){
    margin-right:auto;
}

.session-card:nth-child(even){
    margin-left:auto;
}

.session-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,255,149,.3);
}

.session-card.featured{
    border:2px solid #00ff95;
}

.session-no{
    position:absolute;
    top:-25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:
    linear-gradient(135deg,#00ff95,#00c8ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:800;
    color:#fff;
}

.session-time{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:
    rgba(0,255,149,.15);
    color:#00ff95;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:20px;
}

.session-content h2{
    font-size:28px;
    color:#fff;
    margin-bottom:15px;
}

.session-content p{
    color:#d8d8d8;
    line-height:1.8;
}

.session-topics{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.session-topics span{
    padding:10px 18px;
    border-radius:30px;
    background:
    linear-gradient(135deg,#00ff95,#00c8ff);
    color:#fff;
    font-size:13px;
    font-weight:600;
}

@keyframes rotateGlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Tablet */

@media(max-width:991px){

    .session-header h1{
        font-size:48px;
    }

    .sessions-timeline:before{
        left:20px;
    }

    .session-card{
        width:100%;
        margin-left:40px !important;
    }

}

/* Mobile */

@media(max-width:576px){

    .sessions-page{
        padding:110px 15px 80px;
    }

    .session-header h1{
        font-size:34px;
    }

    .session-header p{
        font-size:16px;
    }

    .session-card{
        padding:25px;
        margin-left:30px !important;
    }

    .session-content h2{
        font-size:22px;
    }

    .session-no{
        width:50px;
        height:50px;
        font-size:18px;
    }

    .session-topics{
        gap:8px;
    }

    .session-topics span{
        font-size:12px;
        padding:8px 14px;
    }
}

.speakers-page{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:
    linear-gradient(135deg,#02052D,#071a62,#042516);
}

.speaker-blob{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.35;
}

.blob1{
    width:400px;
    height:400px;
    background:#00ff95;
    top:-100px;
    left:-100px;
    animation:floatBlob 8s infinite ease-in-out;
}

.blob2{
    width:450px;
    height:450px;
    background:#00c8ff;
    bottom:-150px;
    right:-100px;
    animation:floatBlob 10s infinite ease-in-out;
}

.speakers-header{
    text-align:center;
    max-width:900px;
    margin:auto auto 70px;
}

.speaker-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;
    background:rgba(0,255,149,.15);
    color:#00ff95;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
}

.speakers-header h1{
    font-size:68px;
    margin:25px 0;
    font-weight:900;
    color:#fff;
}

.speakers-header h1 span{
    background:
    linear-gradient(90deg,#00ff95,#00c8ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.speakers-header p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.8;
}

.speaker-category{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.speaker-category span{
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
}

.speaker-category span:hover,
.speaker-category .active{
    background:
    linear-gradient(135deg,#00ff95,#00c8ff);
}

.speakers-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.speaker-card{
    background:
    rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.speaker-card:hover{
    transform:translateY(-12px);
    box-shadow:
    0 20px 50px rgba(0,255,149,.25);
}

.speaker-image{
    position:relative;
    overflow:hidden;
    height:350px;
}

.speaker-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.speaker-card:hover img{
    transform:scale(1.1);
}

.speaker-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    background:rgba(0,0,0,.6);
    opacity:0;
    transition:.4s;
}

.speaker-card:hover .speaker-overlay{
    opacity:1;
}

.speaker-overlay a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#071a62;
    text-decoration:none;
}

.speaker-info{
    padding:28px;
    text-align:center;
}

.speaker-role{
    color:#00ff95;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.speaker-info h3{
    color:#fff;
    font-size:26px;
    margin:12px 0;
}

.speaker-info p{
    color:#d6d6d6;
    line-height:1.7;
}

.featured{
    border:2px solid #00ff95;
}

@keyframes floatBlob{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(40px);
    }
}

@media(max-width:991px){

    .speakers-header h1{
        font-size:48px;
    }

    .speakers-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .speakers-page{
        padding:110px 15px 80px;
    }

    .speakers-header h1{
        font-size:34px;
    }

    .speakers-grid{
        grid-template-columns:1fr;
    }

    .speaker-image{
        height:320px;
    }

    .speaker-info h3{
        font-size:22px;
    }
}

/* ===========================
   REGISTRATION FORM UI
=========================== */

.containerreg{
    width:90%;
    max-width:1200px;
    margin:140px auto 80px;
}

.registration-card{

    background:
    linear-gradient(
    135deg,
    #10154d,
    #0a0f3f);

    border-radius:30px;

    padding:40px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

/* Heading */

.title{
    text-align:center;
    margin-bottom:30px;
}

.title h1{

    font-size:42px;
    font-weight:800;

    color:#fff;

    margin-bottom:10px;
}

.title p{

    color:#cfd7ff;

    font-size:16px;

    line-height:1.7;
}

/* Summary */

.summary-box{

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00d975);

    border-radius:18px;

    padding:20px;

    text-align:center;

    margin-bottom:35px;
}

.summary-box h3{
    color:#fff;
    margin-bottom:5px;
}

.summary-box p{
    color:#fff;
}

/* Layout */

.form-row{

    display:flex;
    gap:20px;

    width:100%;
}

.form-group{

    flex:1;

    margin-bottom:22px;
}

/* Labels */

.form-group label{

    display:block;

    margin-bottom:8px;

    color:#fff;

    font-size:15px;

    font-weight:600;
}

.form-group label span{
    color:#00ff95;
}

/* Inputs */

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    background:#252b68;

    color:#ffffff;

    border:1px solid #5964c8;

    border-radius:14px;

    padding:16px 18px;

    font-size:15px;

    transition:.3s;

    outline:none;

    appearance:none;
}

.form-group textarea{

    min-height:120px;

    resize:none;
}

/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#b5c2ff;
}

/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#00ff95;

    box-shadow:
    0 0 0 4px rgba(0,255,149,.15);

    background:#2c3478;
}

/* Select */

.form-group select{

    cursor:pointer;
}

.form-group select option{

    background:#1a1f55;

    color:#ffffff;
}

/* Amount Field */

#registration_amount{

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00d975);

    border:none;

    color:#fff !important;

    font-size:16px;

    font-weight:700;

    text-align:center;
}

/* Country Field */

input[readonly]{

    background:#30397d !important;

    color:#fff !important;

    font-weight:700;

    border:1px solid #5964c8;
}

/* Delegate Cards */

.delegate-card{

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:25px;

    margin-bottom:20px;

    transition:.3s;
}

.delegate-card:hover{

    border-color:#00ff95;

    transform:translateY(-3px);
}

.delegate-card h4{

    color:#00ff95;

    font-size:18px;

    margin-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.08);

    padding-bottom:10px;
}

/* Button */

.submit-btn{

    width:100%;

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00ff95);

    border:none;

    border-radius:16px;

    padding:18px;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.submit-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(0,255,149,.25);
}

/* Mobile */

@media(max-width:768px){

    .containerreg{
        width:95%;
        margin-top:120px;
    }

    .registration-card{
        padding:25px;
    }

    .title h1{
        font-size:28px;
    }

    .form-row{
        flex-direction:column;
        gap:0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:14px;
    }

}
/* ==========================
   PRIVACY POLICY PAGE
========================== */

.privacy-hero{

    position:relative;

    min-height:100vh;

    padding:160px 20px 80px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #060d4f,
    #081a7a,
    #02052d
    );
}

/* Floating Shapes */

.floating-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    animation:float 8s infinite ease-in-out;
}

.shape1{
    width:300px;
    height:300px;
    background:#00ff95;
    top:-100px;
    right:-100px;
}

.shape2{
    width:250px;
    height:250px;
    background:#00bfff;
    bottom:50px;
    left:-80px;
}

.shape3{
    width:180px;
    height:180px;
    background:#00ff95;
    bottom:20%;
    right:15%;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

.privacy-container{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;
}

.privacy-header{

    text-align:center;

    margin-bottom:50px;
}

.badge{

    display:inline-flex;

    gap:10px;

    align-items:center;

    padding:12px 25px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.15);

    color:#00ff95;

    font-weight:600;
}

.privacy-header h1{

    font-size:60px;

    font-weight:800;

    margin:25px 0 15px;

    color:#fff;
}

.privacy-header p{

    max-width:700px;

    margin:auto;

    color:#cfd6ff;

    line-height:1.8;

    font-size:18px;
}

/* Glass Card */

.privacy-card{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

.privacy-section{

    padding:25px;

    margin-bottom:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.04);

    transition:.35s;
}

.privacy-section:hover{

    transform:translateY(-5px);

    background:
    rgba(255,255,255,.08);

    border-left:4px solid #00ff95;
}

.privacy-section h2{

    color:#fff;

    font-size:24px;

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:12px;
}

.privacy-section h2 i{

    color:#00ff95;
}

.privacy-section p{

    color:#d7dcff;

    line-height:1.8;

    font-size:16px;
}

/* Mobile */

@media(max-width:768px){

    .privacy-hero{
        padding:120px 15px 50px;
    }

    .privacy-header h1{
        font-size:38px;
    }

    .privacy-header p{
        font-size:15px;
    }

    .privacy-card{
        padding:25px;
        border-radius:20px;
    }

    .privacy-section{
        padding:18px;
    }

    .privacy-section h2{
        font-size:20px;
    }

}
/* ==========================
   REFUND POLICY PAGE
========================== */

.refund-hero{

    position:relative;

    min-height:100vh;

    padding:160px 20px 80px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #02052d,
    #07166a,
    #02052d
    );
}

/* Glowing Background */

.refund-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.15;

    animation:floatGlow 8s infinite ease-in-out;
}

.glow1{
    width:350px;
    height:350px;
    background:#00ff95;
    top:-100px;
    right:-100px;
}

.glow2{
    width:280px;
    height:280px;
    background:#00bfff;
    left:-80px;
    bottom:100px;
}

.glow3{
    width:220px;
    height:220px;
    background:#00ff95;
    right:15%;
    bottom:15%;
}

@keyframes floatGlow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

.refund-container{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* Header */

.refund-header{

    text-align:center;

    margin-bottom:60px;
}

.refund-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 25px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    color:#00ff95;

    font-weight:600;
}

.refund-header h1{

    color:#fff;

    font-size:58px;

    margin:25px 0 15px;

    font-weight:800;
}

.refund-header p{

    max-width:750px;

    margin:auto;

    color:#cfd6ff;

    font-size:18px;

    line-height:1.8;
}

/* Main Card */

.refund-card{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px;
}

/* Item */

.refund-item{

    display:flex;

    gap:25px;

    align-items:flex-start;

    margin-bottom:25px;

    padding:25px;

    border-radius:20px;

    background:
    rgba(255,255,255,.03);

    transition:.35s;
}

.refund-item:hover{

    transform:translateY(-5px);

    background:
    rgba(255,255,255,.08);

    border-left:4px solid #00ff95;
}

.refund-icon{

    width:70px;
    height:70px;

    min-width:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00ff95);

    color:#fff;

    font-size:26px;
}

.refund-content h2{

    color:#fff;

    margin-bottom:10px;

    font-size:24px;
}

.refund-content p{

    color:#d7dcff;

    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .refund-hero{
        padding:120px 15px 50px;
    }

    .refund-header h1{
        font-size:36px;
    }

    .refund-header p{
        font-size:15px;
    }

    .refund-card{
        padding:25px;
    }

    .refund-item{
        flex-direction:column;
        text-align:center;
    }

    .refund-icon{
        margin:auto;
    }

    .refund-content h2{
        font-size:20px;
    }

}

/* ==========================
   TERMS & CONDITIONS PAGE
========================== */

.terms-section{

    position:relative;

    min-height:100vh;

    padding:160px 20px 100px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #030735,
    #09186d,
    #02052d
    );
}

/* Floating Shapes */

.terms-bg-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.15;

    animation:floatShape 10s infinite ease-in-out;
}

.shape-a{
    width:350px;
    height:350px;
    background:#00ff95;
    top:-120px;
    right:-100px;
}

.shape-b{
    width:300px;
    height:300px;
    background:#00bfff;
    left:-120px;
    bottom:100px;
}

.shape-c{
    width:220px;
    height:220px;
    background:#00ff95;
    bottom:20%;
    right:15%;
}

@keyframes floatShape{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-30px);
    }
}

/* Container */

.terms-container{

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* Header */

.terms-header{

    text-align:center;

    margin-bottom:70px;
}

.terms-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 25px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.15);

    color:#00ff95;

    font-weight:600;
}

.terms-header h1{

    font-size:60px;

    font-weight:800;

    color:#fff;

    margin:25px 0 15px;
}

.terms-header p{

    max-width:800px;

    margin:auto;

    color:#d7dcff;

    line-height:1.8;

    font-size:18px;
}

/* Timeline */

.terms-timeline{

    position:relative;

    max-width:1000px;

    margin:auto;
}

.terms-timeline::before{

    content:'';

    position:absolute;

    left:35px;

    top:0;

    width:4px;

    height:100%;

    background:
    linear-gradient(
    #00ff95,
    #00bfff
    );
}

/* Boxes */

.term-box{

    position:relative;

    display:flex;

    gap:25px;

    margin-bottom:35px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:25px;

    transition:.35s;
}

.term-box:hover{

    transform:translateX(10px);

    border-color:#00ff95;
}

/* Icon */

.term-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00ff95
    );

    color:#fff;

    font-size:28px;
}

/* Content */

.term-content h3{

    color:#fff;

    margin-bottom:10px;

    font-size:24px;
}

.term-content p{

    color:#d7dcff;

    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .terms-section{
        padding:120px 15px 60px;
    }

    .terms-header h1{
        font-size:38px;
    }

    .terms-header p{
        font-size:15px;
    }

    .terms-timeline::before{
        display:none;
    }

    .term-box{
        flex-direction:column;
        text-align:center;
    }

    .term-box:hover{
        transform:none;
    }

    .term-icon{
        margin:auto;
    }

    .term-content h3{
        font-size:20px;
    }

}
/* ==========================
   DISCLAIMER PAGE
========================== */

.disclaimer-section{

    position:relative;

    min-height:100vh;

    padding:160px 20px 100px;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #02052d,
    #08124d,
    #02052d
    );
}

/* Glowing Background */

.warning-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(150px);

    opacity:.18;

    animation:floatGlow 8s infinite ease-in-out;
}

.glow-1{
    width:350px;
    height:350px;
    background:#00ff95;
    top:-120px;
    right:-100px;
}

.glow-2{
    width:300px;
    height:300px;
    background:#00bfff;
    left:-120px;
    bottom:50px;
}

.glow-3{
    width:220px;
    height:220px;
    background:#00ff95;
    right:15%;
    bottom:20%;
}

@keyframes floatGlow{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

.disclaimer-container{

    max-width:1300px;

    margin:auto;

    position:relative;

    z-index:2;
}

/* Header */

.disclaimer-header{

    text-align:center;

    margin-bottom:70px;
}

.disclaimer-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.12);

    color:#00ff95;

    font-weight:600;
}

.disclaimer-header h1{

    font-size:60px;

    color:#fff;

    margin:25px 0 15px;

    font-weight:800;
}

.disclaimer-header p{

    max-width:800px;

    margin:auto;

    color:#d7dcff;

    line-height:1.8;

    font-size:18px;
}

/* Cards Grid */

.disclaimer-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.disclaimer-card{

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.disclaimer-card::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    #00ff95,
    #00bfff
    );
}

.disclaimer-card:hover{

    transform:
    translateY(-10px);

    border-color:#00ff95;

    box-shadow:
    0 20px 50px rgba(0,255,149,.15);
}

/* Icon */

.card-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #00a651,
    #00ff95
    );

    color:#fff;

    font-size:30px;

    margin-bottom:25px;
}

.disclaimer-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:24px;
}

.disclaimer-card p{

    color:#d7dcff;

    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .disclaimer-section{
        padding:120px 15px 60px;
    }

    .disclaimer-header h1{
        font-size:38px;
    }

    .disclaimer-header p{
        font-size:15px;
    }

    .disclaimer-card{
        padding:25px;
    }

    .card-icon{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .disclaimer-card h3{
        font-size:20px;
    }

}
