/* =====================
HEADER
====================== */
/* TOP HEADER */

.top-header{
    background: #f4c542;
    padding: 8px 0;
    font-size: 14px;
}

.top-header a{
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
}

.top-header i{
    margin-right: 6px;
}

.top-right a{
    margin-left: 15px;
}

/* NAVBAR */

.custom-navbar{
    background: linear-gradient(to right, #002147 70%, #c1121f 30%);
    padding: 10px 0;
}

.navbar-brand img{
    height: 70px;
}

.navbar-nav .nav-link{
    color: #ffffff !important;
    font-weight: 600;
    margin-left: 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover{
    color: #f4c542 !important;
}

.navbar-nav .active{
    color: #f4c542 !important;
}

/* DROPDOWN */

.dropdown-menu{
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.dropdown-item{
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover{
    background: #002147;
    color: #ffffff;
}

/* =========================
   FOOTER
========================= */

.main-footer{
    background:#4b5563;
    color:#ffffff;
    padding-top:60px;
}

.footer-box h4{
    font-size:22px;
    margin-bottom:20px;
    position:relative;
    font-weight:700;
}

.footer-box h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:50px;
    height:3px;
    background:#f4c542;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer-box p{
    color:#e5e7eb;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#e5e7eb;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#f4c542;
    padding-left:5px;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#002147;
    color:#ffffff;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#f4c542;
    color:#000000;
}

.footer-bottom{
    background:#374151;
    padding:15px 0;
    margin-top:40px;
    font-size:15px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    left:20px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
    color:#ffffff;
}

/* =========================
   SCROLL TO TOP
========================= */

#scrollTopBtn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#002147;
    color:#ffffff;
    font-size:20px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:0.3s;
}

#scrollTopBtn:hover{
    background:#f4c542;
    color:#000000;
}

/* =========================
   SLIDER
========================= */

.slider-img{
    height:60vh;
    object-fit:cover;
}

.carousel-caption{
    bottom:25%;
    background:rgba(0,0,0,0.45);
    padding:30px;
    border-radius:10px;
}

.carousel-caption h1{
    font-size:55px;
    font-weight:700;
}

.carousel-caption p{
    font-size:20px;
}

.slider-btn{
    display:inline-block;
    margin-top:15px;
    background:#f4c542;
    color:#000;
    padding:12px 28px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.slider-btn:hover{
    background:#ffffff;
    color:#000;
}

/* =========================
   COMMON SECTION
========================= */

section{
    padding:80px 0;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#002147;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/* =========================
   INFO BOXES
========================= */

.info-section{
    background:#f3f4f6;
}

.info-box{
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.info-box:hover{
    transform:translateY(-8px);
}

.info-box img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.info-content{
    padding:25px;
}

.info-content h3{
    font-size:24px;
    margin-bottom:15px;
    color:#002147;
}

.info-content a{
    color:#c1121f;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   TEAM SECTION
========================= */

.team-section{
    background:#ffffff;
}

.col-lg-2-4{
    width:20%;
}

.team-card{
    background:#ffffff;
    text-align:center;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
    border-bottom:4px solid #002147;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:170px;
    height:170px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
    border:5px solid #002147;
    transition:0.4s;
}

.team-card:hover img{
    border-color:#c1121f;
}

.team-card h5{
    font-size:22px;
    color:#002147;
    margin-bottom:8px;
    font-weight:700;
}

.team-card span{
    color:#777;
    font-size:16px;
    font-weight:500;
}

/* =========================
   CHAIRMAN SECTION
========================= */

.chairman-section{
    background:#f9fafb;
}

.chairman-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.chairman-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#002147;
}

.chairman-content p{
    line-height:1.9;
    color:#555;
}

.theme-btn{
    display:inline-block;
    margin-top:15px;
    background:#002147;
    color:#ffffff;
    padding:12px 30px;
    border-radius:5px;
    text-decoration:none;
    transition:0.3s;
}

.theme-btn:hover{
    background:#c1121f;
    color:#ffffff;
}

/* =========================
   ACHIEVEMENT SECTION
========================= */

.achievement-section{
    padding: 90px 0;
    background: #f8f9fa;
}

.achievement-card{
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.achievement-image{
    background: #fff;
    text-align: center;
    padding: 20px;
}

.achievement-image img{
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    display: block;
}

.achievement-content{
    padding: 50px;
}

.achievement-content h2{
    font-size: 42px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 25px;
    text-align: center;
}

.achievement-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* =========================
   NEWS SECTION
========================= */

.news-section{
    background:#f3f4f6;
}

.news-card{
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.news-content{
    padding:25px;
}

.news-content span{
    color:#999;
    font-size:14px;
}

.news-content h4{
    margin:15px 0;
    color:#002147;
}

.news-content a{
    text-decoration:none;
    color:#c1121f;
    font-weight:600;
}

/* =========================
   ABOUT HERO SECTION
========================= */

.about-hero-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.about-hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.about-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background:rgba(0, 0, 0, 0.55); */

    display:flex;
    align-items:center;
    justify-content:center;
}

.about-hero-content{
    text-align:center;
    color:#ffffff;
}

.about-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.about-hero-content p{
    font-size:24px;
    font-weight:400;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-content-section{
    background:#f5f7fa;
    padding:100px 0;
}

.about-content-box{
    background:#ffffff;
    padding:60px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-content-box p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
    text-align:justify;
}

/* =========================
   SPLIT DROPDOWN MENU
========================= */

.dropdown-toggle-split::after{
    margin-left:0;
}

.navbar .dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    padding:10px 0;
}

.navbar .dropdown-item{
    padding:10px 20px;
    transition:0.3s;
}

.navbar .dropdown-item:hover{
    background:#002147;
    color:#ffffff;
}

/* =========================
   VISION HERO SECTION
========================= */

.vision-hero-section{
    position:relative;
    width:100%;
    height:85vh;
    overflow:hidden;
}

.vision-hero-img{
    width:100%;
    height:110%;
    object-fit:cover;
}

.vision-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background:rgba(0,0,0,0.55); */

    display:flex;
    align-items:center;
    justify-content:center;
}

.vision-hero-content{
    text-align:center;
    color:#ffffff;
}

.vision-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.vision-hero-content p{
    font-size:24px;
}

/* =========================
   VISION MISSION SECTION
========================= */

.vision-mission-section{
    background:#f5f7fa;
    padding:100px 0;
}

.vision-box,
.mission-box{
    background:#ffffff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    height:100%;
    transition:0.4s;
    text-align:center;
}

.vision-box:hover,
.mission-box:hover{
    transform:translateY(-10px);
}

.vision-box{
    border-top:6px solid #002147;
}

.mission-box{
    border-top:6px solid #c1121f;
}

.vision-icon,
.mission-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#ffffff;
}

.vision-icon{
    background:#002147;
}

.mission-icon{
    background:#c1121f;
}

.vision-box h2,
.mission-box h2{
    font-size:36px;
    margin-bottom:25px;
    font-weight:700;
    color:#002147;
}

.vision-box p,
.mission-box p{
    font-size:18px;
    line-height:2;
    color:#555;
    text-align:justify;
}

/* =========================
   TRUSTEES HERO SECTION
========================= */

.trustees-hero-section{
    position:relative;
    width:100%;
    height:60vh;
    background:url('../images/trustees/trustees-banner.jpg');
    background-size:cover;
    background-position:center;
}

.trustees-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);

    display:flex;
    align-items:center;
    justify-content:center;
}

.trustees-hero-content{
    text-align:center;
    color:#ffffff;
}

.trustees-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.trustees-hero-content p{
    font-size:22px;
}

/* =========================
   TRUSTEES SECTION
========================= */

.trustees-section{
    background:#f5f7fa;
    padding:100px 0;
}

.trustee-row{
    margin-bottom:80px;
}

.trustee-image img{
    width:70%;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
    transition:0.4s;
}

.trustee-image img:hover{
    transform:scale(1.03);
}

.trustee-content{
    background:#ffffff;
    padding:30px 40px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    position:relative;
}

.trustee-content::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#002147;
    border-radius:25px 0 0 25px;
}

.trustee-content h2{
    font-size:36px;
    color:#002147;
    font-weight:700;
    margin-bottom:5px;
    margin-top:0;
}

.trustee-content h5{
    color:#c1121f;
    margin-bottom:25px;
    font-size:22px;
}

.trustee-content p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:0;
    color:#555;
    text-align:justify;
}

.trustee-social{
    margin-top:30px;
}

.trustee-social a{
    width:50px;
    height:50px;
    background:#002147;
    color:#ffffff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:12px;
    text-decoration:none;
    transition:0.3s;
    font-size:18px;
}

.trustee-social a:hover{
    background:#c1121f;
    transform:translateY(-5px);
}

/* =========================
   PRINCIPALS SECTION
========================= */

.principals-section{
    background:#ffffff;
    padding:100px 0;
}

.principal-card{
    background:#f9fafc;
    border-radius:20px;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
    border-left:6px solid #002147;
}

.principal-card:hover{
    transform:translateY(-8px);
}

.principal-image{
    height:100%;
}

.principal-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 8px 15px rgba(0,0,0,0.12);
    display:block;
}

.principal-content h3{
    font-size:28px;
    color:#002147;
    font-weight:700;
    margin-bottom:5px;
}

.principal-content h5{
    color:#c1121f;
    font-size:18px;
    margin-bottom:15px;
}

.principal-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:0;
    text-align:justify;
    font-style:italic;
}

/* =========================
   FOUNDER HERO SECTION
========================= */

.founder-hero-section{
    position:relative;
    width:100%;
    height:55vh;
    background:url('../images/founder/founder-banner.jpg');
    background-size:cover;
    background-position:center;
}

.founder-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);

    display:flex;
    align-items:center;
    justify-content:center;
}

.founder-hero-content{
    text-align:center;
    color:#ffffff;
}

.founder-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.founder-hero-content p{
    font-size:22px;
}

/* =========================
   FOUNDER MESSAGE SECTION
========================= */

.founder-message-section{
    background:#f5f7fa;
    padding:100px 0;
}

.founder-card{
    background:#ffffff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.founder-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.founder-content{
    height:100%;
}

.founder-content h2{
    font-size:46px;
    color:#002147;
    font-weight:700;
    margin-bottom:8px;
}

.founder-content h5{
    color:#c1121f;
    font-size:24px;
    margin-bottom:30px;
}

.founder-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    text-align:justify;
    margin-bottom:20px;
}

.founder-signature{
    margin-top:40px;
    border-top:2px solid #e5e5e5;
    padding-top:20px;
}

.founder-signature h4{
    color:#002147;
    font-size:28px;
    margin-bottom:5px;
    font-weight:700;
}

.founder-signature span{
    color:#777;
    font-size:17px;
}

/* =========================
   NETWORK HERO SECTION
========================= */

.network-hero-section{
    position:relative;
    width:100%;
    height:55vh;
    background:url('../images/network/network-banner.jpg');
    background-size:cover;
    background-position:center;
}

.network-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);

    display:flex;
    align-items:center;
    justify-content:center;
}

.network-hero-content{
    text-align:center;
    color:#ffffff;
}

.network-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.network-hero-content p{
    font-size:22px;
}

/* =========================
   NETWORK SECTION
========================= */

.network-section{
    background:#f5f7fa;
    padding:100px 0;
}

.network-card{
    background:#ffffff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    margin-bottom:60px;
    transition:0.4s;
}

.network-card:hover{
    transform:translateY(-8px);
}

.network-image img{
    width:70%;
    display:block;
    margin:auto;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
    transition:0.4s;
}

.network-image img:hover{
    transform:scale(1.03);
}

.network-content{
    padding-top:0;
}

.network-content h2{
    font-size:42px;
    color:#002147;
    font-weight:700;
    margin-bottom:8px;
    margin-top:0;
}

.network-content h5{
    color:#c1121f;
    font-size:24px;
    margin-bottom:25px;
}

.network-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    text-align:justify;
    margin-bottom:30px;
}

.network-btn{
    display:inline-block;
    padding:14px 32px;
    background:#002147;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s;
    font-weight:600;
}

.network-btn:hover{
    background:#c1121f;
    color:#ffffff;
}

/* =========================
   ACTIVITIES HERO SECTION
========================= */

.activities-hero-section{
    position:relative;
    width:100%;
    height:55vh;
    background:url('../images/activities/activities-banner.jpg');
    background-size:cover;
    background-position:center;
}

.activities-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);

    display:flex;
    align-items:center;
    justify-content:center;
}

.activities-hero-content{
    text-align:center;
    color:#ffffff;
}

.activities-hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.activities-hero-content p{
    font-size:22px;
}

/* =========================
   ACTIVITIES SECTION
========================= */

.activities-section{
    background:#f5f7fa;
    padding:100px 0;
}

.activity-box{
    background:#ffffff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

.activity-box:hover{
    transform:translateY(-10px);
}

.activity-box img{
    width:70%;
    max-height:220px;
    object-fit:contain;
    display:block;
    margin:30px auto 10px;
    transition:0.4s;
}

.activity-box:hover img{
    transform:scale(1.03);
}

.activity-content{
    padding:30px;
    text-align:center;
}

.activity-content h3{
    font-size:28px;
    color:#002147;
    font-weight:700;
    margin-bottom:18px;
}

.activity-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.activity-content a{
    display:inline-block;
    padding:12px 28px;
    background:#002147;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    transition:0.3s;
    font-weight:600;
}

.activity-content a:hover{
    background:#c1121f;
    color:#ffffff;
}

/* =========================
   PAHEL EK KOSHISH SECTION
========================= */

/* =========================
   HERO SECTION
========================= */

.activity-page-hero{
    background:linear-gradient(135deg,#002147,#0d3b66);
    padding:120px 0;
}

.activity-page-content{
    text-align:center;
    color:#ffffff;
}

.activity-page-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.activity-page-content p{
    font-size:22px;
}

/* =========================
   YEAR BUTTONS
========================= */

.year-buttons-section{
    background:#ffffff;
    padding:50px 0;
}

.year-btn{
    display:inline-block;
    padding:14px 35px;
    background:#f1f3f6;
    color:#002147;
    text-decoration:none;
    border-radius:50px;
    margin:10px;
    transition:0.3s;
    font-weight:600;
}

.year-btn:hover{
    background:#c1121f;
    color:#ffffff;
}

.active-year{
    background:#002147;
    color:#ffffff;
}

/* =========================
   CONTENT SECTION
========================= */

.year-content-section{
    background:#f5f7fa;
    padding:50px 0;
}

.year-content-card{
    background:#ffffff;
    padding:45px;
    border-radius:30px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.year-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.year-content h2{
    font-size:42px;
    color:#002147;
    margin-bottom:25px;
}

.year-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    text-align:justify;
}

/* =========================
   GALLERY SECTION
========================= */

.year-gallery-section{
    padding:100px 0;
    background:#ffffff;
}

.gallery-card{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.gallery-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

.team-full-image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.4s;
    cursor: pointer;
}

.team-full-image img:hover{
    transform: scale(1.02);
}

/* =========================
   SCHOOL PAGE
========================= */

.school-page-hero{
    background: linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('../images/network/network-bg.jpg');

    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.school-page-hero-content h1{
    font-size: 48px;
    font-weight: 700;
}

.school-page-hero-content p{
    font-size: 18px;
    margin-top: 15px;
}

.school-page-section{
    padding: 80px 0;
    background: #f8f9fa;
}

.school-page-card{
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.school-page-image img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.school-page-content h2{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d6efd;
}

.school-page-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.school-visit-btn{
    display: inline-block;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.school-visit-btn:hover{
    background: #084298;
    color: #fff;
}

/* =========================
   PARENTS SUPPORT PAGE
========================= */

.parents-support-hero img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* =========================
   COMMON INFO SECTIONS
========================= */

.parents-support-info-section,
.parents-support-why-section{
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parents-support-info-section{
    background-image: url('../images/parents-support/what-bg.jpg');
}

.parents-support-why-section{
    background-image: url('../images/parents-support/why-bg.jpg');
}

.parents-support-overlay{
    padding: 80px 0;
}

.parents-support-content{
    max-width: 900px;
    margin: auto;
    text-align: justify;
    color: #000;
    background: rgba(255,255,255,0.75);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.parents-support-content h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0d6efd;
}

.parents-support-content p{
    font-size: 18px;
    line-height: 2;
}

.parents-support-content ul{
    padding-left: 25px;
    margin-top: 20px;
}

.parents-support-content ul li{
    margin-bottom: 12px;
    line-height: 1.9;
}

.parents-support-hero{
    position: relative;
}

.parents-support-hero img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.parents-support-hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.parents-support-hero-content h1{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* =========================
   PARENTS SUPPORT - SCHOOL SECTION
========================= */

.parents-support-school-section{
    padding: 90px 0;
    background: #f8f9fa;
}

.parents-school-card{
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

.parents-school-card:hover{
    transform: translateY(-8px);
}

.parents-school-card img{
    width: 70%;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
}

.parents-school-card h4{
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
}

/* =========================
   BROCHURE PAGE
========================= */

.brochure-hero-section{
    background: linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('../images/brochure/brochure-bg.jpg');

    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
    color: #fff;
}

.brochure-content h1{
    font-size: 60px;
    font-weight: 700;
}

.brochure-content p{
    font-size: 20px;
    margin-top: 15px;
}

/* =========================
   DOWNLOAD SECTION
========================= */

.brochure-download-section{
    padding: 80px 0;
    background: #f8f9fa;
}

.brochure-download-card{
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.brochure-download-card h2{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d6efd;
}

.brochure-download-card p{
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
}

.brochure-download-btn{
    display: inline-block;
    padding: 14px 35px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.4s;
}

.brochure-download-btn:hover{
    background: #084298;
    color: #fff;
}

/* =========================
   PDF VIEWER
========================= */

.brochure-viewer-section{
    padding: 80px 0;
    background: #fff;
}

.pdf-viewer-box{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.pdf-viewer-box iframe{
    border: none;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero-section{
    background: linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url('../images/contact/contact-bg.jpg');

    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
    color: #fff;
}

.contact-hero-content h1{
    font-size: 60px;
    font-weight: 700;
}

.contact-hero-content p{
    font-size: 20px;
    margin-top: 15px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-page-section{
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-page-card{
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-address p{
    font-size: 20px;
    line-height: 2;
    color: #444;
    margin-top: 20px;
}

/* =========================
   MAP SECTION
========================= */

.contact-map-section{
    padding: 80px 0;
    background: #fff;
}

.contact-map-box{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map-box iframe{
    border: 0;
}