  :root {
            --primary-purple: #5B2A86;
            --secondary-yellow: #F4B400;
            --accent-green: #2E8B57;
            --light-bg: #F8F6FC;
            --dark-text: #222222;
            --section-bg: #F1F8F4;
            --cta-orange: #FF7A00;
            --white: #ffffff;
            --gray-text: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            color: var(--dark-text);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--primary-purple);
            color: var(--white);
            padding: 8px 8%;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar-info {
            display: flex;
            gap: 25px;
        }

        .top-bar-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-info i {
            color: var(--secondary-yellow);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--secondary-yellow);
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: var(--white);
            padding: 15px 3%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-yellow);
            font-size: 20px;
            border: 2px solid var(--secondary-yellow);
        }

        .logo-text h2 {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary-purple);
            line-height: 1.1;
            letter-spacing: 0.5px;
        }

        .logo-text span {
            font-size: 10px;
            color: var(--dark-text);
            font-weight: 600;
            letter-spacing: 1.5px;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
                margin-bottom: 0px !important;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a.active, .nav-links a:hover {
            color: var(--primary-purple);
            border-bottom: 2px solid var(--secondary-yellow);
            padding-bottom: 3px;
        }

        .nav-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-donate {
            background-color: var(--secondary-yellow);
            color: var(--dark-text);
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 10px rgba(244, 180, 0, 0.3);
        }

        .btn-registration {
            background-color: var(--primary-purple);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
           background: linear-gradient(115deg, #321250 0%, #5b2a869e 45%, rgb(129 100 155 / 0%) 100%), url(assets/img/img123.webp) center / cover;
            color: var(--white);
            padding: 80px 8% 140px 8%;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-content {
            max-width: 550px;
            z-index: 2;
        }

        .sub-tag {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .sub-tag::before {
            content: '';
            width: 25px;
            height: 2px;
            background-color: var(--secondary-yellow);
        }

        .hero h1 {
            font-size: 42px;
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--secondary-yellow);
        }

        .hero p {
            font-size: 14px;
            line-height: 1.6;
            color: #E2D5EE;
            margin-bottom: 30px;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        .btn-main {
            background-color: var(--secondary-yellow);
            color: var(--dark-text);
            padding: 12px 26px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--dark-text);
            padding: 12px 26px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-icon-circle {
            width: 22px;
            height: 22px;
            background: var(--primary-purple);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        /* Hero Curved Bottom */
        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .hero-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 70px;
        }

        /* --- ABOUT SECTION --- */
        .about-section {
            padding: 80px 8%;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-images {
            flex: 1;
            position: relative;
            min-height: 380px;
        }

        .about-img-main {
            width: 70%;
            height: 350px;
            object-fit: cover;
            border-radius: 120px 120px 20px 20px;
            border: 4px solid var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-img-sub {
            position: absolute;
            bottom: 0;
            right: 10%;
            width: 50%;
            height: 200px;
            object-fit: cover;
            border-radius: 20px 20px 80px 20px;
            border: 4px solid var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            flex: 1;
        }

        .section-tag {
            color: var(--accent-green);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .section-tag::after {
            content: '';
            width: 30px;
            height: 2px;
            background-color: var(--accent-green);
        }

        .about-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-purple);
            margin-bottom: 15px;
        }

        .about-content h2 span {
            color: var(--dark-text);
            font-weight: 700;
        }

        .about-content p {
            font-size: 13px;
            line-height: 1.6;
            color: var(--gray-text);
            margin-bottom: 12px;
        }

        /* Icons grid inside About */
        .about-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-icon-box {
            width: 55px;
            height: 55px;
            background-color: #F1EBF7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-size: 20px;
            margin-bottom: 8px;
        }

        .feature-item p {
            font-size: 11px;
            font-weight: 700;
            color: var(--dark-text);
            line-height: 1.3;
        }

        .btn-about {
            background-color: var(--primary-purple);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* --- WHAT WE DO SECTION --- */
        .programs-section {
            background-color: var(--light-bg);
            padding: 70px 8%;
            text-align: center;
        }

        .programs-header {
            margin-bottom: 40px;
        }

        .programs-header .section-tag {
            justify-content: center;
        }

        .programs-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark-text);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
        }

        .card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            text-align: left;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .card-img-wrap {
            position: relative;
            height: 160px;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
        }

        .bg-purple { background-color: var(--primary-purple); }
        .bg-yellow { background-color: var(--secondary-yellow); }
        .bg-green { background-color: var(--accent-green); }

        .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .card-body h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark-text);
        }

        .card-body p {
            font-size: 12px;
            color: var(--gray-text);
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .card-arrow {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 12px;
            align-self: flex-end;
            text-decoration: none;
        }

        /* --- TESTIMONIAL SECTION --- */
        .testimonial-section {
            padding: 0 8% 60px 8%;
            background-color: var(--light-bg);
        }

        .testimonial-card {
            background: linear-gradient(100deg, #421869 0%, #853173 100%);
            border-radius: 15px;
            padding: 30px 40px;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .quote-icon {
            font-size: 50px;
            opacity: 0.3;
            line-height: 1;
            margin-bottom: -20px;
        }

        .testimonial-text {
            max-width: 60%;
        }

        .testimonial-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .testimonial-text p {
            font-size: 13px;
            line-height: 1.5;
            color: #E2D5EE;
            font-style: italic;
            margin-bottom: 12px;
        }

        .testimonial-author {
            font-size: 12px;
            color: var(--secondary-yellow);
            font-weight: 600;
            font-style: normal;
        }

        .testimonial-avatar-wrap {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .testimonial-avatar {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            border: 3px solid var(--white);
            object-fit: cover;
        }

        .testimonial-controls {
            display: flex;
            gap: 8px;
        }

        .control-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: transparent;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
        }

        .control-btn.active {
            background: var(--white);
            color: var(--dark-text);
        }

        /* --- STATS SECTION --- */
        .stats-section {
            background-color: var(--section-bg);
            padding: 35px 8%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: center;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-right: 15px;
            border-right: 1px solid rgba(0,0,0,0.06);
        }

        .stat-box:last-child {
            border-right: none;
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .stat-icon.green { background-color: #D3EEDD; color: var(--accent-green); }
        .stat-icon.purple { background-color: #E7DDF0; color: var(--primary-purple); }
        .stat-icon.yellow { background-color: #FDF3D6; color: #D49B00; }
        .stat-icon.teal { background-color: #D6F1EE; color: #178A7B; }

        .stat-details h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-green);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-details.purple h3 { color: var(--primary-purple); }
        .stat-details.yellow h3 { color: #D49B00; }
        .stat-details.teal h3 { color: #178A7B; }

        .stat-details p {
            font-size: 11px;
            font-weight: 700;
            color: var(--dark-text);
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .hero { padding-bottom: 100px; }
            .hero h1 { font-size: 32px; }
            .about-section { flex-direction: column; }
            .about-images { width: 100%; }
            .testimonial-card { flex-direction: column; text-align: center; gap: 20px; }
            .testimonial-text { max-width: 100%; }
            .stats-section { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .stat-box { border-right: none; }
        }

        @media (max-width: 600px) {
            .top-bar { flex-direction: column; gap: 5px; text-align: center; }
            .navbar {  gap: 15px; }
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .stats-section { grid-template-columns: 1fr; }
            .about-features { grid-template-columns: repeat(2, 1fr); }
        }
        .logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:65px;
}
/* =========================
   Tablet Responsive
========================= */
@media (max-width:991px){

    .top-bar{
        padding:10px 20px;
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .top-bar-info{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .navbar{
        padding:15px 20px;
        position:relative;
    }

    .nav-links{
        display:none;
    }

    .nav-buttons{
        display:none;
    }

    .mobile-menu{
        display:block;
        font-size:28px;
        color:#5B2A86;
        cursor:pointer;
    }

    .hero{
        padding:80px 20px 120px;
    }

    .hero h1{
        font-size:38px;
    }

    .about-section{
        flex-direction:column;
        gap:40px;
        padding:60px 20px;
    }

    .about-images{
        width:100%;
        min-height:auto;
    }

    .about-img-main{
        width:100%;
        height:350px;
    }

    .about-img-sub{
        width:45%;
        height:170px;
        right:0;
    }

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

    .stats-section{
        grid-template-columns:repeat(2,1fr);
        padding:40px 20px;
    }

    .testimonial-card{
        flex-direction:column;
        text-align:center;
    }

    .testimonial-text{
        max-width:100%;
    }

}

/* =========================
   Mobile Responsive
========================= */
@media (max-width:767px){

    .logo-img{
        width:55px;
    }

    .logo-text h2{
        font-size:16px;
    }

    .logo-text span{
        font-size:9px;
    }

    .hero{
        padding:70px 15px 90px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:30px;
        line-height:1.3;
    }

    .hero p{
        font-size:14px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
    }

    .btn-main,
    .btn-secondary{
        width:100%;
        justify-content:center;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-features{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .cards-grid{
        grid-template-columns:1fr;
    }

    .card{
        max-width:420px;
        margin:auto;
    }

    .stats-section{
        grid-template-columns:1fr;
    }

    .stat-box{
        border:none;
        justify-content:center;
        text-align:center;
    }

    .testimonial-avatar-wrap{
        flex-direction:column;
    }

    .programs-section,
    .testimonial-section{
        padding-left:15px;
        padding-right:15px;
    }

    

}

/* Hide mobile menu on desktop */
.mobile-menu{
    display:none;
}
/* Dropdown */
.nav-links li{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    list-style:none;
    padding:10px 0;
    margin:0;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    display:none;
    z-index:999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:10px 20px;
    color:#333;
    text-decoration:none;
    border:none !important;
}

.dropdown-menu li a:hover{
    background:#5B2A86;
    color:#fff;
}

/* Desktop Hover */
@media(min-width:992px){
    .dropdown:hover>.dropdown-menu{
        display:block;
    }
}
@media (max-width:991px){
    .top-bar{
        display:none;
    }
}
.mobile-menu{
    display:none;
    font-size:30px;
    color:#5B2A86;
    cursor:pointer;
}

@media (max-width:991px){

    .mobile-menu{
        display:block;
    }

    .nav-links{
        display:none;
    }

    .nav-buttons{
        display:none;
    }

    .navbar{
        padding:15px 20px;
    }
}
@media (max-width:991px){

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        display:flex;
        flex-direction:column;
        padding:80px 25px;
        gap:20px;
        transition:.4s;
        z-index:9999;
        box-shadow:-5px 0 20px rgba(0,0,0,.15);
    }

    .nav-links.active{
        right:0;
    }
}
/* Mobile Menu */
.mobile-menu{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#5B2A86;
}

@media(max-width:991px){

    .top-bar{
        display:none;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100%;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:80px 25px 30px;
        gap:0;
        transition:.4s;
        box-shadow:-5px 0 20px rgba(0,0,0,.15);
        z-index:9999;
        overflow-y:auto;
    }

    .nav-links.active{
        right:0;
        display:flex;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-links li a{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
        padding:14px 0;
        color:#222;
        font-size:15px;
        text-decoration:none;
    }

    .nav-buttons{
        display:none;
    }

    .mobile-menu{
        display:block;
    }

    /* Close Button */
    .close-menu{
        position:absolute;
        top:18px;
        right:20px;
        font-size:28px;
        cursor:pointer;
        color:#5B2A86;
    }

    /* Overlay */
    .menu-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        display:none;
        z-index:9998;
    }
   
}

@media (max-width: 991px) {

    .nav-links .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        padding: 0 0 0 15px !important;
        margin: 0 !important;
        box-shadow: none !important;
        background: #f8f8f8 !important;
    }

    .nav-links .dropdown.active > .dropdown-menu {
        display: block !important;
    }

    .nav-links .dropdown-menu li a {
        padding: 12px 10px !important;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

    .nav-links .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .nav-links .dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg);
    }
}
/* =========================================
   MOBILE MENU FIX
========================================= */

@media (max-width: 991px) {

    /* Mobile menu panel */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;

        width: 300px !important;
        height: 100vh !important;

        background: #fff !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        padding: 0 25px 30px !important;
        margin: 0 !important;

        overflow-y: auto !important;

        z-index: 99999 !important;

        transition: right 0.35s ease !important;

        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    }

    /* OPEN MENU */
    .nav-links.active {
        right: 0 !important;
    }


    /* =========================================
       MOBILE LOGO
    ========================================= */

    .nav-links .mobile-logo {
        display: flex !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;

        padding: 25px 0 20px !important;

        margin: 0 0 20px !important;

        border-bottom: 1px solid #eeeeee !important;
    }

    .nav-links .mobile-logo a {
        display: flex !important;

        align-items: center !important;

        padding: 0 !important;

        border: none !important;
    }

    .nav-links .mobile-logo img {
        width: 150px !important;
        height: auto !important;

        display: block !important;
    }


    /* =========================================
       NORMAL MENU ITEMS
    ========================================= */

    .nav-links > li {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links > li > a {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;

        padding: 15px 0 !important;

        color: #222 !important;

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

        text-decoration: none !important;

        border-bottom: 1px solid #eeeeee !important;
    }


    /* =========================================
       REMOVE TEMPLATE EXTRA ARROW
    ========================================= */

    .nav-links .dropdown > a::after {
        display: none !important;
        content: none !important;
    }


    /* =========================================
       DROPDOWN ARROW
    ========================================= */

    .nav-links .dropdown-toggle i {
        display: block !important;

        font-size: 14px !important;

        margin-left: auto !important;

        transition: transform 0.3s ease !important;
    }

    .nav-links .dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg);
    }


    /* =========================================
       DROPDOWN
    ========================================= */

    .nav-links .dropdown-menu {
        position: static !important;

        display: none !important;

        width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;

        padding: 0 0 0 15px !important;

        background: #f8f8f8 !important;

        border: none !important;

        box-shadow: none !important;

        opacity: 1 !important;

        visibility: visible !important;

        transform: none !important;
    }

    /* OPEN DROPDOWN */
    .nav-links .dropdown.active > .dropdown-menu {
        display: block !important;
    }


    /* Dropdown items */
    .nav-links .dropdown-menu li {
        width: 100% !important;
    }

    .nav-links .dropdown-menu li a {
        display: block !important;

        width: 100% !important;

        padding: 12px 10px !important;

        color: #333 !important;

        font-size: 14px !important;

        border-bottom: 1px solid #e5e5e5 !important;

        text-decoration: none !important;
    }


    /* =========================================
       MOBILE BUTTON
    ========================================= */

    .mobile-menu {
        display: flex !important;

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

        width: 45px !important;
        height: 45px !important;

        font-size: 25px !important;

        cursor: pointer !important;

        position: relative !important;

        z-index: 100000 !important;
    }


    /* =========================================
       OVERLAY
    ========================================= */

    .menu-overlay {
        position: fixed !important;

        inset: 0 !important;

        background: rgba(0, 0, 0, 0.45) !important;

        z-index: 99998 !important;

        opacity: 0 !important;

        visibility: hidden !important;

        transition: all 0.3s ease !important;
    }

    .menu-overlay.active {
        opacity: 1 !important;

        visibility: visible !important;
    }


    /* Hide registration on mobile */
    .nav-buttons {
        display: none !important;
    }
}


/* Hide mobile logo on desktop */
.mobile-logo {
    display: none;
}/* =====================================================
   MOBILE NAVIGATION - FINAL FIX
===================================================== */

@media (max-width: 991px) {

    /* ---------------------------------------------
       BODY
    --------------------------------------------- */

    body {
        overflow-x: hidden !important;
    }


    /* ---------------------------------------------
       MAIN NAVBAR
    --------------------------------------------- */

    .navbar {
        position: relative !important;
        z-index: 9999 !important;
    }


    /* ---------------------------------------------
       MOBILE MENU BUTTON
    --------------------------------------------- */

    .mobile-menu {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;
        /* position: fixed !important; */
        top: 0px !important;
        right: 2px !important;

        width: 42px !important;
        height: 42px !important;

        background: transparent !important;

        color: #542080 !important;

        font-size: 24px !important;

        cursor: pointer !important;

        z-index: 100005 !important;
    }


    /* ---------------------------------------------
       OVERLAY
    --------------------------------------------- */

    .menu-overlay {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background: rgba(0, 0, 0, 0.45) !important;

        opacity: 0 !important;
        visibility: hidden !important;

        z-index: 99998 !important;

        transition: all 0.3s ease !important;
    }

    .menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }


    /* ---------------------------------------------
       MOBILE NAV PANEL
    --------------------------------------------- */

    .nav-links {
        position: fixed !important;

        top: 0 !important;
        right: -320px !important;

        width: 300px !important;
        max-width: 85vw !important;

        height: 100vh !important;

        margin: 0 !important;

        padding: 0 25px 0px !important;

        background: #ffffff !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: flex-start !important;

        gap: 0 !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        box-sizing: border-box !important;

        z-index: 100000 !important;

        transition: right 0.35s ease !important;

        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
    }


    /* OPEN */
    .nav-links.active {
        right: 0 !important;
    }


    /* ---------------------------------------------
       MOBILE LOGO
    --------------------------------------------- */

    .nav-links .mobile-logo {
        display: flex !important;

        width: 100% !important;

        height: auto !important;

        min-height: 125px !important;

        margin: 0 !important;
        padding: 10px 0 !important;

        align-items: center !important;
        justify-content: flex-start !important;

        box-sizing: border-box !important;

        border-bottom: 1px solid #eeeeee !important;
    }


    .nav-links .mobile-logo a {
        display: flex !important;

        width: 100% !important;

        height: auto !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;

        align-items: center !important;
        justify-content: flex-start !important;
    }


    .nav-links .mobile-logo img {
        display: block !important;

        width: 99px !important;
        max-width: 90px !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: contain !important;
    }


    /* ---------------------------------------------
       MENU ITEMS
    --------------------------------------------- */

    .nav-links > li {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        flex: 0 0 auto !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }


    .nav-links > li > a {
        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        height: auto !important;

        padding: 6px 0 !important;

        margin: 0 !important;

        box-sizing: border-box !important;

        color: #222 !important;

        font-family: 'Plus Jakarta Sans', sans-serif !important;

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

        line-height: 1.4 !important;

        text-decoration: none !important;

        border-bottom: 1px solid #eeeeee !important;

        white-space: normal !important;
    }


    /* Active Home */
    .nav-links > li > a.active {
        color: #542080 !important;
    }


    /* ---------------------------------------------
       REMOVE TEMPLATE ARROW
    --------------------------------------------- */

    .nav-links .dropdown > a::after {
        display: none !important;

        content: none !important;
    }


    /* ---------------------------------------------
       OUR ARROW
    --------------------------------------------- */

    .nav-links .dropdown-toggle i {
        display: inline-flex !important;

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

        flex: 0 0 auto !important;

        margin-left: 15px !important;

        font-size: 13px !important;

        color: #111 !important;

        transition: transform 0.3s ease !important;
    }


    .nav-links .dropdown.active > .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }


    /* ---------------------------------------------
       DROPDOWN MENU
    --------------------------------------------- */

    .nav-links .dropdown-menu {
        position: static !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;

        margin: 0 !important;

        padding: 0 !important;

        display: none !important;

        box-sizing: border-box !important;

        background: #f8f8f8 !important;

        border: none !important;

        border-radius: 0 !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        transform: none !important;

        overflow: hidden !important;
    }


    /* OPEN DROPDOWN */

    .nav-links .dropdown.active > .dropdown-menu {
        display: block !important;

        visibility: visible !important;
        opacity: 1 !important;
    }


    /* ---------------------------------------------
       DROPDOWN ITEMS
    --------------------------------------------- */

    .nav-links .dropdown-menu li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .nav-links .dropdown-menu li a {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 13px 15px !important;

        margin: 0 !important;

        color: #333 !important;

        font-family: 'Plus Jakarta Sans', sans-serif !important;

        font-size: 14px !important;

        font-weight: 500 !important;

        line-height: 1.4 !important;

        text-decoration: none !important;

        border-bottom: 1px solid #e5e5e5 !important;

        white-space: normal !important;
    }


    .nav-links .dropdown-menu li a:hover {
        color: #542080 !important;
    }


    /* ---------------------------------------------
       DESKTOP LOGO HIDE INSIDE MOBILE PANEL
    --------------------------------------------- */

    .nav-links .logo-text {
        display: none !important;
    }


    /* ---------------------------------------------
       REGISTRATION BUTTON
    --------------------------------------------- */

    .nav-buttons {
        display: none !important;
    }

}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 992px) {

    .mobile-menu {
        display: none !important;
    }

    .mobile-logo {
        display: none !important;
    }

}

/* =========================================================
   AASHRAYAANI NGO FOOTER
========================================================= */

.main-footer {
    position: relative;
    background: #4b1e6d !important;
    color: #ffffff !important;
    overflow: hidden;
}

/* Main Footer */
.main-footer__top {
    position: relative;
    padding: 70px 0 45px;
    background: linear-gradient(
        135deg,
        #4b1e6d 0%,
        #3b155d 55%,
        #2d1048 100%
    ) !important;
}

/* Container */
.main-footer .container {
    position: relative;
    z-index: 2;
}

/* Columns */
.main-footer__top .row {
    align-items: flex-start;
}

/* Vertical separator */
.footer-widget {
    position: relative;
    padding-right: 30px;
}

.footer-widget:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.18);
}


/* =========================================================
   LOGO
========================================================= */

.footer-widget__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-widget__logo img {
    width: 105px !important;
    height: 100px !important;
    object-fit: contain;
}


/* =========================================================
   ABOUT
========================================================= */

.footer-widget--about {
    padding-right: 35px;
}

.footer-widget--about .footer-widget__about-text {
    max-width: 260px;

    margin: 5px 0 0;

    color: rgba(255,255,255,0.9) !important;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TITLES
========================================================= */

.footer-widget__title {
    position: relative;

    margin: 0 0 30px !important;

    padding-bottom: 12px;

    color: #ffffff !important;

    font-family: 'Plus Jakarta Sans', sans-serif !important;

    font-size: 16px !important;

    font-weight: 700 !important;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}

/* Yellow + pink underline */
.footer-widget__title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 74px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #f5c04a 0 50%,
        #b34db5 50% 100%
    );
}


/* =========================================================
   CONTACT
========================================================= */

.footer-widget__info {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-widget__info li {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;

    color: #ffffff;
}

.footer-widget__info li > span {
    flex: 0 0 16px;

    margin-top: 4px;

    color: #f5c04a;

    font-size: 13px;
}

.footer-widget__info address {
    margin: 0;

    color: rgba(255,255,255,0.9);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    line-height: 1.7;
}

.footer-widget__info a {
    color: rgba(255,255,255,0.9) !important;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    text-decoration: none;
}

.footer-widget__info a:hover {
    color: #f5c04a !important;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-widget__links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-widget__links li {
    margin-bottom: 13px;
}

.footer-widget__links li a {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.92) !important;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-widget__links li a::before {
    content: "›";

    color: #f5c04a;

    font-size: 15px;

    line-height: 12px;
}

.footer-widget__links li a:hover {
    color: #f5c04a !important;

    padding-left: 4px;
}


/* =========================================================
   LATEST NEWS
========================================================= */

.footer-news {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.footer-news__item {
    display: flex;

    align-items: center;

    gap: 17px;
}

.footer-news__date {
    flex: 0 0 56px;

    width: 56px;
    height: 61px;

    display: flex;

    flex-direction: column;

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

    background: linear-gradient(
        135deg,
        #b34db5,
        #f5c04a
    );

    border-radius: 7px;

    color: #ffffff;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 12px;

    line-height: 1.1;

    text-transform: uppercase;
}

.footer-news__date span {
    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;
}

.footer-news__content {
    min-width: 0;
}

.footer-news__content h5 {
    margin: 0 !important;
}

.footer-news__content h5 a {
    color: rgba(255,255,255,0.92) !important;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.6;

    text-decoration: none;
}

.footer-news__content h5 a:hover {
    color: #f5c04a !important;
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.main-footer__top__shape-box {
    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 1;

    opacity: 0.12;
}

.main-footer__top__shape-one,
.main-footer__top__shape-two {
    position: absolute;

    bottom: 0;

    max-width: 280px;

    opacity: 0.45;
}

.main-footer__top__shape-one {
    left: -30px;
}

.main-footer__top__shape-two {
    right: -30px;
}


/* =========================================================
   BOTTOM COPYRIGHT
========================================================= */

.main-footer__bottom {
    position: relative;

    background: #220b39 !important;

    min-height: 55px;

    display: flex;

    align-items: center;
}

.main-footer__bottom__bg {
    display: none;
}

.main-footer__bottom__inner {
    padding: 18px 0;

    text-align: center;
}

.main-footer__copyright {
    margin: 0;

    color: rgba(255,255,255,0.9) !important;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 11px;

    line-height: 1.6;
}

.main-footer__copyright strong {
    color: #ffffff;
}

.main-footer__copyright a {
    color: #f5c04a !important;

    text-decoration: none;
}

.main-footer__copyright a:hover {
    color: #ffffff !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .footer-widget {
        padding-right: 20px;
    }

    .footer-widget--about .footer-widget__about-text {
        max-width: 230px;
    }

}


@media (max-width: 991px) {

    .main-footer__top {
        padding: 55px 0 35px;
    }

    .footer-widget {
        padding-right: 0;

        margin-bottom: 25px;
    }

    .footer-widget::after {
        display: none !important;
    }

    .footer-widget--about .footer-widget__about-text {
        max-width: 100%;
    }

}


@media (max-width: 575px) {

    .main-footer__top {
        padding: 45px 20px 25px;
    }

    .footer-widget__logo img {
        width: 90px !important;
        height: 85px !important;
    }

    .footer-widget__title {
        font-size: 13px !important;

        margin-bottom: 22px !important;
    }

    .footer-news__item {
        align-items: flex-start;
    }

    .main-footer__copyright {
        font-size: 10px;
    }

    .main-footer__copyright .mx-2 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

}
.main-footer__top {
    position: relative;
    padding: 40px 0 25px;
    background: linear-gradient(135deg, #4b1e6d 0%, #3b155d 55%, #2d1048 100%) !important;
}
/* =====================================
   WATCH VIDEO SECTION
===================================== */

.watch-buy-section {
    width: 100%;
    padding: 50px 0 60px;
    background: #fff;
    overflow: hidden;
}

.watch-buy-container {
    width: 85%;
    margin: 0 auto;
    padding:15px 15px;
}

.watch-buy-title {
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 600;
    color: #111;
    margin: 0 0 30px;
}


/* =====================================
   SWIPER
===================================== */

.watchBuySwiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.watchBuySwiper .swiper-wrapper {
    align-items: stretch;
}

.watchBuySwiper .swiper-slide {
    height: auto;
}


/* =====================================
   VIDEO CARD
===================================== */

.watch-video-card {
    position: relative;
    width: 100%;
    height: 560px;

    overflow: hidden;
    border-radius: 10px;

    background: #111;
}

.watch-video-card video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    pointer-events: none;
}


/* =====================================
   ARROWS
===================================== */

.watch-buy-prev,
.watch-buy-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 44px;
    height: 44px;

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

    background: rgba(40, 40, 40, 0.75);
    color: #fff;

    border-radius: 50%;

    cursor: pointer;

    z-index: 20;

    transition: all 0.3s ease;
}

.watch-buy-prev:hover,
.watch-buy-next:hover {
    background: #321250;
}

.watch-buy-prev {
    left: 15px;
}

.watch-buy-next {
    right: 15px;
}

.watch-buy-prev i,
.watch-buy-next i {
    font-size: 14px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .watch-buy-section {
        padding: 45px 0 50px;
    }

    .watch-buy-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .watch-video-card {
        height: 500px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .watch-buy-section {
        padding: 35px 0 45px;
    }

    .watch-buy-container {
        padding: 0 12px;
    }

    .watch-buy-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .watch-video-card {
        height: 500px;
        border-radius: 8px;
    }

    .watch-buy-prev,
    .watch-buy-next {
        width: 38px;
        height: 38px;
    }

    .watch-buy-prev {
        left: 8px;
    }

    .watch-buy-next {
        right: 8px;
    }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .watch-buy-container {
        padding: 0 10px;
    }

    .watch-video-card {
        height: 480px;
        border-radius: 7px;
    }

    .watch-buy-title {
        font-size: 26px;
    }

}





/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

/* Swiper */
.heroSwiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;

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

/* Purple Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        115deg,
        #321250 0%,
        rgba(91, 42, 134, 0.62) 45%,
        rgba(129, 100, 155, 0) 100%
    );

    z-index: 2;
    pointer-events: none;
}

/* Content */
.hero-slider .hero-content {
    position: absolute;

    top: 50%;
    left: 8%;

    transform: translateY(-50%);

    max-width: 700px;

    z-index: 5;
}

/* Heading */
.hero-slider .hero-content h1 {
    color: #fff;
}

/* Wave */
.hero-slider .hero-wave {
    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 120px;

    z-index: 6;

    overflow: hidden;
}

.hero-slider .hero-wave svg {
    display: block;

    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {

    .hero-slider {
        height: 650px;
    }

    .hero-slider .hero-content {
        left: 5%;
        right: 5%;
        max-width: 650px;
    }

    .hero-slider .hero-wave {
        height: 90px;
    }

}


@media (max-width: 767px) {

    .hero-slider {
        height: 650px;
    }

    .hero-slider .hero-content {
        left: 25px;
        right: 25px;

        top: 48%;

        max-width: none;
    }

    .hero-slider .hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-slider .hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-slider .hero-wave {
        height: 70px;
    }

    .hero-slide {
        background-position: center;
    }

}


@media (max-width: 480px) {

    .hero-slider {
        height: 620px;
    }

    .hero-slider .hero-content {
        left: 20px;
        right: 20px;
    }

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

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

    .hero-slider .hero-wave {
        height: 60px;
    }

}
/* HERO */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

/* Swiper full screen */
.heroSwiper {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    z-index: 0;
}

/* Every slide full hero */
.hero-slide {
    width: 100% !important;
    height: 100% !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
/* ==========================================
   EVENTS SECTION
========================================== */

.events-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 370px;

    margin: auto;
    padding: 10px;

    display: flex;
    gap: 10px;

    background: #f7f9fc;

    border: 3px solid #1c2740;
    border-radius: 14px;

    overflow: hidden;

    box-sizing: border-box;
}


/* ==========================================
   LEFT IMAGE SLIDER
========================================== */

.events-slider {
    width: 57%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


/* VIEWPORT */

.slider-viewport {
    width: 100%;
    height: calc(100% - 35px);
    overflow: hidden;
    position: relative;
}


/* MOVING TRACK */

.slider-container {
    height: 100%;
    width: 200%;

    display: flex;

    position: absolute;
    top: 0;
    left: 0;

    transition: transform 0.5s ease;
}


/* EACH IMAGE */

.slide {
    width: 25%;
    min-width: 25%;
    height: 100%;

    flex: 0 0 25%;

    padding: 3px;

    box-sizing: border-box;
}


.slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border: 2px solid #b40000;
    border-radius: 6px;

    background: #7b0000;
}


/* CONTROLS */

.slider-controls {
    width: 100%;
    height: 35px;

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

    gap: 12px;
}


.slider-arrow {
    width: 25px;
    height: 25px;

    padding: 0;

    border: none;
    background: transparent;

    color: #888;

    font-size: 17px;

    cursor: pointer;

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


.slider-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}


.slider-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #bbb;

    cursor: pointer;
}


.slider-dot.active {
    background: #555;
}
/* ==========================================
   RIGHT EVENTS MARQUEE
========================================== */

.events-marquee {
    width: 43%;
    height: 100%;

    position: relative;

    overflow: hidden;

    background: #fff;

    border: 1px solid #27324a;
    border-radius: 7px;
}


/* ==========================================
   FIXED HEADING
========================================== */

.events-heading {
    width: 100%;
    height: 48px;

    display: flex;

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

    background: #fff;

    border-bottom: 1px solid #ccc;

    position: relative;

    z-index: 20;
}


.events-heading h3 {
    margin: 0;

    color: #27324a;

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

    text-align: center;
}


/* ==========================================
   TABLE AREA
========================================== */

.event-table-area {
    width: 100%;
    height: calc(100% - 48px);

    display: flex;

    overflow: hidden;

    position: relative;
}


/* ==========================================
   FIXED SR.NO COLUMN
========================================== */

.sr-column {
    width: 11%;
    min-width: 11%;

    height: 100%;

    position: relative;

    z-index: 10;

    background: #fff;

    border-right: 1px solid #ccc;
}


/* ==========================================
   SR.NO HEADER
========================================== */

.sr-header {
    width: 100%;
    height: 35px;

    display: flex;

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

    background: #f1f1f1;

    border-bottom: 1px solid #ccc;

    color: #202020;

    font-size: 13px;
    font-weight: 900;
}


/* ==========================================
   SR.NO SCROLL WINDOW
========================================== */

.sr-scroll-window {
    width: 100%;
    height: calc(100% - 35px);

    position: relative;

    overflow: hidden;
}


/* ==========================================
   SR.NO SCROLL CONTENT
========================================== */

.sr-scroll-content {
    width: 100%;

    position: absolute;

    top: 0;
    left: 0;

    animation: eventScroll 15s linear infinite;
}


/* ==========================================
   SR.NO ROW
========================================== */

.sr-row {
    width: 100%;
    height: 35px;

    display: flex;

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

    color: #333;

    font-size: 10px;

    border-bottom: 1px solid #ddd;

    background: #fff;

    box-sizing: border-box;
}


/* ==========================================
   DETAILS COLUMN
========================================== */

.details-column {
    width: 89%;
    height: 100%;

    position: relative;

    overflow: hidden;
}


/* ==========================================
   DETAILS HEADER
========================================== */

.details-header {
    width: 100%;
    height: 35px;

    display: grid;

    grid-template-columns:
        28%
        22%
        28%
        22%;

    background: #f1f1f1;

    border-bottom: 1px solid #ccc;

    position: relative;

    z-index: 10;
}


.details-header div {
    display: flex;

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

    color: #333;

    font-size: 14px;
    font-weight: 900;

    text-align: center;

    border-right: 1px solid #ddd;
}


/* ==========================================
   DETAILS SCROLL WINDOW
========================================== */

.details-scroll-window {
    width: 100%;
    height: calc(100% - 35px);

    position: relative;

    overflow: hidden;
}


/* ==========================================
   DETAILS SCROLL CONTENT
========================================== */

.details-scroll-content {
    width: 100%;

    position: absolute;

    top: 0;
    left: 0;

    animation: eventScroll 15s linear infinite;
}


/* ==========================================
   EVENT ROW
========================================== */

.event-row {
    width: 100%;
    height: 35px;

    display: grid;

    grid-template-columns:
        28%
        22%
        28%
        22%;

    border-bottom: 1px solid #ddd;

    box-sizing: border-box;
}


.event-row div {
    height: 35px;

    display: flex;

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

    padding: 2px;

    color: #333;

    font-size: 9px;

    text-align: center;

    border-right: 1px solid #eee;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    box-sizing: border-box;
}


.event-row:nth-child(even) {
    background: rgba(245, 245, 245, 0.5);
}


/* ==========================================
   BOTTOM → TOP MARQUEE
========================================== */

@keyframes eventScroll {

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

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

}


/* ==========================================
   HOVER = STOP
========================================== */

.events-marquee:hover .sr-scroll-content,
.events-marquee:hover .details-scroll-content {
    animation-play-state: paused;
}


/* ==========================================
   VIEW ALL BUTTON
========================================== */

.view-all-wrapper {
    position: absolute;

    right: 7px;
    bottom: 7px;

    z-index: 30;
}


.view-all-btn {
    border: none;

    padding: 7px 13px;

    border-radius: 15px;

    background: #8e0505;

    color: #fff;

    font-size: 10px;

    cursor: pointer;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}


.view-all-btn:hover {
    background: #c00000;

    transform: scale(1.04);
}

.sr-row {
    font-size: 13px;
    font-weight: 800;
}

.details-header div {
    font-size: 13px;
    font-weight: 800;
}

.event-row div {
    font-size: 13px;
    font-weight: 800;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .events-wrapper {
        height: 300px;
    }


    .events-heading h3 {
        font-size: 14px;
    }


    .sr-header,
    .details-header div {
        font-size: 9px;
    }


    .sr-row {
        font-size: 8px;
    }


    .event-row div {
        font-size: 8px;
    }


    .view-all-btn {
        font-size: 8px;

        padding: 6px 10px;
    }

}
@media (max-width: 550px) {

    .events-wrapper {
        height: auto;

        flex-direction: column;
    }


    .events-slider,
    .events-marquee {
        width: 100%;
    }


    .events-slider {
        height: 220px;
    }


    .events-marquee {
        height: 300px;
    }

}

.events-slider-heading {
    width: 100%;
    height: 48px;

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

    /* background: #9e9e9e; */

    /* border: 1px solid #ccc; */
    /* border-bottom: 1px solid #ccc; */

    position: relative;

    z-index: 10;
}

.events-slider-heading h3 {
    margin: 0;

    color: #27324a;

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

    text-align: center;
}


/* =========================================
   OUTER EVENTS SECTION
========================================= */

.events-wrapper {
    position: relative;
}


/* =========================================
   CONGRATULATIONS
   OUTER BORDER KE UPAR
========================================= */

.section-congratulations {
    position: absolute;

    /* section ke top-right border par */
        top: -25px;
    right: -36px;
    width: 178px;
    z-index: 9999;
    transform: rotate(35deg);

    pointer-events: none;
        /* Blink Effect */
    animation: congratulationsBlink 1.2s infinite ease-in-out;
}

.section-congratulations img {
    width: 100%;
    height: auto;
    display: block;
}


/* Blink Animation */
@keyframes congratulationsBlink {

    0% {
        opacity: 1;
        transform: rotate(35deg) scale(1);
    }

    50% {
        opacity: 0.35;
        transform: rotate(35deg) scale(1.08);
    }

    100% {
        opacity: 1;
        transform: rotate(35deg) scale(1);
    }

}

@keyframes congratulationsBlink {

    0%, 100% {
        opacity: 1;
        transform: rotate(35deg) scale(1);
        filter: brightness(1);
    }

    50% {
        opacity: 0.65;
        transform: rotate(35deg) scale(1.06);
        filter: brightness(1.4);
    }

}



/* IMAGE */

.section-congratulations img {
    width: 100%;
    height: auto;
    display: block;

    object-fit: contain;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .section-congratulations {
        width: 145px;
        top: -25px;
        right: -10px;
        transform: rotate(12deg);
    }

}
.events-section-container {
    position: relative;
}

.events-wrapper {
    position: relative;
}



.section-congratulations img {
    width: 100%;
    height: auto;
    display: block;
}