/* About Us Section Styles */
.who-we-are-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/who-we-are.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.who-we-are-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.who-we-are-section .about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.who-we-are-section .about-text {
    flex: 1;
    max-width: 850px;
    text-align: center;
    line-height: 1.7;
    font-size: 1.1em;
    padding: 50px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.who-we-are-section .about-text:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.who-we-are-section .section-heading {
    font-size: 3.8em;
    margin-bottom: 35px;
    color: #1a2a46;
    font-weight: 900;
    line-height: 1.15;
    position: relative;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
    letter-spacing: -0.02em;
}

.who-we-are-section .section-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 7px;
    background: linear-gradient(to right, #007bff, #0056b3, #007bff);
    margin: 30px auto 0;
    border-radius: 4px;
    opacity: 0.95;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.who-we-are-section .about-text p {
    margin-bottom: 28px;
    color: #343a40;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15em;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.02);
}

.who-we-are-section .about-btn {
    background-color: #1a2a46;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.5s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, letter-spacing 0.4s ease;
    display: inline-block;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
}

.who-we-are-section .about-btn:hover {
    background-color: #0056b3;
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 123, 255, 0.45);
    letter-spacing: 2.5px;
}

.who-we-are-section .about-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    z-index: 0;
}

.who-we-are-section .about-btn:hover::before {
    width: 250px;
    height: 250px;
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1144dcac;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(5, 20, 41);
}

/* About Page Hero Section */
.about-hero-section {
    position: relative;
    min-height: 550px;
    color: #fff;
    padding-top: 80px;
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.about-hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
}

.about-hero-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: normal;
}

.about-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.about-hero-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.white-spacer {
    background-color: #ffffff;
    height: 10px;
}

/* Mission & Vision Section */
.about-mv-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f8ffe9 100%);
    text-align: center;
    color: #333;
}

.about-mv-heading {
    font-size: 3.2em;
    color: #1a2a46;
    margin-bottom: 20px;
}

.about-mv-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 7px;
    background: linear-gradient(to right, #007bff, #0056b3, #007bff);
    margin: 30px auto 0;
    border-radius: 4px;
    opacity: 0.95;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.about-mv-tagline {
    font-size: 1.15em;
    margin-bottom: 70px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #666;
}

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

.about-mv-card {
    background-color: #ffffffe3;
    border-radius: 12px;
    padding: 45px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.about-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-mv-icon {
    font-size: 3.8em;
    color: #007bff;
    margin-bottom: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-mv-card h3 {
    font-size: 1.9em;
    margin-bottom: 18px;
    color: #333;
    font-weight: 600;
}

.about-mv-card p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Team Section */
.about-team-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f8ffe9 100%);
    text-align: center;
    color: #333;
}

.about-team-heading {
    font-size: 3.2em;
    color: #1a2a46;
    margin-bottom: 20px;
}

.about-team-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 7px;
    background: linear-gradient(to right, #007bff, #0056b3, #007bff);
    margin: 30px auto 0;
    border-radius: 4px;
    opacity: 0.95;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.about-team-tagline {
    font-size: 1.15em;
    margin-bottom: 70px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #666;
}

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

.about-team-card {
    background-color: #ffffffe3;
    border-radius: 12px;
    padding: 45px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
}

.about-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-team-card h3 {
    font-size: 1.9em;
    margin-bottom: 18px;
    color: #333;
    font-weight: 600;
}

.about-team-card h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #007bff;
    font-weight: 500;
}

.about-team-card p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-team-card img.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.about-team-card .bio {
    font-size: 0.95em;
    color: #444;
    line-height: 1.6;
    margin-top: 10px;
}

.linkedin-icon a {
    color: #0077b5;
    font-size: 32px;
    transition: color 0.3s ease;
}

.linkedin-icon a:hover {
    color: #005582;
}

/* About Page Why Us Section */
.about-why-section {
    padding: 100px 0;
    background-image: url('../images/aboutus-whyus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
}

.about-why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 70, 0.272);
    z-index: 1;
}

.about-why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-why-heading {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,123,255,0.4);
}

.about-why-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 7px;
    background: linear-gradient(to right, #007bff, #0056b3, #007bff);
    margin: 30px auto 0;
    border-radius: 4px;
    opacity: 0.95;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
}

.about-why-tagline {
    font-size: 1.2em;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #fff;
}

.about-why-highlight {
    background-color: rgba(26, 42, 70, 0.85);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-why-item {
    background-color: rgba(26, 42, 70, 0.75);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 123, 255, 0.2);
    transition: all 0.4s ease;
}

.about-why-item:hover {
    transform: translateY(-10px);
    background-color: rgba(26, 42, 70, 0.95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 123, 255, 0.8);
}

.about-why-icon {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 20px;
    background-color: rgba(0, 123, 255, 0.2);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}

.about-why-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}

.about-why-item p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #e0e0e0;
}

/* ============================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   ============================================ */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    /* Hero Section */
    .about-hero-section {
        height: 700px;
        min-height: 500px;
    }

    .about-hero-content {
        max-width: 600px;
        padding: 0 30px;
    }

    .about-hero-text {
        padding: 35px 25px;
    }

    .about-hero-content h2 {
        font-size: 2.5em;
    }

    .about-hero-content p {
        font-size: 1.1em;
    }

    .white-spacer {
        height: 8px;
    }

    /* Who We Are Section */
    .who-we-are-section {
        padding: 80px 0;
    }

    .who-we-are-section .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .who-we-are-section .about-text {
        max-width: 100%;
        text-align: center;
        padding: 40px 25px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
    }

    .who-we-are-section .about-text:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    }

    .who-we-are-section .section-heading {
        font-size: 2.8em;
        margin-bottom: 25px;
    }

    .who-we-are-section .section-heading::after {
        margin: 20px auto 0;
        width: 80px;
        height: 5px;
    }

    .who-we-are-section .about-text p {
        font-size: 1.05em;
        margin-bottom: 20px;
    }

    .who-we-are-section .about-btn {
        padding: 15px 35px;
        font-size: 0.95em;
        letter-spacing: 1.5px;
        margin-top: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .who-we-are-section .about-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 123, 255, 0.35);
        letter-spacing: 1.8px;
    }

    /* Mission & Vision Section */
    .about-mv-section {
        padding: 70px 0;
    }

    .about-mv-heading {
        font-size: 2.8em;
    }

    .about-mv-tagline {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .about-mv-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .about-mv-card {
        padding: 40px 20px;
    }

    .about-mv-icon {
        font-size: 3.2em;
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }

    .about-mv-card h3 {
        font-size: 1.7em;
    }

    .about-mv-card p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Team Section */
    .about-team-section {
        padding: 70px 0;
    }

    .about-team-heading {
        font-size: 2.8em;
    }

    .about-team-tagline {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .about-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .about-team-card {
        padding: 40px 20px;
    }

    .about-team-card h3 {
        font-size: 1.7em;
    }

    .about-team-card h4 {
        font-size: 1.2em;
    }

    .about-team-card p,
    .about-team-card .bio {
        font-size: 1em;
    }

    .linkedin-icon a {
        font-size: 28px;
    }

    /* Why Us Section */
    .about-why-section {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .about-why-heading {
        font-size: 2.8em;
    }

    .about-why-tagline {
        font-size: 1.1em;
        margin-bottom: 50px;
    }

    .about-why-highlight {
        padding: 25px;
    }

    .about-why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .about-why-item {
        padding: 30px;
    }

    .about-why-icon {
        font-size: 2.8em;
        width: 75px;
        height: 75px;
    }

    .about-why-item h3 {
        font-size: 1.6em;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Hero Section */
    .about-hero-section {
        height: 100vh;
        min-height: 500px;
        padding-top: 80px;
    }

    .about-hero-content {
        max-width: 100%;
        width: calc(100% - 30px);
        margin: 0 auto;
        padding: 0 15px;
    }

    .about-hero-text {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .about-hero-content h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .about-hero-content p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .white-spacer {
        height: 5px;
    }

    /* Who We Are Section */
    .who-we-are-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .who-we-are-section .about-text {
        padding: 30px 20px;
        font-size: 1em;
    }

    .who-we-are-section .section-heading {
        font-size: 2.2em;
    }

    .who-we-are-section .section-heading::after {
        width: 60px;
        height: 4px;
    }

    .who-we-are-section .about-text p {
        font-size: 0.95em;
    }

    .who-we-are-section .about-btn {
        padding: 12px 30px;
        font-size: 0.9em;
        letter-spacing: 1.2px;
    }

    /* Mission & Vision Section */
    .about-mv-section {
        padding: 60px 0;
    }

    .about-mv-heading {
        font-size: 2.4em;
    }

    .about-mv-tagline {
        font-size: 1em;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .about-mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-mv-card {
        padding: 35px 20px;
    }

    .about-mv-icon {
        font-size: 3em;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .about-mv-card h3 {
        font-size: 1.5em;
    }

    .about-mv-card p {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    /* Team Section */
    .about-team-section {
        padding: 60px 0;
    }

    .about-team-heading {
        font-size: 2.4em;
    }

    .about-team-tagline {
        font-size: 1em;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-team-card {
        padding: 35px 20px;
    }

    .about-team-card img.team-photo {
        width: 100px;
        height: 100px;
    }

    .about-team-card h3 {
        font-size: 1.5em;
    }

    .about-team-card h4 {
        font-size: 1.1em;
    }

    .about-team-card p,
    .about-team-card .bio {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .linkedin-icon a {
        font-size: 26px;
    }

    /* Why Us Section */
    .about-why-section {
        padding: 80px 0;
    }

    .about-why-highlight {
        padding: 25px 20px;
    }

    .about-why-heading {
        font-size: 2.4em;
    }

    .about-why-tagline {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-why-item {
        padding: 25px;
    }

    .about-why-icon {
        font-size: 2.5em;
        width: 70px;
        height: 70px;
    }

    .about-why-item h3 {
        font-size: 1.4em;
    }

    .about-why-item p {
        font-size: 0.95em;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    /* Hero Section */
    .about-hero-section {
        height: 100vh;
        min-height: 500px;
        padding-top: 70px;
    }

    .about-hero-content {
        padding: 0 15px;
        width: calc(100% - 30px);
    }

    .about-hero-text {
        padding: 25px 15px;
    }

    .about-hero-content h2 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }

    .about-hero-content p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .white-spacer {
        height: 3px;
    }

    /* Who We Are Section */
    .who-we-are-section {
        padding: 40px 0;
    }

    .who-we-are-section .about-text {
        padding: 25px 15px;
        border-radius: 10px;
    }

    .who-we-are-section .section-heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .who-we-are-section .section-heading::after {
        margin: 15px auto 0;
        width: 50px;
    }

    .who-we-are-section .about-text p {
        font-size: 0.9em;
        margin-bottom: 18px;
    }

    .who-we-are-section .about-btn {
        padding: 10px 25px;
        font-size: 0.8em;
        letter-spacing: 1px;
        margin-top: 25px;
    }

    /* Mission & Vision Section */
    .about-mv-section {
        padding: 50px 0;
    }

    .about-mv-heading {
        font-size: 2em;
    }

    .about-mv-tagline {
        font-size: 0.9em;
        margin-bottom: 35px;
    }

    .about-mv-card {
        padding: 30px 15px;
    }

    .about-mv-icon {
        font-size: 2.6em;
        width: 60px;
        height: 60px;
    }

    .about-mv-card h3 {
        font-size: 1.3em;
    }

    .about-mv-card p {
        font-size: 0.9em;
        margin-bottom: 18px;
    }

    /* Team Section */
    .about-team-section {
        padding: 50px 0;
    }

    .about-team-heading {
        font-size: 2em;
    }

    .about-team-tagline {
        font-size: 0.9em;
        margin-bottom: 35px;
    }

    .about-team-card {
        padding: 30px 15px;
    }

    .about-team-card img.team-photo {
        width: 90px;
        height: 90px;
    }

    .about-team-card h3 {
        font-size: 1.3em;
    }

    .about-team-card h4 {
        font-size: 1em;
    }

    .about-team-card p,
    .about-team-card .bio {
        font-size: 0.9em;
        margin-bottom: 18px;
    }

    .linkedin-icon a {
        font-size: 24px;
    }

    /* Why Us Section */
    .about-why-section {
        padding: 60px 0;
    }

    .about-why-highlight {
        padding: 20px 15px;
    }

    .about-why-heading {
        font-size: 2em;
    }

    .about-why-tagline {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .about-why-item {
        padding: 20px;
    }

    .about-why-icon {
        font-size: 2.2em;
        width: 60px;
        height: 60px;
    }

    .about-why-item h3 {
        font-size: 1.2em;
    }

    .about-why-item p {
        font-size: 0.85em;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero Section */
    .about-hero-section {
        min-height: 450px;
    }

    .about-hero-content {
        padding: 0 10px;
        width: calc(100% - 20px);
    }

    .about-hero-content h2 {
        font-size: 1.4em;
    }

    .about-hero-content p {
        font-size: 0.85em;
    }

    /* Who We Are Section */
    .who-we-are-section .section-heading {
        font-size: 1.5em;
    }

    .who-we-are-section .about-text p {
        font-size: 0.85em;
    }

    /* Mission & Vision Section */
    .about-mv-heading {
        font-size: 1.8em;
    }

    .about-mv-tagline {
        font-size: 0.85em;
    }

    .about-mv-card h3 {
        font-size: 1.2em;
    }

    .about-mv-card p {
        font-size: 0.85em;
    }

    /* Team Section */
    .about-team-heading {
        font-size: 1.8em;
    }

    .about-team-tagline {
        font-size: 0.85em;
    }

    .about-team-card h3 {
        font-size: 1.2em;
    }

    .about-team-card h4 {
        font-size: 0.95em;
    }

    .about-team-card p,
    .about-team-card .bio {
        font-size: 0.85em;
    }

    /* Why Us Section */
    .about-why-heading {
        font-size: 1.8em;
    }

    .about-why-tagline {
        font-size: 0.9em;
    }

    .about-why-item h3 {
        font-size: 1.1em;
    }

    .about-why-item p {
        font-size: 0.8em;
    }
}

/* Extra Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    /* Hero Section */
    .about-hero-section {
        min-height: 400px;
        padding-top: 60px;
    }

    .about-hero-content {
        padding: 0 10px;
        width: calc(100% - 20px);
    }

    .about-hero-text {
        padding: 20px 12px;
    }

    .about-hero-content h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .about-hero-content p {
        font-size: 0.8em;
        margin-bottom: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }

    .white-spacer {
        height: 2px;
    }

    /* Who We Are Section */
    .who-we-are-section {
        padding: 35px 0;
    }

    .who-we-are-section .about-text {
        padding: 20px 12px;
    }

    .who-we-are-section .section-heading {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .who-we-are-section .section-heading::after {
        width: 40px;
        height: 3px;
        margin: 12px auto 0;
    }

    .who-we-are-section .about-text p {
        font-size: 0.8em;
        margin-bottom: 15px;
    }

    .who-we-are-section .about-btn {
        padding: 8px 20px;
        font-size: 0.75em;
        margin-top: 20px;
    }

    /* Mission & Vision Section */
    .about-mv-section {
        padding: 40px 0;
    }

    .about-mv-heading {
        font-size: 1.6em;
    }

    .about-mv-heading::after {
        width: 70px;
        height: 5px;
    }

    .about-mv-tagline {
        font-size: 0.8em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .about-mv-grid {
        gap: 20px;
    }

    .about-mv-card {
        padding: 25px 12px;
    }

    .about-mv-icon {
        font-size: 2.2em;
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .about-mv-card h3 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .about-mv-card p {
        font-size: 0.8em;
        margin-bottom: 15px;
    }

    /* Team Section */
    .about-team-section {
        padding: 40px 0;
    }

    .about-team-heading {
        font-size: 1.6em;
    }

    .about-team-heading::after {
        width: 70px;
        height: 5px;
    }

    .about-team-tagline {
        font-size: 0.8em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .about-team-grid {
        gap: 20px;
    }

    .about-team-card {
        padding: 25px 12px;
    }

    .about-team-card img.team-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .about-team-card h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .about-team-card h4 {
        font-size: 0.9em;
        margin-bottom: 12px;
    }

    .about-team-card p,
    .about-team-card .bio {
        font-size: 0.8em;
        margin-bottom: 15px;
    }

    .linkedin-icon a {
        font-size: 22px;
    }

    /* Why Us Section */
    .about-why-section {
        padding: 50px 0;
    }

    .about-why-highlight {
        padding: 18px 12px;
    }

    .about-why-heading {
        font-size: 1.6em;
    }

    .about-why-heading::after {
        width: 70px;
        height: 5px;
    }

    .about-why-tagline {
        font-size: 0.85em;
        margin-bottom: 25px;
    }

    .about-why-grid {
        gap: 18px;
    }

    .about-why-item {
        padding: 18px 12px;
    }

    .about-why-icon {
        font-size: 2em;
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .about-why-item h3 {
        font-size: 1em;
        margin-bottom: 12px;
    }

    .about-why-item p {
        font-size: 0.75em;
        line-height: 1.6;
    }
}

/* Landscape orientation fixes for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .about-hero-section {
        height: 100vh;
        min-height: 400px;
    }

    .about-hero-content h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .about-hero-content p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for better mobile UX */
    .btn,
    .who-we-are-section .about-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 28px;
    }

    .about-mv-card,
    .about-team-card,
    .about-why-item {
        /* Remove hover effects on touch devices */
        transition: none;
    }

    .about-mv-card:active,
    .about-team-card:active,
    .about-why-item:active {
        transform: scale(0.98);
    }
}

/* Prevent text from being too small on any device */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }

    .about-hero-content {
        padding: 0 8px;
        width: calc(100% - 16px);
    }

    .about-hero-content h2 {
        font-size: 1.1em;
    }

    .about-hero-content p {
        font-size: 0.75em;
    }

    .white-spacer {
        height: 1px;
    }

    .who-we-are-section .section-heading,
    .about-mv-heading,
    .about-team-heading,
    .about-why-heading {
        font-size: 1.4em;
    }

    .about-mv-card h3,
    .about-team-card h3,
    .about-why-item h3 {
        font-size: 0.95em;
    }

    .about-mv-card p,
    .about-team-card p,
    .about-team-card .bio,
    .about-why-item p {
        font-size: 0.7em;
    }
}