
/* MAIN INTRO */

/* .hero{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#f8fafc;
    padding:2rem;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:3rem;
    color:#0f172a;
    margin-bottom:1rem;
}

.hero p{
    font-size:1.1rem;
    color:#475569;
    line-height:1.8;
    margin-bottom:2rem;
}

.btn{
    display:inline-block;
    padding:.9rem 2rem;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:.5rem;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
} */




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

.hero{

    position:relative;

    width:100%;

    min-height:85vh;

    background:url("school.jpeg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;
}

/* Dark overlay */

.overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);

    z-index:1;
}

/* Content */

.hero-content{

    position:relative;

    z-index:2;

    max-width:850px;

    padding:20px;

    color:#fff;
}

.hero-content h1{

    font-size:3.5rem;

    margin-bottom:20px;

    font-weight:700;

    line-height:1.2;
}

.hero-content p{

    font-size:1.2rem;

    color:#e5e7eb;

    margin-bottom:35px;

    line-height:1.7;
}

/* Button */

.hero-btn{

    display:inline-block;

    padding:16px 40px;

    background:#F5BE24;

    color:#000;

    text-decoration:none;

    font-weight:700;

    border-radius:40px;

    transition:.3s;
}

.hero-btn:hover{

    background:#E91568;

    color:#fff;

    transform:translateY(-3px);
}

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

@media (max-width:992px){

.hero{

    min-height:75vh;
}

.hero-content h1{

    font-size:2.8rem;
}

.hero-content p{

    font-size:1.05rem;
}

}

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

@media (max-width:768px){

.hero{

    min-height:65vh;

    padding:80px 20px;
}

.hero-content h1{

    font-size:2rem;
}

.hero-content p{

    font-size:1rem;

    margin-bottom:25px;
}

.hero-btn{

    padding:14px 30px;

    font-size:15px;
}

}


/* info 1 */

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

.villian{

    width:100%;

    background:#ffffff;

    padding:90px 20px;
}

.villian-content{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;
}

/* Left Side */

.villian-text{

    flex:1;
}

.villian-text h1{

    font-size:3.7rem;

    font-weight:800;

    line-height:1.1;

    color:#1f2937;

    margin-bottom:25px;
}

.villian-text h1 span{

    color:#D9924A;
}

.villian-text p{

    font-size:1.1rem;

    color:#6b7280;

    line-height:1.8;

    max-width:520px;

    margin-bottom:35px;
}

/* Buttons */

.villian-buttons{

    display:flex;

    gap:18px;
}

.villian-buttons a{

    text-decoration:none;

    padding:15px 34px;

    border-radius:8px;

    font-size:1rem;

    font-weight:600;

    transition:.3s;
}

.btn-primary{

    background:#1f2937;

    color:white;
}

.btn-primary:hover{

    background:#111827;

    transform:translateY(-3px);
}

.btn-secondary{

    background:#dbe4ff;

    color:#1f2937;
}

.btn-secondary:hover{

    background:#c7d2fe;

    transform:translateY(-3px);
}

/* Right Side */

.villian-image{

    flex:1;

    display:flex;

    justify-content:center;
}

.villian-image img{

    width:100%;

    max-width:470px;

    border-radius:8px;

    object-fit:cover;

    box-shadow:0 12px 35px rgba(0,0,0,.12);
}


@media(max-width:900px){

    .villian{

        padding:60px 20px;
    }

    .villian-content{

        flex-direction:column-reverse;

        text-align:center;

        gap:40px;
    }

    .villian-text h1{

        font-size:2.6rem;
    }

    .villian-text p{

        margin:auto auto 30px;
    }

    .villian-buttons{

        justify-content:center;

        flex-wrap:wrap;
    }

    .villian-image img{

        max-width:100%;
    }

}

@media(max-width:500px){

    .villian-text h1{

        font-size:2rem;
    }

    .villian-buttons{

        flex-direction:column;
    }

    .villian-buttons a{

        width:100%;

        text-align:center;
    }

}


/* program section */

/* ===========================
      PROGRAM SECTION
=========================== */

.programs-section{

    padding:80px 20px;
    background:#fff;
}

.programs-container{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}


/* ===========================
      LEFT IMAGES
=========================== */

.program-images{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.img{

    width:100%;
    object-fit:cover;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    transition:.4s;
}

.img:hover{

    transform:translateY(-8px);
}

/* Image Shapes */

.img1{

    height:360px;

    border-radius:120px 120px 20px 20px;
}

.img2{

    height:220px;

    border-radius:50%;
    border:3px dashed #f59e0b;
    padding:8px;
}

.img3{

    grid-column:1/3;

    height:260px;

    border-radius:25px 100px 25px 100px;
}


/* ===========================
      CONTENT
=========================== */

.program-content{

    display:flex;
    flex-direction:column;

    gap:35px;
}

.program-box{

    display:flex;

    gap:20px;

    align-items:flex-start;
}

.icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#F57C00;

    display:flex;

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

    flex-shrink:0;
}

.icon i{

    color:white;

    font-size:30px;
}

.program-box h3{

    color:#1E3A8A;

    font-size:28px;

    margin-bottom:12px;
}

.program-box p{

    color:#555;

    line-height:1.8;

    font-size:17px;
}


/* ===========================
      QUOTE
=========================== */

.quote-box{

    background:#eef5f6;

    padding:30px;

    border-radius:18px;

    border-left:6px solid #F57C00;
}

.quote-box p{

    color:#444;

    font-size:18px;

    line-height:1.8;
}


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

@media(max-width:992px){

.programs-container{

    grid-template-columns:1fr;
}

.program-content{

    margin-top:30px;
}

}


@media(max-width:768px){

.program-images{

    grid-template-columns:1fr;
}

.img3{

    grid-column:auto;
}

.img1{

    height:320px;
}

.img2{

    height:260px;
    border-radius:25px;
    border:none;
    padding:0;
}

.img3{

    height:240px;
}

.program-box{

    flex-direction:column;
    text-align:center;
    align-items:center;
}

.quote-box{

    text-align:center;
}

.program-box h3{

    font-size:24px;
}

.program-box p{

    font-size:16px;
}

}


@media(max-width:480px){

.programs-section{

    padding:60px 15px;
}

.img1{

    height:260px;
}

.img2{

    height:220px;
}

.img3{

    height:220px;
}

.icon{

    width:60px;
    height:60px;
}

.icon i{

    font-size:24px;
}

.program-box h3{

    font-size:22px;
}

}



/* hear from our founders */

/* ==========================
   HEAR FROM OUR FOUNDERS
========================== */

.founders-section{
    width:100%;
    padding:90px 7%;
    background:#f8fafc;
}

/* ==========================
      SECTION HEADING
========================== */

.founders-heading{
    max-width:750px;
    margin:0 auto 70px;
    text-align:center;
}

.founders-heading span{
    display:inline-block;
    color:#E91568;
    font-size:.95rem;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:12px;
}

.founders-heading h2{
    color:#1e2640;
    font-size:2.8rem;
    margin-bottom:18px;
    font-family:Georgia, serif;
}

.founders-heading p{
    color:#666;
    font-size:1.05rem;
    line-height:1.8;
}


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

.founder-card{
    max-width:1150px;
    margin:0 auto 70px;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(30,38,64,.10);

    transition:.4s;
}

.founder-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 20px 50px rgba(30,38,64,.16);
}


/* ==========================
      FOUNDER IMAGE
========================== */

.founder-image{
    height:500px;
    overflow:hidden;
}

.founder-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .5s ease;
}

.founder-card:hover .founder-image img{
    transform:scale(1.05);
}


/* ==========================
      FOUNDER CONTENT
========================== */

.founder-content{
    padding:55px 60px;
    position:relative;
}

.quote-icon{
    font-family:Georgia, serif;
    font-size:6rem;
    line-height:.5;

    color:#E91568;

    opacity:.2;

    position:absolute;

    top:45px;
    left:45px;
}

.founder-message{
    position:relative;

    color:#555;

    font-size:1.12rem;

    line-height:1.9;

    text-align:justify;

    margin-bottom:30px;
}


/* ==========================
      FOUNDER LINE
========================== */

.founder-line{
    width:60px;
    height:4px;

    background:#F5BE24;

    margin-bottom:18px;

    border-radius:10px;
}


/* ==========================
      FOUNDER NAME
========================== */

.founder-content h3{
    color:#1e2640;

    font-size:1.5rem;

    margin-bottom:6px;

    font-family:Georgia, serif;
}

.founder-content span{
    color:#E91568;

    font-size:.95rem;

    font-weight:600;
}


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

/*
   Founder 2:
   Image appears on right
   Text appears on left
*/

.founder-reverse{
    grid-template-areas:
        "content image";
}

.founder-reverse .founder-image{
    grid-area:image;
}

.founder-reverse .founder-content{
    grid-area:content;
}


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

@media(max-width:900px){

    .founders-section{
        padding:70px 5%;
    }

    .founder-card{
        grid-template-columns:1fr;
    }

    .founder-reverse{
        grid-template-areas:
            "image"
            "content";
    }

    .founder-reverse .founder-image{
        grid-area:image;
    }

    .founder-reverse .founder-content{
        grid-area:content;
    }

    .founder-image{
        height:450px;
    }

    .founder-content{
        padding:45px;
    }

}


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

@media(max-width:600px){

    .founders-section{
        padding:60px 5%;
    }

    .founders-heading{
        margin-bottom:45px;
    }

    .founders-heading h2{
        font-size:2.1rem;
    }

    .founders-heading p{
        font-size:.95rem;
    }

    .founder-card{
        margin-bottom:45px;
        border-radius:15px;
    }

    .founder-image{
        height:350px;
    }

    .founder-content{
        padding:35px 25px;
    }

    .founder-message{
        font-size:1rem;
        line-height:1.8;
        text-align:left;
    }

    .quote-icon{
        font-size:5rem;
        top:35px;
        left:20px;
    }

    .founder-content h3{
        font-size:1.3rem;
    }

}


/* why choose us */

/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-us {
    background: #f7f8fa;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}


/* Decorative Background */

.why-choose-us::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(217, 146, 74, 0.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.why-choose-us::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(30, 38, 64, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}


/* Main Container */

.why-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}


.section-tag {
    display: inline-block;
    color: #d9924a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


.section-heading h2 {
    font-size: 42px;
    color: #1e2640;
    margin: 0 0 18px;
    font-weight: 700;
}


.section-heading h2 span {
    color: #d9924a;
}


.section-heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   FEATURES GRID
========================================= */

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


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

.feature-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 15px;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 25px rgba(30, 38, 64, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    position: relative;
    overflow: hidden;
}


/* Top Golden Line */

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d9924a;
}


/* Hover Effect */

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(30, 38, 64, 0.15);
    border-color: #d9924a;
}


/* =========================================
   ICON
========================================= */

.feature-icon {
    width: 60px;
    height: 60px;

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

    background: #1e2640;
    color: white;

    border-radius: 12px;

    font-size: 28px;

    margin-bottom: 22px;

    transition: 0.3s ease;
}


.feature-card:hover .feature-icon {
    background: #d9924a;
    transform: scale(1.08);
}


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

.feature-card h3 {
    color: #1e2640;
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 700;
}


/* =========================================
   LIST
========================================= */

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


.feature-card li {
    color: #666;
    font-size: 15px;
    line-height: 1.6;

    padding-left: 22px;
    margin-bottom: 12px;

    position: relative;
}


/* Check Mark */

.feature-card li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #d9924a;
    font-weight: bold;
}


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

@media (max-width: 1000px) {

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

}


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

@media (max-width: 600px) {

    .why-choose-us {
        padding: 60px 18px;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .section-heading p {
        font-size: 15px;
    }


    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .feature-card {
        padding: 30px 25px;
    }

}


/* achievements */

/* =========================================
   ACHIEVEMENTS SECTION
========================================= */

.achievements-section {
    position: relative;
    padding: 100px 20px;
    background: #f7f8fa;
    overflow: hidden;
}


/* Decorative Background Circle */

.achievements-section::before {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(217, 146, 74, 0.07);

    top: -200px;
    left: -200px;
}


/* Second Decorative Circle */

.achievements-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(30, 38, 64, 0.04);

    bottom: -180px;
    right: -150px;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.achievements-container {
    max-width: 1200px;
    margin: auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION HEADING
========================================= */

.achievements-heading {
    max-width: 700px;
    margin: 0 auto 60px;

    text-align: center;
}


.achievements-heading span {
    display: inline-block;

    color: #d9924a;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.achievements-heading h2 {
    margin: 0 0 18px;

    font-size: 44px;
    font-weight: 700;

    color: #1e2640;
}


.achievements-heading h2 strong {
    color: #d9924a;
}


.achievements-heading p {
    margin: 0;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   MAIN CONTENT
========================================= */

.achievements-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================
   IMAGE SECTION
========================================= */

.achievements-image {
    position: relative;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(30, 38, 64, 0.18);
}


.achievements-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


/* Image Hover */

.achievements-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.image-overlay {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 22px;

    background: rgba(30, 38, 64, 0.92);

    color: white;

    border-radius: 10px;
}


.image-overlay span {
    font-size: 25px;
}


.image-overlay p {
    margin: 0;

    font-size: 15px;

    font-weight: 600;
}


/* =========================================
   ACHIEVEMENT LIST
========================================= */

.achievements-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* =========================================
   ACHIEVEMENT ITEM
========================================= */

.achievement-item {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 22px;

    background: white;

    border-radius: 14px;

    border: 1px solid #eeeeee;

    box-shadow:
        0 6px 20px rgba(30, 38, 64, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.achievement-item:hover {
    transform: translateX(8px);

    border-color: #d9924a;

    box-shadow:
        0 12px 30px rgba(30, 38, 64, 0.12);
}


/* =========================================
   NUMBER ICON
========================================= */

.achievement-icon {
    min-width: 48px;
    height: 48px;

    display: flex;

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

    background: #1e2640;

    color: #ffffff;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;
}


.achievement-item:hover .achievement-icon {
    background: #d9924a;
}


/* =========================================
   TEXT
========================================= */

.achievement-text h3 {
    margin: 0 0 6px;

    color: #1e2640;

    font-size: 18px;

    font-weight: 700;
}


.achievement-text p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


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

@media (max-width: 900px) {

    .achievements-section {
        padding: 80px 20px;
    }


    .achievements-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .achievements-image img {
        height: 450px;
    }

}


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

@media (max-width: 600px) {

    .achievements-section {
        padding: 60px 18px;
    }


    .achievements-heading {
        margin-bottom: 40px;
    }


    .achievements-heading h2 {
        font-size: 34px;
    }


    .achievements-heading p {
        font-size: 15px;
    }


    .achievements-image img {
        height: 300px;
    }


    .image-overlay {
        left: 15px;
        bottom: 15px;

        padding: 10px 15px;
    }


    .image-overlay span {
        font-size: 20px;
    }


    .image-overlay p {
        font-size: 13px;
    }


    .achievement-item {
        padding: 18px;

        gap: 15px;
    }


    .achievement-icon {
        min-width: 42px;
        height: 42px;

        font-size: 11px;
    }


    .achievement-text h3 {
        font-size: 16px;
    }


    .achievement-text p {
        font-size: 13px;
    }

}