        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Header Styles */
        header {
            background-color: #000;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Logo (match HTML classes) */
        .logo-img {
            /* width: 52px; */
            height: 70px;
            object-fit: contain;
            display: block;
        }

        .site-title {
            color: white;
            font-size: 21px;
            font-weight: 700;
            line-height: 1.15;
        }

        .site-tagline {
            color: #ccc;
            font-size: 12px;
            margin-top: 4px;
            line-height: 1.3;
        }

        /* Navigation Styles */
        nav {
            display: flex;
            gap: 30px;
        }

        nav > ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav li {
            position: relative;
        }

        nav > ul > li > a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            /* transition: border-color 0.3s; */
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav > ul > li > a:hover {
            border-bottom-color: #2196F3;
        }

        /* Submenu Styles */
        nav ul {
            list-style: none;
        }

        nav ul ul {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #1a1a1a;
            min-width: 200px;
            border: 1px solid #333;
            border-radius: 4px;
            flex-direction: column;
            gap: 0;
            display: none;
            z-index: 200;
            /* margin-top: 5px; */
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        /* Desktop hover only */
        nav li:hover > ul {
            display: flex;
        }

        /* Prevent submenu from hiding due to hover transitions between parent link and submenu */
        nav li > a,
        nav li > ul {
            pointer-events: auto;
        }

        /* When submenu opens, keep it visible while hovering any part of the li (including nested menus) */
        nav li:hover > ul,
        nav li:focus-within > ul {
            display: flex;
        }

        /* Keep menu open when hovering through the submenu area */
        nav > ul > li:hover,
        nav > ul > li:focus-within {
            z-index: 300;
        }



        /* Do not open on focus-within (prevents click behavior bugs) */




        /* Ensure hover also reveals nested submenus (desktop) */
        nav ul ul li:hover > ul,
        nav ul ul li:focus-within > ul {
            display: flex;
        }

        nav ul ul li {
            width: 100%;
        }

        nav ul ul li a {
            display: block;
            padding: 10px 0px;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

nav ul ul li a:hover {
            /* background-color: #2196F3; */
            /* border-left-color: #fff; */
            padding-left: 0px;
            color: #fff;
        }

        /* Mobile: keep submenu expanded when parent <li> has .active */
        @media (max-width: 768px) {
            /* Keep 2nd level submenu open */
            nav li.active > ul {
                display: flex !important;
                position: static;
            }

            /* Keep 3rd level submenu open too */
            nav ul ul li.active > ul {
                display: flex !important;
                position: static;
            }

            /* Ensure clicks on submenu links don't affect layout */
            nav ul ul li a {
                width: 100%;
                display: block;
            }
        }

        /* Child Submenu Styles */
        nav ul ul ul {
            position: absolute;
            top: 0;
            left: 100%;
            margin-top: 0;
            /* margin-left: 5px; */
                padding: 10px;
        }

        /* Dropdown arrow indicator */
        .arrow {
            font-size: 10px;
            /* transition: transform 0.3s; */
            display: inline-block;
        }

        nav li:hover > a .arrow,
        nav li:focus-within > a .arrow,
        nav li.active > a .arrow {
            /* transform: rotate(180deg); */
        }

        /* Responsive Navigation */
        .menu-toggle {
            display: none;
            /* background: none; */
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #000;
                flex-direction: column;
                gap: 0;
                display: none;
                width: 100%;
                border-bottom: 1px solid #333;
                z-index: 150;
            }
            .footer-right {
            text-align: center !important;
            font-size: 14px;
        }
            .site-title {
            color: white;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.15;
        }

            .logo-img {
                width: 52px;
                height: 70px;
                object-fit: contain;
                display: block;
            }
            nav.active {
                display: flex;
            }

            nav > ul {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            nav > ul > li {
                border-bottom: 1px solid #333;
            }

            nav > ul > li > a {
                padding: 15px 20px;
                display: flex;
                justify-content: space-between;
            }

            .menu-toggle {
                display: block;
            }

nav ul ul {
                position: static;
                display: none;
                background-color: #0a0a0a;

                border: none;
                margin-top: 0;
                box-shadow: none;
                border-radius: 0;
            }

            nav li.active > ul {
                display: flex !important;
            }

            nav ul ul li a {
                padding-left: 40px;
            }

            nav ul ul ul li a {
                padding-left: 60px;
            }
        }

        /* Hero Section */
        .hero {
            background-color: #000;
            padding: 40px 20px;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .hero-image {
            /* background-color: #333; */
            /* height: 300px; */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
            overflow: hidden;
        }

        .hero-image img {
            /* width: 100%; */
            height: 100%;
            object-fit: cover;
        }

        /* Video Section */
        .video-grid {
            background-color: #000;
            padding: 40px 20px;
        }

        .video-grid-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-grid-title {
            color: white;
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .videos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .video-item {
            background-color: #222;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .video-thumbnail {
            width: 100%;
            height: 500px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #fff;
            font-weight: bold;
        }

        .video-info {
            padding: 15px;
            color: #999;
            font-size: 12px;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 30px;
            color: white;
        }

        /* Main Content Grid */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        /* News & Events Section */
        .news-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2196F3;
            color: #333;
        }

        .news-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-date {
            font-size: 11px;
            color: #999;
            margin-bottom: 5px;
        }

        .news-title {
            font-size: 14px;
            color: #2196F3;
            text-decoration: none;
            cursor: pointer;
        }

        .news-title:hover {
            text-decoration: underline;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .register-banner {
            background: linear-gradient(135deg, #D4AF37, #FFD700);
            padding: 40px 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .register-banner h3 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
        }

        .register-btn {
            background-color: #FF6B00;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .register-btn:hover {
            background-color: #E85A00;
        }

        /* Activities, Organization, Gallery Grid */
        .sections-grid {
            /* max-width: 1200px; */
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            background-color: #000 !important;
        }

        .section-box {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section-box-image {
            width: 100%;
            height: 200px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .section-box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-box-content {
            padding: 20px;
        }

        .section-box-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .section-box-text {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .read-more {
            color: #2196F3;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Welcome Section */
        .welcome {
            background-color: #000;
            padding: 50px 20px;
            color: white;
        }

        .welcome-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .welcome-image {
            height: 300px;
            background-color: #444;
            border-radius: 8px;
            overflow: hidden;
        }

        .welcome-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .welcome-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #fff;
        }

        .welcome-content p {
            font-size: 14px;
            line-height: 1.8;
            color: #fff;
            margin-bottom: 15px;
        }

.footer {
    background: #000;
    color: #fff;
    padding: 30px 0;
    border-top: solid 1px;
}

.footer-top {
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-left {
    /* display: flex; */
    flex-direction: column;
    align-items: center; /* center location text + icons */
}

.social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons img {
    width: 20px;
    margin-right: 10px;
}

/* RIGHT SIDE */
.footer-right {
    text-align: center;
    font-size: 14px;
}

.footer-right span {
    color: #2a5db0; /* blue link color */
}

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                gap: 15px;
            }

            nav a {
                font-size: 12px;
            }

            .hero-content,
            .videos,
            .sections-grid,
            .welcome-container,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .main-content {
                grid-template-columns: 1fr;
            }

            .header-container {
                flex-direction: column;
                gap: 20px;
            }
        }
    
        .ash-box {
    background-color: #f2f2f2; /* ash color */
    padding: 10px 15px;
    border-radius: 8px; /* rounded corners */
    display: inline-block;
        margin-top: 30px;
}
.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-thumbnail video,
.video-thumbnail iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.news-box {
    background: #e5e5e5;
    padding: 15px;
    border-radius: 10px;
}

.news-header {
    background: #bfbfbf;
    padding: 10px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 15px;
}

.news-list {
    list-style: disc;
    padding-left: 20px;
}

.news-list li {
    margin-bottom: 12px;
}

.news-list a {
    text-decoration: none;
    color: #2a5db0;
    font-size: 14px;
}

.news-list small {
    display: block;
    color: #888;
    font-size: 12px;
}

.register-btn {
    background: linear-gradient(to right, orange, gold);
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: bold;
}
.news{
    background: #000;
    padding: 15px;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px !important;
    }
}

.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #2a5db0; /* hover color */
}
.breadcumb-inner h2 {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}
.brpt, .breadcumb-inner {
    position: relative;
    z-index: 2;
}
.breadcumb-area {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    background-position: center center;
    /* background-image: url("assets/img/news/thurumbars.jpg"); */
    background-repeat: no-repeat;
    background-size: cover;
}
.breadcumb-area:before, .breadcumb-blog-area:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #1E2436;
}
.breadcumb-inner ul, .breadcumb-inner ul span a, .breadcumb-inner li, .breadcumb-inner li a {
    color: #fff;
}
.breadcumb-inner li {
    display: inline-block;
    margin: 0;
    text-align: center;
}
.breadcumb-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.breadcumb-inner li i {
    font-size: 14px;
    transform: translateY(1px);
}
.breadcumb-inner li:nth-last-child(-n+1) {
    color: #fff;
}
.breadcumb-inner li a {
    color: #fff;
    text-decoration: none;
}
.breadcumb-inner li a:hover {
    color: #2a5d89;
}
.brpt h2 {
    font-size: 30px;
    color: #fff;
}
 .lcase {
     text-transform: lowercase;
}
 .ucase {
     text-transform: uppercase;
}
.ccase {
     text-transform: capitalize;
}
.subpage{
    margin-top: 50px;
    margin-bottom: 50px;
     min-height: 100vh;
}
 .table-container {
        width: 100%;
        overflow-x: auto;
        margin-top: 20px;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
        border: 1px solid #000;
    }
    th, td {
        border-bottom: 1px solid #000;
        padding: 10px;
    }
    th {
        background-color: #f4f4f4;
        border-bottom: solid 1px;
    }
    tr:nth-child(even) {
        background-color: #f9f9f9;
        border: solid 1px;
        border-right: solid 1px;
    }
    .total-row {
        font-weight: bold;
        background-color: #e6f2ff;
    }
.subpage ul li a{
    font-size: 20px;
    text-decoration: none;
}

 .contact-container {
        /* max-width: 600px; */
        margin: 50px auto;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
    }

    textarea {
        resize: none;
        height: 120px;
    }

    button {
        width: 100%;
        padding: 12px;
        background: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    button:hover {
        background: #0056b3;
    }
    #mainNav ul li a.active {
    border-bottom: solid 1px #fff;
}
main {
    flex: 1;
}

.role {
    width: 100%;
}

.role h4 {
    margin-bottom: 10px;
    color: #555;
    text-align: center;
}

/* Card */
.card {
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.card {
    /* background: #fff; */
    padding: 10px;
    /* border-radius: 6px; */
    text-align: center;
    border: none !important;
    box-shadow: none !important;
}
.card img {
    width: 200%;
    height: 150%;
    object-fit: cover;
    border-radius: 6px;
}

.card.empty {
    width: 120px;
    /* height: 120px; */
    /* background: #ddd; */
    margin: auto;
}
/* Line */
.line {
    height: 2px;
    background: #000;
    margin: 30px 0;
}
/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
}
.column {
    width: 30%;
    text-align: center;
}
.column h4 {
    margin-bottom: 20px;
}

.card p{
        width: 150%;
    margin-left: -22px;
    margin-top: 10px;
}
    .gallery-section {
            padding: 60px 0;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .footer-left-one p{
            display: flex;
        }
.footer-left {
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

