/* =========================
   NAVBAR
========================= */

.navbar {
    transition: all 0.35s ease;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}


/* =========================
   LOGO ICON
========================= */

.brand-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    transition: all 0.35s ease;
}

.brand-link:hover .brand-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.45);
}


/* =========================
   NAVIGATION LINKS
========================= */

.nav-hover {
    position: relative;
    transition: all 0.3s ease;
}

.nav-hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-hover:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.nav-hover:hover::after {
    width: 70%;
}


/* =========================
   SCHOLARSHIP DROPDOWN
========================= */

.scholarship-dropdown {
    position: relative;
}

.scholarship-dropdown .dropdown-menu {
    min-width: 190px;
    margin-top: 0;
    padding: 8px 0;
}

.scholarship-dropdown:hover .dropdown-menu {
    display: block;
}

.scholarship-dropdown .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
}

.scholarship-dropdown .dropdown-item:hover {
    background: #f5f5f5;
    color: #0d6efd;
}


/* =========================
   NAVBAR ALIGNMENT FIX
========================= */

.navbar-nav {
    flex-wrap: nowrap;
}

.navbar-nav .nav-item {
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-nav .nav-link i {
    flex-shrink: 0;
}

@media (max-width: 991px) {

    .navbar-nav {
        flex-wrap: wrap;
    }

    .navbar-nav .nav-item {
        flex-shrink: 1;
    }

}

/* =========================
   JOIN US
========================= */

.join-us-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.join-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.12);
}


/* WhatsApp */

.social-link.whatsapp {
    background: #198754;
}

.social-link.whatsapp:hover {
    box-shadow: 0 6px 18px rgba(25, 135, 84, 0.5);
}


/* Facebook */

.social-link.facebook {
    background: #0d6efd;
}

.social-link.facebook:hover {
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.5);
}


/* LinkedIn */

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.linkedin:hover {
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.5);
}


/* YouTube */

.social-link.youtube {
    background: #dc3545;
}

.social-link.youtube:hover {
    box-shadow: 0 6px 18px rgba(220, 53, 69, 0.5);
}


/* X */

.social-link.x-twitter {
    background: #000000;
    border: 1px solid #555;
}

.social-link.x-twitter:hover {
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 15px;
    }

    .join-us-wrapper {
        justify-content: flex-start;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }

    .social-icons {
        margin-top: 5px;
    }

    .nav-hover::after {
        left: 0;
        transform: none;
    }

    .nav-hover:hover::after {
        width: 45px;
    }
}


/* =========================
   PREMIUM FOOTER
========================= */

.site-footer {
    background: #050505;
    color: #ffffff;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #ffffff;
    font-size: 20px;
    transition: all 0.35s ease;
}

.footer-brand:hover .footer-logo {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 8px 22px rgba(13, 110, 253, 0.4);
}

.footer-brand h4 {
    margin: 0;
    font-weight: 700;
}

.footer-description {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 360px;
}


/* =========================
   FOOTER HEADINGS
========================= */

.footer-heading {
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}


/* =========================
   ABOUT / EMAIL
========================= */

.footer-about {
    color: #bdbdbd;
    line-height: 1.8;
    max-width: 500px;
}

.footer-email {
    color: #ffffff;
    margin-top: 20px;
}

.footer-email a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email a:hover {
    color: #66b2ff;
}


/* =========================
   SOCIAL ICONS
========================= */

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #111111;
    border: 1px solid #292929;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: #ffffff;
    transform: translateY(-5px);
}


/* WhatsApp */

.footer-social.whatsapp:hover {
    background: #198754;
    border-color: #198754;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.35);
}


/* Facebook */

.footer-social.facebook:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}


/* LinkedIn */

.footer-social.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.35);
}


/* YouTube */

.footer-social.youtube:hover {
    background: #dc3545;
    border-color: #dc3545;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.35);
}


/* X */

.footer-social.x-twitter:hover {
    background: #000000;
    border-color: #666666;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}


/* =========================
   FOOTER LINKS BAR
========================= */

.footer-links-bar {
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    background: #0b0b0b;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 18px 0;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}


/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
    background: #050505;
    padding: 18px 0;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-social-icons {
        margin-top: 5px;
    }

    .footer-links {
        gap: 15px 22px;
    }
}


/* =========================
   SIMPLE CATEGORIES
========================= */

.gsn-categories {
    padding: 35px 0;
    background: #fff;
}

.gsn-categories-title {
    margin-bottom: 30px;
    font-weight: bold;
}

.gsn-categories-title h2 {
    display: inline-block;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: #ff7a00;
    padding: 8px 16px;
    margin: 0;
    z-index: 1;
}

.gsn-categories-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 325px;
    height: 2px;
    background: #ff7a00;
}

.gsn-categories-title p {
    color: #666;
    margin: 0;
}

.gsn-category-box {
    padding: 0 20px;
}

.gsn-category-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gsn-category-box:nth-child(1) h4 {
    color: #198754;
}

.gsn-category-box:nth-child(2) h4 {
    color: #0d6efd;
}

.gsn-category-box:nth-child(3) h4 {
    color: #6f42c1;
}

.gsn-category-links {
    display: flex;
    flex-direction: column;
}

.gsn-category-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 0;

    color: #333;
    text-decoration: none;

    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.gsn-category-links a:hover {
    color: #0d6efd;
}

.gsn-category-links i {
    font-size: 13px;
}

/* =========================
   SIMPLE CATEGORIES
========================= */
.category-ribbon {
    display: inline-block;
    position: relative;
    background: #f28c28;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 28px 10px 18px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.category-ribbon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #c96f18;
    border-left: 10px solid transparent;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;

}
/* =========================
   DESKTOP NAVBAR SEARCH
========================= */

@media (min-width: 992px) {

    .navbar .nav-search {
        position: static !important;
        margin-left: 10px !important;
        margin-right: 20px !important;
        flex-shrink: 0 !important;
    }

}
/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 991.98px) {

    .navbar > .container-fluid {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }

    .navbar .nav-search {
        position: static !important;
        margin-left: 15px !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
        transform: none !important;
        z-index: 10 !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        z-index: 20 !important;
    }

}/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 991.98px) {

    .navbar > .container-fluid {
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .navbar .nav-search {
        position: static !important;
        margin-left: -5px !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
        transform: none !important;
        z-index: 10 !important;
    }

    .navbar .navbar-toggler {
        position: absolute !important;
        right: 15px !important;
        top: 20px !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 20 !important;
    }

}