﻿

@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;
        }
}

/* =========================================
   FOOTER
========================================= */

.footer-main {
    background: #001b44;
    color: white;
    margin-top: 80px;
}

/* TOP */

.footer-top {
    padding: 70px 0 45px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* LOGO */

.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

/* ABOUT */

.footer-about h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-about p {
    font-size: 15px;
    line-height: 2;
    color: #d6ddeb;
    margin-bottom: 25px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #24b33f;
            transform: translateY(-4px);
        }

/* LINKS */

.footer-links h4,
.footer-contact h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
}

    .footer-links h4:after,
    .footer-contact h4:after {
        content: '';
        width: 55px;
        height: 4px;
        background: #24b33f;
        position: absolute;
        left: 0;
        bottom: -10px;
        border-radius: 20px;
    }

/* UL */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 14px;
    }

        /* LINK */

        .footer-links ul li a {
            color: #d6ddeb;
            text-decoration: none;
            transition: .3s;
            font-size: 15px;
        }

            .footer-links ul li a:hover {
                color: #24b33f;
                padding-left: 5px;
            }

/* CONTACT */

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .contact-item i {
        color: #24b33f;
        font-size: 18px;
        margin-top: 4px;
    }

    .contact-item span {
        color: #d6ddeb;
        line-height: 1.8;
        font-size: 15px;
    }

/* BOTTOM */

.footer-bottom {
    padding: 22px 0;
    background: #001536;
}

    .footer-bottom p {
        margin: 0;
        color: #d6ddeb;
        font-size: 14px;
    }

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .footer-top {
        padding: 50px 0 25px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-lg-end {
            text-align: center !important;
            margin-top: 8px;
        }

    .footer-about h3 {
        font-size: 28px;
    }
}

/* =========================================
   PREMIUM FOOTER EFFECTS
========================================= */

/* GLOW TOP BORDER */

.footer-main {
    position: relative;
    overflow: hidden;
}

    .footer-main:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #24b33f, #43d85d, #24b33f );
    }

    /* BACKGROUND LIGHT */

    .footer-main:after {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(36,179,63,.06);
        border-radius: 50%;
        top: -180px;
        right: -120px;
        filter: blur(20px);
    }

/* SECTION SPACING */

.footer-about,
.footer-links,
.footer-contact {
    position: relative;
    z-index: 2;
}

    /* TITLE ANIMATION */

    .footer-links h4,
    .footer-contact h4,
    .footer-about h3 {
        transition: .3s;
    }

    .footer-links:hover h4,
    .footer-contact:hover h4,
    .footer-about:hover h3 {
        transform: translateX(4px);
    }

/* SOCIAL PREMIUM */

.footer-social a {
    position: relative;
    overflow: hidden;
}

    .footer-social a:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,255,255,.15), transparent );
        opacity: 0;
        transition: .3s;
    }

    .footer-social a:hover:before {
        opacity: 1;
    }

/* CONTACT HOVER */

.contact-item {
    transition: .3s;
}

    .contact-item:hover {
        transform: translateX(5px);
    }

/* LINK UNDERLINE */

.footer-links ul li a {
    position: relative;
}

    .footer-links ul li a:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: #24b33f;
        transition: .3s;
    }

    .footer-links ul li a:hover:after {
        width: 100%;
    }

/* BOTTOM FOOTER GLASS */

.footer-bottom {
    backdrop-filter: blur(8px);
}

/* MOBILE */

@media(max-width:991px) {

    .footer-main:after {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }
}
