/* ========================================= 
LAUREATE INTERNATIONAL SCHOOL 
Main Website Stylesheet 
========================================= */ 
* { 
} 
margin: 0; 
padding: 0; 
box-sizing: border-box; 
html { 
scroll-behavior: smooth; 
} 
body { 
font-family: "Segoe UI", Arial, sans-serif; 
color: #263238; 
background: #ffffff; 
line-height: 1.6; 
} 
/* ========================================= 
HEADER 
========================================= */ 
header { 
background: #ffffff; 
position: sticky; 
top: 0; 
z-index: 1000; 
box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
} 
.navbar { 
max-width: 1200px; 
margin: auto; 
height: 82px; 
display: flex; 
align-items: center; 
justify-content: space-between; 
padding: 0 20px; 
} 
.logo-area { 
display: flex; 
align-items: center; 
gap: 12px; 
} 
.logo-area img { 
width: 65px; 
height: 65px; 
object-fit: contain; 
} 
.logo-text h2 { 
color: #0b3d91; 
font-size: 20px; 
line-height: 1.1; 
} 
.logo-text span { 
color: #e9a400; 
font-size: 12px; 
font-weight: 600; 
letter-spacing: 1px; 
} 
.nav-links { 
display: flex; 
list-style: none; 
gap: 6px; 
} 
.nav-links li a { 
text-decoration: none; 
color: #263238; 
padding: 12px 13px; 
font-weight: 600; 
font-size: 14px; 
transition: 0.3s; 
} 
.nav-links li a:hover, 
.nav-links li a.active { 
color: #0b3d91; 
} 
.nav-button { 
background: #0b3d91 !important; 
color: white !important; 
border-radius: 5px; 
} 
.menu-toggle { 
display: none; 
font-size: 28px; 
cursor: pointer; 
color: #0b3d91; 
} 
/* ========================================= 
   HERO SLIDER 
   ========================================= */ 
 
.hero { 
    position: relative; 
    height: 620px; 
    overflow: hidden; 
    background: #0b3d91; 
} 
 
.slides { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
} 
 
.slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 1.2s ease-in-out; 
    background-size: cover; 
    background-position: center; 
} 
 
.slide.active { 
    opacity: 1; 
} 
 
.slide::after { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient( 
        90deg, 
        rgba(4,30,70,0.85), 
        rgba(4,30,70,0.45), 
        rgba(4,30,70,0.15) 
    ); 
} 
 
.slide-content { 
    position: relative; 
    z-index: 2; 
    max-width: 1200px; 
    margin: auto; 
    padding: 170px 30px 0; 
    color: white; 
} 
 
.slide-content .small-title { 
    color: #f4b400; 
    font-weight: bold; 
    letter-spacing: 2px; 
    font-size: 16px; 
} 
.slide-content h1 { 
font-size: 52px; 
line-height: 1.15; 
max-width: 700px; 
margin: 15px 0; 
} 
.slide-content p { 
max-width: 620px; 
font-size: 18px; 
margin-bottom: 30px; 
} 
.btn { 
display: inline-block; 
padding: 13px 25px; 
text-decoration: none; 
border-radius: 5px; 
font-weight: 600; 
margin-right: 10px; 
transition: 0.3s; 
} 
.btn-primary { 
background: #f4b400; 
color: #172b4d; 
} 
.btn-primary:hover { 
background: #ffc933; 
} 
.btn-outline { 
border: 2px solid white; 
color: white; 
} 
.btn-outline:hover { 
background: white; 
color: #0b3d91; 
} 
.slider-dots { 
position: absolute; 
bottom: 30px; 
left: 50%; 
transform: translateX(-50%); 
z-index: 5; 
display: flex; 
gap: 10px; 
} 
.dot { 
width: 11px; 
height: 11px; 
background: rgba(255,255,255,0.5); 
border-radius: 50%; 
cursor: pointer; 
} 
.dot.active { 
background: #f4b400; 
} 
/* ========================================= 
GENERAL 
========================================= */ 
.container { 
max-width: 1200px; 
margin: auto; 
padding: 0 20px; 
} 
.section { 
padding: 80px 0; 
} 
.section-title { 
text-align: center; 
margin-bottom: 50px; 
} 
.section-title span { 
color: #f4b400; 
text-transform: uppercase; 
font-size: 13px; 
font-weight: bold; 
letter-spacing: 2px; 
} 
.section-title h2 { 
color: #0b3d91; 
font-size: 36px; 
margin-top: 8px; 
} 
.section-title p { 
max-width: 700px; 
margin: 12px auto; 
color: #667085; 
} 
/* ========================================= 
INTRODUCTION 
========================================= */ 
.intro-grid { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 55px; 
align-items: center; 
} 
 
.intro-image img { 
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); 
} 
 
.intro-text h2 { 
    color: #0b3d91; 
    font-size: 34px; 
    margin-bottom: 18px; 
} 
 
.intro-text p { 
    margin-bottom: 18px; 
    color: #59636e; 
} 
 
/* ========================================= 
   CARDS 
   ========================================= */ 
 
.cards { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
} 
 
.card { 
    background: white; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.07); 
    transition: 0.3s; 
} 
 
.card:hover { 
    transform: translateY(-7px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.12); 
} 
 
.card-icon { 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    background: #eef4ff; 
    color: #0b3d91; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 25px; 
    margin-bottom: 20px; 
} 
 
.card h3 { 
    color: #0b3d91; 
    margin-bottom: 10px; 
} 
 
.card p { 
    color: #68737d; 
} 
 
/* ========================================= 
   STATS 
   ========================================= */ 
 
.stats { 
    background: #0b3d91; 
    color: white; 
} 
 
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    text-align: center; 
} 
 
.stat h2 { 
    color: #f4b400; 
    font-size: 42px; 
} 
 
.stat p { 
    font-size: 15px; 
} 
 
/* ========================================= 
   CTA 
   ========================================= */ 
 
.cta { 
    background: linear-gradient(135deg, #0b3d91, #082d68); 
    color: white; 
    text-align: center; 
    padding: 70px 20px; 
} 
 
.cta h2 { 
    font-size: 36px; 
    margin-bottom: 15px; 
} 
 
.cta p { 
    max-width: 700px; 
    margin: 0 auto 25px; 
} 
 
/* ========================================= 
   PAGE BANNER 
   ========================================= */ 
 
.page-banner { 
    background: 
linear-gradient(rgba(8,45,104,0.85), rgba(8,45,104,0.85)), 
url("../images/school1.jpg") center/cover; 
padding: 90px 20px; 
text-align: center; 
color: white; 
} 
.page-banner h1 { 
font-size: 45px; 
} 
.page-banner p { 
margin-top: 8px; 
} 
/* ========================================= 
ABOUT PAGE 
========================================= */ 
.about-grid { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 50px; 
align-items: center; 
} 
.about-grid img { 
width: 100%; 
border-radius: 10px; 
} 
.about-text h2 { 
color: #0b3d91; 
font-size: 32px; 
margin-bottom: 15px; 
} 
.about-text p { 
color: #626b75; 
margin-bottom: 15px; 
} 
.values { 
background: #f6f9fd; 
} 
/* ========================================= 
DEPARTMENTS 
========================================= */ 
.department-card { 
overflow: hidden; 
padding: 0; 
} 
.department-card img { 
width: 100%; 
height: 210px; 
object-fit: cover; 
} 
.department-card-content { 
padding: 25px; 
} 
/* ========================================= 
CAMPUSES 
========================================= */ 
.campus-card { 
padding: 0; 
overflow: hidden; 
} 
.campus-card img { 
width: 100%; 
height: 230px; 
object-fit: cover; 
} 
.campus-content { 
padding: 25px; 
} 
.campus-content h3 { 
color: #0b3d91; 
} 
.location { 
color: #f4a900; 
font-weight: 600; 
margin: 8px 0; 
} 
/* ========================================= 
GALLERY 
========================================= */ 
.gallery { 
display: grid; 
grid-template-columns: repeat(3, 1fr); 
gap: 15px; 
} 
.gallery-item { 
overflow: hidden; 
border-radius: 8px; 
height: 250px; 
} 
.gallery-item img { 
width: 100%; 
height: 100%; 
object-fit: cover; 
transition: 0.5s; 
} 
.gallery-item:hover img { 
transform: scale(1.08); 
} 
/* ========================================= 
CONTACT 
========================================= */ 
.contact-grid { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 45px; 
} 
.contact-info h2 { 
color: #0b3d91; 
margin-bottom: 20px; 
} 
.contact-item { 
display: flex; 
gap: 15px; 
margin-bottom: 25px; 
} 
.contact-icon { 
width: 45px; 
height: 45px; 
background: #eef4ff; 
color: #0b3d91; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
flex-shrink: 0; 
} 
.contact-item h4 { 
color: #0b3d91; 
} 
.contact-item p { 
color: #667085; 
} 
.contact-form { 
background: #f7f9fc; 
padding: 35px; 
border-radius: 10px; 
} 
.form-group { 
margin-bottom: 18px; 
} 
.form-group label { 
display: block; 
margin-bottom: 6px; 
font-weight: 600; 
} 
.form-group input, 
.form-group textarea, 
.form-group select { 
width: 100%; 
padding: 13px; 
border: 1px solid #d9dee7; 
border-radius: 5px; 
font-family: inherit; 
font-size: 14px; 
} 
.form-group textarea { 
min-height: 130px; 
resize: vertical; 
} 

/* =================================
   MANAGEMENT TEAM SECTION
================================= */

.management-section {
    background: #f5f7fb;
    padding: 80px 0;
}

.management-section .section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.management-section .section-title span {
    color: #d5a000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.management-section .section-title h2 {
    color: #102b50;
    font-size: 34px;
    margin: 12px 0;
}

.management-section .section-title p {
    color: #666;
    line-height: 1.8;
}


/* TEAM GRID */

.management-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}


/* TEAM CARD */

.management-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
    border-bottom: 4px solid #d5a000;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
}


/* TEAM PHOTOGRAPHS */

.management-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e9edf3;
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.management-card:hover .management-image img {
    transform: scale(1.05);
}


/* TEAM INFORMATION */

.management-info {
    padding: 25px 20px 28px;
    text-align: center;
}

.management-role {
    display: inline-block;
    color: #b58a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.management-info h3 {
    color: #102b50;
    font-size: 19px;
    line-height: 1.4;
    margin: 5px 0;
}

.management-position {
    color: #d5a000;
    font-size: 14px;
    font-weight: 700;
    margin: 8px 0 15px;
}

.management-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* TABLET RESPONSIVENESS */

@media (max-width: 1024px) {

    .management-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

}


/* MOBILE RESPONSIVENESS */

@media (max-width: 600px) {

    .management-section {
        padding: 55px 0;
    }

    .management-section .section-title h2 {
        font-size: 27px;
    }

    .management-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .management-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .management-image {
        height: 320px;
    }

}
/* ========================================= 
FOOTER 
========================================= */ 
footer { 
background: #071f47; 
color: #d6deea; 
padding: 60px 0 20px; 
} 
.footer-grid { 
display: grid; 
grid-template-columns: 2fr 1fr 1fr 1.5fr; 
gap: 35px; 
} 
.footer-logo { 
display: flex; 
align-items: center; 
gap: 12px; 
margin-bottom: 18px; 
} 
.footer-logo img { 
width: 60px; 
} 
.footer h3 { 
color: white; 
margin-bottom: 18px; 
} 
.footer p { 
font-size: 14px; 
} 
 
.footer ul { 
    list-style: none; 
} 
 
.footer ul li { 
    margin-bottom: 9px; 
} 
 
.footer ul li a { 
    color: #d6deea; 
    text-decoration: none; 
} 
 
.footer ul li a:hover { 
    color: #f4b400; 
} 
 
.social { 
    display: flex; 
    gap: 10px; 
    margin-top: 18px; 
} 
 
.social a { 
    width: 38px; 
    height: 38px; 
    background: rgba(255,255,255,0.1); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    color: white; 
    text-decoration: none; 
} 
 
.copyright { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin-top: 45px; 
    padding-top: 20px; 
    text-align: center; 
    font-size: 13px; 
} 
 
/* ========================================= 
   MOBILE 
   ========================================= */ 
 
@media (max-width: 900px) { 
 
    .menu-toggle { 
        display: block; 
    } 
 
    .nav-links { 
        position: absolute; 
        top: 82px; 
        left: 0; 
        width: 100%; 
        background: white; 
        display: none; 
        flex-direction: column; 
        padding: 15px 20px; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    } 
 
    .nav-links.show { 
        display: flex; 
    } 
 
    .nav-links li a { 
        display: block; 
    } 
 
    .hero { 
        height: 560px; 
    } 
 
    .slide-content { 
        padding-top: 130px; 
    } 
 
    .slide-content h1 { 
        font-size: 38px; 
    } 
 
    .intro-grid, 
    .about-grid, 
    .contact-grid { 
        grid-template-columns: 1fr; 
    } 
 
    .cards { 
        grid-template-columns: 1fr 1fr; 
    } 
 
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px; 
    } 
 
    .gallery { 
        grid-template-columns: 1fr 1fr; 
    } 
 
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
    } 
} 
 
@media (max-width: 600px) { 
 
    .logo-area img { 
        width: 50px; 
        height: 50px; 
    } 
 
    .logo-text h2 { 
        font-size: 16px; 
    } 
 
    .logo-text span { 
        font-size: 9px; 
    } 
 
    .hero { 
        height: 530px; 
    } 
 
    .slide-content { 
        padding: 120px 22px 0; 
    } 
 
    .slide-content h1 { 
        font-size: 32px; 
    } 
 
    .slide-content p { 
        font-size: 15px; 
    } 
 
    .section { 
        padding: 60px 0; 
    } 
 
    .section-title h2 { 
        font-size: 29px; 
    } 
 
    .cards { 
        grid-template-columns: 1fr; 
    } 
 
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
    } 
 
    .gallery { 
        grid-template-columns: 1fr; 
    } 
 
    .gallery-item { 
        height: 230px; 
    } 
 
    .footer-grid { 
        grid-template-columns: 1fr; 
    } 
 
    .page-banner h1 { 
        font-size: 34px; 
    } 
} 

/* ==========================================
   NEWS & UPCOMING EVENTS
========================================== */

.news-section {
    background: #f5f7fb;
    padding: 85px 0;
}

.news-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 40px;
}

.news-heading .section-title {
    text-align: left;
    margin: 0;
    max-width: 700px;
}

.news-heading .section-title span {
    color: #c69a16;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-heading .section-title h2 {
    color: #102b50;
    font-size: 34px;
    margin: 12px 0;
}

.news-heading .section-title p {
    color: #667085;
    line-height: 1.8;
}

.news-view-all {
    color: #102b50;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 12px;
}

.news-view-all:hover,
.news-link:hover {
    color: #c69a16;
}


/* NEWS GRID */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* NEWS CARD */

.news-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(16, 43, 80, 0.07);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(16, 43, 80, 0.13);
}

.news-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #e8edf4;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d5a000;
    color: #102b50;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}


/* NEWS CONTENT */

.news-content {
    display: flex;
    gap: 15px;
    padding: 22px;
}

.news-date {
    background: #102b50;
    color: #ffffff;
    min-width: 58px;
    height: 65px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.date-day {
    font-size: 17px;
    font-weight: 800;
}

.date-month {
    font-size: 10px;
    letter-spacing: 1px;
    color: #e6bd42;
    font-weight: 700;
}

.news-details {
    flex: 1;
    min-width: 0;
}

.news-meta {
    color: #b58a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-details h3 {
    color: #102b50;
    font-size: 19px;
    line-height: 1.4;
    margin: 8px 0 10px;
}

.news-details p {
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.news-link {
    color: #102b50;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* ==========================================
   DOWNLOADS CENTRE
========================================== */

.downloads-section {
    background: #ffffff;
    padding: 85px 0;
}

.downloads-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.downloads-label {
    color: #c69a16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.downloads-heading h2 {
    color: #102b50;
    font-size: 34px;
    margin: 12px 0;
}

.downloads-heading p {
    color: #667085;
    line-height: 1.8;
}


/* DOWNLOAD GRID */

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* DOWNLOAD CARD */

.download-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: #d5a000;
    box-shadow: 0 8px 25px rgba(16, 43, 80, 0.08);
    transform: translateY(-3px);
}

.download-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #f5f0df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
    min-width: 0;
}

.download-info h3 {
    color: #102b50;
    font-size: 16px;
    margin: 0 0 8px;
}

.download-info p {
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px;
}

.file-type {
    display: inline-block;
    color: #b58a00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #102b50;
    color: #ffffff;
    padding: 11px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #c69a16;
    color: #102b50;
}


/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 1024px) {

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card:last-child {
        grid-column: 1 / -1;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .news-section,
    .downloads-section {
        padding: 60px 0;
    }

    .news-heading {
        display: block;
    }

    .news-heading .section-title h2,
    .downloads-heading h2 {
        font-size: 27px;
    }

    .news-view-all {
        display: inline-block;
        margin-top: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
    }

    .news-image {
        height: 230px;
    }

    .download-card {
        flex-wrap: wrap;
        padding: 20px;
    }

    .download-info {
        flex-basis: calc(100% - 75px);
    }

    .download-btn {
        width: 100%;
        margin-top: 5px;
    }

}