<style>
*{box-sizing:border-box;margin:0;padding:0}
:root {
  --bodyFont: "Poppins", sans-serif;
  --headingFont: "Roboto", sans-serif;
  --lightYellow: #fec10e;
  --deepGreen: #015c39;
  --lightGreen: #bcf6e0;
  --black: #000;
  --white: #fff;
  --grey: #4e4e4e;
	--border: #E5E7EB;
  --lightGrey: #f6f6f6;
  --green: #00A063;
  --headingcolor: #000B27;
  --navGradient: linear-gradient(
    90deg,
    var(--deepGreen) 0%,
    var(--green) 50%,
    var(--lightYellow) 100%
  );
  --transition: all 0.5s ease-in-out;
}

body{font-family:var(--bodyFont);
    background:var(--lightGrey);
    color:var(--black);
    font-size:15px;}
a{text-decoration:none;color:inherit}
img{display:block;width:100%}

/* ── TOP UTILITY BAR ── */
.top-bar{background:var(--deepGreen);color:rgba(255,255,255,0.65);font-size:12px;padding:7px 5%}
.top-bar-inner{display:flex;justify-content:space-between;align-items:center;max-width:1280px;margin:0 auto}
.top-bar a{color:rgba(255,255,255,0.65);margin-left:20px;transition:color 0.2s}
.top-bar a:hover{color:white}

/* ── MAIN HEADER ── */
/* ==========================
   HEADER
========================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 2px 24px rgba(0,0,0,.08);
}

.header-inner{
    max-width:1280px;
    margin:auto;
    padding:0 3%;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area img{
    max-height:60px;
    width:auto;
	width:285px;
}

/* ==========================
   MOBILE TOGGLE
========================== */

.mobile-toggle{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    color:var(--deepGreen);
    cursor:pointer;
}

/* ==========================
   MAIN NAVIGATION
========================== */

.main-nav{
    display:flex;
    align-items:center;
    gap:0;
    position:relative;
}

.nav-item{
    position:relative;
}

.nav-link{
    display:flex;
    align-items:center;
    gap:5px;
    padding:28px 16px;
    color:var(--deepGreen) !important;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
    white-space:nowrap;
}

.nav-link:hover,
.nav-link.active{
    color:var(--lightYellow) !important;
}

.nav-link svg{
    width:12px;
    height:12px;
    opacity:.7;
}

/* ==========================
   APPLY BUTTON
========================== */

.apply-btn{
    background:var(--lightYellow);
    color:#fff;
    padding:11px 22px;
    border:none;
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    margin-left:15px;
    transition:.3s;
}

.apply-btn:hover{
    background:#e0ab00;
}

/* ==========================
   MEGA MENU
========================== */

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    padding:25px;
    border-radius:0 0 12px 12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-top:3px solid var(--lightYellow);
    display:flex;
    gap:25px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    margin-top:15px;
    transition:all .3s ease;
    z-index:99999;
}

.nav-item:hover .mega-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    margin-top:0;
}
.mega-col{
    flex:1;
}

.mega-col-title{
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--grey);
    margin-bottom:12px;
    padding-bottom:8px;
    border-bottom:1px solid #e5e5e5;
}

.mega-link{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.mega-link:hover{
    background:#f8f8f8;
}

.mega-link-icon{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    flex-shrink:0;
}

.mega-link-text{
    font-size:14px;
    font-weight:600;
    color:#222;
}

.mega-link-sub{
    font-size:12px;
    color:#777;
    margin-top:2px;
}

.campus-chips{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.campus-chip{
    font-size:11px;
    padding:4px 10px;
    border-radius:30px;
    background:#f5f5f5;
    border:1px solid #e5e5e5;
}

.campus-chip:hover{
    background:var(--deepGreen);
    color:#fff;
    border-color:var(--deepGreen);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1024px){

    .nav-link{
        padding:28px 10px;
        font-size:13px;
    }

    .mega-menu{
        min-width:550px;
    }

    .apply-btn{
        padding:10px 15px;
        font-size:12px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .header-inner{
        height:75px;
        position:relative;
    }

    .mobile-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        align-items:stretch;
        box-shadow:0 10px 30px rgba(0,0,0,.12);
        z-index:999;
    }

    .main-nav.active{
        display:flex;
    }

    .nav-item{
        width:100%;
    }

    .nav-link{
        padding:15px 20px;
        margin-top:0;
        border-bottom:1px solid #eee;
        justify-content:space-between;
    }

    .mega-menu{
        position:static;
        transform:none;
        width:100%;
        min-width:100%;
        box-shadow:none;
        border-top:none;
        border-radius:0;
        padding:10px 15px;
        display:none;
        flex-direction:column;
        background:#fafafa;
    }

    .nav-item:hover .mega-menu{
        display:none;
    }

    .nav-item.active .mega-menu{
        display:flex;
    }

    .apply-btn{
        width:calc(100% - 30px);
        margin:15px;
        text-align:center;
    }

    .logo-area img{
        max-height:50px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .header-inner{
        padding:0 15px;
    }

    .logo-area img{
        max-height:42px;
    }

    .mega-link-text{
        font-size:13px;
    }

    .mega-link-sub{
        font-size:11px;
    }
}



/* ── HERO ── */
/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height:500px;
    background:var(--navGradient);
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-inner{
    position:relative;
    max-width:1280px;
    width:100%;
    margin:auto;
    padding:0px 5%;
    display:grid;
    grid-template-columns:54% 44%;
    gap:2%;
    align-items:center;
}

.hero-content{
    width:100%;
    min-width:0;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(201,151,58,.15);
    border:1px solid rgba(201,151,58,.35);
    color:var(--lightYellow);
    font-size:11px;
    font-weight:600;
    padding:5px 14px;
    border-radius:100px;
    margin-bottom:20px;
}

.hero h2{
    font-family:var(--headingFont);
    font-size:clamp(2.5rem,4vw,4rem);
    line-height:1.2;
    color:#fff;
    margin-bottom:20px;
    overflow-wrap:break-word;
}

.hero-sub{
    color:rgba(255,255,255,.75);
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    text-decoration:none;
}
.prev-btn,
.next-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    color:#fff;
    z-index:99;
}

.prev-btn{
    left:15px;
}

.next-btn{
    right:15px;
}

.btn-wrap{
    position:static;
	max-width:100% !important;
}
.btn-primary{
    background:var(--lightYellow) !important;
    color:#fff !important;
    padding:14px 28px !important;
    border-radius:8px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.hero-right{
    width:100%;
}
.hero-banner-slider{
	position:relative;
}
.hero-banner-slider,
.banner-slider,
.bnr-sldr-main{
    width:100%;
}

.bnr-sldr-main img{
    width:100%;
    height:auto;
    display:block;
    border-radius:25px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .hero{
        min-height:auto;
        padding:60px 0;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-right{
        width:100%;
        max-width:700px;
        margin:auto;
    }

    .hero h2{
        font-size:2.4rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px){

   .hero-content{
        position:relative;
        z-index:2;
    }

    .hero-btns{
        display:flex;
        flex-direction:column;
        gap:12px;
        width:100%;
        margin-top:20px;
    }

    .btn-primary,
    .btn-outline{
        display:flex;
        width:100%;
        min-height:50px;
        align-items:center;
        justify-content:center;
        visibility:visible !important;
        opacity:1 !important;
        position:relative;
        z-index:5;
    }

    /* Keep slider arrows inside image */
    .hero-banner-slider{
        position:relative;
    }

    .prev-btn,
    .next-btn{
        z-index:10;
    }

    .hero-inner{
        display:flex;
        flex-direction:column;
        padding:0 20px;
        gap:30px;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        text-align:center;
    }

    .hero-tag{
        font-size:10px;
        max-width:100%;
        white-space:normal;
    }

    .hero h2{
        font-size:30px;
        line-height:1.35;
        margin-bottom:15px;
    }

    .hero-sub{
        font-size:14px;
        line-height:1.7;
    }

    .hero-btns{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        padding:14px 20px;
    }

    .hero-right{
        width:100%;
        max-width:100%;
        order:2;
    }

    .bnr-sldr-main img{
        border-radius:15px;
    }

    .btn-wrap{
        right:10px;
        bottom:10px;
    }

    .prev-btn,
    .next-btn{
        width:40px;
        height:40px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .hero-inner{
        padding:0 15px;
    }

    .hero h2{
        font-size:26px;
    }

    .hero-sub{
        font-size:13px;
    }
}



/* ── SCHOOL SELECTOR (sub-nav) ── */
.school-selector{background:white;border-bottom:1px solid var(#e5e5e5);position:sticky;top:72px;z-index:998}
.ss-inner{max-width:1280px;margin:0 auto;padding:0 5%;display:flex;align-items:center;gap:0;overflow-x:auto}
.ss-item{padding:14px 20px;font-size:13px;font-weight:500;color:var(--grey);cursor:pointer;border-bottom:2px solid transparent;white-space:nowrap;transition:all 0.2s;display:flex;align-items:center;gap:8px}
.ss-item:hover{color:var(--headingcolor)}
.ss-item.active{color:var(--headingcolor);border-bottom-color:var(--headingcolor);font-weight:600}
.ss-dot{width:8px;height:8px;border-radius:50%}
.ss-divider{width:1px;height:20px;background:var(#e5e5e5);margin:0 4px;flex-shrink:0}

/* CAMPUS CHIPS BAR */
.campus-bar{background:#EBF2FB;border-bottom:1px solid #C7DAF5;padding:8px 5%}
.campus-bar-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;gap:10px;overflow-x:auto}
.campus-bar-label{font-size:11px;font-weight:600;color:var(--headingcolor);white-space:nowrap}
.cbar-chip{font-size:12px;font-weight:500;padding:5px 16px;border-radius:100px;cursor:pointer;transition:all 0.2s;white-space:nowrap;border:1px solid transparent}
.cbar-chip.active{background:var(--headingcolor);color:white}
.cbar-chip:not(.active){background:white;color:var(--headingcolor);border-color:#C7DAF5}
.cbar-chip:not(.active):hover{border-color:var(--headingcolor)}

/* ── SECTIONS ── */
.section{padding:4.5rem 8% 0.1rem}
.section2{padding:2.5rem 8%}
.section-inner{max-width:1280px;margin:0 auto}
.section-alt{background:white}
.eyebrow{font-size:11px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--lightYellow);margin-bottom:8px;display:flex;align-items:center;gap:8px}
.eyebrow::before{content:'';width:20px;height:2px;background:var(--lightYellow)}
.section-title{font-family:var(--headingFont);font-size:clamp(1.6rem,3vw,2.2rem);color:var(--headingcolor);margin-bottom:10px}
.section-sub{color:var(--grey);max-width:640px;font-size:14px;line-height:1.7;margin-bottom:2.5rem}

/* ── INSTITUTION CARDS (Homepage) ── */
.inst-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
    margin-bottom:3rem;
}

.inst-card{
    border-radius:14px;
    border:1px solid var(--border);
    overflow:hidden;
    cursor:pointer;
    transition:all .3s ease;
    background:#fff;
}

.inst-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 40px rgba(0,0,0,.1);
}

.inst-card-top{
    padding:24px 20px;
    text-align:center;
}

.inst-icon{
    font-size:32px;
    margin-bottom:10px;
    display:flex;
    justify-content:center;
}

.inst-icon img{
    width:49px;
    max-width:100%;
    height:auto;
}

.inst-name{
    font-family:'Playfair Display',serif;
    font-size:14px;
    font-weight:600;
    color:var(--headingcolor);
    margin-bottom:4px;
}

.inst-type{
    font-size:11px;
    color:var(--grey);
    margin-bottom:8px;
}

.inst-badge{
    font-size:10px;
    font-weight:600;
    letter-spacing:.04em;
    padding:3px 10px;
    border-radius:100px;
    display:inline-block;
}

.inst-card-bottom{
    padding:12px 16px;
    border-top:1px solid #e5e5e5;
    font-size:12px;
    color:var(--headingcolor-light,#2554A0);
    font-weight:500;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Large Tablet */
@media (max-width: 1200px){
    .inst-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* Tablet */
@media (max-width: 991px){
    .inst-grid{
        grid-template-columns:repeat(3,1fr);
        gap:14px;
    }

    .inst-card-top{
        padding:20px 15px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .inst-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .inst-card-top{
        padding:18px 12px;
    }

    .inst-icon img{
        width:42px;
    }

    .inst-name{
        font-size:13px;
    }

    .inst-type{
        font-size:10px;
    }

    .inst-card-bottom{
        padding:10px 12px;
        font-size:11px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .inst-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .inst-card-top{
        padding:20px 15px;
    }

    .inst-icon img{
        width:45px;
    }

    .inst-name{
        font-size:15px;
    }

    .inst-type{
        font-size:11px;
    }

    .inst-card-bottom{
        font-size:12px;
    }
}

/* ── PRESIDENT SECTION ── */
.president-section{
    background:var(--deepGreen);
    border-radius:16px;
    padding:40px;
    display:grid;
    grid-template-columns:auto 1fr;
    gap:32px;
    align-items:center;
    margin-bottom:3rem;
}

.president-photo{
    width:200px;
    height:200px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    border:3px solid var(--lightYellow);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    flex-shrink:0;
}

.president-label{
    font-size:10px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--lightYellow);
    margin-bottom:8px;
}

.president-quote{
    font-family:'Playfair Display',serif;
    font-size:18px;
    color:#fff;
    line-height:1.6;
    font-style:italic;
    margin-bottom:12px;
}

.president-name{
    font-size:13px;
    color:rgba(255,255,255,.6);
}

.president-name strong{
    color:#fff;
}

/* Tablet */
@media (max-width: 991px){
    .president-section{
        padding:30px;
        gap:24px;
    }

    .president-photo{
        width:170px;
        height:170px;
    }

    .president-quote{
        font-size:17px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .president-section{
        grid-template-columns:1fr;
        text-align:center;
        padding:25px 20px;
        gap:20px;
    }

    .president-photo{
        width:140px;
        height:140px;
        margin:0 auto;
        font-size:32px;
    }

    .president-label{
        font-size:9px;
    }

    .president-quote{
        font-size:16px;
        line-height:1.7;
    }

    .president-name{
        font-size:12px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .president-section{
        padding:20px 15px;
        border-radius:12px;
    }

    .president-photo{
        width:120px;
        height:120px;
        font-size:28px;
    }

    .president-quote{
        font-size:15px;
    }
}

/* counter */
.achieve-strip{
    background:var(--deepGreen);
    padding:3rem 5%;
}

.achieve-inner{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:0;
    text-align:center;
}

.achieve-item{
    padding:20px;
    border-right:1px solid rgba(255,255,255,0.1);
}

.achieve-item:last-child{
    border-right:none;
}

.achieve-num{
    font-family:var(--bodyFont);
    font-size:2.2rem;
    font-weight:700;
    color:var(--white);
}

.achieve-label{
    font-size:12px;
    color:rgba(255,255,255,0.5);
    margin-top:4px;
    line-height:1.4;
}

/* Tablet */
@media (max-width: 991px){
    .achieve-inner{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .achieve-item{
        border-right:none;
        border:1px solid rgba(255,255,255,0.08);
        border-radius:12px;
        background:rgba(255,255,255,0.03);
    }

    .achieve-num{
        font-size:2rem;
    }
}

/* Mobile */
@media (max-width: 767px){
    .achieve-strip{
        padding:2rem 20px;
    }

    .achieve-inner{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .achieve-item{
        padding:18px 10px;
    }

    .achieve-num{
        font-size:1.8rem;
    }

    .achieve-label{
        font-size:11px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .achieve-inner{
        grid-template-columns:1fr;
    }

    .achieve-item{
        padding:20px;
    }

    .achieve-num{
        font-size:1.7rem;
    }

    .achieve-label{
        font-size:12px;
    }
}


/* -- OFFERINGS -- */
.tab-content{
    display:none;
    width:100%;
    grid-template-columns:minmax(0,1fr) 320px;
    align-items:start;
    gap:40px;
}

.tab-content.active{
    display:grid;
}


.offer-item:hover{
    background:#fbf3df;
}

.offer-section{
    padding:0px 10px;
    background:#fff;
}

.offer-wrapper{
    max-width:1400px;
    margin:auto;
    background:#f3f8f5;
    border-radius:30px;
    padding:45px;
    position:relative;
    display:grid;
    grid-template-columns:430px 1fr;
    gap:30px;
    overflow:visible;
}

.dot-pattern{
    position:absolute;
    top:45px;
    left:52%;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.dot-pattern span{
    width:5px;
    height:5px;
    background:#cfe4d7;
    border-radius:50%;
}

.wave-bg{
    position:absolute;
    left:-50px;
    bottom:-40px;
    width:280px;
}

.wave-bg svg path{
    fill:none;
    stroke:#dbece2;
    stroke-width:2;
}

.offer-tag{
    display:inline-block;
    background:#dfeae4;
    color:#0b5d3c;
    padding:12px 24px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.offer-left h2{
    font-size:36px;
    line-height:1.1;
    color:#073d2b;
    margin-bottom:20px;
    font-weight:700;
}
.offer-left h2 span{
	color: var(--deepGreen);
}
.title-line{
    width:70px;
    height:4px;
    background:#f0bc14;
    border-radius:30px;
    margin-bottom:25px;
}

.offer-description{
    color:#555;
    line-height:2;
    margin-bottom:16px;
}

.offer-card-list{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
}

.offer-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:13px 20px;
    border-bottom:1px solid #ececec;
}

.offer-item:last-child{
    border:none;
}

.offer-item.active{
    background:#fbf3df;
}

.offer-item .icon-box{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.yellow{
    background:#fdbc18;
}

.green{
    background:#00542f;
}

.icon-box img{
    width:37px;
    height:auto;
    stroke:#fff;
    fill:none;
    stroke-width:1.8;
}

.offer-text{
    flex:1;
}

.offer-text h4{
    font-size:18px;
    margin-bottom:5px;
    color:#111;
	font-weight: 500;
}

.offer-text p{
    font-size:12px;
    color:#666;
}

.arrow{
    font-size:30px;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.detail-card{
    background:#fff;
    margin-top:-10px;
    position:relative;
    z-index:5;
    border-radius:30px;
    padding:35px 40px;
    width:100%;
    box-sizing:border-box;
}

.detail-left{
    padding-right:0px;
}

.detail-right{
    border-left:1px solid #e7e7e7;
    padding-left:40px;
}

.detail-title{
    display:flex;
    gap:18px;
    align-items:flex-start;
    margin-bottom:25px;
}

.detail-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#edf5ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.detail-icon img{
    width:auto;
    height:auto;
    stroke:#006837;
    fill:none;
    stroke-width:1.8;
}

.detail-title h3{
    font-size:25px;
    color:#073d2b;
    margin-bottom:10px;
	font-weight: 500;
	margin-top: 11px;
}

.detail-title span{
    display:block;
    width:65px;
    height:4px;
    background:#f0bc14;
    border-radius:30px;
}

.detail-left p{
    color:#555;
    line-height:2;
    margin-bottom:30px;
}

.offer-btn{
    display:inline-block;
    background:#006837;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:600;
	margin-bottom: 20px;
}

.benefit{
    font-size:18px;
    color:#073d2b;
    margin-bottom:16px;
    line-height:1.4;
	display: flex;
    align-items: center;
}
.benefit img{
	width: auto;
    background: #e2f3ed;
    border-radius: 50%;
    padding: 10px;
    margin-right: 12px;
}

@media (max-width: 991px){

    .offer-wrapper{
        grid-template-columns:1fr;
        padding:30px;
        gap:25px;
    }

    .offer-left{
        order:2;
    }

    .offer-right{
        order:1;
    }

    .hero-image{
        height:350px;
    }

    .tab-content.active{
        grid-template-columns:1fr;
        gap:25px;
    }

    .detail-right{
        border-left:none;
        border-top:1px solid #e7e7e7;
        padding-left:0;
        padding-top:25px;
        margin-top:10px;
    }

    .detail-card{
        margin-top:-30px;
        padding:25px;
    }

    .offer-left h2{
        font-size:32px;
    }

    .dot-pattern{
        display:none;
    }

    .wave-bg{
        display:none;
    }
}

@media (max-width: 767px){

    .offer-section{
        padding:0 15px;
    }

    .offer-wrapper{
        padding:20px;
        border-radius:20px;
    }

    .offer-tag{
        font-size:11px;
        padding:10px 18px;
    }

    .offer-left h2{
        font-size:30px;
        line-height:1.2;
    }

    .offer-description{
        font-size:14px;
        line-height:1.8;
    }

    .hero-image{
        height:250px;
        border-radius:20px;
    }

    .offer-item{
        gap:12px;
        padding:15px;
    }

    .icon-box{
        width:50px;
        height:50px;
        border-radius:12px;
    }

    .icon-box img{
        max-width:24px;
        max-height:24px;
    }

    .offer-text h4{
        font-size:16px;
        line-height:1.3;
    }

    .offer-text p{
        font-size:11px;
        line-height:1.5;
    }

    .arrow{
        font-size:20px;
    }

    .detail-card{
        padding:20px;
        border-radius:20px;
    }

    .detail-title{
        gap:12px;
        margin-bottom:15px;
    }

    .detail-icon{
        width:55px;
        height:55px;
    }

    .detail-icon img{
        max-width:24px;
    }

    .detail-title h3{
        font-size:22px;
        margin-top:6px;
    }

    .detail-left p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:20px;
    }

    .offer-btn{
        width:100%;
        text-align:center;
        padding:14px 20px;
        font-size:14px;
    }

    .benefit{
        font-size:16px;
        margin-bottom:18px;
    }

    .benefit img{
        width:40px;
        padding:8px;
        margin-right:10px;
    }
}

@media (max-width: 480px){

    .offer-wrapper{
        padding:15px;
    }

    .offer-left h2{
        font-size:26px;
    }

    .hero-image{
        height:220px;
    }

    .offer-item{
        padding:12px;
    }

    .icon-box{
        width:45px;
        height:45px;
    }

    .offer-text h4{
        font-size:15px;
    }

    .offer-text p{
        display:none;
    }

    .detail-title h3{
        font-size:20px;
    }

    .benefit{
        font-size:15px;
    }
}

/* ── NEWS & EVENTS ── */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.news-card{background:white;border:1px solid var(#e5e5e5);border-radius:12px;overflow:hidden;cursor:pointer;transition:all 0.3s}
.news-card:hover{transform:translateY(-3px);box-shadow:0 10px 32px rgba(0,0,0,0.08)}
.news-img{height:245px;display:flex;align-items:center;justify-content:center;font-size:40px; overflow:hidden;}
.news-body{padding:18px}
.news-tag{font-size:10px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px; color:var(--deepGreen)}
.news-title{font-size:14px;font-weight:600;color:var(--black);margin-bottom:6px;line-height:1.4;height:37px;}
.news-date{font-size:11px;color:var(--grey)}


/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 38px !important;
    height: 43px !important;
    background: linear-gradient(135deg, #0f7b3b, #18a558);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 123, 59, 0.25);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow Size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 700;
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 25px rgba(15, 123, 59, 0.4);
    background: linear-gradient(135deg, #18a558, #0f7b3b);
}

/* Position */
.swiper-button-prev {
    left: 2px !important;
}

.swiper-button-next {
    right: 2px !important;
}

/* Mobile */
@media(max-width:768px){
    .swiper-button-next,
    .swiper-button-prev{
        width:45px !important;
        height:45px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:14px !important;
    }
}

.newsSwiper {
    padding: 20px 10px 60px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.news-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-body {
    padding: 20px;
}

.news-date {
    color: #777;
    font-size: 14px;
}

/* ===========================
   MANAGEMENT SECTION
=========================== */

.management-section{
    position:relative;
    padding:50px 6%;
    overflow:hidden;
    background:#f8fbf8;
}

.management-bg-text{
    position:absolute;
    top:180px;
    left:50%;
    transform:translateX(-50%);
    font-size:220px;
    font-weight:700;
    color:rgba(20,40,20,.03);
    line-height:1;
    z-index:0;
    white-space:nowrap;
    pointer-events:none;
}

.bg-circle{
    position:absolute;
    right:-180px;
    top:80px;
    width:580px;
    height:580px;
    border-radius:50%;
    background:rgba(90,170,120,.08);
    z-index:0;
}

.dot-pattern{
    position:absolute;
    top:45px;
    left:37%;
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
    z-index:20;
}

.dot-pattern span{
    width:5px;
    height:5px;
    border-radius:50%;
    background:#cfe4d7;
}

.dot-left{
    left:70px;
    top:100px;
}

.dot-right{
    right:40px;
    top:250px;
}

.management-header,
.managementSwiper,
.view-btn-wrap{
    position:relative;
    z-index:2;
}

/* ===========================
   HEADER
=========================== */

.management-header{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.sub-title{
    color:#0f9b5f;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin:5px 0 12px;
    color:#f2b400;
    font-size:20px;
}

.divider span{
    width:120px;
    height:1px;
    background:#d9d9d9;
}

.management-header h2{
    font-family:'Playfair Display', serif;
    font-size:53px;
    line-height:1;
    font-weight:700;
    color:#07112f;
    margin-bottom:25px;
}

.management-header p{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.7;
}

.yellow-line{
    width:65px;
    height:5px;
    background:#e8b000;
    margin:30px auto 0;
    border-radius:10px;
}

/* ===========================
   SWIPER
=========================== */

.managementSwiper{
    margin-top:50px;
    padding-bottom:60px;
}

.managementSwiper .swiper-slide{
    height:auto;
}

/* ===========================
   CARD
=========================== */

.management-card{
    background:#fff;
    border-radius:24px;
    padding:25px 20px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
    min-height:460px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border-bottom:5px solid #0d7b4d;
    transition:.4s;
}

.management-card:hover{
    transform:translateY(-8px);
}

/* Leader Icon */

.leader-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#eef7f0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d7b4d;
    margin-bottom:-20px;
}

/* ===========================
   IMAGE AREA
=========================== */

.card-image{
    display:flex;
    justify-content:center;
    margin-bottom:0;
}

.image-bg{
    width:250px;
    height:197px;
    background:#edf2ef;
    border-radius:180px 180px 0 0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.image-bg img{
    width:auto;
    height:220px;
    max-width:none;
    object-fit:contain;
    display:block;
}

/* ===========================
   LOGO
=========================== */

.card-logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:220px; /* adjust as needed */
    z-index:20;
    margin:0;
}

.card-logo img{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#fff;
    padding:6px;
    object-fit:contain;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* ===========================
   CONTENT
=========================== */
.management-card h3{
    font-size:20px;
    line-height:1.3;
    color:#06683f;
    font-weight:700;
    margin:10px 0 15px;
}

.designation{
    color:#555;
    font-size:15px;
    line-height:1.6;
    margin-bottom:15px;
	height: 38px;
}

.small-line{
    width:40px;
    height:2px;
    background:#1d8c55;
    margin:18px auto;
}

.company{
    color:#14884f;
    font-size:16px;
    font-weight:500;
    margin-bottom:20px;
}

/* ===========================
   PAGINATION
=========================== */

.management-pagination{
    margin-top:50px;
    text-align:center;
}

.management-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#ddd;
    opacity:1;
}

.management-pagination .swiper-pagination-bullet-active{
    background:#0d7b4d;
}

/* ===========================
   VIEW BUTTON
=========================== */

.view-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.view-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 40px;
    border:2px solid #0f7c4a;
    border-radius:14px;
    text-decoration:none;
    color:#0f7c4a;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.view-btn:hover{
    background:#0f7c4a;
    color:#fff;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1200px){
    .management-header h2{
        font-size:60px;
    }
}

@media(max-width:768px){

    .management-header h2{
        font-size:42px;
    }

    .management-header p{
        font-size:18px;
    }

    .image-bg{
        width:220px;
        height:180px;
    }

    .image-bg img{
        height:170px;
    }

    .card-logo img{
        width:70px;
        height:70px;
    }
}

.campus_icon{
    display:flex;
    justify-content:center;
}

.campus_txt ul{
    padding:0;
    margin:0;
    list-style:none;
}

.campus_txt ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
}

.campus_txt ul li img{
    width:22px;
    height:22px;
    flex-shrink:0;
    margin-top:3px;
}

/* Mobile */
@media (max-width:767px){

    .campus_txt ul li{
        display:flex;
        justify-content:center;
        max-width:100%;
    }

    .campus_txt ul li img{
        flex:0 0 18px;
    }

    .campus_txt ul li span,
    .campus_txt ul li a{
        flex:1;
        text-align:left;
    }
}

.gallery_main_new{
    display:flex;
    gap:20px;
    margin-top:50px;
    align-items:flex-start;
}

.gallery_left_new,
.gallery_middle_new,
.gallery_right{
    flex:1;
}

.gallery_left_new ul,
.gallery_middle_new ul,
.gallery_right ul{
    list-style:none;
    padding:0;
    margin:0;
}

.gallery_left_new li,
.gallery_middle_new li,
.gallery_right li{
    margin-bottom:20px;
}

/* Card */

.gallery-card_new{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    background:#fff;
}

/* Equal Height Images */

.gallery-card_new img{
    width:100%;
    height:260px; /* change as needed */
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

/* Overlay */

.gallery-card_new::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15),
        transparent
    );
    z-index:1;
}

/* Zoom */

.gallery-card_new:hover img{
    transform:scale(1.08);
}

/* Plus Icon */

.gallery-plus_new{
    position:absolute;
    top:15px;
    right:15px;
    width:36px;
    height:36px;
    border-radius:10px;
    background:rgba(70,70,70,.85);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
    font-size:18px;
}

.gallery-plus_new:hover{
    background:#0a7d4f;
    color:#fff;
}

/* Title */

.gallery-content_new{
    position:absolute;
    left:15px;
    bottom:15px;
    z-index:3;
}

.gallery-content_new h4{
    margin:0;
    padding:10px 15px;
    background:rgba(60,60,60,.75);
    border-radius:12px;
    color:#fff;
    font-size:15px;
    font-weight:600;
}

/* Mobile */

@media (max-width: 991px){

    .gallery_main_new{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .gallery_left_new,
    .gallery_middle_new,
    .gallery_right{
        width:100%;
        flex:none;
    }

    .gallery_left_new ul,
    .gallery_middle_new ul,
    .gallery_right ul{
        width:100%;
    }

    .gallery_left_new li,
    .gallery_middle_new li,
    .gallery_right li{
        width:100%;
        margin-bottom:20px;
    }

    .gallery-card_new{
        width:100%;
        border-radius:20px;
    }

    .gallery-card_new img{
        width:100%;
        height:auto;
        min-height:250px;
        object-fit:cover;
        display:block;
    }

    .gallery-content_new{
        left:15px;
        right:15px;
    }

    .gallery-content_new h4{
        width:fit-content;
        max-width:100%;
    }
}

@media (max-width: 767px){

     .gallery_sec_new .container{
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .gallery_left_new,
    .gallery_middle_new,
    .gallery_right,
    .gallery-card_new{
        width:100%;
    }

    .gallery-card_new img{
        width:100%;
        height:300px;
        object-fit:cover;
    }
}


/* AMENITIES */
.amenities-section{
    padding:50px 0;
    background:#f8f8f8;
}

.amenities-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:42% 53%;
    gap:35px;
    align-items:center;
}

.amenities-image-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:600px;
	margin-top: 10% !important;
}

.amenities-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.student-counter{
    position:absolute;
    right:0;
    bottom:0;
    width:185px;
    height:270px;
    background:linear-gradient(135deg,#006837,#004726);
    color:#fff;
    padding:30px;
    border-radius:50px 0 30px 0;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.student-counter h3{
    font-size:56px;
    color:#f5b81c;
    margin:10px 0;
    font-weight:700;
}

.student-counter p{
    font-size:18px;
    line-height:1.5;
}

.section-heading{
    display:flex;
    align-items:center;
    gap:15px;
}

.section-heading span{
    font-size:14px;
    letter-spacing:2px;
    color:#006837;
    font-weight:700;
}

.line{
    width:60px;
    height:4px;
    background:#f4bb17;
}

.amenities-right h2{
    font-size:44px;
    line-height:1.1;
    margin:8px 0 5px;
    color:#222;
	font-weight: 500;
}

.amenities-right h2 span{
    color:#006837;
}

.section-desc{
    max-width:750px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.facility-card{
    background:#fff;
    border-radius:12px;
    padding:17px 12px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    min-height:230px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.facility-icon{
    width:70px;
    height:65px;
    border-radius:50%;
    background:#edf7f0;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    font-size:34px;
}

.facility-card h4{
    font-size:19px;
    color:#0c5034;
    margin-bottom:9px;
	font-weight: 500;
}

.yellow-line{
    width:40px;
    height:4px;
    background:#f4bb17;
    margin:0 auto 15px;
}

.facility-card p{
    color:#666;
    line-height:1.8;
}

/* ── SCHOOL PAGE ── */
.school-hero{background:var(--headingcolor);padding:48px 5% 0}
.school-hero-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:end}
.school-hero-text{padding-bottom:48px}
.school-breadcrumb{font-size:12px;color:rgba(255,255,255,0.45);margin-bottom:16px;display:flex;align-items:center;gap:6px}
.school-breadcrumb a{color:rgba(255,255,255,0.55);transition:color 0.2s}
.school-breadcrumb a:hover{color:white}
.school-hero h2{font-family:'Playfair Display',serif;font-size:2.4rem;color:white;margin-bottom:12px;line-height:1.25}
.school-hero-sub{color:rgba(255,255,255,0.65);font-size:14px;line-height:1.7;margin-bottom:24px}
.affil-badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px}
.affil-badge{font-size:11px;font-weight:600;background:rgba(255,255,255,0.1);color:rgba(255,255,255,0.8);padding:5px 12px;border-radius:100px;border:1px solid rgba(255,255,255,0.2)}
.school-hero-img{height:280px;background:rgba(255,255,255,0.06);border-radius:12px 12px 0 0;display:flex;align-items:center;justify-content:center;font-size:60px}

/* SCHOOL TABS */
.school-tabs{background:rgba(0,0,0,0.2);border-top:1px solid rgba(255,255,255,0.1)}
.school-tabs-inner{max-width:1280px;margin:0 auto;padding:0 5%;display:flex;overflow-x:auto}
.stab{padding:14px 20px;font-size:13px;font-weight:500;color:rgba(255,255,255,0.55);cursor:pointer;border-bottom:2px solid transparent;white-space:nowrap;transition:all 0.2s}
.stab:hover{color:white}
.stab.active{color:white;border-bottom-color:var(--lightYellow2)}

/* SCHOOL CONTENT */
.school-content{max-width:1280px;margin:0 auto;padding:3rem 5%;display:grid;grid-template-columns:1fr 320px;gap:3rem}
.prog-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:2rem}
.prog-card{border:1px solid var(#e5e5e5);border-radius:10px;padding:18px;cursor:pointer;transition:all 0.2s;background:white}
.prog-card:hover{border-color:var(--headingcolor);box-shadow:0 4px 16px rgba(0,0,0,0.06)}
.prog-icon{font-size:22px;margin-bottom:8px}
.prog-name{font-size:14px;font-weight:600;color:var(--headingcolor);margin-bottom:4px}
.prog-desc{font-size:12px;color:var(--grey);line-height:1.5}
.amenity-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:1.5rem}
.amenity{padding:14px;background:var(--lightGrey);border:1px solid var(#e5e5e5);border-radius:8px;text-align:center;font-size:12px;font-weight:500;cursor:pointer;transition:all 0.2s}
.amenity:hover{background:var(--headingcolor);color:white}
.amenity-icon{font-size:20px;display:block;margin-bottom:6px}

/* SIDEBAR */
.sidebar-card{background:white;border:1px solid var(#e5e5e5);border-radius:12px;padding:20px;margin-bottom:16px}
.sidebar-title{font-size:13px;font-weight:600;color:var(--headingcolor);margin-bottom:14px;padding-bottom:10px;border-bottom:1px solid var(#e5e5e5)}
.sidebar-input{width:100%;padding:9px 12px;border:1px solid var(#e5e5e5);border-radius:6px;font-size:13px;font-family:'Inter',sans-serif;margin-bottom:8px;outline:none;transition:border 0.2s}
.sidebar-input:focus{border-color:var(--headingcolor)}
.sidebar-select{width:100%;padding:9px 12px;border:1px solid var(#e5e5e5);border-radius:6px;font-size:13px;font-family:'Inter',sans-serif;margin-bottom:8px;background:white;cursor:pointer}
.sidebar-btn{width:100%;background:var(--headingcolor);color:white;border:none;padding:11px;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;margin-top:4px;transition:background 0.2s}
.sidebar-btn:hover{background:var(--headingcolor2)}
.contact-row{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--grey);margin-bottom:8px}
.contact-row:last-child{margin-bottom:0}

/* ── CAMPUS PAGE ── */
.campus-hero{background:var(--headingcolor);padding:36px 5%}
.campus-hero-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.campus-label-row{display:flex;align-items:center;gap:8px;margin-bottom:10px}
.campus-back-link{font-size:12px;color:rgba(255,255,255,0.5);cursor:pointer;transition:color 0.2s}
.campus-back-link:hover{color:white}
.campus-hero h3{font-family:'Playfair Display',serif;font-size:2rem;color:white;margin-bottom:8px}
.campus-headmistress{background:rgba(255,255,255,0.08);border-radius:8px;padding:12px 16px;margin-top:16px;display:flex;align-items:center;gap:10px}
.campus-hm-avatar{width:36px;height:36px;background:var(--lightYellow);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;flex-shrink:0}
.campus-hm-title{font-size:10px;color:var(--lightYellow2);letter-spacing:0.06em;text-transform:uppercase}
.campus-hm-name{font-size:13px;color:white;font-weight:500}
.campus-selector-other{background:rgba(255,255,255,0.05);border-radius:8px;padding:14px}
.cso-label{font-size:10px;color:rgba(255,255,255,0.4);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:8px}
.cso-chips{display:flex;gap:6px;flex-wrap:wrap}
.cso-chip{font-size:11px;padding:4px 12px;border-radius:100px;cursor:pointer;transition:all 0.2s;border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.6)}
.cso-chip.current{background:white;color:var(--headingcolor);font-weight:600;border-color:white}
.cso-chip:not(.current):hover{border-color:white;color:white}

/* CAMPUS BODY */
.campus-body{max-width:1280px;margin:0 auto;padding:2.5rem 5%;display:grid;grid-template-columns:1fr 300px;gap:2.5rem}
.class-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:1.5rem}
.class-tag{background:var(--lightGrey);border:1px solid var(#e5e5e5);padding:6px 14px;border-radius:100px;font-size:12px;font-weight:500;color:var(--headingcolor)}
.campus-about{color:var(--grey);font-size:14px;line-height:1.7;margin-bottom:1.5rem}
.affil-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:1.5rem}
.affil-pill{background:var(--green);color:white;font-size:11px;font-weight:600;padding:5px 14px;border-radius:100px;display:flex;align-items:center;gap:6px}


/* -- CONTACT -- */
.contact-area{
    padding:8px 0;
}

/* heading */

.contact-area .section-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

.contact-area .sub-title{
    color:#006b3f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-area .section-title h2{
    font-family:var(--headingFont);
    font-size:40px;
    color:#081431;
	font-weight: 500;
    margin:0px 0 10px;
}

.contact-area .section-title h2 span{
    color:#006b3f;
}

.contact-area .section-title p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

.contact-area .line{
    width:70px;
    height:4px;
    background:#f0b323;
    margin:0px auto;
    border-radius:10px;
}

/* cards */

.contact-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:stretch;
}

.contact-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    min-height:400px;
}

.card-content{
    flex:1;
    padding:12px 30px 0px;
    text-align:center;
    display:flex;
    flex-direction:column;
}

.card-content.active{
    flex:1;
    padding:35px 35px 25px;
    text-align:center;
	margin-top:-5%;
    display:flex;
    flex-direction:column;
}

.card-content .icon-box{
    width:73px;
    height:73px;
    border-radius:50%;
    background:#eef6f1;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:27px;
    color:#006b3f;
}

.yellow{
    background:#fff4d6 !important;
}

.divider{
    width:38px;
    height:4px;
    background:#006b3f;
    border-radius:30px;
    margin:0 auto 14px;
}

.yellow-divider{
    background:#f0b323;
}

.contact-card h3{
    font-size:20px;
    font-weight:600;
    color:#081431;
    margin-bottom:10px;
}

.contact-card h4{
    color:#006b3f;
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.contact-card p{
    color:#666;
    font-size:14px;
    line-height:1.8;
    margin: 0 0px 11px;
}

.campus-info{
    padding: 13px 33px;
    border-top:1px solid #ddd;
    text-align:left;
}

.campus-info div{
    color:#006b3f;
}

.card-footer{
    background:#eef6f1;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    flex-shrink:0;
}

.yellow-footer{
    background:#fff2c7 !important;
}

.main-btn{
    background:#006b3f;
    color:#fff;
    text-decoration:none;
    padding:9px 28px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:18px;
    font-weight:600;
}

.main-btn span{
    width:30px;
    height:30px;
    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#000;
}

.contact-card .dots{
    position:absolute;
    right:25px;
    bottom:18px;

    width:55px;
    height:40px;

    background-image:
        radial-gradient(#b7d5c3 2px, transparent 2px);
    background-size:12px 12px;
}

.yellow-dots{
    background-image:
        radial-gradient(#f0b323 2px, transparent 2px);
}

/* stats */

.stats-box{
    margin-top:50px;
    background:#fff;
    border-radius:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.stat-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px;
    border-right:1px solid #eee;
}

.last{
    border:none;
}

.stat-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#f1f6f2;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#006b3f;
}

.stat-item h4{
    color:#006b3f;
    font-size:48px;
    margin-bottom:5px;
}

.stat-item p{
    color:#666;
}

/* responsive */

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.stats-box{
    grid-template-columns:1fr 1fr;
}

.stat-item{
    border:none;
}
}

@media(max-width:768px){

.contact-area .section-title h2{
    font-size:42px;
}

.stats-box{
    grid-template-columns:1fr;
}
}

/* ── COLLEGE PAGE ── */
.college-hero{background:linear-gradient(135deg,#0F2547,#1A3C6E);padding:56px 5%;text-align:center}
.college-hero-inner{max-width:900px;margin:0 auto}
.college-badge{display:inline-block;background:rgba(201,151,58,0.2);border:1px solid rgba(201,151,58,0.4);color:var(--lightYellow2);font-size:11px;font-weight:600;letter-spacing:0.06em;padding:6px 18px;border-radius:100px;margin-bottom:20px}
.college-hero h2{font-family:'Playfair Display',serif;font-size:2.8rem;color:white;margin-bottom:14px}
.college-hero-sub{color:rgba(255,255,255,0.65);font-size:15px;max-width:600px;margin:0 auto 28px}
.college-affil-row{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
.college-affil{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);color:rgba(255,255,255,0.8);font-size:12px;font-weight:500;padding:7px 18px;border-radius:8px}

/* PLACEMENT SECTION */
.placement-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.placement-card{border:1px solid var(#e5e5e5);border-radius:10px;padding:18px;text-align:center;background:white;transition:all 0.2s;cursor:pointer}
.placement-card:hover{border-color:var(--headingcolor);transform:translateY(-2px)}
.placement-company{font-size:14px;font-weight:700;color:var(--headingcolor);margin-bottom:4px}
.placement-students{font-size:12px;color:var(--grey)}
.placement-trade{font-size:11px;background:var(--lightGrey);padding:3px 8px;border-radius:4px;display:inline-block;margin-top:4px;color:var(--grey)}

/* ── ADMISSIONS HUB ── */
.adm-hero{background:var(--headingcolor);padding:48px 5%;text-align:center}
.adm-hero h2{font-family:'Playfair Display',serif;font-size:2.4rem;color:white;margin-bottom:10px}
.adm-hero p{color:rgba(255,255,255,0.6);font-size:15px}
.adm-body{max-width:900px;margin:0 auto;padding:3rem 5%}
.adm-step-label{font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--lightYellow);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.adm-step-label::before{content:attr(data-step);width:22px;height:22px;background:var(--lightYellow);color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px}
.adm-inst-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin-bottom:2.5rem}
.adm-inst{border:2px solid var(#e5e5e5);border-radius:10px;padding:16px 12px;text-align:center;cursor:pointer;transition:all 0.2s;background:white}
.adm-inst:hover,.adm-inst.sel{border-color:var(--headingcolor);background:var(--blue-light,#EFF6FF)}
.adm-inst-icon{font-size:22px;margin-bottom:6px}
.adm-inst-name{font-size:12px;font-weight:600;color:var(--headingcolor)}
.adm-campus-row{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:2.5rem}
.adm-campus{padding:8px 20px;border-radius:100px;border:1px solid var(#e5e5e5);font-size:13px;cursor:pointer;transition:all 0.2s;background:white}
.adm-campus.sel{background:var(--headingcolor);color:white;border-color:var(--headingcolor)}
.adm-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:1.5rem}
.adm-input{padding:11px 14px;border:1px solid var(#e5e5e5);border-radius:8px;font-size:14px;font-family:'Inter',sans-serif;outline:none;transition:border 0.2s}
.adm-input:focus{border-color:var(--headingcolor)}
.adm-submit{background:var(--headingcolor);color:white;border:none;padding:14px 40px;border-radius:8px;font-size:15px;font-weight:600;cursor:pointer;transition:all 0.2s}
.adm-submit:hover{background:var(--headingcolor2);transform:translateY(-1px)}

/* ── FOOTER ── */
/* ==========================
   FOOTER
========================== */

footer{
    background:var(--deepGreen);
    color:rgba(255,255,255,.7);
    padding:60px 5% 25px;
}

.footer-inner{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-brand{
    max-width:420px;
}

.footer-brand .logo-area{
    margin-bottom:20px;
}

.footer-brand .logo-area img{
    max-width:220px;
    width:auto;
    height:auto;
}

.footer-brand p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:15px;
}

.footer-addr{
    font-size:13px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
}

.footer-col h5{
    font-size:13px;
    font-weight:600;
    color:#fff;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.footer-link{
    display:block;
    font-size:14px;
    margin-bottom:10px;
    color:rgba(255,255,255,.7);
    transition:.3s;
    cursor:pointer;
}

.footer-link:hover{
    color:var(--lightYellow);
    padding-left:5px;
}

.footer-bottom{
    max-width:1280px;
    margin:auto;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom span{
    font-size:13px;
}

.footer-bottom div{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom a{
    font-size:13px;
    color:rgba(255,255,255,.65);
    transition:.3s;
}

.footer-bottom a:hover{
    color:var(--lightYellow);
}

/* ==========================
   LARGE TABLET
========================== */

@media(max-width:1024px){

    .footer-inner{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .footer-brand{
        max-width:100%;
        grid-column:span 2;
    }

}

/* ==========================
   TABLET
========================== */

@media(max-width:768px){

    footer{
        padding:50px 25px 20px;
    }

    .footer-inner{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-brand{
        grid-column:auto;
    }

    .footer-col{
        padding-bottom:20px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom div{
        justify-content:center;
        gap:15px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:480px){

    footer{
        padding:40px 20px 20px;
    }

    .footer-brand .logo-area img{
        max-width:180px;
    }

    .footer-brand p{
        font-size:13px;
    }

    .footer-addr{
        font-size:12px;
    }

    .footer-col h5{
        font-size:12px;
    }

    .footer-link{
        font-size:13px;
    }

    .footer-bottom span,
    .footer-bottom a{
        font-size:12px;
    }

}

/* VIEWS */
.view{display:none}
.view.active{display:block}

.quick a{
	display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: 0.3s;
}
.quick a:hover{
    color: var(--lightYellow);
    padding-left: 5px;
}
.footer-addr a{
	color: rgba(255, 255, 255, 0.7);
}

.chief-message{
    padding:100px 0;
    background:#f7faf8;
    position:relative;
}

.message-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.message-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:linear-gradient(to bottom,#0b6b44,#d6a323);
}

/* TOP SECTION */

.message-top{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:flex-start;
}

/* IMAGE */

.message-image{
    position:relative;
}

.message-image::after{
    content:"";
    position:absolute;
    top:15px;
    left:15px;
    width:100%;
    height:100%;
    border:3px solid #d6a323;
    border-radius:25px;
    z-index:0;
}

.message-image img{
    width:100%;
    display:block;
    border-radius:25px;
    position:relative;
    z-index:1;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* CONTENT */

.message-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eef7f1;
    color:#0b6b44;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.message-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:10px;
    color:#123;
}

.message-content h2 span{
    display:block;
    font-size:18px;
    color:#d6a323;
    font-weight:600;
    margin-top:5px;
}

.message-text{
    color:#555;
    font-size:16px;
    line-height:1.9;
}

.message-text p{
    margin-bottom:15px;
}

/* BOTTOM CONTENT */

.message-bottom{
    margin-top:40px;
   
}

.message-bottom p{
    color:#555;
    font-size:16px;
    line-height:2;
    margin-bottom:18px;
}

/* MOBILE */

@media(max-width:991px){

    .message-card{
        padding:35px;
    }

    .message-top{
        grid-template-columns:1fr;
        gap:35px;
    }

    .message-image{
        max-width:320px;
        margin:auto;
    }

    .message-content{
        text-align:center;
    }

    .message-content h2{
        font-size:32px;
    }
}

@media(max-width:576px){

    .chief-message{
        padding:60px 0;
    }

    .message-card{
        padding:25px;
        border-radius:20px;
    }

    .message-image{
        max-width:260px;
    }

    .message-content h2{
        font-size:26px;
    }

    .message-content h2 span{
        font-size:16px;
    }

    .message-text,
    .message-bottom p{
        font-size:15px;
        line-height:1.8;
    }

    .message-bottom{
        margin-top:25px;
        padding-top:25px;
    }
}


/* Vision */
.vision_sec{
    padding:20px 0;
    background:linear-gradient(
        90deg,
        #0b6b44 0%,
        #0b6b44 38%,
        #f8f9fa 38%,
        #f8f9fa 100%
    );
    overflow:hidden;
}

.vision_img{
    position:relative;
}

.vision_img figure{
    margin:0;
}

.vision_img img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.vision_img::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid #d6a323;
    border-radius:24px;
    top:15px;
    left:15px;
    z-index:-1;
}

.vision_cont{
    background:#fff;
    padding:60px;
    border-radius:30px;
	right:11px !important;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.vision_cont .title{
    margin-bottom:25px;
}

.vision_cont .title h2{
    font-size:46px;
    font-weight:700;
    color:#0b6b44;
    margin-bottom:0;
    position:relative;
}

.vision_cont .title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#d6a323;
    display:block;
    margin-top:12px;
    border-radius:20px;
}

.vision_cont p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}

/* Mobile */

@media(max-width:991px){

    .vision_sec{
        background:#f8f9fa;
        padding:80px 0;
    }

    .vision_img{
        margin-bottom:30px;
    }

    .vision_cont{
        padding:35px;
    }

    .vision_cont .title h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .vision_cont{
        padding:25px;
        border-radius:20px;
    }

    .vision_cont .title h2{
        font-size:28px;
    }

    .vision_cont p{
        font-size:15px;
    }
}


/*gallery */
.gallery_page{
    padding:100px 0;
    background:#f6f8fb;
}

.gallery_page .col-lg-4{
    margin-bottom:30px;
}

.gallery_page a{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    text-decoration:none;
    transition:.4s ease;
}

.gallery_page a:hover{
    transform:translateY(-10px);
}

.gallery_page img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
    transition:.7s ease;
}

.gallery_page a:hover img{
    transform:scale(1.1);
}

/* Dark overlay */

.gallery_page a::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.1)
    );
    z-index:1;
}

/* Floating category badge */

.gallery_page span{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
    width:auto;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:14px 24px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    border:1px solid rgba(255,255,255,.25);
}

/* Decorative arrow */
.gallery_page span {
    background: linear-gradient(90deg, #00A063 0%, #FEC10E 100%) !important;
}
.gallery_page span:hover {
    background: var(--deepGreen) !important;
}
.gallery_page span::after{
    content:"↗";
    margin-left:10px;
    font-size:18px;
}

/* Hover Effect */

.gallery_page a:hover span{
    background:#0b6b44;
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

    .gallery_page img{
        height:280px;
    }
}

@media(max-width:576px){

    .gallery_page{
        padding:60px 0;
    }

    .gallery_page img{
        height:230px;
    }

    .gallery_page span{
        left:15px;
        bottom:15px;
        padding:10px 18px;
        font-size:16px;
    }
}

.admission_form_wrap {
    background: var(--lightYellow) !important;
}
.school_bg .nav-tabs .nav-link.active{
	color:var(--deepGreen) !important;
}


/* Gallery */
.campus-life{
    position:relative;
    padding:55px 0;
    background:#f8f8f6;
    overflow:hidden;
}

.campus-bg{
    position:absolute;
    top:0;
    right:0;
    width:45%;
    height:420px;
    background:url('http://jyotirmoyschool.edu.in/wp-content/uploads/2026/07/campus-building.png')
    no-repeat right top;
    background-size:cover;
    opacity:1;
    mask-image:linear-gradient(
        to left,
        rgba(0,0,0,1),
        rgba(0,0,0,.1)
    );

    z-index:1;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* heading */

.campus-life .section-header{
    position:relative;
    margin-bottom:30px;
}

.campus-life .subtitle{
    display:flex;
    align-items:center;
    gap:10px;
    color:#006b3f;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.campus-life .subtitle span{
    width:28px;
    height:3px;
    background:#f0b323;
}

.campus-life .section-header h2{
    font-size:45px;
    line-height:1.1;
    margin-bottom:12px;
    color:#081431;
    font-family:serif;
}

.section-header h2 span{
    color:#006b3f;
}

.title-line{
    width:70px;
    height:4px;
    background:#f0b323;
    margin-bottom:15px;
}

.section-header p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    max-width:620px;
}

.dots{
    position:absolute;
    top:20px;
    right:38%;
    width:80px;
    height:80px;

    background-image:
    radial-gradient(#d7e8de 3px,transparent 3px);

    background-size:20px 20px;
}

/* cards */

.campus-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.campus-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);

    position:relative;

    transition:.3s;
}

.campus-card:hover{
    transform:translateY(-8px);
}

.campus-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.card-icon{
    width:50px;
    height:50px;
    background:#006b3f;
    border-radius:50%;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:230px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
}

.campus-life .card-content{
    padding:33px 30px 15px;
    text-align:center;
}

.card-content h3{
    font-size:18px;
    color:#081431;
    margin-bottom:8px;
}

.card-content p{
    color:#666;
    line-height:1.7;
    font-size:14px;
}

/* responsive */

@media(max-width:991px){

    .campus-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:50px;
    }

    .campus-bg{
        width:100%;
        opacity:.08;
    }
}

@media(max-width:768px){

    .campus-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:38px;
    }

    .section-header p{
        font-size:17px;
    }
}


.management-section{
    padding:21px 0 50px;
    background:#f8fbf8;
    position:relative;
    overflow:hidden;
}

.management-section .container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* background shapes */

.bg-circle{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#eef6f1;
    opacity:.7;
}

.bg-circle.left{
    left:-220px;
    bottom:50px;
}

.bg-circle.right{
    right:-220px;
    top:20px;
}

/* heading */

.management-section .section-title{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.management-section .sub-title{
    color:#006b3f;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
}

.title-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.title-icon span{
    width:90px;
    height:1px;
    background:#bdd7c7;
}

.management-section .title-icon img{
    width:28px;
}

.management-section .section-title h2{
    font-size:46px;
    color:#081431;
    margin:0;
}

.management-section .section-title p{
    color:#666;
    font-size:17px;
    line-height:1.7;
}

.management-section .line{
    width:90px;
    height:4px;
    background:#f0b323;
    margin:0px auto;
}

/* cards */

.top-member{
    display:flex;
    justify-content:center;
    margin:32px 0 0px;
    position:relative;
}

.member-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    padding:25px;
}

.chief{
    width:470px;
    min-height:160px;
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    z-index:10;
}

.member-top{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.member-image{
    flex-shrink:0;
    position:relative;
}

.member-image img{
    width:100px;
    height:100px;
    border-radius:50%;
    border:3px solid #d9ebe1;
    object-fit:cover;
}

.linkedin{
    position:absolute;
    right:-5px;
    bottom:5px;

    width:40px;
    height:40px;

    border-radius:50%;
    background:#006b3f;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:20px;
}

.member-content{
    flex:1;
}

.member-content h3{
    font-size:18px;
    color:#006b3f;
    margin:0 0 10px;
    line-height:1.3;
}

.member-content h4{
    font-size:14px;
    color:#555;
    line-height:1.5;
    margin:0 0 12px;
}

.small-line{
    width:35px;
    height:2px;
    background:#006b3f;
    margin:0 0 14px 0;
}

.member-content p{
    color:#006b3f;
    font-size:15px;
    margin:0;
}


/* connectors */

.tree-line{
    width:880px;
    height:90px;
    margin:0 auto 0px;
    position:relative;
}

.tree-line .vertical{
    width:2px;
    height:42px;
    background:#8db39d;
    margin:auto;
}

.tree-line .horizontal{
    width:100%;
    height:2px;
    background:#8db39d;
    position:relative;
}


.tree-line{
    position:relative;
    width:990px;
    height:100px;
    margin:0 auto;
}

/* center vertical */
.tree-line .vertical{
    position:absolute;
    top:0;
    left:50%;
    width:2px;
    height:42px;
    background:#95b5a2;
    transform:translateX(-50%);
}

/* horizontal line */
.tree-line .horizontal{
    position:absolute;
    top:42px;
    left:0;
    width:100%;
    height:2px;
    background:#95b5a2;
}

/* four connectors */
.tree-line .branch{
    position:absolute;
    top:42px;
    width:2px;
    height:45px;
    background:#95b5a2;
}

.tree-line .branch:nth-child(3){
    left:0;
}

.tree-line .branch:nth-child(4){
    left:33.33%;
}

.tree-line .branch:nth-child(5){
    left:66.66%;
}

.tree-line .branch:nth-child(6){
    right:0;
}

/* green dots */
.tree-line .branch:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:12px;
    height:12px;
    background:#006b3f;
    border-radius:50%;
    transform:translateX(-50%);
}
.tree-line .horizontal:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:2px;
    height:48px;
    background:#8db39d;
}

.tree-line .horizontal:after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:2px;
    height:48px;
    background:#8db39d;
}

.tree-line .center{
    position:absolute;
    left:50%;
    top:42px;
    width:2px;
    height:48px;
    background:#8db39d;
    transform:translateX(-50%);
}

/* green dots */

.tree-line .dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#006b3f;
    position:absolute;
}

.tree-line .dot.left{
    left:-5px;
    top:38px;
}

.tree-line .dot.center-dot{
    left:50%;
    transform:translateX(-50%);
    top:38px;
}

.tree-line .dot.right{
    right:-5px;
    top:38px;
}

/* grid */

.management-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:-9px;
}

.management-grid .member-card{
    background:#fff;
    border-radius:18px;
    padding:19px 9px;
    min-height:300px;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    display:flex;
    flex-direction:column;
}
.focus-box{
    margin-top:auto;
    border:1px solid #e6ece8;
    border-radius:14px;
    padding:18px;
    display:flex;
    gap:18px;
    background:#fafdfb;
}

.focus-icon{
    font-size:34px;
    color:#006b3f;
    min-width:40px;
}

.focus-box h5{
    margin:0 0 10px;
    color:#006b3f;
    font-size:20px;
}

.focus-box ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:2px 18px;
}

.focus-box li{
    position:relative;
    padding-left:14px;
    color:#555;
    font-size:15px;
    line-height:1.5;
    white-space:nowrap;
}
.focus-box li::before{
    content:"•";
    position:absolute;
    left:0;
    top:0;
    color:#555;
    font-size:18px;
    line-height:1;
}
/* footer */

.bottom-box{
    margin-top:35px;
    background:#fff;
    border-radius:18px;
    padding:24px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.bottom-box .left{
    display:flex;
    align-items:center;
    gap:25px;
}

.circle-icon{
    width:70px;
    height:70px;
    background:#006b3f;
    color:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;
}

.connect-btn{
    background:#006b3f;
    color:#fff;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;

    display:flex;
    align-items:center;
    gap:12px;
}
@media(max-width:1200px){

    .management-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .tree-line{
        display:none;
    }
}
@media(max-width:991px){

.management-grid{
    grid-template-columns:1fr;
}

.bottom-box{
    flex-direction:column;
    gap:20px;
}

.horizontal{
    display:none;
}

.tree-line{
    display:none;
}
}
@media(max-width:768px){

    .management-grid{
        grid-template-columns:1fr;
    }

    .chief{
        width:100%;
    }
}

.our_achievement{
   padding: 20px 0 !important;
}


/* global connection  */
/* GRID */

.global_grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.global_card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    transition:.3s;
}

.global_card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

/* IMAGE */

.global_img{
    margin:0;
    position:relative;
    overflow:hidden;
}

.global_img img{
    width:100%;
    height:245px;
    object-fit:cover;
    transition:.5s;
}

.global_card:hover .global_img img{
    transform:scale(1.08);
}

/* ZOOM BUTTON */

.glry_zoom{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    background:#006837;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    border:3px solid #fff;
    z-index:9;
    transition:.3s;
}

.glry_zoom:hover{
    background:#f4b400;
    color:#fff;
}

/* CONTENT */

.global_card_content{
    background:#fff;
    padding:5px 0px 0px 70px;
    position:relative;
    min-height:100px;
    display:flex;
    align-items:center;
    border-left:6px solid #0c7a43;
}

.global_card:nth-child(even) .global_card_content{
    border-left-color:#f4b400;
}

/* LEFT ICON */

.card_icon{
    position:absolute;
    left:7px;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border-radius:50%;
    background:#eef5ef;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    color:#0c7a43;
}

/* CATEGORY */

.card_tag{
    font-size:15px;
    line-height:1.5;
    font-weight:500;
    color:#111;
    display:block;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .global_grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:991px){

    .global_grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .global_bg{
        padding:20px;
    }

    .global_grid{
        grid-template-columns:1fr;
    }

    .global_dropdown select{
        width:100%;
    }

}
.global_filter_wrap{
    display:flex;
    align-items:center;
    gap:18px;
	justify-content:flex-start;
    margin-bottom:40px;
}

.filter_icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#eef5ef;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.filter_icon i{
    font-size:36px;
    color:#0c7a43;
}

.global_filter_wrap{
    display:flex;
    align-items:center;
    gap:20px;
    justify-content:flex-start;
}

.global_filter_wrap form{
    flex:none;          /* remove flex:1 */
    width:450px;        /* set your desired width */
}



.global_filter_wrap .form-select{
    width:100% !important;
    height:74px;
    border:1px solid #dde2df;
    border-radius:16px;
    padding:0 25px;
    font-size:20px;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.04);
}
.global_dropdown .form-select {
    margin: 0 auto 4px !important;
}
</style>