/* --- Root Variables & Reset --- */
:root {
    --primary-blue: #0066B2;
    --light-blue: #49C5F1;
    --purple: #7B2E8E;
    --green-success: #4CAF50;
    --dark: #1a1a1a;
    --font-family: 'Quicksand', sans-serif;
    --dark-bg: #0a0a0a;
    --input-bg: #1a1a1a;
    --text-gray: #aaa;
    --white: #ffffff;
    --bc-blue: #f0f5f9;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* --- Main Page Wrapper --- */
.about-main-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-family: var(--font-family);
}

/* --- Hero Section --- */
.about-hero-section {
    padding: 0 20px;
    margin-top: 120px; 
}

.about-hero-container {
    width: 100%;
}

.about-hero-card {
    height: 350px;
    border-radius: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Centering the content and breadcrumbs */
.about-hero-content {
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.about-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 1.1;
    text-transform: capitalize;
}

/* --- Breadcrumb Styling --- */
.about-breadcrumb {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-breadcrumb a:hover {
    color: var(--green-success);
}

.about-breadcrumb .about-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.about-breadcrumb .about-current {
    color: var(--green-success); 
    font-weight: 600;
}

/* --- Helper Class --- */
.review-section-wrapper {
    padding: 60px 20px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .about-hero-section {
        padding: 0 15px;
        margin-top: 100px;
        margin-bottom: -60px;
    }

    .about-hero-card {
        height: 350px;
        border-radius: 40px;
    }
    
    .about-hero-title {
        font-size: 40px;
    }
    
    .about-breadcrumb {
        font-size: 14px;
        padding: 6px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-card {
        height: 300px;
        border-radius: 30px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-breadcrumb {
        gap: 8px;
        padding: 5px 15px;
    }

    .about-breadcrumb .about-separator {
        font-size: 12px;
    }
}




.vision-mission-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Tabs Styling */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: transparent;
    font-family: var(--font-family);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
}

/* Tab Layout */
.tab-content {
    display: none; /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
}

/* List Styling */
.vision-list {
    list-style: none;
    padding: 0;
}

.vision-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.vision-list li i {
    color: var(--green-success);
    font-size: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

 /* --- Keep your existing desktop CSS above this --- */

@media (max-width: 768px) {
    /* Reduce outer spacing */
    .vision-mission-section {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .vision-header {
        margin-bottom: 30px;
    }

    /* Stack the Tabs buttons vertically or make them scrollable */
    .tabs-container {
        display: flex;
        width: 100%;
        gap: 8px;
        padding: 5px;
        border-radius: 15px; /* Squarer corners for mobile space */
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 14px; /* Reduced font size */
        flex: 1; /* Makes buttons equal width */
        text-align: center;
    }

    /* Change Grid to a Single Column */
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduced gap */
    }

    /* Adjust Image for mobile */
    .rounded-img {
        height: 250px; /* Reduced height so it doesn't take the whole screen */
        border-radius: 20px;
    }

    /* Text size reductions */
    .vision-mission-section h2 {
        font-size: 24px; /* Adjusting heading size */
    }

    .vision-mission-section p {
        font-size: 15px; /* Adjusting body text */
        line-height: 1.5;
    }

    .vision-list li {
        font-size: 14px; /* Reduced list font size */
        gap: 10px;
    }

    .vision-list li i {
        font-size: 18px;
    }
}