* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

html, body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

main {
    width: 100%;
}

main {
    overflow-x: hidden;
    margin-top: 84px;
    width: 100%;
}


.btn {
    transition: all 0.3s ease;
}

    .btn:active {
        transform: scale(0.95);
    }

/* Navbar Base */
.mun-navbar {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: 0.3s ease;
    z-index: 999;
}

/* Brand */
.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

.nav-logo {
    height: 50px;
}
/* Links */
.navbar-nav .nav-link {
    color: #20435f;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

    /* Hover underline animation */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background: #20435f;
        transition: 0.3s;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: #20435f;
    }

/* CTA Button */




/* Mobile Fix */
.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }
/* Dropdown styling */
.dropdown-menu {
    border-radius: 10px;
    padding: 8px 0;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 8px 20px;
    color: #20435f;
    transition: 0.3s;
}

    .dropdown-item:hover {
        background: #f1f5f9;
        color: #20435f;
    }

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* Dropdown animation */
.dropdown-menu {
    display: block;
    opacity: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
/* Default hidden */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show when active */
.dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Desktop hover only */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-nav .nav-link::after {
    width: 0;
    opacity: 0;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
}
/* Fix dropdown arrow */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid #20435f; /* arrow color */
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.dropdown-toggle::after {
    display: none;
}
/* Rotate arrow when open */
.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.dropdown-toggle::after {
    transition: 0.3s ease;
}

/* Icon styling */
.nav-link i {
    font-size: 12px;
    transition: 0.3s ease;
}

/* Rotate when open */
.dropdown.show .nav-link i {
    transform: rotate(180deg);
}

/* HERO SECTION */
.mun-hero {
    min-height: 500px;
    padding-top: 100px;
    position: relative;
}

    .mun-hero .logo {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        background-color: #fff;
        margin: auto;
    }

        .mun-hero .logo img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
/* Initial state */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

/* Animation keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays (stagger effect) */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.fade-up {
    will-change: transform, opacity;
}
/* Title */
.hero-title {
    font-size: 60px;
    margin: 15px 0;
    font-weight: 700;
}

/* Tagline */
.hero-tagline {
    font-size: 24px;
    color: #cbd5e1;
    /* max-width: 500px; */
}

/* Date & Location */
.hero-date,
.hero-location {
    font-size: 18px;
    gap: 15px;
    margin: 5px 0;
}

    .hero-date i,
    .hero-location i {
        color: #E5BB51;
    }

    .hero-location a {
        color: #fff;
        text-decoration: none;
    }

.mun-blue-btn {
    background: #29435D;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

/* Buttons */
.mun-yellow-btn {
    background-color: #E5BB51;
    color: white !important;
    padding: 12px 20px;
    border-radius: 30px;
    transition: 0.3s;
}



/* Alternate Button */
.mun-white-btn {
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    transition: 0.3s;
}
/* Base (important for shine) */
.mun-blue-btn,
.mun-yellow-btn,
.mun-white-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

    /* Shine line */
    .mun-blue-btn::before,
    .mun-yellow-btn::before,
    .mun-white-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 40%;
        height: 100%;
        /* Thin shine */
        background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.6), transparent );
        transform: skewX(-25deg);
    }

    /* Hover Animation */
    .mun-blue-btn:hover::before,
    .mun-yellow-btn:hover::before,
    .mun-white-btn:hover::before {
        animation: shine 1s ease forwards;
    }

/* Keyframes */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



/* SECTION BACKGROUND */
.mun-about {
    background: #F5F7FA;
    color: #a1a1a1;
}

.about-head {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #a1a1a1;
}

    .about-head img {
        background-color: #fff;
        height: 100px;
        border-radius: 12px;
        object-fit: cover;
    }
/* Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0A2E6E;
}

    .section-title span {
        color: #E5BB51;
    }

.section-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* CARD */
.about-card {
    background-color: #0B1120;
    padding: 25px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /* border: 1px solid #eee; */
    border: 1px solid #00C2FF;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.5), 0 0 20px rgba(0, 194, 255, 0.4), 0 0 40px rgba(0, 194, 255, 0.3);
}


    /* Heading */
    .about-card h5 {
        font-weight: 600;
        font-size: 28px;
        color: #ffffff;
        margin-bottom: 10px;
    }

        .about-card h5 span {
            color: #E5BB51;
        }
    /* Text */
    .about-card p {
        font-size: 14px;
        color: #a1a1a1;
    }

/* Read More */
.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #00C2FF;
    text-decoration: none;
    font-weight: 500;
}

    .read-more:hover {
        text-decoration: underline;
    }
/* Tabs */
.about-tabs {
    display: inline-flex;
    background: #29435D;
    padding: 6px;
    border-radius: 50px;
    margin: auto;
}

.tab-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

    .tab-btn.active {
        border: 2px solid #E5BB51;
        color: #fff;
    }

/* Wrapper */
.about-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.5), 0 0 20px rgba(0, 194, 255, 0.4), 0 0 40px rgba(0, 194, 255, 0.3);
}

/* Content */
.about-content {
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.5s ease;
}

    /* Active Content */
    .about-content.active {
        left: 0;
        opacity: 1;
        position: relative;
    }

    /* Slide out to left */
    .about-content.exit-left {
        left: -100%;
        opacity: 0;
    }

/* SECTION BACKGROUND */
.mun-committees {
    background: #0B1120;
}

/* CARD */
.committee-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    /* Glow effect */
    .committee-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(0,194,255,0.3), transparent);
        opacity: 0;
        transition: 0.4s;
    }

    .committee-card:hover::before {
        opacity: 1;
    }

    /* Hover effect */
    .committee-card:hover {
        transform: translateY(-10px);
        border-color: #00C2FF;
        box-shadow: 0 0 20px rgba(0,194,255,0.4);
    }

    .committee-card i {
        font-size: 30px;
    }
    /* Title */
    .committee-card h5 {
        font-size: 24px;
        font-weight: 600;
    }

    /* Text */
    .committee-card p {
        font-size: 14px;
        color: #cbd5e1;
    }

/* MODAL */
.mun-modal {
    background: #0B1120;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal-img {
    max-height: 350px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
}

.select-wrapper {
    position: relative;
}

    .select-wrapper select {
        appearance: none; /* remove default arrow */
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 40px;
    }

.select-icon {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
    font-size: 14px;
}

/* SECTION */
.mun-application {
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
}

.application-section::before,
.application-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    z-index: 0;
}

/* Blue Glow (left) */
.application-section::before {
    background: #29435D;
    top: -100px;
    left: -100px;
}

/* Yellow Glow (right) */
.application-section::after {
    background: #E5BB51;
    bottom: -100px;
    right: -100px;
}
/* FORM BOX */
.application-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

    /* LABEL */
    .application-form label {
        font-weight: 500;
        margin-bottom: 5px;
        color: #0A2E6E;
    }

    /* INPUT */
    .application-form .form-control {
        border-radius: 8px;
        font-size: 14px;
        padding: 5px;
        border: 1px solid #ddd;
        transition: 0.3s;
    }

        /* FOCUS */
        .application-form .form-control:focus {
            border-color: #00C2FF;
            box-shadow: 0 0 8px rgba(0,194,255,0.4);
        }

    /* FILE */
    .application-form input[type="file"] {
        padding: 8px;
    }

    /* BUTTON */
    .application-form .mun-btn {
        font-size: 16px;
        padding: 10px 12px;
    }

/* SECTION */
.mun-application {
    background: #F5F7FA;
}

.form-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, #00C2FF, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* SECTION BACKGROUND */
.mun-register {
    position: relative;
    background: radial-gradient(circle at 20% 30%, rgba(0,194,255,0.15), transparent 40%), radial-gradient(circle at 80% 70%, rgba(0,194,255,0.12), transparent 40%), #0f1424;
    overflow: hidden;
}

    /* GLOW EFFECT BLOBS */
    .mun-register::before,
    .mun-register::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: #00C2FF;
        filter: blur(120px);
        opacity: 0.2;
        z-index: 0;
    }

    .mun-register::before {
        top: -50px;
        left: -50px;
    }

    .mun-register::after {
        bottom: -50px;
        right: -50px;
    }

/* FORM BOX - GLASS */
.form-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.15);
    transition: 0.3s ease;
}

    /* HOVER FLOAT */
    .form-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 45px rgba(0, 194, 255, 0.35);
    }

/* INPUT FIELDS */
.form-control,
.form-select {
    background: #171f2e96;
    border: 1px solid rgba(0, 194, 255, 0.2);
    color: #fff;
}

    .form-control::placeholder {
        color: #aaa;
    }

.form-box h4 {
    color: #fff;
    font-weight: 700;
    margin: 20px 0;
}

.form-box h5 {
    color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: #00C2FF;
    box-shadow: 0 0 10px rgba(0,194,255,0.4);
    background: rgba(255,255,255,0.08);
}

.form-control:-webkit-autofill {
    box-shadow: 0 0 0px 1000px rgba(255,255,255,0.08) inset !important; /* your theme */
    -webkit-text-fill-color: #fff !important;
}

input:focus,
textarea:focus {
    color: #fff !important;
}
/* LABEL */
label {
    color: #cfd8ff;
}

/* TOGGLE BUTTON */
.toggle-btn {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0, 194, 255, 0.2);
}

    .toggle-btn .btn {
        background: transparent;
        color: #dbdada;
        transition: 0.3s;
    }

        .toggle-btn .btn.active {
            background: linear-gradient(90deg, #00C2FF, #3b82f6);
            color: #fff;
            box-shadow: 0 0 10px rgba(0,194,255,0.6);
        }

/* COUPON BOX */
.coupon-box {
    border: 1px dashed rgba(0, 194, 255, 0.5);
    background: rgba(0, 194, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 6px;
}

/* APPLY BUTTON */
.apply-btn {
    background: linear-gradient(90deg, #00C2FF, #3b82f6);
    color: #fff;
    border: none;
}

    .apply-btn:hover {
        box-shadow: 0 0 15px rgba(0,194,255,0.7);
    }

/* SUBMIT BUTTON */
.submit-btn {
    background: linear-gradient(90deg, #00C2FF, #007bff);
    color: #fff;
    border: none;
    letter-spacing: 1px;
}

    .submit-btn:hover {
        box-shadow: 0 0 20px rgba(0,194,255,0.8);
        transform: translateY(-2px);
    }

/* SECTION */
.mun-contact {
    background: #0B1120;
}

/* INFO BOX */
.contact-info {
    color: #fff;
}

    /* LINKS */
    .contact-info a {
        color: #E5BB51;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* CARD */
.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    transition: 0.3s;
}

    /* HOVER */
    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 20px rgba(0,194,255,0.3);
    }


/* FOOTER */
.mun-footer {
    background: #020617;
    color: #cbd5e1;
}

/* LOGO */
.footer-logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
}

/* TEXT */
.footer-text {
    font-size: 15px;
    margin-top: 10px;
}

/* HEADINGS */
.footer-heading {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        text-decoration: none;
        color: #cbd5e1;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #00C2FF;
            padding-left: 5px;
        }

/* CONTACT */
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width:768px) {

    .hero-title {
        font-size: 40px;
    }

    .mun-hero {
        font-size: 15px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-date,
    .hero-location {
        gap: 10px;
    }

    .about-head img {
        height: 80px;
    }

    .tab-btn {
        padding: 10px 15px;
    }

    .hero-date, .hero-location {
        font-size: 15px;
    }

    .footer-links,
    .footer-contact a {
        font-size: 14px;
    }

    .label, .mun-blue-btn,
    .mun-yellow-btn,
    .mun-white-btn,
    .section-subtitle {
        font-size: 15px;
    }

    .about-head {
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }
}

.footer-contact a:hover {
    color: #00C2FF;
    padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}





/* Main Section */
.ai-section {
    position: relative;
    padding: 100px 20px;
    background: #0b1120; /* dark base */
    overflow: hidden;
}

    /* Glow Blobs */
    .ai-section::before,
    .ai-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        filter: blur(120px); /* 🔥 main blur */
        opacity: 0.7;
        z-index: 0;
    }

    /* Blue Glow */
    .ai-section::before {
        background: #00c2ff;
        top: -100px;
        left: -100px;
    }

    /* Purple Glow */
    .ai-section::after {
        background: #7b61ff;
        bottom: -100px;
        right: -100px;
    }

    /* Content above glow */
    .ai-section .container {
        position: relative;
        z-index: 2;
    }

.table-responsive th {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    vertical-align: top;
}

.table-responsive td {
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
}

    .table-responsive td a {
        display: inline-block;
        line-height: 20px;
    }

        .table-responsive td a.btn {
            font-size: 13px;
        }