﻿/*=========================
     BREADCRUMB BANNER
=========================*/

.about-banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../IMAGES/banner_image.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* DARK OVERLAY */
.banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,20,60,.75),
            rgba(0,20,60,.75)
        );

    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-line {
    width: 100px;
    height: 4px;
    background: #fdb913;
    margin: auto;
    border-radius: 30px;
    margin-bottom: 25px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);

    padding: 15px 30px;

    border-radius: 50px;
}

.breadcrumb-box a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-box span {
    color: white;
}

/*=========================
   BREADCRUMB BANNER END
=========================*/

/**=============== About Page Style =================**/
/*==================================
      ABOUT SECTION
==================================*/

.about-section {
    padding: 100px 0;
    overflow: hidden;
}

/* IMAGE AREA */

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;

    border: 6px solid #fff;

    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

/* YELLOW SHAPE */

.shape-bg {
    width: 180px;
    height: 180px;

    background: #fdb913;

    position: absolute;
    left: 40px;
    bottom: -18px;

    border-radius: 10px;

    z-index: 1;
}

/* DOT PATTERN */

.dot-pattern {
    position: absolute;
    left: -20px;
    bottom: -15px;

    width: 120px;
    height: 120px;

    z-index: 0;

    background-image:
        radial-gradient(#2563eb 2px, transparent 2px);

    background-size: 14px 14px;
}

/* EXPERIENCE BOX */

.experience-box {
    position: absolute;
    right: -12px;
    bottom: 12px;

    background: #062b69;
    color: #fff;

    padding: 7px 10px;

    border-radius: 12px;

    text-align: center;

    z-index: 5;

    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.experience-box h3 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #fdb913;
}

.experience-box span {
    font-size: 14px;
}

/* CONTENT */

.sub-title {
    color: #2563eb;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-content h2 {
    font-size: 45px;
    font-weight: 800;

    color: #111827;

    margin-top: 10px;
    margin-bottom: 10px;
}

.heading-line {
    width: 80px;
    height: 4px;

    background: #fdb913;

    border-radius: 30px;

    margin-bottom: 25px;
}

.about-content p {
    color: #555;

    line-height: 32px;
    font-size: 16px;

    margin-bottom: 20px;
}

/* FEATURES */

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;

    margin-top: 30px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 20px;

    background: #f8faff;

    border-left: 4px solid #fdb913;

    border-radius: 8px;

    transition: .3s;
}

.feature-box:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

.feature-box i {
    color: #062b69;
    font-size: 22px;
}

.feature-box span {
    font-weight: 600;
    color: #222;
}

/* BUTTON */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #062b69;
    color: #fff;

    padding: 15px 35px;

    text-decoration: none;

    border-radius: 8px;

    font-weight: 600;

    transition: .4s;
}

.about-btn:hover {
    background: #fdb913;
    color: #000;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-content{
        margin-top:50px;
    }

    .about-content h2{
        font-size:40px;
    }

    .experience-box{
        right:10px;
    }
}

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-box{
        padding:7px 10px;
        bottom:-16px;
    }

    .experience-box h3{
        font-size:28px;
    }

    .shape-bg{
        width:120px;
        height:120px;
        left:15px;
    }

    .dot-pattern{
        width:80px;
        height:80px;
    }
}

@media(max-width:768px)
{
    .about-banner{
        height:320px;
    }

    .banner-content h1{
        font-size:40px;
    }

    .breadcrumb-box{
        padding:12px 20px;
        font-size:14px;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-section{
        padding:70px 0;
    }

    .shape-box{
        width:120px;
        height:120px;
    }
}

@media(max-width:576px)
{
    .banner-content h1{
        font-size:32px;
    }

    .breadcrumb-box{
        flex-wrap:wrap;
        justify-content:center;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:15px;
        line-height:28px;
    }
}
/**================ END About Page Style ================**/

/**================ Vision & Mission Page Style ================**/
    .vision-mission-section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#062b69;
}

.title-line{
    width:80px;
    height:4px;
    background:#fdb913;
    margin:15px auto 0;
    border-radius:50px;
}

.vm-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.vm-image{
    flex:0 0 40%;
}

.vm-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    border:5px solid #fff;
}

.vm-content{
    flex:1;
}

.vm-card{
    padding:30px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.vm-card h3{
    color:#062b69;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.vm-card h3 i{
    color:#fdb913;
    margin-right:10px;
}

.vm-card p{
    color:#555;
    line-height:30px;
    text-align:justify;
}

.mission-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.mission-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:15px;
    line-height:28px;
    color:#444;
}

.mission-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    background:#fdb913;
    color:#062b69;
    font-weight:bold;
    text-align:center;
    line-height:22px;
    border-radius:50%;
}

/* Responsive */

@media(max-width:991px){

    .vm-wrapper{
        flex-direction:column;
    }

    .vm-image{
        width:100%;
    }

    .section-title h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .vision-mission-section{
        padding:60px 0;
    }

    .vm-card{
        padding:20px;
    }

    .vm-card h3{
        font-size:24px;
    }
}
/**================ END Vision & Mission Page Style ================**/

/* ==========================
   DIRECTOR'S DESK
========================== */

.director-section{
    padding:90px 0;
}

.director-header{
    text-align:center;
    margin-bottom:50px;
}

.director-header span{
    color:#2563eb;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.director-header h2{
    font-size:50px;
    font-weight:800;
    color:#0b1f4d;
    margin-top:10px;
}

.director-line{
    width:80px;
    height:4px;
    background:#fdb913;
    margin:15px auto;
    border-radius:50px;
}

/* Newspaper Style Content */

.director-content{
    font-size:17px;
    line-height:34px;
    text-align:justify;
    color:#444;
    position:relative;
}

/* Photo */

.director-photo{
    width:340px;
    float:left;

    margin-right:30px;
    margin-bottom:20px;

    border-radius:15px;

    border:6px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Quote */

.quote-box{
    background:#0b2f75;
    color:#fff;

    padding:20px;

    border-left:5px solid #fdb913;

    font-style:italic;

    margin-bottom:25px;

    border-radius:10px;
}

/* Drop Cap */

.drop-cap{
    float:left;
    font-size:70px;
    line-height:55px;
    padding-right:10px;

    color:#fdb913;
    font-weight:800;
}

/* Signature */

.director-signature{
    text-align:right;
    margin-top:40px;
    clear:both;
}

.director-signature h4{
    color:#0b2f75;
    font-size:28px;
    margin-bottom:0;
    font-weight:700;
}

.director-signature span{
    color:#666;
    font-size:16px;
}

/* Responsive */

@media(max-width:991px){

    .director-photo{
        width:280px;
    }

    .director-header h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .director-photo{
        width:100%;
        float:none;

        margin-right:0;
        margin-bottom:25px;
    }

    .director-header h2{
        font-size:32px;
    }

    .director-content{
        line-height:30px;
    }

    .drop-cap{
        font-size:55px;
    }
}
/* ==========================
  END DIRECTOR'S DESK
========================== */

/*==================================
      UNIVERSAL HEADING
==================================*/

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading .sub-title{
    display:inline-block;

    color:#2563eb;

    font-size:14px;
    font-weight:700;

    letter-spacing:4px;
    text-transform:uppercase;

    margin-bottom:10px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;

    color:#0b1f4d;

    margin-bottom:15px;

    line-height:1.2;
}

.heading-divider{
    position:relative;

    width:140px;
    height:20px;

    margin:0 auto 20px;
}

.heading-divider:before{
    content:'';

    position:absolute;
    top:50%;
    left:0;

    width:100%;
    height:2px;

    background:#dcdcdc;
}

.heading-divider span{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:55px;
    height:6px;

    background:#fdb913;

    border-radius:50px;
}

.section-heading p{
    max-width:700px;
    margin:auto;

    color:#666;

    font-size:17px;
    line-height:30px;
}

/* Responsive */

@media(max-width:768px){

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:15px;
        line-height:26px;
    }

    .heading-divider{
        width:100px;
    }
}

/*=================================
        CLASS ROOM SECTION
=================================*/

.classroom-section{
    padding:90px 0;
}

/* Images */

.classroom-images{
    position:relative;
    padding-right:50px;
}

.img-main{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    border:5px solid #fff;
}

.img-small{
    width:60%;
    position:absolute;
    right:0;
    bottom:-40px;

    border-radius:15px;
    border:5px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Content */

.content-tag{
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.classroom-content h3{
    font-size:42px;
    font-weight:800;
    color:#0b1f4d;
    margin:10px 0 20px;
}

.classroom-content p{
    color:#555;
    line-height:32px;
    text-align:justify;
}

/* Smart Class Card */

.smart-class-box{
    display:flex;
    gap:20px;

    background:#f8faff;

    padding:25px;
    margin-top:25px;

    border-radius:10px;
}

.icon-box{
    width:70px;
    height:70px;

    min-width:70px;

    background:#0b2f75;
    color:#fff;  

    text-align:center;
    line-height:70px;

    border-radius:50%;
    font-size:28px;
}

.smart-class-box h4{
    color:#0b2f75;
    font-weight:700;
    margin-bottom:10px;
}

/* Features */

.classroom-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.feature-item{
    background:#fff;
    padding:15px;

    border:1px solid #eee;
    border-radius:8px;

    font-weight:600;
}

.feature-item i{
    color:#fdb913;
    margin-right:8px;
}

/* Responsive */

@media(max-width:991px){

    .classroom-images{
        padding-right:0;
        margin-bottom:80px;
    }

    .classroom-content h3{
        font-size:34px;
    }
}

@media(max-width:768px){

    .img-small{
        width:55%;
        bottom:-20px;
    }

    .classroom-content h3{
        font-size:28px;
    }

    .smart-class-box{
        flex-direction:column;
        text-align:center;
        border-left:5px solid #fdb913;
    }

    .classroom-features{
        grid-template-columns:1fr;
    }
}

/*=================================
         LIBRARY SECTION
=================================*/

.library-section{
    padding:100px 0;
}

/* Images */

.library-images{
    position:relative;
    padding-left:50px;
}

.library-main-img{
    width:100%;
    border-radius:15px;
    border:5px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.library-small-img{
    width:60%;

    position:absolute;
    left:0;
    bottom:-40px;

    border-radius:15px;
    border:5px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* Counter Box */

.library-count-box{
    position:absolute;
    top:20px;
    right:-10px;

    background:#0b2f75;
    color:#fff;

    padding:20px 25px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.library-count-box h3{
    font-size:32px;
    margin:0;
    color:#fdb913;
    font-weight:800;
}

.library-count-box span{
    font-size:14px;
}

/* Content */

.content-tag{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.library-content h3{
    font-size:42px;
    font-weight:800;
    color:#0b1f4d;
    margin:10px 0 20px;
}

.library-content p{
    color:#555;
    line-height:32px;
    text-align:justify;
}

/* Highlight Card */

.library-highlight{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-top:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.highlight-icon{
    width:70px;
    height:70px;

    min-width:70px;

    background:#0b2f75;
    color:#fff;

    border-radius:50%;

    text-align:center;
    line-height:70px;

    font-size:28px;
}

.library-highlight h4{
    color:#0b2f75;
    font-weight:700;
}

/* Features */

.library-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

    margin-top:25px;
}

.feature-item{
    background:#fff;

    padding:15px;

    border-radius:8px;

    border:1px solid #eee;

    font-weight:600;
}

.feature-item i{
    color:#fdb913;
    margin-right:8px;
}

/* Responsive */

@media(max-width:991px){

    .library-images{
        padding-left:0;
        margin-bottom:80px;
    }

    .library-content h3{
        font-size:34px;
    }
}

@media(max-width:768px){

    .library-small-img{
        width:55%;
        bottom:-20px;
    }

    .library-content h3{
        font-size:28px;
    }

    .library-highlight{
        flex-direction:column;
        text-align:center;
        border-left:5px solid #fdb913;
    }

    .library-features{
        grid-template-columns:1fr;
    }

    .library-count-box{
        right:10px;
    }
    
    .facility-highlight
    {
        border-left:5px solid #fdb913;
    }
    
    .facility-features
    {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/**============= Lab & Play Ground  =================**/
.lab-section
{
     padding:100px 0;
}

.playground-section
{
     padding:100px 0;
}

.facility-images{
    position:relative;
    padding-right:50px;
}

.facility-main-img{
    width:100%;
    border-radius:15px;
    border:5px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.facility-small-img{
    width:60%;
    position:absolute;
    right:0;
    bottom:-40px;

    border-radius:15px;
    border:5px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.facility-count-box{
    position:absolute;
    top:13px;
    left:20px;
    background:#0b2f75;
    color:#fff;
    padding:5px 8px;
    border-radius:12px;
    text-align:center;
}

.facility-count-box h3{
    margin:0;
    color:#fdb913;
    font-size:30px;
    font-weight:800;
}

.content-tag{
    color:#2563eb;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.facility-content h3{
    font-size:42px;
    font-weight:800;
    color:#0b1f4d;
    margin:10px 0 20px;
}

.facility-content p{
    color:#555;
    line-height:32px;
    text-align:justify;
}

.facility-highlight{
    display:flex;
    gap:20px;
    background:#f8faff;
    padding:25px;
    margin-top:25px;
    border-radius:10px;
}

.highlight-icon{
    width:70px;
    height:70px;

    background:#0b2f75;
    color:#fff;

    border-radius:50%;

    text-align:center;
    line-height:70px;

    font-size:28px;

    min-width:70px;
}

.facility-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;

    margin-top:25px;
}

.feature-item{
    background:#fff;
    padding:15px;

    border-radius:8px;
    border:1px solid #eee;

    font-weight:600;
}

.feature-item i{
    color:#fdb913;
    margin-right:8px;
}