/* 
   Theme: Sensip Xtra
   Based on: Xtra Theme SEO 2
   Colors: Primary #008aff, Secondary #75c79d
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;700&display=swap');

:root {
    --primary: #008aff;
    --secondary: #75c79d;
    --dark: #101c58;
    --text: #6f78a5;
    --light-bg: #f9faff;
    --white: #ffffff;

    --gradient-primary: linear-gradient(135deg, #008aff 0%, #0693e3 100%);
    --gradient-hover: linear-gradient(135deg, #75c79d 0%, #57c18b 100%);

    --shadow-card: 0px 10px 50px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0px 15px 60px rgba(0, 138, 255, 0.15);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Rubik', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 90px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 138, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 199, 157, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary);
}

/* Section Titles */
.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '_';
    margin: 0 5px;
    position: relative;
    top: -3px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    font-family: var(--font-heading);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Mobile menu logic needed in JS */
    }

    .hamburger {
        display: block;
    }

    .header-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* The Blue Curve Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #101c58 0%, #004aad 100%);
    z-index: 0;
    border-bottom-left-radius: 50% 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    /* Ensure content is above the blue background */
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    width: 120%;
    max-width: 1600px;
    animation: floatHero 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes floatHero {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero::after {
        width: 100%;
        height: 60%;
        top: auto;
        bottom: 0;
        border-bottom-left-radius: 0;
        border-top-left-radius: 50% 20%;
        border-top-right-radius: 50% 20%;
        opacity: 0.1;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 50px;
    }

    .hero-text p {
        margin: 0 auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image img {
        max-width: 80%;
    }
}

/* Hero Styles */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 66px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-link {
    color: var(--text);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary);
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 5px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    position: relative;
    border-radius: 50%;
    /* Circular as per premium trends, or use 5px for square */
    border-radius: 5px;
    /* Matching reference image style usually */
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-role {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 138, 255, 0.1);
    color: var(--primary);
    margin: 0 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 28, 88, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

/* Modal specific: Subject List */
.grade-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.grade-item {
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.grade-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.grade-item h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark);
}

.grade-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text);
}

/* Modal Specific: Teacher Login */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 28, 88, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

/* Modal specific: Subject List */
.grade-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.grade-item {
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.grade-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.grade-item h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark);
}

.grade-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text);
}

/* Modal Specific: Teacher Login */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Client Strip */
.client-strip {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.client-logos img {
    height: 40px;
    margin: 10px 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Features Section */
.features-section {
    background-color: var(--white);
    padding: 100px 0;
}

.section-head-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head-center h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f7ff;
    color: var(--primary);
    font-size: 28px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Stats Section (Dark) */
.stats-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stats-img {
    flex: 1;
}

.stats-img img {
    width: 100%;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

.stats-content {
    flex: 1;
}

.stats-content h2 {
    color: var(--white);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.stats-content p {
    color: #b0b8e8;
    margin-bottom: 40px;
    font-size: 16px;
}

.stats-row {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 32px;
    color: var(--primary);
}

.stat-info h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 0;
}

.stat-info span {
    color: #b0b8e8;
    font-size: 14px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    color: #ff6b6b;
    /* Accent color */
    margin-bottom: 20px;
}

.service-card:nth-child(2) .service-icon {
    color: #4ecdc4;
}

.service-card:nth-child(3) .service-icon {
    color: #ffd166;
}

.service-card:nth-child(4) .service-icon {
    color: #1a535c;
}

.service-card:nth-child(5) .service-icon {
    color: #ff9f1c;
}

.service-card:nth-child(6) .service-icon {
    color: #2ec4b6;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 0;
}

/* Video Banner */
.video-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, #008aff 0%, #00c6ff 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-banner h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 30px;
}

.play-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: -70px auto 20px;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.client-img img {
    width: 100%;
}

.testimonial-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* Newsletter */
.newsletter-section {
    background: #1e1e2d;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.newsletter-box {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

/* Responsiveness for New Sections */
@media (max-width: 991px) {

    .feature-grid,
    .services-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .feature-grid,
    .services-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        flex-direction: column;
    }

    .client-logos {
        justify-content: center;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f9faff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark);
}

.faq-toggle {
    width: 25px;
    height: 25px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-header {
    border-bottom: 1px solid #eee;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-body {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-body p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Mission & Vision Section (Dark Blue) */
.mission-section {
    background-color: #101c58;
    /* Deep Navy Blue */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.mission-content .lbl-mission {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.mission-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.mission-content p {
    font-size: 16px;
    color: #b0b8e8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #dbe1ff;
}

.mission-list li i {
    color: var(--secondary);
    background: rgba(117, 199, 157, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-image img {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 991px) {
    .mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-list li {
        justify-content: center;
        text-align: left;
    }

    .mission-image {
        order: -1;
        margin-bottom: 40px;
    }
}

.client-logos {
    justify-content: center;
}

.stats-row {
    flex-direction: column;
    gap: 30px;
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f9faff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header h4 {
    margin: 0;
    font-size: 18px;
    color: var(--dark);
}

.faq-toggle {
    width: 25px;
    height: 25px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-header {
    border-bottom: 1px solid #eee;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-body {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-body p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Achievers Section */
.achievers-section {
    padding: 100px 0;
    background: var(--white);
}

.achievers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Footer Section */
footer {
    background-color: #101c58;
    color: #fff;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-widget h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-about p {
    color: #a0aabe;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aabe;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0aabe;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: #7b88a8;
    background-color: #0d1747;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}