.bg-image-section {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1607082349566-1870c6f88b93");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #6ea23f;
    min-height: 350px;
    display: flex;
    align-items: center;
}


.bg-image-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.bg-image-section .container {
    z-index: 2;
}

.bg-image-section .section-title::after {
    background: #f3b51b;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #6ea23f;
    border-radius: 2px;
}


.stats-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    /* height: 220px;
    width: 260px; */
    border-top: 5px solid #6ea23f;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6ea23f;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #1a1a2e;
    font-weight: 600;
}


.design-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.design-content {
    position: relative;
    z-index: 1;
}


.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.main-heading .highlight {
    color: #6ea23f;
}

.sub-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2rem;
}


.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6ea23f;
    margin-top: 3rem;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f3b51b;
    border-radius: 50%;
}


.fashion-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #6ea23f;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}


.design-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.design-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}


@media (max-width: 992px) {
    .main-heading {
        font-size: 2.8rem;
    }
    .sub-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .design-image {
        margin-top: 40px;
        transform: none;
    }
}

@media (max-width: 576px) {
    .stats-section,
    .design-section {
        padding: 60px 0;
    }
    .main-heading {
        font-size: 1.8rem;
    }
}
@media (max-width:480px) {
    .abt_btn{
        margin-top: 15px;
    }
}
