/* ===================================================== */
/* ================= ROOT COLORS ======================= */
/* ===================================================== */

:root{

    --primary-green: #2fa84f;
    --light-green: #4ade80;
    --dark-green: #166534;
    --soft-green: #ecfdf3;

    --text-dark: #1f2937;
    --text-light: #6b7280;

    --white: #ffffff;

}

/* ===================================================== */
/* ================= DARK MODE ========================= */
/* ===================================================== */

body.dark-mode{

    --primary-green: #4ade80;
    --light-green: #86efac;
    --dark-green: #22c55e;
    --soft-green: #14532d;

    background: #111827;
    color: #f9fafb;

}


/* =====================================================
   COLLEGE MODERN HERO
===================================================== */


.college-hero{

    position:relative;

    min-height:720px;

    overflow:hidden;

    background:#ffffff;

    padding:10px 0 160px;

}



/* dotted background */

.hero-bg-pattern{

    position:absolute;

    left:0;

    top:0;

    width:250px;

    height:250px;

    opacity:.25;

    background-image:
    radial-gradient(#b7d8c1 1px,transparent 1px);

    background-size:10px 10px;

}




/* LEFT SIDE */


.hero-content-area{

    padding-left:70px;

    position:relative;

    z-index:3;

}



.hero-small-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#e8f8ed;

    color:#166534;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-bottom:25px;

}



.hero-small-badge i{

    color:#2fa84f;

}




.hero-content-area h1{

    font-size:54px;

    line-height:1.05;

    font-weight:900;

    color:#102a2f;

    letter-spacing:-1.5px;

}



.hero-content-area h1 span{

    color:#2fa84f;

}




.hero-content-area p{

    margin-top:20px;

    max-width:420px;

    color:#64748b;

    line-height:1.8;

    font-size:15px;

}




.hero-action-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

}




.hero-btn{

    display:flex;

    align-items:center;

    gap:12px;

    padding:13px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    font-size:12px;

    transition:.3s;

}



.hero-btn.green{

    background:#18a94b;

    color:white;

}



.hero-btn.green:hover{

    background:#166534;

    color:white;

}



.hero-btn.outline{

    border:1px solid #18a94b;

    color:#166534;

}



.hero-btn.outline:hover{

    background:#18a94b;

    color:white;

}





/* IMAGE SIDE */


.hero-image-area{

    position:relative;

}



.image-wrapper{

    height:550px;

    position:relative;

    overflow:hidden;

}



.image-wrapper img{

    width:100%;

    height:100%;

    object-fit:cover;

}




/* ==========================
   HERO GREEN CURVED OVERLAY
========================== */


.green-curve{

    position:absolute;

    z-index:2;

    left:-180px;

    top:-90px;

    width:270px;

    height:720px;


    background:
    linear-gradient(
        90deg,
        #20b957,
        #087f39
    );


    border-radius:
    0 70% 70% 0;


    opacity:.9;

}




.green-curve:after{

    content:"";

    position:absolute;

    left:75px;

    top:0;

    width:130px;

    height:100%;


    background:rgba(255,255,255,.25);


    border-radius:
    0 70% 70% 0;

}




/* ==========================
   FEATURES CARD
========================== */


.hero-features-box{


    position:absolute;


    right:5%;

    bottom:25px;


    width:65%;


    min-height:140px;


    background:

    linear-gradient(
    135deg,
    #064b26,
    #087536
    );


    border-radius:32px;


    padding:32px 40px;


    display:flex;


    align-items:center;


    justify-content:space-between;


    gap:35px;


    z-index:10;


    box-shadow:

    0 25px 50px rgba(0,0,0,.22);


}





.feature-item{


    flex:1;


    display:flex;

    align-items:center;


    gap:18px;


    background:transparent;


    color:white;


}





.feature-circle{


    width:58px;

    height:58px;


    min-width:58px;


    border-radius:50%;


    background:#19b957;


    display:flex;


    align-items:center;


    justify-content:center;


    color:white;


    font-size:22px;


    box-shadow:

    inset 0 0 15px rgba(255,255,255,.2);

}




.feature-item h5{


    margin:0 0 8px;


    font-size:9px;


    color:white;


    font-weight:800;


}




.feature-item p{


    margin:0;


    font-size:9px;


    color:#d7eee2;


    line-height:1.6;


    max-width:280px;

}




/* ==========================
   BOTTOM GREEN WAVE
========================== */


/* ===========================
   HERO
=========================== */

.college-hero{
    position: relative;
    overflow: hidden;
}

/* ===========================
   Bottom Green Curve
=========================== */

.hero-bottom-wave{
    position: absolute;
    left: 0;
    bottom:0;
    width: 100%;
    height: 100px;       /* thickness of green strip */
    line-height: 10;
    z-index: 2;
}

.hero-bottom-wave svg{
    display: block;
    width: 100%;
    height: 100%;
}


/* RESPONSIVE */


@media(max-width:992px){


.college-hero{

    padding-bottom:250px;

}



.hero-content-area{

    padding:40px;

    text-align:center;

}



.hero-content-area h1{

    font-size:42px;

}



.hero-action-buttons{

    justify-content:center;

}



.image-wrapper{

    height:400px;

}



.hero-features-box{

    width:90%;

    right:5%;

    flex-direction:column;

}



}



@media(max-width:576px){


.hero-content-area h1{

    font-size:34px;

}



.hero-action-buttons{

    flex-direction:column;

}



.hero-btn{

    justify-content:center;

}



}
/* ===================================================== */
/* ================= GLOBAL FLOAT BTN ================== */
/* ===================================================== */

.floating-apply-now{

    position: fixed;

    right: 35px;

    bottom: 35px;

    width: 95px;

    height: 125px;

    background: var(--primary-green);

    color: var(--white);

    text-decoration: none;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    font-weight: 700;

    z-index: 9999;

    clip-path: polygon(
        0 0,
        100% 0,
        100% 78%,
        50% 100%,
        0 78%
    );

    transition: all 0.4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.18);

}

.apply-arrow{

    margin-top: 8px;

    font-size: 24px;

    transition: 0.4s;

}

.floating-apply-now:hover{

    transform: translateY(-8px);

    color: var(--white);

}

.floating-apply-now:hover .apply-arrow{

    transform: translate(5px,-5px);

}

/* ===================================================== */
/* ================= PROGRAMMES SECTION ================ */
/* ===================================================== */

.programmes-section{

    padding: 100px 0;

    background: var(--soft-green);

}

.programmes-header h2{

    font-size: 40px;

    font-weight: bold;

    color: var(--text-dark);

    margin-bottom: 15px;

}

.programmes-header p{

    font-size: 15px;

    color: var(--text-light);

    margin-bottom: 60px;

}

/* ===================================================== */
/* ================= TABS ============================== */
/* ===================================================== */

.programme-tabs{

    display: flex;

    justify-content: center;

    gap: 50px;

    margin-bottom: 60px;

    flex-wrap: wrap;

}

.programme-tab{

    border: none;

    background: transparent;

    font-size: 18px;

    font-weight: bold;

    color: var(--primary-green);

    padding-bottom: 14px;

    border-bottom: 3px solid transparent;

    cursor: pointer;

    transition: 0.4s;

}

.programme-tab.active-tab{

    border-color: var(--dark-green);

    color: var(--dark-green);

}

/* ===================================================== */
/* ================= CONTENT =========================== */
/* ===================================================== */

.programme-content{

    display: none;

}

.active-programme{

    display: block;

}

/* ===================================================== */
/* ================= PROGRAMME IMAGE =================== */
/* ===================================================== */

.programme-image-box{

    height: 100%;

    min-height: 720px;

    overflow: hidden;

    border-radius: 22px;

}

.programme-image-box img{

    width: 100%;

    height: 100%;

    object-fit: cover;

}
.see-all-wrap{
    display: flex;
    justify-content: flex-end;
}

.see-all-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    background: #2ec708;
    color: #fff;

    border-radius: 30px;

    font-weight: bolder;
    font-size: 30px;

    text-decoration: none;

    transition: 0.3s ease;
}

.see-all-btn:hover{
    background: #2ec708;
    transform: translateY(-2px);
    color: #fff;
}
/* ===================================================== */
/* ================= SCHOOL TITLE ====================== */
/* ===================================================== */

.school-title{

    font-size: 20px;

    font-weight: bold;

    color: var(--dark-green);

    margin-bottom: 25px;

}

/* ===================================================== */
/* ================= PROGRAMME GRID ==================== */
/* ===================================================== */

.programme-grid{

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));

    gap: 22px;

}

/* ===================================================== */
/* ================= PROGRAMME CARD ==================== */
/* ===================================================== */

.programme-card{

    background: var(--white);

    border: 1.5px solid rgba(31,122,61,0.25);

    border-radius: 22px;

    padding: 25px 20px;

    min-height: 120px;

    display: flex;

    align-items: center;

    gap: 18px;

    position: relative;

    overflow: hidden;

    transition: all 0.4s ease;

}

body.dark-mode .programme-card{

    background: #1e293b;

}

.programme-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.08);

}

/* ===================================================== */
/* ================= LOGO BG =========================== */
/* ===================================================== */

.programme-card::before{

    content: "";

    position: absolute;

    left: 10px;

    top: 50%;

    transform: translateY(-50%);

    width: 80px;

    height: 80px;

    background: url('../../images/logo.png') no-repeat center;

    background-size: contain;

    opacity: 0.2;

    z-index: 1;

}

/* ===================================================== */
/* ================= PROGRAMME ICON ==================== */
/* ===================================================== */

.programme-icon{

    width: 60px;

    height: 60px;

    min-width: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;

}

.programme-icon i{

    font-size: 38px;

    color: var(--primary-green);

}

/* ===================================================== */
/* ================= PROGRAMME TITLE =================== */
/* ===================================================== */

.programme-card h5{

    font-size: 20px;

    line-height: 1.4;

    color: var(--text-dark);

    font-weight: bolder;

    margin: 0;

    position: relative;

    z-index: 2;

    flex: 1;

    word-break: break-word;

}

body.dark-mode .programme-card h5{

    color: #f9fafb;

}

.programme-link{

    text-decoration: none;

    display: block;

    color: inherit;

}

/* ===================================================== */
/* ================= NEWS SECTION ====================== */
/* ===================================================== */

.news-section{

    padding: 100px 0;

    background: #f8faf8;

}

body.dark-mode .news-section{

    background: #111827;

}

.news-header{

    margin-bottom: 60px;

}

.news-header h2{

    font-size: 40px;

    font-weight: bold;

    color: var(--text-dark);

    margin-bottom: 15px;

}

.news-header p{

    font-size: 15px;

    color: var(--text-light);

    max-width: 760px;

    margin: auto;

    line-height: 1.8;

}

/* ===================================================== */
/* ================= NEWS CARD ========================= */
/* ===================================================== */

.news-card{

    background: var(--white);

    border: 1px solid #ddd;

    border-radius: 22px;

    overflow: hidden;

    height: 100%;

    transition: all 0.4s ease;

}

body.dark-mode .news-card{

    background: #1e293b;

    border-color: #334155;

}

.news-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

}

.news-image{

    height: 300px;

    overflow: hidden;

}

.news-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}

.news-card:hover .news-image img{

    transform: scale(1.06);

}

.news-content{

    padding: 28px;

}

.news-content h3{

    font-size: 20px;

    line-height: 1.35;

    font-weight: bold;

    color: var(--text-dark);

    margin-bottom: 25px;

}

body.dark-mode .news-content h3{

    color: #f9fafb;

}

.news-meta{

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-bottom: 25px;

}

.news-source{

    font-size: 12px;

    font-weight: bold;

    color: var(--dark-green);

    text-transform: uppercase;

}

.news-date{

    font-size: 13px;

    color: var(--text-light);

}

.news-readmore{

    font-size: 15px;

    font-weight: bold;

    color: var(--primary-green);

    text-decoration: none;

    transition: 0.3s;

}

.news-readmore:hover{

    color: var(--dark-green);

}

/* ===================================================== */
/* ================= FAQ SECTION ======================= */
/* ===================================================== */

.faq-section{

    padding: 100px 0;

    background: #f5f5f5;

}

body.dark-mode .faq-section{

    background: #0f172a;

}

.faq-header{

    margin-bottom: 60px;

}

.faq-header h2{

    font-size: 40px;

    font-weight: bolder;

    color: var(--text-dark);

    margin: 0;

}

.faq-wrapper{

    border-radius: 12px;

    overflow: hidden;

}

.faq-item{

    border-bottom: 1px solid #d8d8d8;

    padding: 0 25px;

}

body.dark-mode .faq-item{

    border-color: #334155;

}

.faq-question{

    width: 100%;

    background: transparent;

    border: none;

    outline: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 35px 0;

    cursor: pointer;

    text-align: left;

}

.faq-question span{

    font-size: 18px;

    font-weight: bold;

    color: var(--text-dark);

    line-height: 1.5;

}

body.dark-mode .faq-question span{

    color: #f9fafb;

}

.faq-icon{

    font-size: 50px;

    font-weight: 300;

    color: var(--primary-green);

    transition: 0.4s;

    line-height: 1;

}

.faq-answer{

    max-height: 0;

    overflow: hidden;

    transition: all 0.5s ease;

}

.faq-answer p{

    font-size: 18px;

    line-height: 1.8;

    color: var(--text-light);

    padding-bottom: 30px;

    margin: 0;

}

.faq-item.active-faq .faq-answer{

    max-height: 300px;

}

.faq-item.active-faq .faq-icon{

    transform: rotate(45deg);

}

/* ===================================================== */
/* ================= RESPONSIVE ======================== */
/* ===================================================== */

@media(max-width:992px){

    .programmes-header h2,
    .news-header h2{

        font-size: 42px;

    }

    .faq-header h2{

        font-size: 52px;

    }

    .programme-image-box{

        min-height: 420px;

    }

    .news-content h3{

        font-size: 26px;

    }

}

@media(max-width:576px){


    .programmes-header h2,
    .news-header h2{

        font-size: 34px;

    }

    .faq-header h2{

        font-size: 42px;

    }

    .programme-tab{

        font-size: 16px;

    }

    .programme-card{

        padding: 20px;

    }

    .programme-card h5{

        font-size: 22px;

    }

    .programme-icon{

        width: 70px;

        height: 70px;

        min-width: 70px;

    }

    .programme-icon i{

        font-size: 34px;

    }

    .news-content{

        padding: 22px;

    }

    .news-content h3{

        font-size: 22px;

    }

    .news-image{

        height: 240px;

    }

    .faq-question{

        padding: 28px 0;

    }

    .faq-question span{

        font-size: 18px;

        padding-right: 20px;

    }

    .faq-icon{

        font-size: 38px;

    }

    .faq-answer p{

        font-size: 16px;

    }

}


/* ============================================================ */
/* ======================= ABOUT MODERN ======================== */
/* ============================================================ */

.about-modern-section {
    padding: 80px 0;
    background: var(--soft-green);
    position: relative;
}

.about-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--primary-green));
}

.about-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* -------- Text Content -------- */
.about-text-content {
    padding: 20px 0;
}

.about-badge {
    display: inline-block;
    background: rgba(47, 168, 79, 0.12);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-badge i {
    margin-right: 8px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

body.dark-mode .about-title {
    color: #f9fafb;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 4px;
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
}

body.dark-mode .about-description {
    color: #d1d5db;
}

/* -------- Stats -------- */
.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.2;
}

body.dark-mode .stat-number {
    color: var(--light-green);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

body.dark-mode .stat-label {
    color: #9ca3af;
}

/* -------- CTA Button -------- */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 24px rgba(47, 168, 79, 0.25);
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(47, 168, 79, 0.35);
    color: var(--white);
    background: var(--dark-green);
}

.about-cta-btn i {
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(4px);
}

/* -------- Image -------- */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.04);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-image-overlay i {
    margin-right: 10px;
    color: var(--light-green);
}

/* ============================================================ */
/* ======================= RESPONSIVE ========================== */
/* ============================================================ */

@media (max-width: 992px) {
    .about-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 320px;
    }

    .about-title {
        font-size: 34px;
    }

    .about-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .about-modern-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-image {
        height: 240px;
    }

    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .about-image-overlay {
        font-size: 14px;
        padding: 20px 16px;
    }
}