/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 40vh;
    /* background-image: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 91, 144, 0.8) 0%,
        rgba(15, 23, 42, 0.9) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Responsive Styles for About Hero */
@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero p {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.125rem;
    }
}


/* About Mission Section Styles */
.about-mission {
    padding: 6rem 0;
    background-color: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    padding-right: 2rem;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.mission-list li:hover {
    transform: translateX(10px);
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #00A99D;
    flex-shrink: 0;
}

.mission-image-wrapper {
    position: relative;
   
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 169, 157, 0.2);
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
  
    transition: transform 0.3s ease;
}

.mission-image:hover {
    transform: scale(1.05);
}

/* Animation Classes */
.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeLeft 1s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-content {
        padding-right: 0;
    }

    .mission-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-mission {
        padding: 4rem 0;
    }

    .mission-content h2 {
        font-size: 1.75rem;
    }

    .mission-content p,
    .mission-list li {
        font-size: 1rem;
    }
}




/* About Approach Section Styles */
.about-approach {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.about-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    border: 2px solid #00A99D;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.approach-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #00A99D 0%, #0F172A 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.2);
}

.approach-card:hover h3,
.approach-card:hover p,
.approach-card:hover .approach-icon {
    color: white;
}

.approach-icon {
    color: #00A99D;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.approach-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.approach-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-approach {
        padding: 4rem 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-approach h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-card h3 {
        font-size: 1.25rem;
    }

    .approach-card p {
        font-size: 1rem;
    }
}




/* About Values Section Styles */
.about-values {
    padding: 6rem 0;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-image-wrapper {
    position: relative;

    overflow: hidden;
   
    transition: transform 0.3s ease;
}

.values-image-wrapper:hover {
    transform: scale(1.02);
}

.values-image {
    width: 100%;
    height: auto;
    display: block;
 
    transition: transform 0.3s ease;
}

.values-content {
    padding-left: 2rem;
}

.values-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item2 {
    display: flex;
    gap: 1rem;
 
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item2:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

.value-check {
    width: 24px;
    height: 24px;
    color: #00A99D;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.value-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Animation Classes */
.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeLeft 1s ease forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeRight 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-content {
        padding-left: 0;
    }

    .values-content h2 {
        font-size: 2rem;
    }

    .value-text h3 {
        font-size: 1.125rem;
    }

    .value-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-values {
        padding: 4rem 0;
    }

    .values-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .values-list {
        gap: 1rem;
    }

    .value-item2:hover {
        transform: translateX(5px);
    }
}




