/*---------------------------------------------------- */
/*about area*/
/*----------------------------------------------------*/

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, rgba(138, 43, 226, 0.7), rgba(65, 105, 225, 0.7), rgba(64, 224, 208, 0.7)); */
    position: relative;
    overflow: hidden;

    width: 100%;
    /* height: calc(80vh - 112px); */
    height: 80vh;
    /* background-image: url("about_us.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.9;
    display: block;
}

.hero .container {
    padding-top: 50px;
    padding-left: 45px;
}

/* Breadcrumb */
.breadcrumb {
    width: 100%;
    color: #374a9e;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: 0%;
    background: transparent;
    padding: 0px;
    padding-top: 31px;
}

.breadcrumb span {
    color: #374A9E;
    font-weight: 700;
}

.breadcrumb a.home-navigate {
    color: #5575ee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a.home-navigate span {
    color: #5575ee;
    text-decoration: none;
    font-weight: 400;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 70px;
    padding-bottom: 80px;
}

.about-title {
    padding-left: 45px;
}

.about-title h1 {
    color: #5575ee;
    font-weight: 700;
    font-size: 80px;
    line-height: 70px;
    letter-spacing: 2%;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #212529;

    /* font-family: Fira Sans; */
    font-weight: 500;
    font-style: Medium;
    font-size: 42px;
    line-height: 54px;
    letter-spacing: 1%;

    padding-bottom: 0.5rem;
    border-bottom: 5px solid #9d94d5;
    display: inline-block;
}

.about-content{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content div:nth-of-type(2) h2 {
    border-color: #e2bafe;
}

.about-content p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 1rem;

    /* font-family: Fira Sans; */
    font-weight: 400;
    /* font-style: Regular; */
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #e8ecff 100%);
}

.impact-container {
    padding-top: 88px;
    padding-bottom: 102px;
    margin: 0 auto;
}

.impact-section h2 {
    margin-bottom: 3rem;
    color: #212529;

    /* font-family: 'Fira Sans'; */
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.01em;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.impact-card {
    background: white;
    padding: 45px 27px;
    border-radius: 14px;
    transition: transform 0.3s;
    /* border: 1px solid #DFDFDF; */
}

.impact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 110px;
    height: 110px;
    /* background: linear-gradient(135deg, #5575EE, #8A2BE2); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.impact-card .impact-content {
    margin-top: 15px;
    padding: 0px 14px;
}

.impact-card h3 {
    color: #212529;
    margin-top: 17px;
    margin-bottom: 35px;

    /* font-family: 'Fira Sans'; */
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
}

.impact-card p {
    color: #444;

    /* font-family: 'Fira Sans'; */
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content{
        gap: 52px;
    }

    .about-content p {
        font-size: 16px;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }
}
