/*CONTACTS*/



.contact-section{
    width:100%;
    padding:60px 5%;
}

.contact-container{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.contact-left{
    width:350px;
    background:#fff;
    border:1px solid #ddd;
}

.info-box{
    padding:35px;
    border-bottom:1px solid #ddd;
    position:relative;
}

.info-box:last-child{
    border-bottom:none;
}

.info-box h3{
    font-size:20px;
    margin-bottom:15px;
    color:#000;
}

.info-box p{
    color:#444;
    font-size:16px;
    line-height:1.7;
}

.info-icon{
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    color:#002b5c;
    font-size:38px;
}

.social-links{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.social-links a{
    width:42px;
    height:42px;
    border:1px solid #002b5c;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#002b5c;
    font-size:24px;
    transition:0.3s;
}

.social-links a:hover{
    background:#002b5c;
    color:#fff;
}

/* RIGHT SIDE */

.contact-right{
    flex:1;
}

.contact-title{
    font-size:50px;
    color:#002b5c;
    margin-bottom:15px;
    font-weight:bold;
}

.title-line{
    width:110px;
    height:4px;
    background:#f0b400;
    margin-bottom:40px;
}

.contact-form{
    width:100%;
}

.form-row{
    display:flex;
    gap:25px;
    margin-bottom:20px;
}

.form-group{
    flex:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:1px solid #d4d4d4;
    outline:none;
    font-size:18px;
    background:#fff;
}

.contact-form textarea{
    height:220px;
    resize:none;
}

.send-btn{
    background:#002b5c;
    color:#fff;
    border:none;
    padding:18px 40px;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.send-btn:hover{
    background:#001d40;
}

.success{
    background:green;
    color:#fff;
    padding:15px;
    margin-bottom:20px;
}

.error{
    background:red;
    color:#fff;
    padding:15px;
    margin-bottom:20px;
}

/* MOBILE */

@media(max-width:900px){

    .contact-container{
        flex-direction:column;
    }

    .contact-left{
        width:100%;
    }

    .form-row{
        flex-direction:column;
        gap:20px;
    }

    .contact-title{
        font-size:38px;
    }
}


/* SECTION */
.latest-news{
    width:100%;
    padding-bottom:70px;
}

/* HEADER */
.news-header{
    background:#e07a39;
    color:white;
    padding:40px 8%;
}

.news-header h1{
    font-size:55px;
    font-weight:bold;
}

/* POSTS */
.news-container{
    width:85%;
    margin:70px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */
.news-card{
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

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

/* IMAGE */
.news-image{
    width:100%;
    height:320px;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.news-card:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.news-content{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* TITLE */
.news-title{
    font-size:28px;
    font-weight:bold;
    color:#111;
    line-height:1.3;

    display:-webkit-box;
    -webkit-line-clamp:2;   /* max 2 lines */
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:72px;
}

/* DESC */
.news-desc{
    margin-top:15px;
    color:#444;
    font-size:18px;
    line-height:1.7;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:95px;
}

/* BUTTON */
.read-btn{
    margin-top:auto;
    display:inline-block;
    background:#f34f4f;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:4px;
    font-size:18px;
    transition:.3s;
    width:fit-content;
}

.read-btn:hover{
    background:#d93b3b;
}

/* MOBILE */
@media(max-width:768px){

    .news-header h1{
        font-size:38px;
    }

    .news-image{
        height:250px;
    }

    .news-title{
        font-size:24px;
        min-height:auto;
    }

    .news-desc{
        font-size:16px;
        min-height:auto;
    }
}


/*Latest post*/


/* MAIN */
.post-section{
    width:100%;
    padding:60px 5%;
}

.post-container{
    max-width:1000px;
    margin:auto;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* IMAGE */
.post-image{
    width:100%;
    height:500px;
}

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

/* CONTENT */
.post-content{
    padding:40px;
}

/* TITLE */
.post-title{
    font-size:45px;
    line-height:1.3;
    margin-bottom:20px;
    color:#002b5c;
}

/* META */
.post-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    color:#777;
    margin-bottom:30px;
    font-size:16px;
}

.post-meta i{
    color:#f04d4d;
    margin-right:7px;
}

/* TEXT */
.post-text{
    font-size:20px;
    line-height:1.9;
    color:#333;
}

/* SHARE */
.share-box{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #ddd;
}

.share-title{
    font-size:24px;
    margin-bottom:20px;
    color:#002b5c;
    font-weight:bold;
}

.share-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.share-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    transition:0.3s;
}

.share-btn:hover{
    transform:translateY(-5px);
}

.facebook{
    background:#1877f2;
}

.twitter{
    background:#000;
}

.linkedin{
    background:#0077b5;
}

.whatsapp{
    background:#25d366;
}

.telegram{
    background:#229ED9;
}

/* MOBILE */
@media(max-width:768px){

    .post-image{
        height:280px;
    }

    .post-content{
        padding:25px;
    }

    .post-title{
        font-size:32px;
    }

    .post-text{
        font-size:18px;
    }

    .share-btn{
        width:48px;
        height:48px;
        font-size:20px;
    }
}

/* SECTION */
.our-story{
    width:100%;
    padding:90px 7%;
    background:#fff;
}

/* CONTAINER */
.story-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE SIDE */
.story-image{
    flex:1;
    min-width:320px;
    position:relative;
}

.story-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:8px;
}

/* EXPERIENCE BOX */
.experience-box{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#f04d4d;
    color:#fff;
    padding:30px;
    width:220px;
    border-radius:6px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.experience-box h2{
    font-size:55px;
    margin-bottom:5px;
}

.experience-box p{
    font-size:18px;
    line-height:1.5;
}

/* CONTENT SIDE */
.story-content{
    flex:1;
    min-width:320px;
}

/* SMALL TITLE */
.story-subtitle{
    color:#f04d4d;
    font-size:20px;
    font-weight:bold;
    text-transform:uppercase;
    margin-bottom:15px;
    letter-spacing:1px;
}

/* MAIN TITLE */
.story-title{
    font-size:52px;
    color:#002b5c;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:bold;
}

/* TEXT */
.story-text{
    font-size:19px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

/* FEATURES */
.story-features{
    margin-top:30px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:22px;
}

.feature-icon{
    width:55px;
    height:55px;
    background:#002b5c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.feature-text h4{
    font-size:22px;
    color:#111;
    margin-bottom:8px;
}

.feature-text p{
    color:#666;
    line-height:1.7;
    font-size:17px;
}

/* BUTTON */
.story-btn{
    display:inline-block;
    margin-top:25px;
    padding:17px 38px;
    background:#f04d4d;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    border-radius:5px;
    transition:0.3s;
}

.story-btn:hover{
    background:#d93b3b;
    transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:900px){

    .story-container{
        flex-direction:column;
    }

    .story-image img{
        height:420px;
    }

    .story-title{
        font-size:38px;
    }

    .experience-box{
        left:20px;
        bottom:20px;
        width:180px;
        padding:20px;
    }

    .experience-box h2{
        font-size:42px;
    }

    .story-text{
        font-size:17px;
    }
}

/* SECTION */
.mission-vision{
    width:100%;
    padding:90px 7%;
    background:#f7f7f7;
}

/* HEADER */
.mv-header{
    text-align:center;
    margin-bottom:70px;
}

.mv-subtitle{
    color:#f04d4d;
    font-size:20px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.mv-title{
    font-size:52px;
    color:#002b5c;
    font-weight:bold;
}

/* CONTAINER */
.mv-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/* CARD */
.mv-card{
    background:#fff;
    padding:45px 35px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

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

/* TOP BORDER EFFECT */
.mv-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#f04d4d;
}

/* ICON */
.mv-icon{
    width:85px;
    height:85px;
    background:#002b5c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;
}

/* CARD TITLE */
.mv-card h2{
    font-size:36px;
    color:#111;
    margin-bottom:20px;
}

/* TEXT */
.mv-card p{
    color:#555;
    font-size:18px;
    line-height:1.9;
}

/* MOBILE */
@media(max-width:768px){

    .mission-vision{
        padding:70px 5%;
    }

    .mv-title{
        font-size:38px;
    }

    .mv-card{
        padding:35px 25px;
    }

    .mv-card h2{
        font-size:30px;
    }

    .mv-card p{
        font-size:17px;
    }

    .mv-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }
}


/* SECTION */
.team-section{
    width:100%;
    padding:90px 7%;
    background:#fff;
}

/* HEADER */
.team-header{
    text-align:center;
    margin-bottom:70px;
}

.team-subtitle{
    color:#f04d4d;
    font-size:20px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.team-title{
    font-size:52px;
    color:#002b5c;
    font-weight:bold;
    margin-bottom:20px;
}

.team-text{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* TEAM GRID */
.team-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */
.team-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
}

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

/* IMAGE */
.team-image{
    width:100%;
    height:350px;
    overflow:hidden;
    position:relative;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.team-card:hover img{
    transform:scale(1.08);
}

/* SOCIAL ICONS */
.team-social{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    opacity:0;
    transition:0.4s;
}

.team-card:hover .team-social{
    opacity:1;
    bottom:30px;
}

.team-social a{
    width:42px;
    height:42px;
    background:#fff;
    color:#002b5c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.team-social a:hover{
    background:#f04d4d;
    color:#fff;
}

/* CONTENT */
.team-content{
    padding:28px;
    text-align:center;
}

.team-content h3{
    font-size:28px;
    color:#111;
    margin-bottom:10px;
}

.team-position{
    color:#f04d4d;
    font-size:18px;
    font-weight:bold;
    margin-bottom:15px;
}

.team-desc{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/* MOBILE */
@media(max-width:768px){

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

    .team-title{
        font-size:38px;
    }

    .team-text{
        font-size:17px;
    }

    .team-image{
        height:300px;
    }

    .team-content h3{
        font-size:24px;
    }
}


/* SECTION */
.events-mini-section{
    width:100%;
    padding:80px 6%;
    background:#fff;
}

/* HEADER */
.events-mini-header{
    text-align:center;
    margin-bottom:55px;
}

.events-mini-subtitle{
    color:#f04d4d;
    font-size:18px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.events-mini-title{
    font-size:50px;
    color:#002b5c;
    font-weight:bold;
    margin-bottom:18px;
}

.events-mini-text{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* GRID */
.events-mini-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* CARD */
.event-mini-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.event-mini-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.event-mini-image{
    width:100%;
    height:180px;
    overflow:hidden;
    position:relative;
}

.event-mini-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.event-mini-card:hover img{
    transform:scale(1.08);
}

/* DATE */
.event-mini-date{
    position:absolute;
    top:12px;
    left:12px;
    background:#f04d4d;
    color:#fff;
    border-radius:8px;
    padding:10px 12px;
    text-align:center;
    min-width:65px;
}

.event-mini-date h3{
    font-size:24px;
    line-height:1;
}

.event-mini-date span{
    font-size:13px;
}

/* CONTENT */
.event-mini-content{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* META */
.event-mini-meta{
    color:#777;
    font-size:14px;
    margin-bottom:14px;
}

.event-mini-meta i{
    color:#f04d4d;
    margin-right:5px;
}

/* TITLE */
.event-mini-title2{
    font-size:22px;
    color:#111;
    line-height:1.4;
    margin-bottom:14px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:62px;
}

/* DESCRIPTION */
.event-mini-desc{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:75px;
}

/* BUTTON */
.event-mini-btn{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    text-decoration:none;
    color:#002b5c;
    font-weight:bold;
    font-size:15px;
    transition:0.3s;
}

.event-mini-btn:hover{
    color:#f04d4d;
}

/* MOBILE */
@media(max-width:768px){

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

    .events-mini-title{
        font-size:36px;
    }

    .events-mini-text{
        font-size:16px;
    }

    .event-mini-image{
        height:200px;
    }
}

/* SECTION */
.admission-section{
    width:100%;
    padding:90px 6%;
    background:#fff;
}

/* HEADER */
.admission-header{
    text-align:center;
    margin-bottom:70px;
}

.admission-subtitle{
    color:#f04d4d;
    font-size:18px;
    font-weight:bold;
    text-transform:uppercase;
    margin-bottom:12px;
    letter-spacing:1px;
}

.admission-title{
    font-size:52px;
    color:#002b5c;
    font-weight:bold;
    margin-bottom:18px;
}

.admission-text{
    max-width:800px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* GRID */
.admission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/* CARD */
.admission-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

/* TOP */
.admission-top{
    background:#002b5c;
    color:#fff;
    padding:30px;
    text-align:center;
}

.admission-top h2{
    font-size:34px;
    margin-bottom:10px;
}

.admission-top p{
    font-size:17px;
    opacity:0.9;
}

/* CONTENT */
.admission-content{
    padding:30px;
}

/* FEES */
.fee-box{
    background:#f7f7f7;
    border-left:5px solid #f04d4d;
    padding:18px;
    margin-bottom:25px;
    border-radius:6px;
}

.fee-box h3{
    color:#111;
    font-size:22px;
    margin-bottom:8px;
}

.fee-box p{
    color:#555;
    font-size:17px;
    line-height:1.7;
}

/* REQUIREMENTS */
.requirements-title{
    font-size:24px;
    color:#002b5c;
    margin-bottom:20px;
}

.requirement-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.requirement-icon{
    color:#f04d4d;
    font-size:18px;
    margin-top:3px;
}

.requirement-text{
    color:#555;
    font-size:17px;
    line-height:1.7;
}

/* BUTTON */
.apply-btn{
    margin-top:30px;
    display:inline-block;
    padding:15px 30px;
    background:#f04d4d;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-size:17px;
    transition:0.3s;
}

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

/* MOBILE */
@media(max-width:768px){

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

    .admission-title{
        font-size:38px;
    }

    .admission-text{
        font-size:16px;
    }

    .admission-top h2{
        font-size:28px;
    }
}

