
/* General Reset & Font */
        body {
            margin: 0;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background-color: #fff;
            color: #333;
        }

        /* Banner */
        #banner_clnt_page {
            background: url("../images/our client.webp") center/cover no-repeat;
            min-height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #banner_clnt_page::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4); /* overlay */
            z-index: 1;
        }



/* Our Clients Section */
.our_client {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.our_client h2 {
    font-size: 2.5rem;
    color: #155ba2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.our_client p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Navigation Tabs */
.nav-tabs-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.nav-tab {
    background: none;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.nav-tab:hover {
    background-color: #f0f8ff;
    color: #155ba2;
}

.nav-tab.active {
    color: #155ba2;
    background-color: #e6f3ff;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #155ba2;
}

/* Client Sections */
.client-section {
    display: none;
    padding: 1rem;
}

.client-section.active {
    display: block;
}

.client-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #155ba2;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Client Grid - Responsive Deck Layout */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    justify-items: stretch;
}

/* Client Cards - Responsive Deck Cards */
.client-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.client-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.client-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Card Content */
.client-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.client-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #155ba2;
    margin-bottom: 0.8rem;
}

.client-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.client-card-location {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .our_client h2 {
        font-size: 2rem;
    }

    .our_client p {
        font-size: 1rem;
    }

    .nav-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-tab {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }

    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .client-card-image {
        height: 140px;
    }

    .client-card-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .our_client {
        padding: 2rem 0.5rem 1rem;
    }

    .nav-tabs-container {
        padding: 0 0.5rem;
    }

    .client-card-content {
        padding: 0.8rem;
    }
}


        
		

        /* ========== UPDATED TESTIMONIALS SECTION - CAROUSEL ========== */
        .testimonials-section {
            max-width: 960px;
            margin: 4rem auto 2rem auto;
            padding: 2rem 1rem;
            background-color: #fefefe;
            border-top: 4px solid #155ba2;
            position: relative;
            overflow: hidden;
        }

        .testimonial-heading {
            text-align: center;
            font-size: 2rem;
            color: #23619e;
            margin-bottom: 2rem;
            font-family: 'Open Sans', sans-serif;
        }

        .testimonial-carousel {
            position: relative;
            min-height: 200px;
            overflow: hidden;
        }

        .testimonial {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.5s ease-in-out;
        }

        .testimonial.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial.prev {
            opacity: 0;
            transform: translateX(-100%);
        }

        .testimonial p {
            font-size: 1rem;
            color: #444;
            line-height: 1.6;
            font-family: 'Open Sans', sans-serif;
            margin-bottom: 0.5rem;
        }

        .testimonial span {
            display: block;
            margin-top: 0.5rem;
            color: rgb(68, 69, 70);
            font-style: italic;
            font-size: 0.95rem;
        }

        /* Carousel indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            gap: 0.5rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .indicator.active {
            background-color: #155ba2;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            #banner_clnt_page {
                min-height: 200px;
                background-position: center;
            }

            .content_client_page {
                padding: 1rem 1.5rem;
            }

            .content_client_page h1 {
                font-size: 1.8rem;
            }

            .content_client_page p {
                font-size: 1rem;
            }

            .nav ul li {
                display: block;
                text-align: center;
                width: 100%;
            }

            .our_client h2 {
                font-size: 1.5rem;
            }

            .our_client p {
                font-size: 0.95rem;
            }

            .client_main_sub .row {
                flex-direction: column;
            }

            .client_main_sub .row > * {
                flex: 1 1 100%;
            }

            .testimonial {
                padding: 1rem;
            }

            .testimonial-heading {
                font-size: 1.5rem;
            }

            .testimonial p {
                font-size: 0.95rem;
            }

            .testimonial span {
                font-size: 0.9rem;
            }
        }