@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Nunito', sans-serif !important;
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 100px;
    /* header height */
}

.hide-lg {
    display: none;
}

/* Show only on large screens (≥ 1024px) */
@media (min-width: 1400px) {
    .hide-lg {
        display: list-item;
    }
}

:root {
    --primary-bg: #FFFDFD;
    --secondary-bg: #000000;
    --primary-color: #001E61;
    --primary-light-color: #CCD2DF;
    --secondary-color: #20A7C7;
    --primary-text-color: #131313;
    --secondary-text-color: #ffffff;
    --tertiary-text-color: #413D45;
    --font-xsmall: 14px;
    --font-size-small: 16px;
    --font-size-medium: 18px;
    --font-size-large: 28px;
    --font-size-xlarge: 36px;
    --font-size-xxlarge: 48px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --section-spacing: 40px;
}

/* Banner Contact Buttons */
.banner-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.banner-btn i {
    font-size: 18px;
}

.banner-btn.call-btn {
    background:  #003399 ;
    color: white;
}

.banner-btn.call-btn:hover {
    background:  #002270 ;
    transform: translateY(-2px);
    /* box-shadow: 0 6px 16px rgba(0, 30, 97, 0.3); */
}

.banner-btn.whatsapp-btn {
    background: #20A7C7 ;
    color: white;
}

.banner-btn.whatsapp-btn:hover {
    background: #0f97b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* .float-btn:hover {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
} */

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* .whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #0F6F5E 100%);
} */

.call-btn {
    background: linear-gradient(135deg, #001E61 0%, #003399 100%);
}

/* .call-btn:hover {
    background: linear-gradient(135deg, #000D3A 0%, #002270 100%);
} */


@media screen and (max-width: 768px) {
    .banner-contact-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    .banner-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .banner-btn i {
        font-size: 16px;
    }

    :root {
        --font-xsmall: 12px;
        --font-size-small: 14px;
        --font-size-medium: 16px;
        --font-size-large: 24px;
        --font-size-xlarge: 28px;
        --font-size-xxlarge: 34px;
        --section-spacing: 40px;
    }

    .floating-contact-buttons {
        bottom: 50px;
        right: 15px;
        gap: 12px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* hero-section scrolled  (max-width: 480px)*/
.font-xsmall {
    font-size: var(--font-xsmall);
    /* 14px */
}

.font-small {
    font-size: var(--font-size-small);
    /* 16px */
}

.font-medium {
    font-size: var(--font-size-medium);
    /* 18px */
}

.font-large {
    font-size: var(--font-size-large);
    /* 28px */
}

.font-xlarge {
    font-size: var(--font-size-xlarge);
    /* 36px */
}

.font-xxlarge {
    font-size: var(--font-size-xxlarge);
    /* 44px */
}

.font-weight-light {
    font-weight: var(--font-weight-light);
}

.font-weight-regular {
    font-weight: var(--font-weight-regular);
}

.font-weight-medium {
    font-weight: var(--font-weight-medium);
}

.font-weight-bold {
    font-weight: var(--font-weight-bold);
}

.primary-text-color {
    color: var(--primary-text-color);
}

.secondary-text-color {
    color: var(--secondary-text-color);
}

.tertiary-text-color {
    color: var(--tertiary-text-color);
}


* {
    margin: 0;
    padding: 0;
}

p,
ul,
li {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;


    cursor: pointer;


}

.button {
    border-radius: 30px;
    padding: 10px 18px;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
    border: none;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.secondary-button {
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
    border: none;
}

.tertiary-button {
    background-color: var(--primary-light-color);
    color: var(--primary-color);
    border: none;
}

.section-spacing {
    padding: var(--section-spacing) 0;
}

.body {
    background-color: var(--primary-bg);
    font-family: 'Nunito', sans-serif;
}


/* Your existing font hero-main-content */
.hero-main-area {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 20px 0px 20px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* @media (min-width: 768px) {
    .hero-main-area {   
        padding: 20px 20px 0px 20px;

    }
} */


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }

    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

/* Custom responsive styles testimonial-card */
@media (min-width: 768px) {
    .font-xxlarge {
        font-size: 3rem;
    }
}


/* Hero List Styling - Global */
.hero-main-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-main-content ul li {
    font-size: 1.1rem;
    /* Slightly smaller for mobile safe default */
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    /* Better for multi-line text on mobile */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* Desktop overrides if needed can go in the media query later */
@media (min-width: 992px) {
    .hero-main-content ul li {
        font-size: 1.2rem;
        align-items: center;
    }
}

.hero-main-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 4px;
    /* Align checkmark with text top on mobile */
}

@media (min-width: 992px) {
    .hero-content-wrapper {
        display: flex;
        align-items: center;
        /* Vertically center */
        justify-content: flex-start;
        /* Align left */
        gap: 2rem;
        margin: 10px 60px 30px 60px;
        min-height: 80vh;
        /* Ensure height for vertical centering */
    }

    .hero-main-content {
        margin-top: 0;
        flex: 1;
        max-width: 80%;
        /* Increased from 60% */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }



    .contact-form-container-topBar {
        flex: 0 0 400px;
        margin-top: 80px !important;
        display: none;
        /* Ensure it doesn't take space if hidden in HTML but present in DOM logic */
    }
}

@media (min-width: 1200px) {
    .hero-main-content {
        max-width: 75%;
        /* Increased from 55% */
    }

    .contact-form-container-topBar {
        flex: 0 0 450px;
    }
}

/* '' contact-form-container testimonial-section  */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('../images/landing-page/hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 90vh;
    color: var(--secondary-text-color);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

/* Section styling scroll-down */
.logo-section {
    padding: 20px 0 60px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .logo-section {
        padding-bottom: 20px;
    }
}


/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.client-logo {
    height: 35px;
    width: auto;
}

/* Desktop view: Show exactly 5 logos */
@media (min-width: 768px) {
    .logo-container {
        flex-wrap: nowrap;
        justify-content: center;
    }


    .logo-container .client-logo:nth-child(n+6) {
        display: none;
        /* Hide logos beyond the 5th in desktop view */
    }
}

/* Mobile view animation */
@media (max-width: 767px) {
    .logo-container {
        display: flex;
        animation: slide 15s linear infinite;
        white-space: nowrap;
        width: max-content;
    }

    .client-logo {
        height: 28px;
        width: auto;
    }

    .logo-container .client-logo {
        margin-right: 20px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

.curved-section {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;

    position: relative;
    margin-top: -60px;
    /* Negative margin to overlap the hero section */
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary-bg);

}

@media (max-width: 768px) {
    .curved-section {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: -40px;
        padding: 10px;
    }


    .hero-section {
        height: 80dvh;
        gap: 40px;
        background-image: linear-gradient(92deg, #1e3a8a 10% 40%, #00154499 100%), url(../images/landing-page/hero-bg.webp);
    }

    .hero-section .font-xxlarge {
        font-size: 38px;
    }

    .hero-section .primary-button {
        width: 100%;

        background-color: #ffffff;
        color: var(--primary-color);
    }

    .hero-section .secondary-button {
        background-color: #fde047;
        color: #000000;
        border: none;
    }

}


.services-section {
    padding: 20px 0;
}

.swiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.service-card {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.services-container {
    padding-left: 120px;
}

@media (max-width: 768px) {
    .services-container {
        padding-left: 0;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Different background gradients for each card */
.service-card.card-1 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/deep-cleaning-img.webp');

    background-size: cover;
    background-position: center;
}

.service-card.card-2 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/window-cleaning-img.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-3 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/external-cleaning.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-4 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/general-cleaning-img.webp ');
    background-size: cover;
    background-position: center;
}

.service-card.card-5 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/Industrial-Facilities-Cleaning-Services-img.webp');
    background-size: cover;
    background-position: center;
}

.service-card.card-6 {
    background-image: linear-gradient(#151e2d, rgb(0 0 0 / 69%)), url('../images/landing-page/Handover-CleaninG.webp');
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    color: #ffffff;
    font-size: var(--font-size-large);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: #f8f9fa;
    font-size: var(--font-size-small);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}



.features-list {
    list-style: none;
    padding: 10px 15px;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.10) 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1),
        inset 0 0px 4px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 0;
}

.features-list li {
    color: #f8f9fa;
    font-size: var(--font-size-small);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}


.features-list li:last-child {
    margin-bottom: 0;
}


.star-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }

}

.testimonial-card {
    padding: 30px;
    background-color: #F5F2ED;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* Changed from space-around for better top alignment */
    align-items: flex-start;
    border-radius: 10px;
    /* Consistently rounded */
    gap: 20px;
    /* Use proper gap instead of space-around */
}

@media (max-width: 768px) {
    .testimonial-section {
        padding-top: 40px;
        padding-bottom: 40px;
        /* Add bottom padding */
    }
}

.contact-section {
    background-color: #011031;
    background-size: cover;
    background-position: bottom;
}

.contact-info-section {
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: black;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 32px;
}

.contact-content {
    flex: 1;

}

.contact-title {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-medium);
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-details {
    margin: 0;
    padding: 0;
}

.contact-details p {
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-bold);
    color: #ffffff;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-section {
        gap: 20px !important;
        justify-content: center !important;
        flex-direction: column !important;
    }

    .contact-item {
        margin-bottom: 25px;
        width: 100%;
        justify-content: flex-start;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 28px;
    }

    .contact-title {
        font-size: 16px;
    }

    .contact-details p {
        font-size: 15px;
    }

    .contact-info-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        gap: 15px !important;
        justify-content: flex-start !important;
        flex-direction: column !important;
        text-align: start;
    }

    .contact-item {
        margin-bottom: 20px;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-item:last-child {
        margin-bottom: 0;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        margin-bottom: 0;
        border-radius: 15px;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-title {
        font-size: 14px;
    }

    .contact-details p {
        font-size: 14px;
    }

    .contact-content {
        width: 100%;
    }
}


.contact-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    /* margin: 20px; */
}

.form-title {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: white;
    /* margin-bottom: 15px; */
    text-align: left;
}

.form-title-end {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: black;
    margin-bottom: 15px;
    text-align: left;
}

.form-subtitle {
    font-size: var(--font-size-small);
    color: white;
    /* margin-bottom: 40px; */
    line-height: 1.5;
}

.form-subtitle-end {
    font-size: var(--font-size-small);
    color: black;
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-label {
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    margin-top: 12px;
    display: block;
}

.scrolled {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 18px;
    font-size: 16px;
    color: #374151;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.scrolled:focus {
    background-color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.scrolled::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-col {
    flex: 1;
}

.form-group {
    margin-bottom: 10px;
}

.form-group:last-of-type {
    margin-bottom: 10px;
}

.message-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 40px 30px;
        margin-bottom: 30px;
        margin: 0;
    }

    .form-title {
        font-size: var(--font-size-large);

    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .scrolled {
        padding: 12px 15px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 30px 25px;
        margin-bottom: 30px;
        margin: 0;
    }

    .form-title {
        font-size: 24px;
    }

    .form-subtitle {
        font-size: 17px;
        /* line-height: 1; */

    }
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-control.is-valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

/* Unique class names to prevent conflicts */
.unique-contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-contact-modal-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 90%;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
}

.unique-contact-modal-header {
    background: #001E61;
    color: white;
    padding: 18px 20px;

    border-radius: 12px 12px 0 0;
    position: relative;
}

.unique-contact-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.unique-contact-modal-star {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 18px;
    font-weight: bold;
}

.unique-contact-modal-subtitle {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.9;
    line-height: 1.4;
}

.unique-contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.unique-contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.unique-contact-modal-body {
    padding: 15px 20px;
}

.unique-contact-form-group {
    margin-bottom: 12px;
}

.unique-contact-form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.unique-contact-form-required {
    color: #ef4444;
}

.unique-contact-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f9fafb;
}

.unique-contact-form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.unique-contact-form-control::placeholder {
    color: #9ca3af;
}

.unique-contact-form-textarea {
    resize: vertical;
    min-height: 100px;
}

.unique-contact-form-row {
    display: flex;
    gap: 16px;
}

.unique-contact-form-col {
    flex: 1;
}

.unique-contact-additional-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background: #f9fafb;
    margin-bottom: 24px;
}

.unique-contact-additional-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.unique-contact-additional-number {
    width: 24px;
    height: 24px;
    background: #6b7280;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.unique-contact-additional-title {
    font-weight: 600;
    color: #374151;
}

.unique-contact-additional-optional {
    color: #6b7280;
    font-size: 12px;
}

.unique-contact-btn-primary {
    background: #030269;
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.unique-contact-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.unique-contact-btn-secondary {
    background: #e5e7eb;
    border: none;
    color: #374151;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.unique-contact-btn-secondary:hover {
    background: #d1d5db;
}

.unique-contact-trigger-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px;
}

.unique-contact-hidden {
    display: none;
}

@media (max-width: 768px) {
    .unique-contact-form-row {
        flex-direction: column;
        gap: 0;
    }

    .unique-contact-modal-container {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .unique-contact-modal-body {
        padding: 24px 20px;
    }
}

/* Desktop Navbar Styles form-control form-label*/
.form-control {
    height: 50px;
}

.navbar-unique-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    padding: 20px 0;
}

.navbar-unique-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin: 20px auto;
}

.company-mobile-logo {
    height: 40px;
}

.navbar-unique-content {

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.navbar-unique-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}


.navbar-unique-logo-subtext {
    font-size: 11px;
    color: #666;
    margin-top: -2px;
}

.navbar-unique-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-unique-menu-item {
    position: relative;
}

.navbar-unique-menu-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.navbar-unique-container.scrolled .navbar-unique-menu-link {
    color: #374151;
}

.navbar-unique-menu-link:hover {
    color: #20B2AA;
}

.navbar-unique-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-unique-btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


/* Mobile Navbar Styles */
.navbar-unique-mobile {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.navbar-unique-mobile.scrolled {

    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-unique-mobile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-unique-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-unique-mobile-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #20B2AA, #4682B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.navbar-unique-mobile-logo-text {
    font-size: 16px;
    font-weight: bold;
    color: #1e3a8a;
}

.navbar-unique-mobile-logo-subtext {
    font-size: 9px;
    color: #666;
    margin-top: -2px;
}

.navbar-unique-mobile-buttons {
    display: flex;
    gap: 10px;
}

.navbar-unique-mobile-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}



/* Mobile Bottom Buttons */
.navbar-unique-bottom-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

.navbar-unique-bottom-content {
    display: flex;
    width: 100%;
}

.navbar-unique-bottom-btn {
    flex: 1;
    padding: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.navbar-unique-bottom-btn-call {
    background: #1e3a8a;
}

.navbar-unique-bottom-btn-visit {
    background: #148a34;
}

.navbar-unique-bottom-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar-unique-container {
        display: none;
    }

    .navbar-unique-mobile {
        display: block;
    }

    .navbar-unique-bottom-buttons {
        display: block;
    }

    .hero-unique-content h1 {
        font-size: 2.5rem;
    }

    .content-unique-section {
        padding: 60px 20px 100px;
    }

    .content-unique-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar-unique-mobile-buttons {
        gap: 8px;
    }

    .navbar-unique-mobile-btn {
        padding: 4px 0px;
        font-size: 11px;
    }

    .hero-unique-content h1 {
        font-size: 2rem;
    }

    .hero-unique-content p {
        font-size: 1rem;
    }
}

/* Floating Buttons Wrapper */
.floating-buttons-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between the buttons */
    z-index: 1000;
}

/* Common button styles */
.floating-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    justify-self: center;
    cursor: pointer;
    position: relative;
}

/* WhatsApp button style */
.whatsapp-btn {
    background: #25d366;
    /* WhatsApp Green */
    animation: blink 1s infinite alternate;
}

.whatsapp-btn:hover {
    background: #20b056;
    /* Darker WhatsApp Green */
    transform: scale(1.2);
}

/* Call button style */
.call-btn {
    background-color: #4CAF50;
    /* Call Green */
}

.call-btn:hover {
    background-color: #388E3C;
    /* Darker Call Green */
    transform: scale(1.2);
}

/* Animation for the WhatsApp Button (Blinking effect) */
@keyframes blink {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* Button click animation */
.floating-btn:active {
    transform: scale(0.95);
    /* Shrinks when clicked */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-buttons-wrapper {
        bottom: 108px;
        right: 10px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
}

.company-logo {
    height: 60px;
}

.scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    box-sizing: border-box;
}

.scroll-down::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, 12px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 24px);
    }
}

.services-section-main-t1 {
    background-color: #fff;
}

.section-header-t1 {
    text-align: center;
    margin-bottom: 30px;

}

.section-title-t1 {
    font-size: 3rem;
    font-weight: 700;
    color: #001E61;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-underline-t1 {
    width: 60px;
    height: 3px;
    background: #20A7C7;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
}



/* Currently editing section is Benefits of Choosing */
.benefit-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item-image {
    width: 50%;
    flex-shrink: 0;
    padding: 20px;
    max-height: 350px;
}

.benefit-item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.benefit-item-content {
    width: 50%;
    padding: 20px;
}

.benefit-item-content h3 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #001E61;
}

.benefit-item-content p {
    line-height: 1.6;
    color: #333;
}

.sm_image {
    display: none;
}

.lg_image {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title-t1 br {
        display: none;
    }

    .sm_image {
        display: block;
    }

    .lg_image {
        display: none;
    }

    .benefit-item {
        flex-direction: column-reverse;
        /* Content first, then image */
    }

    .benefit-item-image,
    .benefit-item-content {
        width: 100%;
        padding: 10px;
    }

    .benefit-item-image {
        max-height: 300px;
    }

    .benefit-item-image img {
        height: 250px;
    }
}



/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .sm_image {
        display: block;
    }

    .lg_image {
        display: none;
    }

    .benefit-item-content h3 {
        font-size: 20px;
    }

    .benefit-item-image {
        max-height: 300px;
    }

    .benefit-item-image img {
        height: 280px;
    }
}

/* Call to Action Section */
.cta-section-t1 {
    text-align: center;
    /* margin-top: 60px; */
    margin: 30px 0px 30px 0px;

    padding: 50px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.cta-title-t1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description-t1 {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button-t1 {
    display: inline-block;
    background: #001E61;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-button-t1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    background: #001E61;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }

    .section-title-t1 {
        font-size: 2.25rem;
        line-height: 1.1;
    }






    .feature-icon-t1 {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }


    .cta-section-t1 {
        margin: 0px;
        /* padding-bottom: 180px ;  */
    }

    .cta-title-t1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-title-t1 {
        font-size: 2rem;
    }




    .feature-icon-t1 {
        margin: 0 auto;
    }

    .cta-section-t1 {
        padding: 30px 20px;
    }
}



.container-a2 {
    max-width: 1100px;
    margin: 0 auto;
}

.text-content-a2 {
    text-align: center;
    /* margin-bottom: 30px; */
    /* tighter spacing */
}




.main-description-a2 {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}









/* Responsive */

.title-area-a1 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

.section-header-a1 {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-a1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #076a82;
    margin-bottom: 1rem;
    background: #076a82;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description-a1 {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid-a1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.service-card-a1 {
    /* background-color: red; */
    background: #08183b;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}



.service-card-a1:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon-a1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card-a1:hover .service-icon-a1 {
    transform: scale(1.1);
}

.service-title-a1 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #ffff;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.service-description-a1 {
    color: #ceced6;
    line-height: 1.6;
    font-size: 1rem;
}





@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* Responsive Design hero-main-content*/
@media (max-width: 768px) {
    .deep-cleaning-section {
        padding: 2rem 1.5rem;
    }

    .section-title-a1 {
        font-size: 2rem;
    }

    .services-grid-a1 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }


}

@media (max-width: 480px) {

    .section-title-a1 {
        font-size: 1.8rem;
    }

    .section-description-a1 {
        font-size: 1.1rem;
    }

    .service-icon-a1 {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

.step-highlight {
    display: inline-block;
    background: #20A7C7;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(32, 167, 199, 0.3);
}



.why-different {
    padding: 80px 20px;
    background: #e8e8e8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.why-different::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 30, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 167, 199, 0.05) 0%, transparent 50%);
    pointer-events: none;
}



.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #001E61;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #001E61, #20A7C7);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 30, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 167, 199, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 30, 97, 0.2);
    border-color: rgba(32, 167, 199, 0.3);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #001E61, #20A7C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 30, 97, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #001E61;
    margin-bottom: 15px;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #001E61, #20A7C7);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60%;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-different {
        padding: 10px 1px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Animation for cards appearing */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.commercial-cleaning-a2 {
    padding: 60px 20px;
    background-color: var(--primary-bg);
    /* min-height: 100vh; */
}

.container-a2 {
    max-width: 1300px;
    margin: 0 auto;
}

.content-wrapper-a2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-content-a2 {
    text-align: center;
    /* margin-bottom: 40px; */
    width: 100%;
}

.section-header-a2 {
    margin-bottom: 20px;
}

.section-header-a2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001E61;
    margin-bottom: 15px;
    line-height: 1.2;
}

.header-accent-a2 {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #001E61, #20A7C7);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.main-description-a2 {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid-a2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-top: 50px;
    width: 100%;
}

.service-item-a2 {

    padding: 30px 25px;
    /* border-radius: 15px; */
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service_icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border_layer {
    width: 80px;
    height: 80px;
    background: #001E61;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    margin: 10px;
}

.border_shap {
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.border_shap img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
}


.service-content-a2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001E61;
    margin-bottom: 10px;
}

.service-content-a2 p {
    font-size: 1.1rem;
    color: #747474;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}





/* Responsive Design */
@media (max-width: 768px) {
    .commercial-cleaning-a2 {
        padding: 40px 15px;
    }

    .section-header-a2 h2 {
        font-size: 2rem;
    }

    .main-description-a2 {
        font-size: 1rem;
    }

    .services-grid-a2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service_icon {
        width: 100%
    }

    .service-item-a2 {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .service-icon-a2 {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-header-a2 h2 {
        font-size: 1.8rem;
    }

    .service-item-a2 {
        padding: 20px 15px;
    }
}

/* Add a subtle animation for the page load */
.service-item-a2 {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-item-a2:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item-a2:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item-a2:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item-a2:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-content-a2 {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-row-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.testimonial-row-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.testimonial-row-wrapper {
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.row.flex-nowrap {
    display: flex;
    flex-wrap: nowrap;
    /* prevents wrapping on small screens */
}

.col-md-4.flex-shrink-0 {
    flex: 0 0 auto;
    /* each card keeps its width */
    max-width: 80%;
    /* adjust for mobile view */
}

.form-control.error {
    border-color: #dc3545 !important;
}

.error-message {
    font-size: 13px;
    margin-top: 4px;
    color: #dc3545;
}

@keyframes slideArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.sliding-arrow {
    margin-right: 15px;
    font-size: 1.4em;
    color: #007bff;
    display: none;
    animation: slideArrow 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .sliding-arrow {
        display: inline-block;
        right: 20px;
    }
}

.arrow-div {
    display: flex;
    justify-content: space-between;
    /* background-color: red;  */
    width: 100%;
}

.removePhone {
    display: block;
}

.mainHedCon {
    font-size: 35px;
}

.topHed {
    text-align: center;
}

.subTitle {
    text-align: center;
    font-size: 18px;
}

@media (min-width:700px) {
    .subTitle {
        text-align: start;
    }

    .mainHedCon {
        font-size: 45px;
    }

    .topHed {
        text-align: left;
    }

}


@media (max-width: 1400px) {
    .removePhone {
        display: none !important;
    }




}

/* ///////////////////////////////// */

.message-container {
    display: none;
}

/* Show only on mobile (≤ 768px) */
@media (max-width: 1000px) {
    .message-container {
        display: flex;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        align-items: center;
        justify-content: center;
        position: relative;
        height: 10px;
    }
}

.icon {
    font-size: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.message-text {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-align: center;
}

.icon-form {
    display: inline-block;

    font-size: 14px;
    line-height: 1;

    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.trust_row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 40px 20px;
}

.trust_row .col-md-6 {
    width: 50%;
    flex-shrink: 0;
}

.trust_row .col-md-6:first-child {
    padding-right: 20px;
}

.trust_row .col-md-6:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust_row img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin: 0;
}

.trust-description+.trust-description {
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .trust_row {
        flex-direction: column;
        gap: 30px;
        padding: 20px 10px;
    }

    .trust_row .col-md-6 {
        width: 100%;
        padding-right: 0 !important;
    }

    .trust-description {
        font-size: 15px;
        text-align: left;
    }

    .trust_row img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .trust-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* --- Footer Section Styling --- */
.footer-section {
    background-color: #001544;
    /* Darker than contact section */
    padding: 30px 0;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: inline-flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

/* Mobile Banner Alignment */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align children left */
    justify-content: center;
    text-align: left;
    /* Ensure text is left aligned */
    padding: 0 20px;
    width: 100%;
}

.hero-main-content {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
}

.hero-main-content h1 {
    text-align: left;
}

.hero-main-content .subTitle {
    text-align: left;
}