/* ===== ABOUT PAGE STYLES ===== */

/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 112px; /* Account for fixed navbar */
}
/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2a63 0%, #143b82 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1588072432836-e10032774350?w=1600') center/cover no-repeat;
    opacity: 0.15;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 42, 99, 0.9) 0%, rgba(15, 42, 99, 0.7) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.page-header-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-header-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    background: #f8fafc;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb li a {
    color: #0f2a63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #c62828;
}

.breadcrumb li.current {
    color: #1a1a2e;
    font-weight: 600;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: #9ca3af;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(198, 40, 40, 0.1);
    color: #c62828;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(15, 42, 99, 0.08);
    color: #0f2a63;
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* margin-left: 25%; */
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 16px;
}

.section-header .subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #c62828;
    color: #ffffff;
    border-color: #c62828;
}

.btn-primary:hover {
    background: #a51616;
    border-color: #a51616;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: #ffffff;
    color: #0f2a63;
    border-color: #ffffff;
}

.btn-light {
    background: #ffffff;
    color: #0f2a63;
    border-color: #ffffff;
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0f2a63;
    border-color: #ffffff;
}

/* ===== HERO SECTION ===== */
.about-hero {
    padding: 80px 0 100px;
    background: #ffffff;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f2a63;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-content>p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #c62828;
}

.stat-text {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-image {
    position: relative;
}

.image-stack {
    position: relative;
}

.image-stack .main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(15, 42, 99, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #ffffff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-badge i {
    font-size: 28px;
    color: #c62828;
}

.image-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #0f2a63;
}

/* ===== FOUNDATION SECTION ===== */
.foundation-section {
    padding: 100px 0;
    background: #f8fafc;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.foundation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 42, 99, 0.12);
    border-color: transparent;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f2a63, #143b82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon i {
    font-size: 32px;
    color: #ffffff;
}

.foundation-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 12px;
}

.foundation-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    padding: 100px 0;
    background: #ffffff;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-images {
    position: relative;
}

.image-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 42, 99, 0.1);
}

.gallery-img.img-1 {
    grid-column: 1 / 3;
    height: 280px;
    object-fit: cover;
}

.gallery-img.img-2,
.gallery-img.img-3 {
    height: 180px;
    object-fit: cover;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 24px;
}

.story-content>p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 16px;
}

.story-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.story-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.story-box .box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0f2a63, #143b82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.story-box .box-icon i {
    font-size: 24px;
    color: #ffffff;
}

.story-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 8px;
}

.story-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== PRINCIPAL SECTION - MODERN & PROFESSIONAL ===== */
.principal-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.principal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c62828, #0f2a63, #c62828);
}

.principal-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(15, 42, 99, 0.06), 0 1px 3px rgba(15, 42, 99, 0.04);
    border: 1px solid #e2e8f0;
}

.principal-image {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.principal-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(15, 42, 99, 0.12);
}

.principal-frame {
    position: absolute;
    top: 15px;
    left: -15px;
    right: 15px;
    bottom: -15px;
    border: 3px solid #c62828;
    border-radius: 19px;
    z-index: -1;
    opacity: 0.4;
}

.principal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.principal-content .section-label {
    margin-bottom: 12px;
    align-self: flex-start;
}

.principal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 24px;
    line-height: 1.3;
}

.principal-quote {
    margin: 0 0 28px 0;
    padding: 28px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 16px;
    border-left: 4px solid #c62828;
    position: relative;
}

.principal-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 48px;
    color: #c62828;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.principal-quote i {
    color: #c62828;
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
    font-style: italic;
}

.principal-quote p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.principal-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.principal-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 2px;
}

.principal-info .position {
    font-size: 14px;
    color: #c62828;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.principal-signature {
    margin-top: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.principal-signature strong {
    font-size: 14px;
    color: #0f2a63;
    font-weight: 700;
}

.principal-signature span {
    font-size: 13px;
    color: #6b7280;
}

.signature-img {
    max-width: 120px;
    opacity: 0.8;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    padding: 100px 0;
    background: #ffffff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 42, 99, 0.1);
}

.program-card.featured {
    background: linear-gradient(135deg, #f7f9ff, #55637d);
    border-color: transparent;
}

.program-card.featured h3 {
    color: #0f2a63;
}
.program-card.featured p {
    color: black;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #c62828;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.program-card .card-icon {
    width: 72px;
    height: 72px;
    background: rgba(15, 42, 99, 0.1);
    border-radius: 16px;
}

.program-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.program-card .card-icon i {
    font-size: 28px;
    color: #0f2a63;
}

.program-card.featured .card-icon i {
    color: #ffffff;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 12px;
}

.program-card>p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.program-list li i {
    color: #10b981;
    font-size: 14px;
}

/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-section {
    padding: 100px 0;
    background: #f8fafc;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.infra-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 42, 99, 0.1);
}

.infra-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f2a63, #143b82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.infra-icon i {
    font-size: 32px;
    color: #ffffff;
}

.infra-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 12px;
}

.infra-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== FACULTY SECTION ===== */
.faculty-section {
    padding: 100px 0;
    background: #ffffff;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faculty-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 42, 99, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 42, 99, 0.15);
}

.faculty-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.05);
}

.faculty-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faculty-card:hover .faculty-overlay {
    opacity: 1;
}

.faculty-social {
    display: flex;
    gap: 12px;
}

.faculty-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f2a63;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faculty-social a:hover {
    background: #c62828;
    color: #ffffff;
}

.faculty-content {
    padding: 24px;
    text-align: center;
}

.faculty-role {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(198, 40, 40, 0.1);
    color: #c62828;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.faculty-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 8px;
}

.faculty-qualification {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
}

.faculty-experience {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.faculty-experience i {
    color: #c62828;
    margin-right: 6px;
}

.faculty-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.faculty-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 48px;
}

.faculty-stat {
    text-align: center;
}

.faculty-stat .stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #c62828;
    margin-bottom: 8px;
}

.faculty-stat .stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-faculty-section {
    /* background: linear-gradient(135deg, #0f2a63, #143b82); */
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.join-faculty-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.join-faculty-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.join-faculty-section .btn-primary {
    background: #c62828;
    color: #ffffff;
    border-color: #c62828;
}

.join-faculty-section .btn-primary:hover {
    /* margin-top: 25px; */
    background: #a51616;
    border-color: #a51616;
}

/* ===== VIEW ALL FACULTY BUTTON - MODERN & PROMINENT ===== */
.view-faculty-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.view-faculty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0f2a63, #143b82);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 42, 99, 0.25);
    border: 2px solid transparent;
}

.view-faculty-btn:hover {
    background: linear-gradient(135deg, #c62828, #a51616);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.35);
    color: #ffffff;
}

.view-faculty-btn i:first-of-type {
    font-size: 16px;
}

.view-faculty-btn:hover i:last-of-type {
    transform: translateX(5px);
}

.view-faculty-btn i:last-of-type {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* ===== RESPONSIVE FACULTY ===== */
@media (max-width: 992px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faculty-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }

    .faculty-stats {
        flex-direction: column;
        gap: 32px;
    }

    .join-faculty-section {
        padding: 36px 24px;
    }

    .join-faculty-content h3 {
        font-size: 24px;
    }
}

/* ===== IMPACT SECTION ===== */
.impact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2a63, #143b82);
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1588072432836-e10032774350?w=1600') center/cover no-repeat;
    opacity: 0.1;
}

.impact-inner {
    position: relative;
    z-index: 2;
}

.impact-header {
    margin-bottom: 60px;
}

.impact-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.impact-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.impact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.impact-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.impact-card .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(15, 42, 99, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 42, 99, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    margin-bottom: 16px;
}

.quote-icon i {
    font-size: 28px;
    color: #c62828;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: #6b7280;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2a63, #143b82);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ffffff;
}

.cta-feature i {
    color: #10b981;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-overlay {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-stat i {
    color: #f59e0b;
    font-size: 20px;
}

.cta-stat span {
    font-size: 16px;
    font-weight: 700;
    color: #0f2a63;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f2a63;
    margin: 0;
}

.faq-question i {
    color: #6b7280;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #c62828;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 16px;
}

.faq-contact p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #c62828;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #a51616;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .about-hero-inner {
        gap: 40px;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {

    .about-hero-inner,
    .story-wrapper,
    .principal-wrapper,
    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        order: -1;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .foundation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .teacher-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 35vh;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .section-header h2,
    .about-hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .foundation-grid,
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .story-features,
    .story-boxes {
        grid-template-columns: 1fr;
    }

    .principal-wrapper {
        padding: 40px 28px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-card:last-child {
        grid-column: span 2;
    }

    .cta-buttons {
        justify-content: center;
    }

    .teachers-slider-container {
        padding: 0 20px;
    }

    .teacher-slide {
        flex: 0 0 100%;
    }

    .teachers-controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .about-hero-content h1 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card .stat-number {
        font-size: 32px;
    }

    .cta-wrapper {
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== ANIMATION UTILITIES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}