/* GLOBAL */

body {
    overflow-x: hidden;
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff; /* important to avoid transparency */
}
.mt-10 {
    margin-top: 10px;
}


/* LOGO SECTION */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img img {
    width: 100px;
    height: auto;
}

.logo-title h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    color: #333;
}

.logo-title p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.g2ologo img {
    width: 90px;
    height: auto;
}


/* TOP BAR */

.header-top {
    background: #0b5d44;
    color: #fff;
    font-size: 14px;
}

    .header-top .col-12 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.header-cont-det p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    transition: .3s;
}

    .header-social a:hover {
        color: #fdcb08;
    }

.head-top-menu a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}

    .head-top-menu a:hover {
        color: #fdcb08;
    }


/* HEADER MAIN */

/* Desktop */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .logo-img img {
        max-width: 70px;
        height: auto;
    }

    .logo-title h1 {
        font-size: 18px;
        line-height: 1.3;
        margin: 5px 0;
    }

    .logo-title p {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .g2ologo img {
        max-width: 60px;
        height: auto;
    }
}

/* NAVBAR */

.main-navbar {
    background: #fdcb08;
    border-top: 2px solid #6b0f1a;
}

.navbar-nav .nav-link {
    color: #222;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .navbar-nav .nav-link i {
        font-size: 13px;
    }

    .navbar-nav .nav-link:hover {
        color: #6b0f1a;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
    font-size: 14px;
}

    .dropdown-item:hover {
        background: #fff3c4;
        color: #6b0f1a;
    }


/* SLIDER */
.main-slider {
    width: 100%;
    height: 500px;
}

    .main-slider img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

/* FOOTER */

.site-footer {
    background: #fdcb08;
    color: #222;
    padding-top: 50px;
}

    .site-footer h5 {
        color: #6b0f1a;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .site-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .site-footer ul li {
            margin-bottom: 8px;
            word-break: break-word;
        }

            .site-footer ul li a {
                color: #222;
                text-decoration: none;
            }

                .site-footer ul li a:hover {
                    color: #0b5d44;
                }

.footer-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
}

.footer-bottom {
    background: #6b0f1a;
    color: #fff;
    text-align: center;
    padding: 12px;
}

@media (max-width: 991px) {

    .site-footer {
        text-align: center;
        padding-top: 30px;
    }

        .site-footer .row > div {
            margin-bottom: 25px;
        }

    .footer-logo {
        margin: 0 auto 15px;
        display: block;
    }

    .site-footer ul {
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .site-footer {
        padding-top: 20px;
    }

        .site-footer h5 {
            font-size: 18px;
        }

        .site-footer p,
        .site-footer li,
        .site-footer a {
            font-size: 14px;
        }

    #footerMenu .col-lg-6,
    #footerMenu .col-md-6 {
        width: 100%;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.5;
    }
}


/* LARGE SCREEN */

@media (max-width:1400px) {

    .logo-title h1 {
        font-size: 20px;
    }
}


/* LAPTOP */

@media (max-width:1200px) {

    .logo-img img {
        width: 90px;
    }

    .logo-title h1 {
        font-size: 19px;
    }

    .g2ologo img {
        width: 80px;
    }
}


/* TABLET */

@media (max-width:992px) {

    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .logo-img img {
        margin-bottom: 6px;
    }

    .logo-title h1 {
        font-size: 18px;
    }

    .g2ologo img {
        width: 70px;
    }

    .navbar-nav {
        text-align: left;
    }

    .main-slider, .main-slider img {
        height: 55vh;
    }
}


/* SMALL TABLET */

@media (max-width:768px) {

    .header-top .col-12 {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .logo-title h1 {
        font-size: 17px;
    }

    .logo-title p {
        font-size: 13px;
    }

    .main-slider, .main-slider img {
        height: 50vh;
    }

    .overview-cols li {
        width: 100% !important;
    }
}


/* MOBILE */

@media (max-width:576px) {

    .logo {
        gap: 8px;
    }

    .logo-img img {
        width: 65px;
    }

    .logo-title h1 {
        font-size: 15px;
    }

    .logo-title p {
        font-size: 12px;
    }

    .g2ologo img {
        width: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .main-slider, .main-slider img {
        height: 40vh;
    }

    .site-footer {
        text-align: center;
    }

    .footer-logo {
        margin: auto;
        margin-bottom: 10px;
    }
}


/* EXTRA SMALL PHONES */

@media (max-width:400px) {

    .logo-title h1 {
        font-size: 14px;
    }

    .logo-title p {
        font-size: 11px;
    }

    .main-slider, .main-slider img {
        height: 35vh;
    }
}
.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff20;
    border-radius: 50%;
    color: #fff;
    margin-left: 8px;
}

    .header-social a:hover {
        background: #fdcb08;
        color: #222;
    }
.menu-icon {
    display: inline;
    font-size: 20px;
}

.close-icon {
    display: none;
    font-size: 22px;
}

/* when navbar open */
.navbar-toggler[aria-expanded="true"] .menu-icon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline;
}
.newsection {
    background: black;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 20px;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.back-btn-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

    .back-btn-pro:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateX(-3px);
    }

    .back-btn-pro .arrow {
        font-weight: bold;
    }
/* Container */
.overview-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
}

    /* Each item → 2 per row */
    .overview-cols li {
        width: calc(50% - 10px); /* 👈 2 columns */
        text-align: center;
    }

        /* Card styling */
        .overview-cols li a {
            display: block;
            padding: 20px;
            border-radius: 10px;
            background: #f9f9f9;
            text-decoration: none;
        }

        /* Icon */
        .overview-cols li i {
            display: block;
            font-size: 40px;
            margin-bottom: 12px;
            color: #2c3e50;
        }

        /* Text */
        .overview-cols li h3 {
            margin: 0;
            font-size: 16px;
        }

            .overview-cols li h3 span {
                display: block;
                font-size: 20px;
                font-weight: bold;
                margin-top: 5px;
            }
.main-slider {
    position: relative;
}

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev {
        color: #fff;
        background: rgba(0,0,0,0.5);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        z-index: 9999;
    }

        .main-slider .swiper-button-next::after,
        .main-slider .swiper-button-prev::after {
            font-size: 20px;
            font-weight: bold;
        }
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,.5);
    border-radius: 50%;
}

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 24px;
        color: #fff;
        font-weight: bold;
    }
.ministers-section {
    background: #bcbdbf;
    position: relative;
}

.minister-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
}

    .minister-card:hover {
        transform: translateY(-5px);
    }
#ministerContainer img.card-img-top {
    height: 350px;
    max-height: 400px;
}
.activites-thumb img,
.act-col img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 991px) {
    .activites-thumb {
        margin-bottom: 30px;
        text-align: center;
    }

    .activites-content {
        text-align: center;
    }
}
.activites-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .activites-list li {
        width: calc(50% - 10px);
    }

@media (max-width: 767px) {
    .activites-list li {
        width: 100%;
    }
}
.act-col {
    padding: 15px;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .act-col h3 {
        font-size: 18px;
        margin-top: 10px;
        word-wrap: break-word;
    }

    .act-col p {
        font-size: 14px;
        line-height: 1.6;
    }
@media (max-width: 767px) {
    .college-activities-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-title h2 {
        font-size: 24px;
    }
}