/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #0033A0;
    --accent-color: #FF3B30;
    --text-color: #333;
    --bg-color: #F5F7FA;
    --card-bg: #FFFFFF;
    --header-bg: #0033A0;
}

.dark-mode {
    --primary-color: #1a4fc9;
    --accent-color: #ff524a;
    --text-color: #fff;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --header-bg: #152642;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.header {
    background-color: var(--header-bg);
}

.program-card,
.number-card,
.feature,
.faq-item,
.choose-card {
    background: var(--card-bg);
}

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

/* Header and Navigation */
.header {
    background-color: #0033A0;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    background-color: #FF6B00;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

.header-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #FF6B00;
    border-radius: 0 0 10px 10px;
}

.nav ul {
    display: flex;
    gap: 1.25rem;
    list-style: none;
}

.nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.625rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav a:hover {
    background-color: #FF3B30;
    color: #FFFFFF;
}

.btn-partnership {
    background-color: #FF3B30;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-partnership:hover {
    background-color: #cc2e25;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: rotate(45deg);
}

.nav ul li {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        flex-direction: column;
        background-color: #0033A0;
        display: none;
        box-shadow: -2px 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 8px 8px;
        padding: 1rem 0;
    }

    .nav ul.active {
        display: flex;
    }

    .nav li {
        margin: 0.625rem 1rem;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Mobile Hero Section */
.mobile-hero-section {
    display: none;
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.mobile-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-slide.active {
    opacity: 1;
}

@media (max-width: 480px) {
    .hero-section {
        display: none; /* Hide regular hero section */
    }
    
    .mobile-hero-section {
        display: block; /* Show mobile hero section */
    }
    
    .mobile-slide {
        background-size: cover;
        background-position: top center;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    transition: all 0.8s ease-in-out 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FF3B30;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: #0033A0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.prev-slide,
.next-slide {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover,
.next-slide:hover {
    background: #FF3B30;
}

.prev-slide i,
.next-slide i {
    font-size: 1.2rem;
}

.slide-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF3B30;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
    }
}

/* Tablet Responsive */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .slide img {
        object-position: center;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .slider-controls {
        bottom: 20px;
        z-index: 100;
    }

    .prev-slide,
    .next-slide {
        padding: 10px 20px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.5);
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Phone Responsive */
@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
        position: relative;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .slide {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .slide img {
        object-position: center;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .slider-controls {
        bottom: 15px;
        z-index: 100;
        position: absolute;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .prev-slide,
    .next-slide {
        padding: 8px 16px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.4);
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #FF6B00;
}

.btn-primary {
    padding: 12px 24px;
    background-color: #FF3B30;
    /* JetBlue Red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #cc2e25;
    transform: translateY(-3px);
}

/* Intro Section */
.intro-section {
    padding: 60px 20px;
    margin-top: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/1-b.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.intro-section .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-section .section-title {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #0033A0, #FF3B30);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.intro-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 80px 20px;
    }

    .intro-section .section-title {
        font-size: 2.2rem;
    }

    .intro-section .intro-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Hero Media Section */
.hero-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.modern-slideshow {
    width: 100%;
    max-width: 650px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.2);
    transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.slide.active .slide-inner {
    animation: zoomPan 20s ease-in-out infinite alternate;
}

@keyframes zoomPan {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -2%);
    }

    100% {
        transform: scale(1) translate(2%, 2%);
    }
}

.slide-nav {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slide-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-btn.active {
    background-color: #FF6B00;
}

/* Slide-in Animation */
@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 30px 20px;
        height: auto;
        gap: 20px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-media {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }

    .modern-slideshow {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .slide-inner {
        width: 100%;
        height: 100%;
    }

    .slide-nav {
        bottom: 15px;
        z-index: 10;
    }

    .slide-btn {
        width: 8px;
        height: 8px;
        background-color: white;
        opacity: 0.7;
    }

    .slide-btn.active {
        opacity: 1;
    }
}

/* Modern About Section Styles */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    padding-right: 40px;
}

.about-subtitle {
    color: #FF3B30;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0033A0;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-text {
    margin-top: 40px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #0033A0;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background: #FF3B30;
    transform: translateY(-3px);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item.main-image {
    grid-column: 1 / -1;
}

.grid-item.main-image img {
    height: 300px;
}

.grid-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left {
        padding-right: 0;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .grid-item img,
    .grid-item.main-image img {
        height: 250px;
    }
}

.section-title {
    font-size: 2.5rem;
    color: #0033A0;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.1);
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    color: #FF3B30;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.gallery-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-nav button:hover {
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .slide img {
        height: 300px;
    }
}

/* Left and Right Card Specific Animations */
.card-left {
    animation-delay: 0.2s;
}

.card-right {
    animation-delay: 0.4s;
}

.about-card h3 {
    font-size: 1.8rem;
    color: #FF3B30;
    /* JetBlue Red */
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Animations */
@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        margin-bottom: 20px;
    }
}

.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Programs Section Styles */
.programs-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.program-card:nth-child(1) {
    animation-delay: 0.2s;
}

.program-card:nth-child(2) {
    animation-delay: 0.4s;
}

.program-card:nth-child(3) {
    animation-delay: 0.6s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.15);
}

.program-card i {
    font-size: 3rem;
    color: #0033A0;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.program-card:hover i {
    transform: scale(1.2);
}

.program-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* EFL Section Styles */
.efl-section {
    padding: 100px 20px;
    background-color: #fff;
}

.efl-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.efl-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.efl-card:nth-child(1) {
    animation-delay: 0.2s;
}

.efl-card:nth-child(2) {
    animation-delay: 0.4s;
}

.efl-card:hover {
    transform: translateY(-10px);
}

.efl-card i {
    font-size: 2.5rem;
    color: #0033A0;
    margin-bottom: 20px;
}

.efl-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.efl-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.efl-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0033A0;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.efl-link:hover {
    gap: 15px;
}

@media (max-width: 768px) {
    .efl-container {
        flex-direction: column;
    }

    .efl-card {
        padding: 30px;
    }
}

/* Numbers Section */
.numbers-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.number-icon {
    width: 80px;
    height: 80px;
    background: #0033A0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.number-icon i {
    font-size: 2.5rem;
    color: white;
}

.number-card h3 {
    color: #0033A0;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.number-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF3B30;
}

.percent, .plus {
    font-size: 2rem;
    color: #FF3B30;
    font-weight: 600;
}

.number-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-card {
        padding: 30px 20px;
    }
}

.numbers-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease forwards;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    margin: 0 auto;
    display: flex;flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.1);
    border: 2px solid #0033A0;
    animation: pulseCircle 2s ease-in-out infinite;
}

.number-card h3 {
    font-size: 1.4rem;
    color: #0033A0;
    margin-bottom: 15px;
    text-align: center;
}

.additional-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
}

@keyframes pulseCircle {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.number-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.2);
}

.number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0033A0;
    display: inline-block;
    opacity: 0;
    animation: countUp 2s ease-out forwards;
    animation-delay: 0.5s;
}

.percent,
.plus {
    font-size: 2rem;
    color: #FF3B30;
    font-weight: 700;
    margin-left: 5px;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 2s;
}

.number-card p {
    margin-top: 15px;
    color: #666;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 2.2s;
}

@keyframes circleProgress {
    0% {
        clip-path: polygon(50% 50%, 50% 0, 50% 0, 50% 50%);
    }

    25% {
        clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 50% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .number-card {
        width: 200px;
        height: 200px;
    }

    .number {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .number-card {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* Education Programs Section */
.education-section {
    padding: 100px 20px;
    background-color: #fff;
}

.education-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: #666;
    line-height: 1.6;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.education-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.education-card:nth-child(1) {
    animation-delay: 0.2s;
}

.education-card:nth-child(2) {
    animation-delay: 0.4s;
}

.education-card:nth-child(3) {
    animation-delay: 0.6s;
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.15);
}

.card-content {
    padding: 30px;
}

.education-card h3 {
    color: #0033A0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.education-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF3B30;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
}

@media (max-width: 992px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
    }

    .education-card {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* Community Section Styles */
.community-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.community-content {
    flex: 1;
}

.community-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #FF3B30;
    margin-bottom: 15px;
    animation-duration: 2s;
}

.feature:nth-child(2) i {
    color: #0033A0;
}

.feature span {
    display: block;
    color: #333;
    font-weight: 600;
}

.community-image {
    flex: 1;
    position: relative;
}

.community-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .community-container {
        flex-direction: column;
    }

    .community-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .community-features {
        grid-template-columns: 1fr;
    }
}

/* Why Choose ILC Section */
.choose-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

.choose-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.choose-card:nth-child(1) {
    animation-delay: 0.1s;
}

.choose-card:nth-child(2) {
    animation-delay: 0.2s;
}

.choose-card:nth-child(3) {
    animation-delay: 0.3s;
}

.choose-card:nth-child(4) {
    animation-delay: 0.4s;
}

.choose-card:nth-child(5) {
    animation-delay: 0.5s;
}

.choose-card:nth-child(6) {
    animation-delay: 0.6s;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.15);
}

.choose-card i {
    font-size: 2.5rem;
    color: #0033A0;
    margin-bottom: 20px;
}

.choose-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.choose-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #0033A0, #FF3B30);
    transition: height 0.3s ease;
}

.faq-item.active::before {
    height: 100%;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.faq-question span {
    flex: 1;
    margin-right: 20px;
    font-size: 1.1rem;
}

.faq-question i {
    color: #0033A0;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 51, 160, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.15);
}

.faq-item.active .faq-question {
    color: #0033A0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #0033A0;
    color: white;
}

.faq-answer {
    padding: 25px 30px;
    background: rgba(0, 51, 160, 0.02);
    border-top: 1px solid rgba(0, 51, 160, 0.1);
}

.faq-question {
    background: #0033A0;
    color: white !important;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* Programs Page Styles */
.programs-page {
    min-height: 100vh;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.program-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
}

.program-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 51, 160, 0.9), rgba(0, 74, 209, 0.9));
    opacity: 0;
    transition: all 0.4s ease;
}

.program-box:nth-child(even)::after {
    background: linear-gradient(145deg, rgba(255, 59, 48, 0.9), rgba(255, 107, 102, 0.9));
}

.program-content {
    position: relative;
    padding: 30px;
    z-index: 1;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.program-box h3 {
    font-size: 1.8rem;
    color: #0033A0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.program-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.program-box .learn-more {
    padding: 12px 25px;
    background: #0033A0;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.program-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-box:hover::after {
    opacity: 1;
}

.program-box:hover h3,
.program-box:hover p {
    color: white;
}

.program-box:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
    background: white;
    color: #0033A0;
}

.program-box:nth-child(even):hover .learn-more {
    color: #FF3B30;
}

.program-box.animate-in {
    animation: fadeInScale 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.programs-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.programs-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.programs-grid-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

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

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2.2rem;
    }

    .programs-grid-section {
        padding: 40px 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #0033A0;
    color: white;
    padding: 80px 20px 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #FF3B30;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF3B30;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #FF3B30;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Careers Page Styles */
.careers-page {
    min-height: 100vh;
    background-color: var(--bg-color);
}

.careers-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 51, 160, 0.9), rgba(0, 51, 160, 0.9)), url('images/1-b.jpg');
    background-size: cover;
    background-position: center;
}

.careers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.careers-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.careers-grid-section {
    padding: 80px 20px;
}

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

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.career-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-10px);
}

.career-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.career-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.career-header h3 {
    font-size: 1.5rem;
}

.career-content {
    padding: 30px;
}

.career-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.requirements {
    list-style: none;
    margin-bottom: 30px;
}

.requirements li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.requirements li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.apply-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.why-work-section {
    padding: 80px 20px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-page {
    min-height: 100vh;
    background-color: var(--bg-color);
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.section-title-left::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.values-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 50px;
}

.values-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.value-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }

.value-icon {
    position: absolute;
    left: -62px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
}

.value-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.value-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.value-content:hover {
    transform: translateY(-5px);
}

.value-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-content p {
    color: #666;
    line-height: 1.6;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .story-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .story-image img {
        height: 300px;
    }

    .values-timeline {
        padding-left: 30px;
    }

    .value-icon {
        left: -42px;
    }
}

.about-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 51, 160, 0.9), rgba(0, 51, 160, 0.9)), url('images/1-b.jpg');
    background-size: cover;
    background-position: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-story-section {
    padding: 80px 20px;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.mission-vision-section {
    padding: 80px 20px;
    background: var(--bg-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-color);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    background-color: var(--bg-color);
}

.contact-hero {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-info {
    padding: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    padding: 30px;
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 51, 160, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-container {
        padding: 20px;
    }
}

/* Gallery Section */
.gallery-showcase {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}