.breadcrumb {
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    padding-left: 30px;
    background: linear-gradient(132deg, #614d4d, #f2f2f200);
    z-index: 1;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb li {
    font-size: 14px;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    font-weight: 600;
}

.about-banner {
    background-image: url(../../images/contact/contact-banner.webp);
    height: 300px;
}

.bg-control::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 37%);
    position: absolute;
    top: 0;
    left: 0;
}

h1 {
    font-size: 70px;
    background: linear-gradient(45deg, #ffffff, #0000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
}

/* about-sec css */
.about-sec h2,
.about-sec p {
    margin-bottom: 20px;
}

.features-section {
    background: #f4fbf9;
}

.features-section .row {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    flex: 1;
    padding: 10px 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #2da9e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease-in-out;
}

.icon-circle i {
    font-size: 30px;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.feature-card:hover .icon-circle {
    transform: scale(1.5);
}

.feature-card:hover .icon-circle {
    background: #1a6fc4;
}

.icon-circle img {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    max-width: 340px;
    margin: auto;
}

.culture-section {
    background: #ffffff;
}

.culture-section .row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.culture-left .culture-tag {
    color: #2da9e9;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-style: italic;
}

.culture-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.culture-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
}

.culture-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

/* Center card offset */
.culture-card:nth-child(1) {
    grid-column: span 2;
    justify-self: center;
    transform: translateY(20px);
}

.culture-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eaf6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.icon-box i {
    font-size: 30px;
    color: #000;
}

.culture-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 600;
}

.culture-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #666;
}

@media (max-width:992px) {
    .about-sec .row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-section .row {
        gap: 20px;
    }

    .feature-card {
        padding: 0;
    }

    .culture-section .row {
        grid-template-columns: 1fr;
    }

    .culture-left p {
        max-width: 100%;
    }

    .culture-right {
        grid-template-columns: repeat(3, 1fr);
    }

    .culture-card:nth-child(1) {
        grid-column: span 1;
        transform: translateY(0);
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 34px;
    }

    .features-section .row,
    .culture-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-last-of-type(1),
    .culture-card:nth-last-of-type(1) {
        grid-column: span 2;
    }
}

@media (max-width:580px) {
    h2 {
        font-size: 24px !important;
    }

    .features-section .row,
    .culture-right {
        grid-template-columns: repeat(1, 1fr);
    }

    .feature-card:nth-last-of-type(1),
    .culture-card:nth-last-of-type(1) {
        grid-column: span 1;
    }
}