*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}
/* NAVBAR */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;
}

/* NAVBAR */

.navbar{

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

    margin:auto;

    margin-top:60px;

    padding:18px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.15);

    transition:0.4s ease;
}

/* LOGO */

.logo{

    color:white;

    font-size:26px;
    font-weight:700;

    letter-spacing:1px;
}

/* NAV LINKS */

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-size:16px;
    font-weight:500;

    position:relative;

    transition:0.3s ease;
}

/* HOVER LINE */

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:white;

    transition:0.4s ease;
}

.nav-links a:hover::after{

    width:100%;
}

/* MOBILE BUTTON */

.menu-btn{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;
}

.menu-btn span{

    width:28px;
    height:3px;

    background:white;

    border-radius:10px;

    transition:0.4s ease;
}

/* NAVBAR SCROLL EFFECT */

.navbar.scrolled{

    background:rgba(0,25,90,0.95);

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

    .nav-links{

        position:absolute;

        top:100px;
        right:5%;

        width:260px;

        background:rgba(0,25,90,0.97);

        backdrop-filter:blur(15px);

        border-radius:20px;

        padding:30px;

        flex-direction:column;

        align-items:flex-start;

        gap:25px;

        display:none;
    }

    .nav-links.active{

        display:flex;
    }

    .menu-btn{

        display:flex;
    }

}
/* HERO SECTION */

.hero{
    position:relative;
    width:100%;
    height:100vh;

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

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

    overflow:hidden;
}

/* DARK OVERLAY */

.overlay{
    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,40,120,0.75);

    z-index:1;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    text-align:center;
    color:white;

    width:90%;
    max-width:900px;

    animation:fadeUp 1.5s ease;
}

.hero-content h3{
    font-size:22px;
    font-weight:400;
    letter-spacing:6px;

    margin-bottom:20px;

    opacity:0.9;
}

.hero-content h1{
    font-size:78px;
    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;

    text-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.hero-content p{
    font-size:22px;
    font-weight:300;

    margin-bottom:40px;

    opacity:0.95;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;

    flex-wrap:wrap;
}

.btn{
    padding:16px 38px;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.4s ease;
}

/* PRIMARY BUTTON */

.primary-btn{
    background:white;
    color:#0038a8;

    box-shadow:0 10px 30px rgba(255,255,255,0.2);
}

.primary-btn:hover{
    transform:translateY(-5px);
}

/* SECONDARY BUTTON */

.secondary-btn{
    border:2px solid white;
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:#0038a8;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-content h3{
        font-size:16px;
        letter-spacing:3px;
    }

    .btn{
        width:100%;
        max-width:300px;
    }

}
/* EVENT SECTION */

.event-section{

    padding:120px 8%;

    background:#f5f9ff;

    position:relative;
}

/* CONTAINER */

.event-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* EVENT CONTENT */

.event-content h5{

    color:#0038a8;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:20px;
}

.event-content h2{

    font-size:60px;

    line-height:1.1;

    color:#0a0a0a;

    margin-bottom:25px;
}

.event-content p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:40px;
}

/* COUNTDOWN */

.countdown{

    display:flex;

    gap:20px;

    margin-bottom:40px;

    flex-wrap:wrap;
}

/* TIME BOX */

.time-box{

    width:110px;
    height:110px;

    background:white;

    border-radius:25px;

    display:flex;

    flex-direction:column;

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

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

.time-box:hover{

    transform:translateY(-10px);
}

.time-box span{

    font-size:34px;
    font-weight:700;

    color:#0038a8;
}

.time-box small{

    margin-top:8px;

    color:#666;

    font-size:14px;
}

/* EVENT BUTTONS */

.event-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

/* EVENT POSTER */

.event-poster{

    position:relative;
}

/* GLOW EFFECT REMOVED FOR SLIDER FIX */
/* POSTER IMAGE */

.event-poster img{

    position:relative;

    z-index:2;

    width:100%;

    border-radius:30px;

    box-shadow:0 25px 50px rgba(0,0,0,0.2);

    transition:0.5s ease;
}

.event-poster img:hover{

    transform:scale(1.03);
}

/* MOBILE */

@media(max-width:992px){

    .event-container{

        grid-template-columns:1fr;
    }

    .event-content{

        text-align:center;
    }

    .countdown{

        justify-content:center;
    }

    .event-buttons{

        justify-content:center;
    }

    .event-content h2{

        font-size:42px;
    }

}
/* GALLERY SECTION */

.gallery-section{

    padding:120px 8%;

    background:white;
}

/* SECTION HEADING */

.section-heading{

    text-align:center;

    margin-bottom:60px;
}

.section-heading h5{

    color:#0038a8;

    letter-spacing:3px;

    margin-bottom:15px;

    font-size:18px;
}

.section-heading h2{

    font-size:52px;

    margin-bottom:20px;
}

.section-heading p{

    color:#666;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* FILTER BUTTONS */

.gallery-filters{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;
}

/* FILTER BUTTON */

.filter-btn{

    padding:14px 28px;

    border:none;

    border-radius:50px;

    background:#f1f5ff;

    color:#0038a8;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;
}

/* ACTIVE BUTTON */

.filter-btn.active,
.filter-btn:hover{

    background:#0038a8;

    color:white;

    transform:translateY(-3px);
}

/* GALLERY GRID */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

/* GALLERY ITEM */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    cursor:pointer;
}

/* IMAGE */

.gallery-item img{

    width:100%;
    height:350px;

    object-fit:cover;

    transition:0.6s ease;
}

/* HOVER EFFECT */

.gallery-item:hover img{

    transform:scale(1.08);
}

/* OVERLAY */

.gallery-item::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.4)
    );

    z-index:1;

    opacity:0;

    transition:0.4s ease;
}

.gallery-item:hover::before{

    opacity:1;
}

/* LIGHTBOX */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:none;

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

    z-index:9999;

    padding:30px;
}

/* LIGHTBOX IMAGE */

.lightbox-img{

    max-width:90%;
    max-height:90%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

/* CLOSE BUTTON */

.close-lightbox{

    position:absolute;

    top:30px;
    right:40px;

    color:white;

    font-size:50px;

    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .section-heading h2{

        font-size:38px;
    }

    .gallery-item img{

        height:280px;
    }

}
/* VIDEO SECTION */

.video-section{

    padding:120px 8%;

    background:#04122b;

    color:white;

    position:relative;
}

/* VIDEO GRID */

.video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;
}

/* VIDEO CARD */

.video-card{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:25px;

    overflow:hidden;

    backdrop-filter:blur(12px);

    transition:0.5s ease;

    position:relative;
}

/* HOVER EFFECT */

.video-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,0.35);
}

/* VIDEO WRAPPER */

.video-wrapper{

    width:100%;

    height:420px;

    overflow:hidden;

    position:relative;
}

/* VIDEO */

.video-wrapper iframe,
.video-wrapper video{

    width:100%;
    height:100%;

    border:none;

    object-fit:cover;
}

/* VIDEO INFO */

.video-info{

    padding:25px;
}

.video-info h3{

    font-size:24px;

    margin-bottom:10px;
}

.video-info p{

    color:#c8d4f2;

    font-size:15px;
}

/* GLOW EFFECT */

.video-card::before{

    content:'';

    position:absolute;

    top:-50%;
    left:-50%;

    width:200%;
    height:200%;

    background:radial-gradient(
        rgba(0,56,168,0.18),
        transparent
    );

    transform:rotate(25deg);

    opacity:0;

    transition:0.6s ease;
}

.video-card:hover::before{

    opacity:1;
}

/* MOBILE */

@media(max-width:768px){

    .video-wrapper{

        height:300px;
    }

}
/* REGISTRATION SECTION */

.registration-section{

    padding:120px 8%;

    background:#f5f9ff;
}

/* CONTAINER */

.registration-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:60px;

    align-items:center;
}

/* LEFT SIDE */

.registration-content h3{

    font-size:46px;

    line-height:1.2;

    margin-bottom:30px;
}

.registration-content ul{

    list-style:none;
}

.registration-content ul li{

    font-size:18px;

    margin-bottom:18px;

    color:#444;
}

/* FORM BOX */

.registration-form-box{

    background:white;

    padding:45px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* INPUT GROUP */

.input-group{

    margin-bottom:22px;
}

/* INPUTS */

.input-group input,
.input-group select{

    width:100%;

    padding:18px 20px;

    border:none;

    background:#f5f7ff;

    border-radius:14px;

    font-size:16px;

    outline:none;
}

/* PAY BUTTON */

.pay-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:#0038a8;

    color:white;

    font-size:18px;
    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;
}

.pay-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,56,168,0.25);
}

/* SUCCESS POPUP */

.success-popup{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.8);

    display:none;

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

    z-index:9999;
}

/* POPUP CONTENT */

.popup-content{

    background:white;

    padding:50px;

    border-radius:30px;

    text-align:center;

    width:90%;
    max-width:450px;
}

.popup-content h2{

    color:#0038a8;

    margin-bottom:20px;
}

.popup-content p{

    color:#555;

    margin-bottom:30px;
}

.popup-content button{

    padding:14px 30px;

    border:none;

    background:#0038a8;

    color:white;

    border-radius:12px;

    cursor:pointer;
}

/* MOBILE */

@media(max-width:992px){

    .registration-container{

        grid-template-columns:1fr;
    }

    .registration-content{

        text-align:center;
    }

    .registration-content h3{

        font-size:38px;
    }

}
/* ANNOUNCEMENT BAR */

.announcement-bar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:#0038a8;

    color:white;

    overflow:hidden;

    z-index:9999;

    height:42px;

    display:flex;
    align-items:center;

    border-bottom:1px solid rgba(255,255,255,0.15);
}

/* MOVING TRACK */

.announcement-track{

    white-space:nowrap;

    display:inline-block;

    padding-left:100%;

    animation:ticker 18s linear infinite;

    font-size:14px;

    font-weight:500;

    letter-spacing:1px;
}

/* ANIMATION */

@keyframes ticker{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }

}
/* TESTIMONIAL SECTION */

.testimonial-section{

    padding:120px 0;

    background:white;

    overflow:hidden;
}

/* SLIDER */

.testimonial-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    margin-top:70px;
}

/* TRACK */

.testimonial-track{

    display:flex;

    gap:35px;

    width:max-content;

    animation:testimonialScroll 30s linear infinite;
}

/* CARD */

.testimonial-card{

    width:350px;

    background:#f7f9ff;

    padding:40px 30px;

    border-radius:30px;

    text-align:center;

    flex-shrink:0;

    transition:0.4s ease;

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

/* HOVER */

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,56,168,0.12);
}

/* IMAGE */

.testimonial-image{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    overflow:hidden;

    border:4px solid #0038a8;
}

.testimonial-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* TEXT */

.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;
}

/* NAME */

.testimonial-card h3{

    font-size:22px;

    margin-bottom:8px;
}

/* ROLE */

.testimonial-card span{

    color:#0038a8;

    font-size:14px;

    font-weight:600;
}

/* AUTO SLIDE */

@keyframes testimonialScroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}

/* PAUSE ON HOVER */

.testimonial-slider:hover .testimonial-track{

    animation-play-state:paused;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-card{

        width:280px;
    }

}
/* STATS SECTION */

.stats-section{

    padding:110px 8%;

    background:#04122b;

    color:white;
}

/* CONTAINER */

.stats-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

/* BOX */

.stat-box{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    padding:50px 30px;

    border-radius:30px;

    text-align:center;

    backdrop-filter:blur(10px);

    transition:0.4s ease;
}

/* HOVER */

.stat-box:hover{

    transform:translateY(-10px);

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

/* NUMBER */

.stat-box h2{

    font-size:52px;

    color:#4da3ff;

    margin-bottom:15px;

    font-weight:700;
}

/* TEXT */

.stat-box p{

    font-size:18px;

    color:#dbe8ff;
}

/* MOBILE */

@media(max-width:768px){

    .stat-box h2{

        font-size:40px;
    }

}
/* RECOGNITION SLIDER */

.recognition-slider{

    width:100%;

    overflow:hidden;

    margin-top:70px;

    position:relative;
}

/* TRACK */

.recognition-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:recognitionScroll 35s linear infinite;
}

/* CARD */

.recognition-card{

    width:320px;

    background:white;

    border-radius:30px;

    overflow:hidden;

    flex-shrink:0;

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

    transition:0.5s ease;
}

/* HOVER */

.recognition-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,56,168,0.15);
}

/* IMAGE */

.recognition-card img{

    width:100%;

    height:320px;

    object-fit:cover;
}

/* CONTENT */

.recognition-content{

    padding:28px;
}

/* NAME */

.recognition-content h3{

    font-size:24px;

    margin-bottom:10px;
}

/* BADGE */

.recognition-content span{

    display:inline-block;

    margin-bottom:15px;

    padding:8px 18px;

    background:#0038a8;

    color:white;

    border-radius:50px;

    font-size:14px;

    font-weight:600;
}

/* TEXT */

.recognition-content p{

    color:#555;

    line-height:1.7;
}

/* ANIMATION */

@keyframes recognitionScroll{

    0%{

        transform:translateX(0);
    }

    100%{

        transform:translateX(-50%);
    }

}

/* PAUSE ON HOVER */

.recognition-slider:hover .recognition-track{

    animation-play-state:paused;
}

/* MOBILE */

@media(max-width:768px){

    .recognition-card{

        width:270px;
    }

    .recognition-card img{

        height:260px;
    }

}
/* MOVEMENT SECTION */

.movement-section{

    position:relative;

    padding:140px 8%;

    background:url('images/movement-bg.jpg');

    background-size:cover;

    background-position:center;

    overflow:hidden;

    text-align:center;

    color:white;
}

/* OVERLAY */

.movement-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,20,60,0.82);

    z-index:1;
}

/* CONTENT */

.movement-content{

    position:relative;

    z-index:2;

    max-width:1000px;

    margin:auto;
}

/* SMALL TITLE */

.movement-content h5{

    letter-spacing:5px;

    font-size:18px;

    margin-bottom:25px;

    opacity:0.9;
}

/* BIG TITLE */

.movement-content h2{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;
}

/* SUB TITLE */

.movement-content h3{

    font-size:34px;

    line-height:1.5;

    margin-bottom:30px;

    color:#dbe8ff;
}

/* TEXT */

.movement-content p{

    font-size:20px;

    line-height:1.9;

    color:#d5def1;

    margin-bottom:50px;
}

/* BUTTON */

.movement-btn{

    display:inline-block;

    padding:20px 50px;

    background:white;

    color:#0038a8;

    text-decoration:none;

    border-radius:60px;

    font-size:18px;

    font-weight:700;

    transition:0.5s ease;

    box-shadow:0 15px 40px rgba(255,255,255,0.2);
}

/* HOVER */

.movement-btn:hover{

    transform:translateY(-8px) scale(1.05);

    box-shadow:0 20px 50px rgba(255,255,255,0.3);
}

/* MOBILE */

@media(max-width:768px){

    .movement-content h2{

        font-size:42px;
    }

    .movement-content h3{

        font-size:24px;
    }

    .movement-content p{

        font-size:17px;
    }

}
/* INNER PAGE HERO */

.inner-hero{

    position:relative;

    width:100%;
    height:60vh;

    background:url('../images/main image.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

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

    overflow:hidden;
}

/* OVERLAY */

.inner-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,20,60,0.75);

    z-index:1;
}

/* CONTENT */

.inner-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    width:90%;
    max-width:900px;
}

/* TITLE */

.inner-content h1{

    font-size:72px;

    margin-bottom:20px;

    font-weight:700;
}

/* TEXT */

.inner-content p{

    font-size:22px;

    line-height:1.8;

    color:#d8e4ff;
}

/* MOBILE */

@media(max-width:768px){

    .inner-content h1{

        font-size:42px;
    }

    .inner-content p{

        font-size:18px;
    }

}
/* EVENTS PAGE */

.events-page-section{

    padding:120px 8%;

    background:#f5f9ff;
}

/* GRID */

.events-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));

    gap:40px;
}

/* CARD */

.event-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

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

    transition:0.5s ease;
}

/* HOVER */

.event-card:hover{

    transform:translateY(-12px);

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

/* IMAGE */

.event-card-image{

    background:#04122b;
}

.event-card-image img{

    width:100%;

    height:520px;

    object-fit:contain;

    display:block;
}

/* BADGE */

.event-badge{

    position:absolute;

    top:20px;
    left:20px;

    background:#0038a8;

    color:white;

    padding:10px 20px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;
}

/* DIGITAL */

.event-badge.digital{

    background:#0d9b63;
}

/* CONTENT */

.event-card-content{

    padding:35px;
}

/* TITLE */

.event-card-content h3{

    font-size:30px;

    margin-bottom:20px;
}

/* INFO */

.event-date,
.event-location{

    margin-bottom:12px;

    color:#0038a8;

    font-weight:500;
}

/* DESCRIPTION */

.event-description{

    color:#555;

    line-height:1.8;

    margin:25px 0;
}

/* COUNTDOWN */

.event-countdown{

    display:grid;

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

    gap:15px;

    margin-bottom:30px;
}

/* BOX */

.event-countdown div{

    background:#f3f6ff;

    padding:18px 10px;

    border-radius:18px;

    text-align:center;
}

/* NUMBER */

.event-countdown span{

    display:block;

    font-size:28px;

    font-weight:700;

    color:#0038a8;
}

/* SMALL */

.event-countdown small{

    color:#666;

    font-size:13px;
}

/* BUTTON */

.event-register-btn{

    display:inline-block;

    width:100%;

    text-align:center;

    padding:18px;

    background:#0038a8;

    color:white;

    text-decoration:none;

    border-radius:16px;

    font-weight:600;

    transition:0.4s ease;
}

.event-register-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,56,168,0.25);
}

/* MOBILE */

@media(max-width:768px){

    .event-card-content h3{

        font-size:24px;
    }

    .event-countdown{

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

}
/* GALLERY PAGE */

.gallery-page-section{

    padding:120px 8%;

    background:#f5f9ff;
}

/* FILTERS */

.gallery-page-filters{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

/* BUTTON */

.gallery-filter-btn{

    padding:14px 30px;

    border:none;

    border-radius:50px;

    background:white;

    color:#0038a8;

    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;

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

/* ACTIVE */

.gallery-filter-btn.active,
.gallery-filter-btn:hover{

    background:#0038a8;

    color:white;

    transform:translateY(-3px);
}

/* GRID */

.gallery-page-grid{

    columns:4 280px;

    column-gap:20px;
}

/* ITEM */

.gallery-page-item{

    position:relative;

    margin-bottom:20px;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    break-inside:avoid;

    animation:galleryFade 1s ease;
}
@keyframes galleryFade{

    from{

        opacity:0;

        transform:translateY(50px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }

}

/* OVERLAY CONTENT */

.gallery-overlay{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:30px;

    z-index:2;

    transform:translateY(100%);

    transition:0.5s ease;
}

/* TITLE */

.gallery-overlay h3{

    color:white;

    font-size:24px;

    margin-bottom:10px;
}

/* TEXT */

.gallery-overlay p{

    color:#dbe8ff;

    font-size:15px;
}

/* SHOW ON HOVER */

.gallery-page-item:hover .gallery-overlay{

    transform:translateY(0);
}

/* IMAGE */

.gallery-page-item img{

    width:100%;

    display:block;

    border-radius:24px;

    transition:0.6s ease;
}

/* HOVER */

.gallery-page-item:hover img{

    transform:scale(1.06);
}

/* OVERLAY */

.gallery-page-item::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.45)
    );

    opacity:0;

    transition:0.4s ease;

    z-index:1;
}

.gallery-page-item:hover::before{

    opacity:1;
}

/* LIGHTBOX */

.gallery-lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:none;

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

    z-index:99999;

    padding:30px;
}

/* IMAGE */

.gallery-lightbox-img{

    max-width:90%;

    max-height:90%;

    border-radius:20px;
}

/* CLOSE */

.gallery-lightbox-close{

    position:absolute;

    top:30px;
    right:40px;

    font-size:55px;

    color:white;

    cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-page-grid{

        columns:2 160px;
    }

}
/* CINEMATIC STRIP */

.cinematic-strip{

    width:100%;

    overflow:hidden;

    background:#04122b;

    padding:30px 0;
}

/* TRACK */

.strip-track{

    display:flex;

    width:max-content;

    animation:scrollStrip 40s linear infinite;
}

/* ITEM */

.strip-item{

    width:320px;

    height:220px;

    margin-right:20px;

    border-radius:22px;

    overflow:hidden;

    flex-shrink:0;

    position:relative;
}

/* IMAGE */

.strip-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

/* HOVER */

.strip-item:hover img{

    transform:scale(1.08);
}

/* ANIMATION */

@keyframes scrollStrip{

    from{

        transform:translateX(0);
    }

    to{

        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .strip-item{

        width:240px;

        height:170px;
    }

}
/* IMAGE SCROLL ANIMATION */


/* ACTIVE */

.gallery-page-item.show{

    opacity:1;

    transform:translateY(0);
}
/* ACHIEVEMENT SECTION */

.achievement-section{

    padding:120px 8%;

    background:#123064;
}

/* GRID */

.achievement-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;
}

/* CARD */

.achievement-card{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    padding:50px 30px;

    text-align:center;

    backdrop-filter:blur(10px);

    transition:0.5s ease;
}

/* HOVER */

.achievement-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,0.35);
}

/* COUNTER */

.achievement-card h2{

    font-size:64px;

    color:white;

    margin-bottom:15px;
}

/* TEXT */

.achievement-card p{

    color:#c8d4f2;

    font-size:18px;

    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:768px){

    .achievement-card h2{

        font-size:42px;
    }

}


/* FEATURED VIDEO SECTION */

.featured-video-section{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

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

/* VIDEO */

.featured-bg-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.featured-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);

    z-index:1;
}

/* CONTENT */

.featured-video-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    width:90%;
    max-width:900px;
}

/* SMALL TITLE */

.featured-video-content h5{

    letter-spacing:5px;

    font-size:18px;

    margin-bottom:25px;

    opacity:0.9;
}

/* BIG TITLE */

.featured-video-content h1{

    font-size:78px;

    line-height:1.1;

    margin-bottom:25px;

    text-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* TEXT */

.featured-video-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

    opacity:0.9;
}

/* BUTTON */

.featured-video-btn{

    display:inline-block;

    padding:18px 40px;

    background:white;

    color:#04122b;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:0.4s ease;
}

/* HOVER */

.featured-video-btn:hover{

    transform:translateY(-5px);
}

/* MOBILE */

@media(max-width:768px){

    .featured-video-content h1{

        font-size:42px;
    }

    .featured-video-content p{

        font-size:16px;
    }

}

/* PREMIUM VIDEO GALLERY */

.premium-video-gallery{

    padding:120px 8%;

    background:#ffffff;

    color:rgb(0, 0, 0);
}

/* GRID */

.premium-video-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;
}

/* CARD */

.premium-video-card{

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:28px;

    overflow:hidden;

    backdrop-filter:blur(10px);

    transition:0.5s ease;

    position:relative;
}

/* HOVER */

.premium-video-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,0.4);
}

/* VIDEO WRAPPER */

.premium-video-wrapper{

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    background:black;
}

/* VIDEO */

.premium-video-wrapper iframe,
.premium-video-wrapper video{

    width:100%;

    height:100%;

    display:block;

    border:none;

    object-fit:contain;

    background:black;
}

/* INFO */

.premium-video-info{

    padding:25px;
}

/* TITLE */

.premium-video-info h3{

    font-size:24px;

    margin-bottom:10px;
}

/* TEXT */

.premium-video-info p{

    color:#c8d4f2;

    font-size:15px;
}

/* GLOW EFFECT */

.premium-video-card::before{

    content:'';

    position:absolute;

    top:-50%;
    left:-50%;

    width:200%;
    height:200%;

    background:radial-gradient(
        rgba(0,56,168,0.2),
        transparent
    );

    opacity:0;

    transition:0.5s ease;
}

/* SHOW ON HOVER */

.premium-video-card:hover::before{

    opacity:1;
}

/* MOBILE */

@media(max-width:768px){

    .premium-video-wrapper{

        height:280px;
    }

}
/* REELS SECTION */

.reels-section{

    padding:120px 8%;

    background:#020d22;

    color:white;

    overflow:hidden;
}

/* REELS CONTAINER */

.reels-container{

    display:flex;

    gap:30px;

    overflow-x:auto;

    padding-bottom:20px;

    scroll-behavior:smooth;
}

/* HIDE SCROLLBAR */

.reels-container::-webkit-scrollbar{

    display:none;
}


/* REEL CARD */

.reel-card{

    width:420px;

    border-radius:30px;

    overflow:hidden;

    background:#000;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.5s ease;

    flex-shrink:0;
}

/* VIDEO */

/* VIDEO */

.reel-card video{

    width:100%;

    aspect-ratio:9/16;

    object-fit:cover;

    display:block;
}

/* VIDEO ZOOM */

.reel-card:hover video{

    transform:scale(1.015);
}

/* HOVER */

.reel-card:hover{

    transform:translateY(-px);

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

/* MOBILE */

@media(max-width:768px){

    .reel-card{

        min-width:220px;

        height:420px;
    }

}
/* VIDEO CTA SECTION */

.video-cta-section{

    position:relative;

    padding:140px 8%;

    background:url('images/video-cta-bg.jpg');

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

    overflow:hidden;

    text-align:center;
}

/* OVERLAY */

.video-cta-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.7);

    z-index:1;
}

/* CONTENT */

.video-cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    color:white;
}

/* SMALL TITLE */

.video-cta-content h5{

    font-size:18px;

    letter-spacing:4px;

    margin-bottom:20px;

    color:#7ea8ff;
}

/* MAIN TITLE */

.video-cta-content h2{

    font-size:68px;

    line-height:1.1;

    margin-bottom:30px;
}

/* TEXT */

.video-cta-content p{

    font-size:20px;

    line-height:1.9;

    color:#d8e2ff;

    margin-bottom:40px;
}

/* BUTTON */

.video-cta-btn{

    display:inline-block;

    padding:18px 40px;

    background:white;

    color:#04122b;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:0.4s ease;
}

.video-cta-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(255,255,255,0.25);
}

/* MOBILE */

@media(max-width:768px){

    .video-cta-content h2{

        font-size:42px;
    }

    .video-cta-content p{

        font-size:17px;
    }

}

/* CUSTOM SLIDER ARROWS */
.custom-slider-arrow {
    background-color: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #0038a8 !important;
    margin-top: -22px; /* Center perfectly considering height */
}

.custom-slider-arrow::after {
    font-size: 20px !important;
    font-weight: bold;
}

.event-section .swiper-button-prev {
    left: 3%;
}

.event-section .swiper-button-next {
    right: 3%;
}

/* CONTACT HERO */

.contact-hero{

    position:relative;

    width:100%;

    height:70vh;

    background:url('../images/main image.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;
}

/* OVERLAY */

.contact-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,40,120,0.75);

    z-index:1;
}

/* CONTENT */

.contact-hero-content{

    position:relative;

    z-index:2;

    color:white;

    width:90%;
    max-width:850px;
}

/* SMALL TITLE */

.contact-hero-content h5{

    letter-spacing:5px;

    font-size:18px;

    margin-bottom:20px;

    color:#8fb3ff;
}

/* MAIN TITLE */

.contact-hero-content h1{

    font-size:80px;

    margin-bottom:25px;

    line-height:1.1;
}

/* TEXT */

.contact-hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#dce6ff;
}

/* MOBILE */

@media(max-width:768px){

    .contact-hero{

        height:60vh;
    }

    .contact-hero-content h1{

        font-size:46px;
    }

    .contact-hero-content p{

        font-size:16px;
    }

}
/* CONTACT INFO */

.contact-info-section{
    padding:100px 8%;
    background:#f5f9ff;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-info-card{
    background:white;
    padding:40px 30px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.contact-info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,56,168,0.15);
}

.contact-info-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0038a8;
}

.contact-info-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.contact-info-card a{
    display:inline-block;
    text-decoration:none;
    background:#0038a8;
    color:white;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
}
/* CONTACT FORM */

.contact-form-section{
    padding:120px 8%;
    background:white;
}

.contact-form-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-form-content h5{
    color:#0038a8;
    letter-spacing:4px;
    font-size:16px;
    margin-bottom:20px;
}

.contact-form-content h2{
    font-size:52px;
    margin-bottom:25px;
}

.contact-form-content p{
    color:#555;
    line-height:1.9;
    font-size:18px;
}

.contact-form{
    background:#f5f9ff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.07);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:17px 20px;
    margin-bottom:20px;
    border:none;
    outline:none;
    border-radius:14px;
    background:white;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#0038a8;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
}

.contact-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,56,168,0.25);
}

@media(max-width:900px){
    .contact-form-container{
        grid-template-columns:1fr;
    }

    .contact-form-content{
        text-align:center;
    }

    .contact-form-content h2{
        font-size:38px;
    }
}
/* WHATSAPP FLOAT */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    z-index:99999;

    border-radius:50%;

    overflow:hidden;

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

    animation:whatsappPulse 2s infinite;
}

/* IMAGE */

.whatsapp-float img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* ANIMATION */

@keyframes whatsappPulse{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.08);
    }

    100%{

        transform:scale(1);
    }

}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{

        width:60px;
        height:60px;

        right:18px;
        bottom:18px;
    }

}

/* MAP SECTION */

.map-section{
    padding:120px 8%;
    background:#f5f9ff;
}

.map-box{
    width:100%;
    height:500px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    margin-top:60px;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}
