﻿

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
    background: #f5f7fb;
}

/* =================================================
   TOP BAR
================================================= */

.top-mini-bar {
    background: #001f4d;
    padding: 12px 0;
    color: white;
    font-size: 14px;
}

.top-mini-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .top-mini-left span {
        margin-right: 25px;
        font-weight: 500;
    }

    .top-mini-left i {
        margin-right: 8px;
    }

.top-social {
    display: flex;
    align-items: center;
    justify-content: end;
}

    .top-social span {
        margin-right: 15px;
        font-weight: 600;
    }

    .top-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.35);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        margin-left: 10px;
        transition: .3s;
    }

        .top-social a:hover {
            background: #24b33f;
            border-color: #24b33f;
        }

/* =================================================
   HEADER
================================================= */

.main-header {
    background: white;
    padding: 18px 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

    .logo-section img {
        width: 95px;
        height: 95px;
        object-fit: contain;
    }

.college-details {
    margin-left: 18px;
}

    .college-details h1 {
        font-size: 26px;
        line-height: 1.4;
        font-weight: 700;
        color: #08254d;
        margin-bottom: 10px;
    }

.affiliation {
    color: #24b33f;
    font-size: 18px;
    font-weight: 600;
}

/* =================================================
   CONTACT AREA
================================================= */

.mobile-contact-area {
    padding-left: 25px;
}

.mobile-contact-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,.06);
    border-left: 4px solid #24b33f;
    transition: .3s;
}

    .mobile-contact-card:hover {
        transform: translateY(-3px);
    }

.mobile-contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg,#24b33f,#17962f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 14px;
}

.mobile-contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    font-weight: 500;
}

.mobile-contact-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #08254d;
}

/* OFFICE BOX */

.mobile-office-box {
    background: linear-gradient(135deg,#24b33f,#17962f);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 10px 25px rgba(36,179,63,.25);
}

.office-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 14px;
}

.mobile-office-box h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mobile-office-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

/* =================================================
   MOBILE TOP
================================================= */

.mobile-top {
    display: none;
}

/* =================================================
   NAVBAR
================================================= */

.custom-navbar {
    background: #001f4d;
    border-bottom: 4px solid #24b33f;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.custom-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .custom-nav > li {
        position: relative;
    }

        .custom-nav > li > a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 22px;
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: .3s;
        }

        .custom-nav > li:first-child > a {
            background: #24b33f;
        }

        .custom-nav > li > a:hover {
            background: #24b33f;
        }

/* =================================================
   DROPDOWN
================================================= */

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    min-width: 250px;
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .dropdown-menu a {
        display: block;
        padding: 13px 18px;
        color: #08254d;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #eee;
        transition: .3s;
    }

        .dropdown-menu a:hover {
            background: #24b33f;
            color: white;
        }

.custom-nav li:hover .dropdown-menu {
    display: block;
}

/* =================================================
   HERO SECTION
================================================= */

.hero-section {
    position: relative;
}

    .hero-section img {
        width: 100%;
        height: 650px;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,.92), rgba(255,255,255,.1));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 5;
}

.hero-subtitle {
    color: #24b33f;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: #08254d;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #24b33f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    margin-right: 12px;
    transition: .3s;
}

    .hero-btn:hover {
        background: #001f4d;
        color: white;
    }

.hero-btn-outline {
    background: white;
    color: #24b33f;
    border: 2px solid #24b33f;
}

    .hero-btn-outline:hover {
        background: #24b33f;
        color: white;
    }

/* =================================================
   FEATURE BOX
================================================= */

.feature-box {
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 25px 25px 0 0;
    padding: 35px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.feature-item {
    text-align: center;
    border-right: 1px solid #eee;
}

    .feature-item:last-child {
        border-right: none;
    }

    .feature-item i {
        font-size: 42px;
        color: #24b33f;
        margin-bottom: 15px;
    }

    .feature-item h4 {
        font-size: 20px;
        font-weight: 700;
        color: #08254d;
    }

/* =================================================
   MOBILE RESPONSIVE
================================================= */

@media(max-width:991px) {

    .top-mini-bar {
        text-align: center;
        padding: 10px;
    }

    .top-mini-left {
        justify-content: center;
    }

        .top-mini-left span {
            display: block;
            width: 100%;
            margin-right: 0;
            margin-bottom: 8px;
            font-size: 12px;
            line-height: 1.7;
        }

    .top-social {
        justify-content: center;
        margin-top: 8px;
    }

    /* HEADER */

    .main-header {
        padding: 18px 12px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

        .logo-section img {
            width: 80px;
            height: 80px;
            margin-bottom: 12px;
        }

    .college-details {
        margin-left: 0;
    }

        .college-details h1 {
            font-size: 22px;
            line-height: 1.5;
        }

    .affiliation {
        font-size: 15px;
    }

    /* CONTACT */

    .mobile-contact-area {
        padding-left: 0;
        margin-top: 20px;
    }

    /* MOBILE TOP */

    .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #001f4d;
        color: white;
        padding: 14px 18px;
        position: sticky;
        top: 0;
        z-index: 99999;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
    }

        .mobile-logo img {
            width: 42px;
            height: 42px;
            margin-right: 10px;
        }

        .mobile-logo span {
            font-size: 18px;
            font-weight: 700;
        }

    .mobile-toggle {
        font-size: 24px;
        cursor: pointer;
    }

    /* NAVBAR */

    .custom-navbar {
        display: none;
        top: 70px;
        border-bottom: none;
    }

        .custom-navbar.active {
            display: block;
        }

    .custom-nav {
        flex-direction: column;
        background: #001f4d;
    }

        .custom-nav li {
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .custom-nav > li > a {
            width: 100%;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 15px;
        }

    .dropdown-menu {
        position: static;
        display: block;
        width: 100%;
        min-width: 100%;
        background: #01295f;
        box-shadow: none;
    }

        .dropdown-menu a {
            color: white;
            padding: 14px 30px;
            font-size: 14px;
        }

    /* HERO */

    .hero-section img {
        height: 480px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    /* FEATURE */

    .feature-box {
        margin-top: 0;
        border-radius: 0;
        padding: 20px 15px;
    }

    .feature-item {
        border: none;
        background: white;
        border-radius: 15px;
        margin-bottom: 18px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
    }

        .feature-item i {
            font-size: 32px;
        }

        .feature-item h4 {
            font-size: 18px;
        }
}


/* =================================================
   ABOUT SECTION
================================================= */

.about-main-section {
    padding: 80px 0;
    background: #f5f7fb;
}

/* NOTICE */

.notice-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.notice-title {
    font-size: 28px;
    font-weight: 700;
    color: #08254d;
}

.view-all-btn {
    background: #24b33f;
    color: white;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(36,179,63,.2);
}

    .view-all-btn i {
        margin-right: 8px;
    }

    .view-all-btn:hover {
        background: #001f4d;
        color: white;
    }

/* INTRO CARD */

.intro-card {
    position: relative;
    background: linear-gradient(135deg,#001f4d,#00316e);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 10px 35px rgba(0,0,0,.1);
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: url('images/pattern.png');
    opacity: .08;
}

.intro-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    text-align: center;
    color: white;
}

    .intro-content h2 {
        font-size: 40px;
        line-height: 1.5;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .intro-content p {
        font-size: 18px;
        line-height: 2;
        max-width: 1000px;
        margin: auto;
        color: #e8eef7;
    }

.intro-footer {
    margin-top: 30px;
    display: inline-block;
    background: #24b33f;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
}

/* ABOUT CARD */

.about-card-section {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .about-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: .4s;
    }

    .about-image-box:hover img {
        transform: scale(1.05);
    }

/* EXPERIENCE */

.experience-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #24b33f;
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(36,179,63,.3);
}

    .experience-badge h3 {
        font-size: 36px;
        margin: 0;
        font-weight: 800;
    }

    .experience-badge span {
        font-size: 14px;
    }

/* CONTENT */

.about-content-box {
    padding-left: 30px;
}

.section-tag {
    display: inline-block;
    background: #eaf9ee;
    color: #24b33f;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content-box h2 {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 800;
    color: #08254d;
    margin-bottom: 25px;
}

.about-content-box p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 18px;
}

/* VISION */

.vision-mission-grid {
    margin-top: 30px;
}

.vision-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 16px;
    transition: .3s;
}

    .vision-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .vision-box i {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 14px;
        background: #24b33f;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-right: 18px;
    }

    .vision-box h4 {
        margin: 0 0 8px;
        font-size: 20px;
        color: #08254d;
        font-weight: 700;
    }

    .vision-box p {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
    }

/* BUTTON */

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background: #24b33f;
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

    .read-more-btn:hover {
        background: #001f4d;
        color: white;
    }

/* =================================================
   MOBILE
================================================= */

@media(max-width:991px) {

    .about-main-section {
        padding: 50px 0;
    }

    .notice-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .notice-title {
        font-size: 24px;
    }

    .view-all-btn {
        width: 100%;
        text-align: center;
    }

    .intro-content {
        padding: 35px 20px;
    }

        .intro-content h2 {
            font-size: 24px;
            line-height: 1.7;
        }

        .intro-content p {
            font-size: 14px;
            line-height: 1.9;
        }

    .intro-footer {
        font-size: 14px;
        padding: 12px 18px;
    }

    .about-card-section {
        padding: 25px;
    }

    .about-content-box {
        padding-left: 0;
        padding-top: 25px;
    }

        .about-content-box h2 {
            font-size: 28px;
        }

        .about-content-box p {
            font-size: 15px;
        }

    .experience-badge {
        padding: 15px;
    }

        .experience-badge h3 {
            font-size: 24px;
        }
}

/* =========================================
   PREMIUM FOOTER
========================================= */
.footer-main {
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient( 135deg, #00153a 0%, #001f4d 45%, #002b66 100% );
    color: white;
    position: relative;
    overflow: hidden;
}

    /* TOP GLOW */

    .footer-main:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #24b33f, #43d85d, #24b33f );
        z-index: 2;
    }

    /* LIGHT EFFECT */

    .footer-main:after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: rgba(36,179,63,.06);
        border-radius: 50%;
        top: -220px;
        right: -180px;
        filter: blur(40px);
    }

/* =========================================
   TOP
========================================= */

.footer-top {
    padding: 50px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 2;
}
.footer-top,
.footer-bottom {
    width: 100%;
}
/* =========================================
   ABOUT
========================================= */

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    width: 95px;
    margin-bottom: 25px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,.25));
}

.footer-about h3 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 25px;
    color: white;
}

.footer-about p {
    color: #d7e1f3;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 32px;
}

/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: .4s;
    }

        .footer-social a:before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient( 135deg, rgba(255,255,255,.25), transparent );
            opacity: 0;
            transition: .4s;
        }

        .footer-social a:hover {
            background: #24b33f;
            transform: translateY(-6px) scale(1.08);
            box-shadow: 0 10px 25px rgba(36,179,63,.4);
        }

            .footer-social a:hover:before {
                opacity: 1;
            }

/* =========================================
   LINKS
========================================= */

.footer-links,
.footer-contact {
    position: relative;
    z-index: 2;
}

    .footer-links h4,
    .footer-contact h4 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 35px;
        position: relative;
        color: white;
    }

        .footer-links h4:after,
        .footer-contact h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 60px;
            height: 4px;
            border-radius: 10px;
            background: #24b33f;
        }

    /* LIST */

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-links ul li {
            margin-bottom: 18px;
        }

            /* LINK */

            .footer-links ul li a {
                color: #d7e1f3;
                text-decoration: none;
                font-size: 16px;
                transition: .35s;
                position: relative;
                display: inline-block;
            }

                .footer-links ul li a:before {
                    content: '›';
                    opacity: 0;
                    margin-right: 0;
                    transition: .3s;
                }

                .footer-links ul li a:hover {
                    color: #24b33f;
                    transform: translateX(6px);
                }

                    .footer-links ul li a:hover:before {
                        opacity: 1;
                        margin-right: 8px;
                    }

/* =========================================
   CONTACT
========================================= */

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
    transition: .3s;
}

    .contact-item:hover {
        transform: translateX(6px);
    }

    .contact-item i {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #24b33f;
        font-size: 18px;
        transition: .3s;
    }

    .contact-item:hover i {
        background: #24b33f;
        color: white;
    }

    .contact-item span {
        color: #d7e1f3;
        line-height: 2;
        font-size: 15px;
    }

/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    padding: 24px 0;
    background: rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

    .footer-bottom p {
        margin: 0;
        color: #d7e1f3;
        font-size: 15px;
        letter-spacing: .3px;
    }

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .footer-top {
        padding: 60px 0 35px;
    }

    .footer-about {
        text-align: center;
        padding-right: 0;
    }

        .footer-about h3 {
            font-size: 34px;
        }

    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-contact {
        margin-top: 20px;
    }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 24px;
        }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-lg-end {
            text-align: center !important;
            margin-top: 10px;
        }

    .footer-main:after {
        width: 280px;
        height: 280px;
        top: -80px;
        right: -100px;
    }
}

/* =====================================
   FOOTER FULL WIDTH FIX
===================================== */

.footer-main {
    width: 100vw !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 !important;
    overflow: hidden;
}

.footer-top {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.footer-bottom {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* REMOVE GAP */

body {
    overflow-x: hidden;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient( 135deg, #001f4d, #00367e );
        color: white;
        font-size: 18px;
        text-decoration: none;
        transition: .4s;
    }

        .footer-social a:hover {
            transform: translateY(-5px);
            background: linear-gradient( 135deg, #24b33f, #16962d );
            box-shadow: 0 12px 25px rgba(36,179,63,.25);
        }

/* =====================================
   FINAL MOBILE MENU SYSTEM
===================================== */

@media(max-width:991px) {

    /* BODY */

    body {
        padding-top: 72px;
        overflow-x: hidden;
    }


    /* HIDE DESKTOP HEADER */

    .top-mini-bar,
    .main-header {
        display: none;
    }


    /* =====================================
   MOBILE TOP BAR
===================================== */

    .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #001f4d;
        color: white;
        padding: 14px 18px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 72px;
        z-index: 999999;
        box-shadow: 0 5px 20px rgba(0,0,0,.15);
    }


    /* LOGO */

    .mobile-logo {
        display: flex;
        align-items: center;
    }

        .mobile-logo img {
            width: 42px;
            height: 42px;
            object-fit: contain;
            margin-right: 10px;
        }

        .mobile-logo span {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: .5px;
        }


    /* TOGGLE */

    .mobile-toggle {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
        transition: .3s;
    }

        .mobile-toggle:hover {
            background: #24b33f;
        }


    /* =====================================
   MOBILE SIDEBAR MENU
===================================== */

    .custom-navbar {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 85%;
        height: calc(100vh - 72px);
        background: #001f4d;
        overflow-y: auto;
        overflow-x: hidden;
        transition: .4s;
        z-index: 99999;
        border-right: 1px solid rgba(255,255,255,.08);
        box-shadow: 10px 0 30px rgba(0,0,0,.25);
        -webkit-overflow-scrolling: touch;
    }


        /* ACTIVE */

        .custom-navbar.active {
            left: 0;
        }


    /* STOP BODY SCROLL */

    body.menu-open {
        overflow: hidden;
    }


    /* =====================================
   MENU LIST
===================================== */

    .custom-nav {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }


        /* MENU ITEM */

        .custom-nav li {
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }


            /* MENU LINK */

            .custom-nav li a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 18px 22px;
                color: white;
                text-decoration: none;
                font-size: 15px;
                font-weight: 600;
                transition: .3s;
            }


        /* FIRST MENU */

        .custom-nav > li:first-child > a {
            background: #24b33f;
        }


        /* HOVER */

        .custom-nav li a:hover {
            background: rgba(255,255,255,.08);
            padding-left: 28px;
        }


        /* ICON */

        .custom-nav li a i {
            font-size: 15px;
        }


        /* =====================================
   DROPDOWN
===================================== */

        .custom-nav .dropdown-menu {
            position: static;
            display: none;
            width: 100%;
            background: rgba(255,255,255,.04);
            border: none;
            box-shadow: none;
            padding: 0;
            margin: 0;
        }


        /* ACTIVE DROPDOWN */

        .custom-nav li.active .dropdown-menu {
            display: block;
        }


        /* DROPDOWN LINK */

        .custom-nav .dropdown-menu a {
            padding: 15px 40px;
            font-size: 14px;
            font-weight: 500;
            color: #dce7ff;
            border-bottom: 1px solid rgba(255,255,255,.05);
        }


            /* DROPDOWN HOVER */

            .custom-nav .dropdown-menu a:hover {
                background: rgba(255,255,255,.08);
                color: white;
            }


    /* =====================================
   HERO
===================================== */

    .hero-section img {
        height: 480px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }


    /* =====================================
   FEATURE BOX
===================================== */

    .feature-box {
        margin-top: 0;
        border-radius: 0;
        padding: 20px 15px;
    }

    .feature-item {
        border: none;
        background: white;
        border-radius: 18px;
        padding: 22px;
        margin-bottom: 18px;
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
    }


    /* =====================================
   FOOTER
===================================== */

    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-about {
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        margin-top: 25px;
    }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-lg-end {
            text-align: center !important;
            margin-top: 10px;
        }
}