* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #4a6bff;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-links {
    gap: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.search-bar {
    display: flex;
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-bar button {
    background: #4a6bff;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 16px;
}

.categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
}

.category {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: #4a6bff;
}

.category-name {
    font-size: 12px;
    text-align: center;
}

.featured {
    margin: 30px 0;
}

.featured h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.academy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.academy-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.academy-card:hover {
    transform: translateY(-5px);
}

.academy-img {
    height: 150px;
    background-color: #e0e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6bff;
    font-size: 24px;
}

.academy-details {
    padding: 15px;
}

.academy-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.academy-type {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.academy-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    color: #ffb400;
    margin-right: 5px;
}

.reviews {
    font-size: 12px;
    color: #666;
}

.academy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.feature {
    background: #f0f3ff;
    color: #4a6bff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.academy-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.call-btn,
.enquire-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.call-btn {
    background: #4a6bff;
    color: white;
    border: none;
}

.enquire-btn {
    background: white;
    color: #4a6bff;
    border: 1px solid #4a6bff;
}

.filters {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filters h3 {
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    background: #f0f3ff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.filter-option.active {
    background: #4a6bff;
    color: white;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.nav-tabs {
    display: flex;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tab {
    padding: 15px 20px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    transition: 0.3s;
}

.nav-tab.active {
    background: #4a6bff;
    color: white;
}

.footer {
    background: #333;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
}
.company-info {
    background-color: #f8f9fa !important;
}
@media (max-width: 768px) {
    .academy-cards {
        grid-template-columns: 1fr;
    }

    .categories {
        justify-content: space-around;
    }

    .footer-content {
        flex-direction: column;
    }
}