﻿body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Stylish headings */
}

body {
    font-family: 'Poppins', sans-serif; /* Clean content */
}

/* ============================= */
/* 🔥 DIRECTOR SECTION */
/* ============================= */
.director-section {
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
}

.director-left {
    width: 50%;
}

    .director-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.director-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../images/about-bg-2.jpg') center/cover no-repeat;
}

    .director-right .overlay {
        position: absolute;
        inset: 0;
        background: rgba(25, 47, 89, 0.85);
    }

    .director-right .content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 40px;
    }

/* TEXT */
.content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.tagline {
    color: #4cd37a;
    font-style: italic;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4cd37a;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

    .btn:hover {
        background: #38b965;
    }

/* ============================= */
/* FEATURES */
/* ============================= */
.features {
    background: #f2f2f2;
    padding: 20px 0;
    border-top: 4px solid #2f3f60;
}

    .features .container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 25%;
}

    .feature img {
        width: 40px;
    }

    .feature p {
        font-size: 15px;
        font-weight: 600;
        color: #2f3f60;
    }

@media (max-width: 768px) {

    .director-section {
        flex-direction: column;
    }

    .director-left,
    .director-right {
        width: 100%;
    }

        .director-left img {
            height: 250px;
        }

        .director-right .content {
            padding: 25px;
            text-align: center;
        }

    .content h2 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    /* FEATURES */
    .features .container {
        flex-direction: column;
    }

    .feature {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    /* MENU */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 20px;
    }

        .menu.active {
            display: flex;
        }

    /* MEGA MENU MOBILE FIX */
    .mega-parent {
        position: relative;
    }

    .mega-menu {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        border-top: 2px solid #28a745;
        box-shadow: none;
    }

    .mega-container {
        flex-direction: column;
    }

    .mega-column {
        width: 100%;
    }
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* TOP BAR */
.top-bar {
    background: #1f3a63; /* dark blue */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    font-size: 14px;
}

/* LEFT */
.top-left span {
    margin-right: 20px;
}

/* RIGHT */
.top-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

/* SUPPORT BUTTON */
.btn-support {
    background: #3bb273;
    padding: 6px 14px;
    border-radius: 3px;
    font-weight: 600;
}

/* HOVER */
.top-right a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {

    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .top-left span {
        display: block;
        margin: 3px 0;
    }

    .top-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .top-right a {
            margin: 5px 10px;
        }
}
/* FOOTER MAIN */
.footer {
    background: #0f1115;
    color: #bbb;
    padding-top: 60px;
}

/* CONTAINER */
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* COLUMN */
.footer-col {
    width: 25%;
}

/* LOGO */
.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

/* TEXT */
.footer p {
    font-size: 14px;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}

    /* GREEN LINE */
    .footer-col h3::after {
        content: "";
        width: 50px;
        height: 2px;
        background: #28a745;
        display: block;
        margin-top: 8px;
    }

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin: 8px 0;
    }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

            .footer-col ul li a:hover {
                color: #28a745;
            }

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SOCIAL */
.social-icons i {
    margin-left: 15px;
    color: #28a745;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {

    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        width: 80%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* SECTION */
.about-section {
    position: relative;
    background: url('../images/about-bg-3.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 80, 0.7); /* reduce opacity */
    z-index: 1;
}

/* CONTAINER */
.about-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.about-left {
    width: 40%;
}

    .about-left h4 {
        font-size: 14px;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    .about-left h2 {
        font-size: 36px;
        color: #4cd37a; /* green highlight */
    }

/* RIGHT */
.about-right {
    width: 60%;
}

    .about-right .highlight {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .about-right p {
        line-height: 1.6;
        margin-bottom: 15px;
    }

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #4cd37a;
    padding-bottom: 3px;
}

/* MOBILE */
@media(max-width:768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

        .about-left h2 {
            font-size: 26px;
        }

        .about-right .highlight {
            font-size: 15px;
        }
}
/* SECTION */
.mission-section {
    background: #1f2f4a; /* dark blue */
    padding: 60px 0;
    color: #fff;
}

/* CONTAINER */
.mission-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* BOX */
.mission-box {
    width: 25%;
}

    /* ICON */
    .mission-box i {
        font-size: 32px;
        color: #4cd37a; /* green */
        margin-bottom: 15px;
    }

    /* TITLE */
    .mission-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* TEXT */
    .mission-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* LINK */
    .mission-box a {
        color: #4cd37a;
        text-decoration: none;
        font-size: 14px;
    }

        /* HOVER */
        .mission-box a:hover {
            text-decoration: underline;
        }

/* MOBILE */
@media(max-width:768px) {

    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-box {
        width: 100%;
    }
}
/* SECTION */
.gdps-news-section {
    background: #f5f5f5;
    padding: 60px 0;
}

/* CONTAINER */
.gdps-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* LEFT */
.news-left {
    width: 60%;
    position: relative;
    overflow: hidden;
}

    .news-left h2 {
        margin-bottom: 20px;
    }

/* MAIN NEWS */
.news-main img {
    width: 100%;
    border-radius: 6px;
}

.news-main h4 {
    margin-top: 10px;
}

/* SIDE NEWS */
.news-list {
    margin-top: 20px;
}

.news-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px dashed #dbe4ee;
    transition: 0.3s;
    cursor: pointer;
}

    .news-item img {
        width: 80px;
        height: 60px;
        object-fit: cover;
    }

/* RIGHT GALLERY */
.gallery-right {
    width: 40%;
    background: #1f2f4a;
    padding: 20px;
    color: #fff;
}

    .gallery-right h2 {
        margin-bottom: 20px;
    }

/* MARQUEE */
.marquee {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scrollUp 10s linear infinite;
}

.marquee img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* ANIMATION */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* TWITTER STRIP */
.twitter-strip {
    background: #eaeaea;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
}

/* MOBILE */
@media(max-width:768px) {

    .gdps-container {
        flex-direction: column;
    }

    .news-left,
    .gallery-right {
        width: 100%;
    }
}
/* SECTION */
/* ===================================== */
/* =========================
   ACHIEVERS SECTION
========================= */

.achievers-section {
    padding: 70px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-bottom: 50px;
}

/* =========================
   MARQUEE
========================= */

.achievers-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* RIGHT TO LEFT MOVEMENT */

.achievers-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: marqueeMove 30s linear infinite;
}

/* PAUSE ON HOVER */

.achievers-marquee:hover .achievers-track {
    animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.achiever-card {
    width: 280px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: 0.4s;
}

    .achiever-card:hover {
        transform: translateY(-8px);
    }

/* IMAGE */

.achiever-img {
    height: 300px;
    overflow: hidden;
}

    .achiever-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* CONTENT */

.achiever-content {
    padding: 22px;
    text-align: center;
}

    .achiever-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #0d1b2a;
        font-weight: 700;
    }

    .achiever-content p {
        font-size: 16px;
        color: #555;
        margin-bottom: 12px;
    }

    .achiever-content span {
        display: inline-block;
        background: #ffb400;
        color: #000;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
    }

/* =========================
   ANIMATION
========================= */

@keyframes marqueeMove {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .achiever-card {
        width: 220px;
    }

    .achiever-img {
        height: 240px;
    }

    .achiever-content h3 {
        font-size: 18px;
    }
}



/* SECTION */
.infra-section {
    
    background: #f7f9fc;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 32px;
    color: #0c2e60;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* GRID */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.infra-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    /* IMAGE */
    .infra-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.5s;
    }

/* OVERLAY */
.infra-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 46, 96, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s;
}

    /* TEXT */
    .infra-overlay h3 {
        margin-bottom: 5px;
    }

    .infra-overlay p {
        font-size: 14px;
    }

/* HOVER EFFECT */
.infra-card:hover img {
    transform: scale(1.1);
}

.infra-card:hover .infra-overlay {
    opacity: 1;
}

/* MOBILE */
@media(max-width:768px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.why-section {
    padding: 70px 0;
    background: #f7f9fc;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 32px;
    color: #0c2e60;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

    /* ICON */
    .why-card i {
        font-size: 30px;
        color: #4cd37a;
        margin-bottom: 15px;
    }

    /* TEXT */
    .why-card h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
        color: #555;
    }

    /* HOVER */
    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* MOBILE */
@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-section {
    background: url('../images/bg.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}
/* SECTION */
.video-section {
    padding: 60px 0;
    background: #f7f9fc;
    text-align: center;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.video-card {
    position: relative;
    cursor: pointer;
}

    /* IMAGE */
    .video-card img {
        width: 100%;
        border-radius: 10px;
    }

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
}

/* TITLE */
.video-card h4 {
    margin-top: 10px;
}

/* POPUP */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .video-popup iframe {
        width: 80%;
        height: 450px;
    }

/* CLOSE */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-popup iframe {
        width: 90%;
        height: 250px;
    }
}
/* ===== HEADER GLASS EFFECT ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 90px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
    height: 55px;
    transition: 0.3s;
}

    .logo img:hover {
        transform: scale(1.05);
    }

/* MENU */
.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .menu li {
        position: relative;
        list-style: none;
    }

    /* MAIN LINKS */
    .menu > li > a {
        text-decoration: none;
        font-size: 15px;
        color: #0c2e60;
        padding: 10px 5px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        /* PREMIUM UNDERLINE */
        .menu > li > a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #4cd37a, #00c6ff);
            border-radius: 5px;
            transition: 0.4s ease;
        }

    .menu > li:hover > a::after {
        width: 100%;
    }

/* ARROW ANIMATION */
.arrow {
    font-size: 12px;
    transition: 0.3s;
}

.has-sub:hover .arrow {
    transform: rotate(180deg);
}

/* ===== SUBMENU PREMIUM ===== */
.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.has-sub:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SUBMENU ITEMS */
.submenu li a {
    display: block;
    padding: 14px 18px;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

    /* HOVER EFFECT */
    .submenu li a:hover {
        background: #f8fafc;
        color: #0c2e60;
        border-left: 3px solid #4cd37a; 
    }

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ===== MOBILE MENU PREMIUM ===== */
@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #0c2e60;
        transition: 0.4s ease;
        padding-top: 80px;
    }

        .main-nav.active {
            left: 0;
        }

    .menu {
        flex-direction: column;
        gap: 0;
    }

        .menu li {
            width: 100%;
        }

            .menu li a {
                display: block;
                padding: 15px 20px;
                color: #1f2f4a;
            }

    .submenu {
        display: none;
        background: #133d7a;
        position: static;
        box-shadow: none;
    }

    .has-sub.open .submenu {
        display: block;
    }

    .submenu li a {
        padding-left: 30px;
        color: #e0e0e0 !important;
    }
}
.news-left {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.section-title h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0f172a;
}

/* ========================= */
/* NOTICE BOARD */
/* ========================= */

.news-left {
    width: 60%;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    border: 1px solid #edf0f7;
}

    /* TITLE */

    .news-left .section-title {
        margin-bottom: 25px;
        border-bottom: 2px solid #f1f5f9;
        padding-bottom: 15px;
    }

        .news-left .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #0c2e60;
            margin: 0;
        }

/* LIST */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ITEM */

.news-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px dashed #dbe4ee;
    transition: 0.3s;
}

    .news-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* HOVER */

    .news-item:hover {
        transform: translateX(5px);
        background: #f8fafc;
        border-radius: 12px;
        padding: 10px;
    }

/* IMAGE */

.news-thumb img {
    width: 85px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* TEXT AREA */

.news-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    /* TITLE */

    .news-text h5 {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.6;
        color: #1e293b;
        margin: 0 0 6px;
    }

    /* DATE */

    .news-text span {
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 12px;
    }

/* BUTTON */

.read-more-btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 7px 16px;
    border-radius: 30px;
    background: #0c2e60;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

    /* BUTTON HOVER */

    .read-more-btn:hover {
        background: #4cd37a;
        color: #fff;
    }

/* MOBILE */

@media(max-width:768px) {

    .news-left {
        width: 100%;
        padding: 20px;
    }

        .news-left .section-title h2 {
            font-size: 24px;
        }

    .news-thumb img {
        width: 75px;
        height: 65px;
    }

    .news-text h5 {
        font-size: 14px;
    }
}



/* =========================
   ADMISSION SECTION
========================= */

.admission-section {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
}

/* LEFT IMAGE */

.admission-left {
    width: 50%;
}

    .admission-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* RIGHT CONTENT */

.admission-right {
    width: 50%;
    position: relative;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    display: flex;
    align-items: center;
    padding: 70px;
    overflow: hidden;
}

    .admission-right .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
    }

    .admission-right .content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 650px;
    }

/* BADGE */

.admission-badge {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TITLE */

.admission-right h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* TAGLINE */

.admission-right .tagline {
    font-size: 22px;
    line-height: 1.7;
    color: #ffcf66;
    margin-bottom: 22px;
    font-style: italic;
}

/* PARAGRAPH */

.admission-right p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

/* INFO */

.admission-info {
    margin-top: 30px;
    margin-bottom: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

    .info-box span {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
    }

    .info-box p {
        margin: 0;
        font-size: 16px;
        color: #fff;
    }

/* BUTTON */

.btn {
    display: inline-block;
    padding: 15px 34px;
    background: #ffb400;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
}

    .btn:hover {
        background: #fff;
        transform: translateY(-3px);
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .admission-section {
        flex-direction: column;
    }

    .admission-left,
    .admission-right {
        width: 100%;
    }

        .admission-left img {
            height: 400px;
        }

    .admission-right {
        padding: 50px 30px;
    }

        .admission-right h2 {
            font-size: 38px;
        }

        .admission-right .tagline {
            font-size: 18px;
        }
}

@media(max-width:768px) {

    .admission-left img {
        height: 300px;
    }

    .admission-right {
        padding: 40px 20px;
    }

        .admission-right h2 {
            font-size: 30px;
        }

        .admission-right p {
            font-size: 15px;
        }

    .btn {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   NEWS SECTION
========================= */

.news-right {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* HEADER */

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .news-header h2 {
        font-size: 34px;
        color: #0d1b2a;
        font-weight: 800;
        margin: 0;
    }

.view-all {
    text-decoration: none;
    background: #ffb400;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

    .view-all:hover {
        background: #0d1b2a;
        color: #fff;
    }

/* =========================
   MARQUEE
========================= */

.news-marquee {
    height: 420px;
    overflow: hidden;
    position: relative;
}

/* VERTICAL MOVEMENT */

.news-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: newsScroll 18s linear infinite;
}

.news-marquee:hover .news-track {
    animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.news-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f7f9fc;
    padding: 20px;
    border-radius: 18px;
    transition: 0.4s;
}

    .news-card:hover {
        transform: translateX(6px);
        background: #eef4ff;
    }

/* DATE */

.news-date {
    min-width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .news-date span {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
    }

    .news-date small {
        font-size: 12px;
        letter-spacing: 1px;
    }

/* CONTENT */

.news-content h3 {
    font-size: 20px;
    color: #0d1b2a;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   ANIMATION
========================= */

@keyframes newsScroll {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .news-right {
        padding: 20px;
    }

    .news-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

        .news-header h2 {
            font-size: 28px;
        }

    .news-card {
        padding: 16px;
    }

    .news-content h3 {
        font-size: 17px;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-date {
        min-width: 60px;
        height: 60px;
    }

        .news-date span {
            font-size: 22px;
        }
}
.news-card {
    cursor: pointer;
}
/* =========================
   INFRA SECTION
========================= */

.infra-section {
    padding: 90px 0;
    background: #f5f5f5;
}

/* CONTAINER */

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* =========================
   HEADING
========================= */

.infra-heading {
    text-align: center;
    margin-bottom: 20px;
}

.infra-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #062b57;
    margin-bottom: 15px;
    line-height: 1.2;
}

.infra-heading p {
    font-size: 24px;
    color: #666;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

    .infra-heading p::after {
        content: "";
        width: 100px;
        height: 4px;
        background: #ffb400;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        border-radius: 20px;
    }

/* =========================
   GRID
========================= */

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.infra-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .infra-card:hover {
        transform: translateY(-10px);
    }

/* IMAGE */

.infra-image {
    height: 260px;
    overflow: hidden;
}

    .infra-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.infra-card:hover .infra-image img {
    transform: scale(1.08);
}

/* =========================
   CONTENT
========================= */

.infra-content {
    background: #062b57;
    text-align: center;
    padding: 65px 25px 35px;
    position: relative;
    color: #fff;
}

/* ICON */

.infra-icon {
    width: 85px;
    height: 85px;
    background: #ffb400;
    border-radius: 50%;
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    border: 6px solid #fff;
}

/* TITLE */

.infra-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */

.infra-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* LINE */

.infra-line {
    width: 70px;
    height: 4px;
    background: #ffb400;
    border-radius: 20px;
    display: inline-block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .infra-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .infra-heading h2 {
        font-size: 52px;
    }
}

@media(max-width:768px) {

    .infra-section {
        padding: 60px 0;
    }

    .infra-grid {
        grid-template-columns: 1fr;
    }

    .infra-heading h2 {
        font-size: 36px;
    }

    .infra-heading p {
        font-size: 18px;
    }

    .infra-image {
        height: 220px;
    }
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #062b57;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
}

/* =========================
   GRID
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.gallery-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    display: block;
}

    .gallery-card:hover {
        transform: translateY(-10px);
    }

/* IMAGE */

.gallery-image {
    height: 260px;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

/* CONTENT */

.gallery-content {
    padding: 25px;
}

    .gallery-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #062b57;
        margin-bottom: 12px;
    }

    .gallery-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 20px;
        /* 2 lines */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* BUTTON */

.view-btn {
    display: inline-block;
    color: #ffb400;
    font-weight: 700;
    font-size: 15px;
}

/* =========================
   MORE BUTTON
========================= */

.gallery-more {
    text-align: center;
    margin-top: 50px;
}

.gallery-btn {
    display: inline-block;
    background: #062b57;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.4s;
}

    .gallery-btn:hover {
        background: #ffb400;
        color: #000;
    }

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .gallery-image {
        height: 220px;
    }
}