﻿    /*======= Title Heading Style ===========*/
    .mas_h{
    position: relative;
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #17357a;
    line-height: 1.3;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

/* Golden underline */
.mas_h::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 4px;
    background: #f4b400;
    border-radius: 10px;
}

/* Small decorative line */
.mas_h::before{
    content: '';
    position: absolute;
    left: 100px;
    bottom: 0;
    width: 25px;
    height: 4px;
    background: #17357a;
    border-radius: 10px;
}

.mas_h.center{
    display:block;
    text-align:center;
}

.mas_h.center::after{
    left:50%;
    transform:translateX(-50%);
}

.mas_h.center::before{
    left:calc(50% + 55px);
}
/*======= END Title Heading Style ===========*/

  /* ==========================
   PAGE BANNER / BREADCRUMB
========================== */

.page-banner{
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url('../images/otherPbanner.jpg') center center/cover no-repeat;
}

/* Dark Overlay */
.page-banner .banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11,31,74,0.88) 0%,
        rgba(11,31,74,0.65) 50%,
        rgba(11,31,74,0.35) 100%
    );
}

.page-banner .container{
    position: relative;
    z-index: 2;
}

.banner-content{
    max-width: 700px;
}

.banner-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
    line-height: 1.2;
}

.breadcrumb-custom{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.breadcrumb-custom li{
    color: rgba(255,255,255,.9);
    font-size: 17px;
    font-weight: 500;
}

.breadcrumb-custom li a{
    color: #ffbf00;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-custom li a:hover{
    color: #ffffff;
}

.breadcrumb-custom .active{
    color: #fff;
    font-weight: 600;
}

/* Decorative Shape */
.page-banner::after{
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,191,0,.12);
    border-radius: 50%;
}

.page-banner::before{
    content: "";
    position: absolute;
    right: 120px;
    top: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .page-banner{
        min-height: 260px;
    }

    .banner-content h1{
        font-size: 42px;
    }
}

@media(max-width:767px){

    .page-banner{
        min-height: 220px;
        text-align: center;
    }

    .banner-content h1{
        font-size: 34px;
    }

    .breadcrumb-custom{
        justify-content: center;
    }

    .breadcrumb-custom li{
        font-size: 15px;
    }
}

@media(max-width:575px){

    .page-banner{
        min-height: 200px;
    }

    .banner-content h1{
        font-size: 28px;
    }
}

/*======= END PAGE BANNER / BREADCRUMB Style ===========*/

/* ===========================
   CONTACT PAGE
=========================== */

.contact-section{
    background:#f8f9fc;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#17357a;
    margin-bottom:10px;
}

.section-subtitle{
    color:#666;
    max-width:700px;
    margin:auto;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.contact-card h3{
    color:#17357a;
    font-weight:700;
    margin-bottom:30px;
    border-left:5px solid #f4b400;
    padding-left:15px;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#17357a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-item strong{
    display:block;
    color:#17357a;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#555;
    line-height:1.8;
}

.contact-item a{
    color:#f4b400;
    font-weight:600;
    text-decoration:none;
}

.contact-image{
    overflow:hidden;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.contact-image:hover img{
    transform:scale(1.08);
}

/* MAP */

.map-wrapper{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:none;
}

/* Responsive */

@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .contact-image{
        min-height:350px;
    }

    .map-wrapper iframe{
        height:350px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size:28px;
    }

    .contact-card{
        padding:25px;
    }

    .contact-item{
        gap:12px;
    }

    .contact-item i{
        width:45px;
        height:45px;
        font-size:16px;
    }
}

/*======= Pre-Primary-Middle Style ===========*/
.wing-section{
    padding:80px 0;
}

.wing-img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.feature-area{
    padding:30px 0 80px;
}

.feature-card,
.middle-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.feature-card:hover,
.middle-card:hover{
    transform:translateY(-10px);
}

.feature-card i,
.middle-card i{
    font-size:45px;
    color:#f4b400;
    margin-bottom:20px;
}

.counter-section{
    background:#17357a;
    padding:70px 0;
}

.counter-box{
    color:#fff;
}

.counter-box h2{
    font-size:42px;
    font-weight:700;
}

.future-ready{
    padding:80px 0;
}

.future-box{
    background:linear-gradient(135deg,#17357a,#284da3);
    color:#fff;
    padding:50px;
    border-radius:25px;
    text-align:center;
}

.wing-list{
    padding-left:20px;
}

.wing-list li{
    margin-bottom:12px;
}
/*======= END Pre-Primary-Middle Style ===========*/