/* Global Styles */
:root {
    --primary-blue: #004aad;
    --secondary-blue: #00a8e8;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --bg-light: #f4f7f6;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

.nav-list a:hover {
    color: var(--secondary-blue);
}

.btn-contact {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-contact:hover {
    background-color: var(--secondary-blue);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 168, 232, 0.8)), url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    /* Header offset */
}

.hero-content {
    transform: translateY(-40px);
    /* Shift content up as requested */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

/* Schools Section */
.schools-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.school-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #eee;
}

.school-card:hover {
    transform: translateY(-10px);
}

.price-list-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.school-card h3 {
    margin: 15px 0;
    color: var(--primary-blue);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    text-align: center;
}

.address {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.address i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 450px;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    width: fit-content;
    margin: 15px auto;
}

.contact-link:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.whatsapp:hover {
    background-color: #20BA56;
    color: #fff;
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .hamburger {
        display: block;
        color: var(--primary-blue);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .school-info-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-direction: column;
        gap: 10px;
    }
}

/* Tabs System */
.tabs-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 30px;
}

.tabs-header {
    display: flex;
    background: #f0f4f8;
    padding: 10px;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(0, 74, 173, 0.05);
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 74, 173, 0.2);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Gallery & Table Layout */
.school-info-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.products-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-item img {
    width: 100%;
    max-width: 120px;
    margin-bottom: 10px;
}

.product-item p {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Price Table */
.price-table-container {
    width: 100%;
    overflow-x: auto;
}

.full-width {
    width: 100%;
}

.price-table-container h3 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    border-bottom: 3px solid #eee;
    padding-bottom: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.price-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.price-table tr:nth-child(even) {
    background-color: #f9fbfd;
}

.price-table tr:hover {
    background-color: #f0f4f8;
}

/* Hero Logos */
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.school-logo {
    max-height: 110px;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 10px;
}

.school-logo:hover {
    transform: scale(1.1);
    background: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@media (max-width: 768px) {
    .hero-logos {
        gap: 1rem;
    }

    .school-logo {
        max-height: 70px;
        max-width: 100px;
        padding: 5px;
    }
}