/* Content Styles */



.main-wrapper {
    width: 100%;
    margin: 0;
    padding: 70px 20px;
    background-color: var(--primary-color);
}

.section-header {
    width: 100%;
    text-align: center;
    padding-bottom: 100px;
}

.section-header__title {
    font-size: 2.5rem !important;
    color: var(--text-color) !important;
    margin-bottom: 10px !important;
}

.section-header__description {
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
}

.company-history {
    margin: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 100px;
}

.company-history__content {
    flex: 1;
    min-width: 300px;
}

.company-history__title {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
    color: var(--text-color) !important;
    font-weight: 700;
    
}

.company-history__text {
    font-size: 1rem !important;
    color: #4a5568 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.experience-highlight {
    flex: 1 !important;
    min-width: 300px !important;
    background-color: #e6f0fa !important;
    padding: 40px !important;
    border-radius: 10px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.experience-highlight__number {
    font-size: 2.5rem !important;
    color: #1a202c !important;
    margin-bottom: 5px !important;
}

.experience-highlight__label {
    font-size: 1rem;
    color: #4a5568;
}

.core-values {
    width: 100%;
    padding-bottom: 80px;
}

.core-values__title {
    font-size: 2rem !important;
    text-align: center !important;
    color: var(--text-color) !important;
    margin-bottom: 10px !important;
    font-weight: 700;
}

.core-values__description {
    font-size: 1.1rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 30px;
}

.core-values__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-item {
    background-color: var(--nav-color);
    padding: 20px !important;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-item__icon {
    width: 40px;
    height: 40px;
    background-color: #e6f0fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-item__title {
    font-size: 1.2rem;
    color: var(--text-color) !important;
    margin-bottom: 10px;
}

 .value-item__description {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    
}

.team-members {
    width: 100%;
    padding-bottom: 80px;
}

.team-members__title {
    font-size: 2rem;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 10px;
}

.team-members__description {
    font-size: 1.1rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 30px;
}

.team-members__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    padding: 0 20px;
}

/* Card Styles */
.card {
    position: relative;
    height: 350px;
    width: 100%;
    background: linear-gradient(to bottom, #e6f0fa, #d3e4f5);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 10px;
}

.card--with-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card__content {
    position: relative;
    width: 100%;
    height: 80px;
    background: #000;
    opacity: 0.8;
    transition: all 0.75s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card__content-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    transition: all 0.75s ease-in-out;
    padding: 10px;
}

.card__content:after {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-color: #fff;
    border-style: solid;
    border-width: 2px 0 0 2px;
    content: "";
}

.card__title {
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.card__description {
    color: #eee;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card:after {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
}

.card.a100,
.card:hover {
    cursor: pointer;
}

.card:hover .card__content {
    height: 100%;
    background: #000;
    transition: all 1s ease-in-out;
}

.card:hover .card__content-inner {
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
}

.card.a100:hover .card__content {
    height: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 30px 15px;
    }

    .section-header__title {
        font-size: 2rem;
        padding-top: 40px;
    }

    .section-header__description {
        font-size: 1rem;
    }

    .company-history__title,
    .core-values__title,
    .team-members__title {
        font-size: 1.5rem;
    }

    .company-history__text {
        font-size: 0.9rem;
    }

    .experience-highlight__number {
        font-size: 2rem;
    }

    .team-members__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        height: 450px;
    }

    .card__title {
        font-size: 1rem;
    }

    .card__description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-wrapper {
        padding: 20px 10px;
    }

    .team-members__grid {
        grid-template-columns: 1fr;
    }

    .core-values__list {
        grid-template-columns: 1fr;
    }

    .card {
        height: 400px;
    }
}
