



.aboutwithBG.withBackgroundImage {
    background-image: url("../img/homepage/garmenting(1920x1080).jpg");
    background-repeat: no-repeat;
    /*background-size: cover;*/
    /*background-position: center;*/
    transition: background-image 0.4s ease-in-out; /* Makes the change smooth */

}

/* Specific background overrides */
.aboutwithBG.supply-chain {
    background-image: url("../img/homepage/supply-chain1920x1080.jpg") !important;
}

.aboutwithBG.realty {
    background-image: url("../img/homepage/realty1920x1080.jpg") !important;
}

.aboutwithBG.logistics {
    background-image: url("../img/homepage/logistics(1920x1080).jpg") !important;
}

.aboutwithBG.agriculture {
    background-image: url("../img/homepage/agri1920x1080.jpg") !important;
}

.aboutwithBG.technology {
    background-image: url("../img/homepage/agri1920x1080.jpg") !important;
}



.aboutSection .goal_images{
    display: grid;
    /*gap: 15px;*/
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

.aboutSection .displayFlex{
    display: flex;
}

/*.aboutSection .goal_images img{
    width: 60px;
}*/

/* --- 3. Hero Layout --- */
.aboutSection .about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    /*margin-bottom: 60px;*/
}

.aboutSection .about-text {
    flex: 1;
}

.aboutSection .subtitle {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 29px;
    /*font-family: 'Helvetica Neue', sans-serif;*/
    /*font-family: 'CG Omega',sans-serif !important;*/
    font-family: 'Falgun', sans-serif !important;
}

.aboutSection .about-text h1 {
    font-size: 3rem;
    margin: 15px 0;
    line-height: 1.2;
    font-family: 'Helvetica Neue', sans-serif;
}

.aboutSection .highlight {
    color: var(--primary-color);
}

.aboutSection .about-text p {
    /*font-size: 1.1rem;*/
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* --- 4. Hero Image --- */
.aboutSection .about-image {
    /*flex: 1;*/
}




.aboutSection .about-image .itemSetion{
    display: none;
}

.aboutSection .about-image .itemSetion .active {
    display: block;
    animation: fadeIn 0.5s ease;
    /*position: relative;*/
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.aboutSection .about-image .itemSetion .text-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    padding: 15px 15px 0 15px;
    /*border-radius: 0 0 10px 10px;*/
}


@media (max-width: 600px) {
    .aboutSection .about-image .itemSetion .text-content{
        position: relative !important;
        background: none !important;
    }
}
.aboutSection .about-image .itemSetion .text-content a{
    border: 1px solid #ef9a3e;
    border-radius: 4px;
    padding: 4px 12px;

}





/* 1. Hide all sections by default */
.aboutSection .about-image .itemSetion {
    /*position: relative;*/
    display: none; /* Keep them hidden */
}

/* 2. CORRECTED: Show the section when IT HAS the active class (no space) */
.aboutSection .about-image .itemSetion.active {
    display: block;
    animation: fadeIn 0.5s ease;
}





.aboutSection .tabs-nav .tab-link {
    color: #fff;
}


/* 4. Fix Tab Link Active State */
.aboutSection .tabs-nav .tab-link.active {
    color: #ef9a3e;
    background: white;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    /*border-bottom: 4px solid #ef9a3e;*/
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.aboutSection .about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- 5. Stats Styling --- */
.aboutSection .stats-container {
    display: flex;
    gap: 30px;
}

.aboutSection .stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.aboutSection .stat-item p {
    /*font-size: 0.9rem;*/
    margin: 0;
}

/* --- 6. Sector Grid Styling --- */
.aboutSection .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.aboutSection .sector-card {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    font-family: 'Helvetica Neue', sans-serif;
}

.aboutSection .sector-card:hover {
    transform: translateY(-10px);
    background: white;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.aboutSection .sector-card .icon {
    font-size: 2.5rem;
    /*margin-bottom: 20px;*/
    background: #ef9a3e;
    color: white;
    border-radius: 50%;
    padding: 15px;
    text-align: center;
    width: fit-content;
    margin: 0 auto 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.aboutSection .sector-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

/* --- 7. Responsive Adjustments --- */
@media (max-width: 992px) {
    .aboutSection .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .aboutSection .stats-container {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .aboutSection .about-text h1 {
        font-size: 2.2rem;
    }
}


.aboutSection .tabs-nav{
    list-style: none !important;
    padding: 0 0 0 0 !important;
    margin: 0 0 0 0 !important;
}

.aboutSection .tabs-nav .tab-link{
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    /*letter-spacing: .01em;*/
    height: 70px;
    line-height: 70px;
    position: relative;
    transition: all .4s;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
}


.aboutSection .tabs-nav .tab-link:hover,.active{
    color: #ef9a3e;
    cursor: pointer;



}







