/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    text-align: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 38%;
}

/* About Section */
.about {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.about > img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Quote Section */
.quote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.quote-section>img{
    width: 500px;
    height: 200px;
}
blockquote {
    font-size: 24px;
    font-style: italic;
    max-width: 500px;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Team Section */
.team {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.team h2 {
    font-size: 2.5rem;
    color: #014a94;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #014a94;
}

.team-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-members {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-members img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: 42%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-content {
    padding: 20px 0;
}

.team p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}

.stat-box {
    width: 150px;
}

.stat-box h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    text-transform: uppercase;
}

/* About Main Section */
.about-main {
    padding: 100px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-main header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0;
    background: none;
    box-shadow: none;
}

.about-main header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #242323;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.about-main header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    /* background-color: #f64f12; */
}

.quote-section {
    position: relative;
    margin-bottom: 80px;
    padding: 60px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.quote-section blockquote img:first-child {
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.2;
}

.quote-section blockquote img:last-child {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.2;
}

.quote-section blockquote p {
    font-size: 1.8rem;
    font-style: italic;
    color: #242323;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-section blockquote cite {
    font-size: 1.1rem;
    color: #666;
    font-style: normal;
}

.quote-section img:last-of-type {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 35px;
    height: 35px;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #000;
}

.logo h2 span {
    color: #f64f12;
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #014a94;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f64f12;
}

.get-in-touch {
    background-color: #014a94;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.get-in-touch:hover {
    background-color: #f64f12;
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .get-in-touch {
        width: 100%;
        text-align: center;
    }
}

/* Key Strengths Section */
.key-strengths {
    padding: 80px 20px;
    text-align: center;
}

.key-strengths h2 {
    font-size: 3.5rem;
    color: #014a94;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
}

.key-strengths .line {
    width: 80px;
    height: 4px;
    background-color: #014a94;
    margin: 0 auto 40px;
}

.key-strengths .card-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.key-strengths .card {
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.key-strengths .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #014a94;
}

.key-strengths .card:hover .content h3,
.key-strengths .card:hover .content p {
    color: white;
}

.key-strengths .image-container {
    width: 100px;
    height: 100px;
    background: #014a94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.key-strengths .image-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.key-strengths .card:hover .image-container {
    background: white;
}

.key-strengths .card:hover .image-container img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(40%) saturate(7042%) hue-rotate(360deg) brightness(103%) contrast(107%);
}

.key-strengths .content h3 {
    font-size: 1.8rem;
    color: #014a94;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.key-strengths .content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-main header h1 {
        font-size: 3rem;
    }

    .team-content-wrapper {
        gap: 40px;
    }

    .team-members img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 80px 5% 40px;
    }

    .about-main header h1 {
        font-size: 2.5rem;
    }

    .about > img {
        height: 400px;
    }

    .about p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .team {
        margin: 40px auto;
    }

    .team-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-members img {
        height: 400px;
    }

    .team h2 {
        font-size: 2rem;
    }

    .key-strengths {
        padding: 60px 20px;
    }

    .key-strengths h2 {
        font-size: 2.8rem;
    }

    .key-strengths .card {
        min-width: 300px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-main header h1 {
        font-size: 2rem;
    }

    .about > img {
        height: 300px;
    }

    .team-members img {
        height: 300px;
    }

    .team h2 {
        font-size: 1.8rem;
    }

    .team p {
        font-size: 1rem;
    }

    .key-strengths {
        padding: 40px 15px;
    }

    .key-strengths h2 {
        font-size: 2.2rem;
    }

    .key-strengths .card {
        min-width: 280px;
        padding: 25px 15px;
    }
}
  