/* ============================================
   Global Color Variables (from homePage.css)
   ============================================ */
:root {
    --primary-blue: #1A2B4D;
    --secondary-blue: #2A4A6D;
    --light-blue: #4A6A8D;
    --hover-blue: #2980b9;
    --accent-blue: #2D348F;
    --accent-red: #D32333;
    --black: #000000;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #999999;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gold: #D4AF37;
    --border-color: #D9D9D9;
    --border-light: rgba(217, 217, 217, 0.35);
    --background-light: rgba(102, 98, 98, 0.24);
    --shadow-color: rgba(50, 50, 93, 0.25);
    --overlay-dark: rgba(0, 0, 0, 0.3);
    --overlay-darker: rgba(0, 0, 0, 0.8);
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    --text-white-transparent: rgba(255, 255, 255, 0.9);
    --card-background: #FFFFFF;
    --button-shadow: #2D348F;
    --gradient-light: #F4F4F4;
    --gradient-dark: #121212;
}

/* ============================================
   Clients Hero Section
   ============================================ */
.clients-hero-background {
    width: 100%;
    height: 500px;
    background-image: url('../../assets/images/clients/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.clients-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white, #FFFFFF);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.clients-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white, #FFFFFF);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ============================================
   Clients Intro Section
   ============================================ */
.clients-intro-section {
    background-color: var(--white, #FFFFFF);
    padding: 4rem 0;
}

.clients-intro-description {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-grey, #333333);
    text-align: start;
    margin-bottom: 0rem;
    line-height: 1.2;
}

.clients-intro-text {
    font-size: 1.1rem;
    color: var(--medium-grey, #666666);
    text-align: start;
    line-height: 1.8;
    margin-bottom: 0;
}
.contact-us-section-title{
    font-family: Inter, sans-serif;
    font-size: 2rem;
    line-height: 2rem;
    color: #333333;
    margin: 10px 0;
    padding: 0 0;
}

.contact-us-section-description{
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.8rem;
    color: rgb(51, 51, 51);
    margin: 10px 0;
    padding: 0 0;
    width: 60%;
}

.lbl-req-contact{
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1.8rem;
    color: rgb(51, 51, 51);
    margin: 10px 0;
    padding: 0 0;
}


.lbl-contact-number{
     font-size: 2rem;
    line-height: 2.8rem;
    color: #262626;
    margin: 0px 0px 0px 0px;
    padding: 0 0;
}
/* ============================================
   Clients Sectors Section
   ============================================ */
.clients-sectors-section {
    background-color: var(--white, #FFFFFF);
    padding: 4rem 0;
}

.client-sector-card {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    font-size: 1rem;
    z-index: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.client-sector-card:hover {
    transform: translateY(-5px);
}

.client-sector-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.client-sector-card:hover::before {
    transform: scale(1.1);
}

.client-sector-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    transition: background 0.3s ease;
}

.client-sector-card:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

.sector-card-title {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white, #FFFFFF);
    margin: 0;
    padding: 0 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sector Card Background Images */
.hotels-sector-card::before {
    background-image: url('../../assets/images/clients/Hotels.webp');
}

.bakeries-sector-card::before {
    background-image: url('../../assets/images/clients/Bakeries.webp');
}

.government-sector-card::before {
    background-image: url('../../assets/images/clients/Government.webp');
}

.supermarkets-sector-card::before {
    background-image: url('../../assets/images/clients/Supermarkets.webp');
}

.corporate-sector-card::before {
    background-image: url('../../assets/images/clients/Corporate.webp');
}

/* ============================================
   Partners Section (uses existing styles)
   ============================================ */
.partners-section {
    background-color: var(--white, #FFFFFF);
}

.partners-section.bg-light {
    background-color: var(--off-white, #F8F9FA);
}

/* ============================================
   Clients Testimonial Section
   ============================================ */
.clients-testimonial-section {
    padding: 4rem 0;
}

.clients-testimonial-content {
    text-align: center;
}

.clients-testimonial-text {
    font-size: 1.2rem;
    color: var(--dark-grey, #333333);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* ============================================
   Clients CTA Section
   ============================================ */
.clients-cta-section {
    position: relative;
    background-color: var(--white, #FFFFFF);
    padding: 5rem 0;
    overflow: hidden;
}

.clients-cta-image-wrapper {
    position: relative;
height: 500px;
    padding-left: 0;
    margin-left: calc(-50vw + 50%);
    padding-right: 15px;
}

.clients-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 500px;
    border-radius: 0 24px 24px 0;
    background-image: url('../../assets/images/clients/footer-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.clients-cta-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark-grey) !important;
    text-decoration: none !important;
}

.btn-request-outline {
    padding: 9px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    cursor: pointer;
    background: #2d348f;
    text-decoration: none;
    color: var(--white);
    height: fit-content;
    width: fit-content;
}

.clients-cta-contact {
    margin-top: 2rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .clients-intro-section {
        padding: 3rem 0;
    }

    .clients-intro-description {
        font-size: 1.25rem;
    }

    .clients-intro-text {
        font-size: 1rem;
    }

    .clients-sectors-section {
        padding: 3rem 0;
    }

    .client-sector-card {
        height: 180px;
        margin-bottom: 1.5rem;
    }

    .sector-card-title {
        font-size: 1.1rem;
    }

    .clients-testimonial-section {
        padding: 3rem 0;
    }

    .clients-testimonial-text {
        font-size: 1.1rem;
    }

    .clients-cta-section {
        padding: 3rem 0;
    }

    .clients-cta-image-wrapper {
        min-height: 400px;
        margin-bottom: 2rem;
        margin-left: -15px;
        padding-right: 15px;
    }

    .clients-cta-image {
        border-radius: 12px;
        position: relative;
        width: calc(100% + 15px);
        left: 0;
    }

    .clients-cta-content {
        padding-left: 0;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .clients-cta-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Paragraph Tags - Mobile Styles */
    .clients-intro-section p,
    .clients-testimonial-section p,
    .clients-cta-section p,
    .client-logos-section p {
        font-size: 1rem !important;
        line-height: 1.8rem !important;
        font-weight: 400;
    }

    /* Hero Section */
    .clients-hero-background {
        height: 350px;
    }

    .clients-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .clients-hero-subtitle {
        font-size: 1rem;
    }

    /* Intro Section */
    .clients-intro-section {
        padding: 2.5rem 0;
    }

    .clients-intro-description {
        font-size: 1rem;
        line-height: 1.8rem;
        margin-bottom: 1rem;
    }

    .clients-intro-text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    /* Sectors Section */
    .clients-sectors-section {
        padding: 2.5rem 0;
    }

    .client-sector-card {
        height: 160px;
        margin-bottom: 1rem;
    }

    .sector-card-title {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }

    /* Testimonial Section */
    .clients-testimonial-section {
        padding: 2.5rem 0;
    }

    .clients-testimonial-text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    /* CTA Section */
    .clients-cta-section {
        padding: 2.5rem 0;
    }

    .clients-cta-image-wrapper {
        min-height: 350px;
        height: 350px;
        margin-left: -15px;
        padding-right: 15px;
        margin-bottom: 1.5rem;
    }

    .clients-cta-image {
        width: 100%;
        height: 350px;
        left: 0;
        border-radius: 12px;
    }

    .clients-cta-content {
        padding-left: 0;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .contact-us-section-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin: 15px 0;
    }

    .contact-us-section-description {
        font-size: 1rem;
        line-height: 1.8rem;
        width: 100%;
        margin: 15px 0;
    }

    .btn-request-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .lbl-req-contact {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 10px 0;
    }

    .lbl-contact-number {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .clients-cta-contact {
        margin-top: 1.5rem;
    }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    /* Hero Section */
    .clients-hero-background {
        height: 500px;
        padding: 0 2rem !important;
    }

    .clients-hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .clients-hero-subtitle {
        font-size: 0.9rem;
    }

    /* Intro Section */
    .clients-intro-section {
        padding: 1rem 2rem !important;
    }

    .clients-intro-text{
        margin-top: 1rem;
    }

    /* Paragraph Tags - Small Mobile Styles */
     .clients-testimonial-section p,
    .clients-cta-section p,
    .client-logos-section p {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
    }

    .clients-intro-description {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.8rem;
    }

    .clients-intro-text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    /* Sectors Section */
    .clients-sectors-section {
        padding: 1rem 2rem;
    }

    .client-sector-card {
        height: 140px;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .sector-card-title {
        font-size:1rem;
        font-weight: 400;
        padding: 0 0.75rem;
        line-height: 1.2;
    }

    /* Testimonial Section */
    .clients-testimonial-section {
        padding: 1rem 2rem !important;
    }

    .clients-testimonial-text {
        font-size: 1rem;
        line-height: 1.8rem;
        padding: 0 0.5rem;
    }

    /* CTA Section */
    .clients-cta-section {
        padding: 2rem 0;
    }

    .clients-cta-image-wrapper {
        min-height: 300px;
        height: 300px;
        margin-left: -15px;
        padding-right: 15px;
        margin-bottom: 1.5rem;
    }

    .clients-cta-image {
        width: 100%;
        height: 300px;
        left: 0;
        border-radius: 10px;
    }

    .clients-cta-content {
        padding: 0 2rem;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .contact-us-section-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 10px 0;
        width: 100%;
        text-align: left;
    }

    .contact-us-section-description {
        font-size: 1rem;
        line-height: 1.8rem;
        width: 100%;
        margin: 10px 0;
        text-align: left;
    }

    .btn-request-outline {
        padding: 8px 18px;
        font-size: 0.875rem;
        border-radius: 6px;
    }

    .lbl-req-contact {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 8px 0;
    }

    .lbl-contact-number {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .clients-cta-contact {
        margin-top: 1.25rem;
    }
}

/* Extra Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Paragraph Tags - Extra Small Mobile Styles */
    
    .clients-testimonial-section p,
    .clients-cta-section p,
    .client-logos-section p {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
    }

    /* Hero Section */
    .clients-hero-background {
        height: 500px;
        padding: 0 2rem !important;
    }

    .clients-hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .clients-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    /* Intro Section */
    .clients-intro-section {
        padding: 1rem 2rem !important;
    }

    .clients-intro-description {
        font-size: 2rem !important; 
        line-height: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight:500;

    }

    .clients-intro-text {
        font-size: 1rem;
        line-height: 1.8rem;
    }

    /* Sectors Section */
    .clients-sectors-section {
        padding: 1rem 2rem;
    }

    .client-sector-card {
        height: 120px;
        margin-bottom: 1rem;
        border-radius: 6px;
    }

    .sector-card-title {
        font-size:1rem;
        font-weight: 400;
        padding: 0 0.75rem;
        line-height: 1.2;
    }

    /* Testimonial Section */
    .clients-testimonial-section {
        padding: 1rem 2rem !important;
    }

    .clients-testimonial-text {
        font-size: 1rem;
        line-height: 1.8rem;
        padding: 0;
    }

    /* CTA Section */
    .clients-cta-section {
        padding: 1.5rem 0;
    }

    .clients-cta-image-wrapper {
        min-height: 250px;
        height: 250px;
        margin-bottom: 1rem;
    }

    .clients-cta-image {
        height: 250px;
        border-radius: 8px;
    }

    .contact-us-section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin: 8px 0;
    }

    .contact-us-section-description {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 8px 0;
    }

    .btn-request-outline {
        padding:15px 32px;
        font-size: 0.8rem;
        width: 100%;
    }

    .lbl-req-contact {
        font-size: 1rem;
        line-height: 1.8rem;
        margin: 6px 0;
    }

    .lbl-contact-number {
        font-size: 1.5rem;
        line-height: 1.6rem;
    }

    .clients-cta-contact br{
        display: none;
    }

    .clients-cta-contact {
        margin-top: 1rem;
    }
}
