/* Banner Section */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 2;
}

.banner-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px; /* Add some top padding */
}

/* Breadcrumb styles */
.breadcrumb {
    padding: 10px 0;
    margin-top: 15px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #FF9900 !important;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

/* Custom breadcrumb styles */
.custom-breadcrumb .breadcrumb {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-divider {
    color: #FF9900;
    font-size: 30px;
    padding: 0 5px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.text-orange {
    color: #FF9900 !important;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #FF9900 !important;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.banner-heading {
    font-size: 60px;
    font-weight: 400;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
}

/* Tab Section Styles */
.tab-section {
        padding: 80px 0;
    background-color: #f8f9fa;
    
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tabs-header {
    display: flex;
    flex-wrap: nowrap;
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tabs-header::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    .tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0;
    }
    .tab {
        min-width: 120px;
        padding: 20px 10px;
        font-size: 15px;
    }
}
@media (min-width: 769px) {
    .tabs-header {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .tab {
        min-width: 140px;
        font-size: 18px;
    }
}

.tab {
    flex: 1 0 auto;
    padding: 30px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
    min-width: 100px;
    font-size: 18px;
    will-change: transform, background-color, border-color;
}

.tab img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0); /* Black color for inactive tabs */
    transition: filter 0.3s ease;
}

.tab.active img {
    filter: brightness(0) invert(1); /* White color for active tabs */
}

.tab:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.tab.active {
    background-color: #ff8c00;
    color: white;
    border-bottom: 3px solid #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.content-area {
    padding: 30px 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-text {
    flex: 1;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.content-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #495057;
    margin: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px;
    transition: opacity 0.3s ease;
}

/* Tablet Styles */
@media (min-width: 576px) {
    .content-area {
        padding: 40px 30px;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .content-features {
        grid-template-columns: 1fr; /* Keep single column layout */
    }
    
    .content-image {
        height: 300px;
    }
    
    .content-image img {
        height: 100%;
    }
}

/* Desktop Styles */
/* Clients Grid Section */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.client-logo {
    flex: 0 0 calc(20% - 30px);
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    opacity: 0.8;
}

@media (min-width: 992px) {
    .tab-section {
        padding: 80px 0;
    }
    
    .content-area {
        padding: 60px;
        min-height: 400px;
        gap: 60px;
    }
    
    .content-title {
        font-size: 36px;
    }
    
    .content-image {
        max-width: 500px;
        height: 350px;
    }
}

/* Small Mobile Styles */
@media (max-width: 360px) {
    .tab {
        min-width: 70px;
        padding: 12px 5px;
    }
    
    .tab-title {
        font-size: 12px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-description {
        font-size: 14px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-section {
        height: 300px;
    }
    
    .banner-heading {
        font-size: 2.5rem;
    }
}