/* Hero Wrapper */
.hero-wrapper {
    background: linear-gradient(135deg, #e8e4f3 0%, #d9d5e8 100%);
    padding: 60px 40px;
}

.container.feature-section__container {
    max-width: 1650px;
    margin: auto;
}

section.feature-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../image/bg-bk.png);
    padding: 110px 0;
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 12rem;
}

.hero-content-section__heading {
    font-weight: 700;
    color: #1A237E;
    margin: 0;
}

.hero-content-section__description {
    color: #525252;
    margin: 0;
}

/* Button Container */
.hero-button-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.hero-button {
    display: inline-block;
    padding: 15px 42px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 26px;
    border: 1px solid #CCFF00;
}

.hero-button--primary {
    background: #CCFF00;
    color: #333;
}

.hero-button--primary:hover {
    background: #B3E600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 255, 0, 0.3);
}

.hero-button--primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.hero-button--secondary {
    background: transparent;
    color: #2d3561;
    border: 1px solid #2d3561;
}

.hero-button--secondary:hover {
    background: #2d3561;
    color: white;
    transform: translateY(-2px);
}

.hero-button--secondary:active {
    transform: translateY(0);
}

/* Right Image Section */
.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.hero-image-wrapper__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Features Wrapper */
.features-wrapper {
    padding: 60px 0px;
}
.section-header {
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
/* Features Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.features-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.features-card__icon {
    width: 67px;
    height: 67px;
    min-width: 67px;
    background: #EEF4F3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 100px;
    padding: 10px;
}
span.card_icn {
    display: inline-flex;
}
.features-card__title {
    font-size: 23px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.features-card__description {
    font-size: 16px;
    color: #525252;
    line-height: 1.6;
    margin: 0;
}

/* Button Container */
.features-button-container {
    text-align: center;
    padding-top: 20px;
}

/* Learn More Button */
.features-button {
    background: #CCFF00;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    padding: 15px 42px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 26px;
    border: 1px solid #CCFF00;
}

.features-button:hover {
    background: #B3E600;
    transform: scale(1.05);
}

.features-button:active {
    transform: scale(0.98);
}





/* Responsive Design */
@media (max-width: 1500px) {
    .hero-content-section {
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1.5fr 1fr;
    }
}



@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-card {
        padding: 24px;
    }

    .features-card__title {
        font-size: 16px;
    }

    .features-card__description {
        font-size: 12px;
    }

    body .hero-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-wrapper {
        padding: 40px 20px;
    }

    .hero-content-section__heading {
        font-size: 32px;
    }

    .hero-content-section__description {
        font-size: 16px;
    }


    .hero-button-group {
        flex-wrap: wrap;
    }
    section.feature-section {
    padding: 40px 0 50px;
}
}



@media (max-width: 480px) {
    .hero-wrapper {
        padding: 30px 16px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-content-section__heading {
        font-size: 24px;
    }
    .hero-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .features-wrapper {
        padding: 40px 0px;
    }

    .features-card {
        padding: 20px;
    }

}