/* About Us Page Specific Styles */

/* Navbar fix for About page */
#navbar {
    background-color: transparent !important;
    transition: background-color 0.3s ease !important;
}

#navbar.scrolled {
    background-color: var(--primary-navy) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw; /* Prevent horizontal overflow */
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: -80px;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem); /* Responsive font size */
    margin-bottom: 25px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.5rem); /* Responsive font size */
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--neutral-white);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    padding: 0 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 60px); /* Responsive gap */
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 15px;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    min-width: 120px;
    flex: 1;
}

.stat.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem); /* Responsive font size */
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1.1rem); /* Responsive font size */
    color: var(--neutral-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    word-wrap: break-word;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
    padding: 0 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    color: var(--neutral-dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
    word-wrap: break-word;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.story-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--neutral-white);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.story-text {
    padding: 0 10px;
}

.story-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.story-text p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--neutral-dark-gray);
    margin-bottom: 20px;
    word-wrap: break-word;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: var(--neutral-light-gray);
    width: 100%;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--neutral-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.mission-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-orange);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--neutral-white);
}

.mission-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.mission-text {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    word-wrap: break-word;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--neutral-white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform-style: preserve-3d;
    width: 100%;
}

.value-card.animate {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-orange);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--neutral-white);
}

.value-title {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.value-description {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    word-wrap: break-word;
}

.value-points {
    list-style: none;
    padding: 0;
    text-align: left;
}

.value-points li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    color: var(--neutral-dark-gray);
    word-wrap: break-word;
}

.value-points i {
    color: var(--accent-orange);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    flex-shrink: 0;
}

/* Culture Section */
.culture-section {
    padding: 80px 20px;
    background: var(--neutral-light-gray);
    width: 100%;
    overflow: hidden;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .culture-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.culture-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.culture-description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--neutral-dark-gray);
    margin-bottom: 30px;
    word-wrap: break-word;
}

.culture-pillars {
    margin-bottom: 30px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--neutral-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

@media (min-width: 576px) {
    .pillar {
        flex-direction: row;
        align-items: flex-start;
    }
}

.pillar:hover {
    transform: translateX(10px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.pillar-content h4 {
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    margin-bottom: 8px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.pillar-content p {
    font-size: clamp(0.9rem, 1.3vw, 0.95rem);
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
    word-wrap: break-word;
}

.culture-quote {
    border-left: 4px solid var(--accent-orange);
    padding: 20px;
    background: var(--neutral-white);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: var(--primary-navy);
    margin-top: 30px;
    position: relative;
    word-wrap: break-word;
}

.culture-quote i.fa-quote-left {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: rgba(10, 26, 58, 0.1);
}

.culture-quote i.fa-quote-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: rgba(10, 26, 58, 0.1);
}

.culture-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-orange);
    text-align: right;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
}

.culture-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.culture-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: cover;
}

.culture-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 26, 58, 0.85);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
}

.culture-stat {
    text-align: center;
    flex: 1 1 100px;
    min-width: 80px;
}

.culture-stat .stat-number {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 5px;
    line-height: 1;
}

.culture-stat .stat-label {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    color: var(--neutral-white);
    opacity: 0.9;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .leadership-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.leader-card {
    background: var(--neutral-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.leader-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.linkedin-link {
    width: 45px;
    height: 45px;
    background: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: var(--accent-orange);
    color: var(--neutral-white);
    transform: scale(1.1);
}

.leader-info {
    padding: 20px;
    text-align: center;
}

.leader-name {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 8px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.leader-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    word-wrap: break-word;
}

.leader-bio {
    color: var(--neutral-dark-gray);
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 0;
    word-wrap: break-word;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 20px;
    background: var(--neutral-light-gray);
    width: 100%;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.timeline.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 4px;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
}

.timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
}

.timeline-year {
    position: absolute;
    left: 20px;
    background: var(--accent-orange);
    color: var(--neutral-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
    z-index: 2;
    transform: translateX(-50%);
}

.timeline-item:nth-child(even) .timeline-year {
    left: 20px;
    right: auto;
    transform: translateX(-50%);
}

.timeline-content {
    background: var(--neutral-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
}

.timeline-content::before {
    display: none;
}

.timeline-content h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.2rem);
    margin-bottom: 10px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.timeline-content p {
    color: var(--neutral-dark-gray);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    word-wrap: break-word;
}

/* Tablet and desktop timeline */
@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        padding-left: 50%;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 0;
        padding-right: 50%;
        text-align: right;
    }
    
    .timeline-year {
        left: 50%;
        transform: translateX(-50%);
        min-width: 100px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 30px;
    }
    
    .timeline-content::before {
        display: block;
        content: '';
        position: absolute;
        top: 20px;
        left: -30px;
        border-width: 15px;
        border-style: solid;
        border-color: transparent var(--neutral-white) transparent transparent;
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        left: auto;
        right: -30px;
        border-color: transparent transparent transparent var(--neutral-white);
    }
}

/* CTA Section */
.about-cta-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    width: 100%;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.7));
    z-index: 2;
}

.about-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 20px;
    width: 100%;
}

.about-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    padding: 0 10px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

@media (min-width: 576px) {
    .cta-button {
        width: auto;
    }
}

.cta-button.primary {
    background: var(--accent-orange);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

.cta-button.secondary {
    background: var(--primary-navy);
    color: var(--neutral-white);
    box-shadow: 0 8px 25px rgba(10, 26, 58, 0.3);
}

.cta-button.outline {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    background: var(--accent-orange-light);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

.cta-button.secondary:hover {
    background: var(--primary-navy-dark);
    box-shadow: 0 15px 30px rgba(10, 26, 58, 0.4);
}

.cta-button.outline:hover {
    background: var(--neutral-white);
    color: var(--primary-navy);
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-animate="fade-up"].animate {
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

/* Slide Left Animation */
[data-animate="slide-left"].animate {
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

/* Slide Right Animation */
[data-animate="slide-right"].animate {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

/* Flip Animation */
[data-animate="flip"] {
    transform: perspective(1000px) rotateY(90deg);
}

[data-animate="flip"].animate {
    transform: perspective(1000px) rotateY(0deg);
}

/* Responsive Styles */
@media (min-width: 1200px) {
    .about-hero {
        padding: 180px 0 100px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 992px) {
    .about-hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        padding-left: 50%;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 0;
        padding-right: 50%;
        text-align: right;
    }
    
    .timeline-year {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 30px;
    }
    
    .timeline-content::before {
        display: block;
    }
}

@media (min-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .culture-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .cta-button {
        width: auto;
    }
}

@media (min-width: 576px) {
    .about-hero {
        padding: 100px 0 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
    }
    
    .pillar {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .culture-stats {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Small mobile devices */
@media (max-width: 575px) {
    .about-hero {
        padding: 100px 20px 40px;
        margin-top: -60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .story-section,
    .mission-section,
    .values-section,
    .culture-section,
    .leadership-section,
    .timeline-section {
        padding: 60px 15px;
    }
    
    .story-image img {
        height: 250px;
    }
    
    .image-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .mission-grid,
    .values-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-image img {
        height: 250px;
    }
    
    .culture-stats {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .culture-stat {
        flex: 1 1 100%;
    }
    
    .timeline {
        padding: 30px 0;
    }
    
    .timeline-item {
        padding-left: 50px;
        padding-right: 10px;
        margin-bottom: 30px;
    }
    
    .timeline-year {
        left: 15px;
        padding: 6px 12px;
        font-size: 0.9rem;
        min-width: 70px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .about-cta-section {
        padding: 60px 15px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .story-text h3 {
        font-size: 1.4rem;
    }
    
    .story-text p {
        font-size: 0.95rem;
    }
    
    .mission-title {
        font-size: 1.2rem;
    }
    
    .mission-text {
        font-size: 0.9rem;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .culture-title {
        font-size: 1.6rem;
    }
    
    .culture-description {
        font-size: 0.95rem;
    }
    
    .leader-name {
        font-size: 1.1rem;
    }
    
    .leader-title {
        font-size: 0.9rem;
    }
    
    .leader-bio {
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
}