/* Import Google Fonts (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Color Variables for easy theme changes - Updated to match OCS Logo */
:root {
    --primary-purple: #005A9C; 
    --light-purple: #0073C2;
    --dark-purple: #004070;
    --green: #388E3C; 
    --white: #ffffff;
    --black: #000000;
    --text-color: #333;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.top-bar {
    background-color: #004070; /* Updated to Match Logo Dark Blue */
    color: #ffffff;
    padding: 10px 0; 
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 15px; 
    flex-wrap: wrap; 
}

.top-info-item {
    display: flex;
    align-items: center;
    font-size: 13px; 
    font-weight: 500;
    white-space: nowrap; 
}


.top-info-item a {
    color: #ffffff !important; 
    text-decoration: none;    
}


.top-info-item a:hover {
    color: #ffffff; 
    text-decoration: underline; 
}

.top-info-item i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 14px;
}


.prevent-wrap {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* --- Responsive Media Queries --- */


@media (max-width: 1400px) {
    .top-bar-content {
        gap: 10px;
    }
    .top-info-item {
        font-size: 12px; 
    }
    .highlight-badge {
        padding: 4px 10px; 
    }
}

@media (max-width: 992px) {
    .top-bar-content {
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 15px;
    }
}


/* Special badge design - Updated to Logo Green */
.highlight-badge {
    background: #388E3C; /* Updated to Brand Green */
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive: To look better on small screens */
@media (max-width: 992px) {
    .top-bar-content {
        gap: 20px;
        font-size: 13px;
    }
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 80px; 
    margin-right: 10px;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--primary-purple); 
}

.navbar .book-button {
    background-color: var(--primary-purple); 
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.navbar .book-button:hover {
    background-color: var(--dark-purple); 
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    /*  Purple Gradient from Blue-Green Gradient  */
    background: linear-gradient(90deg, #005A9C 2%, #388E3C 91%); 
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder for the background image */
    background-image: url('https://imagedelivery.net/xaKlCos5cTg_1RWzIu_h-A/1f856c62-251c-4c44-571b-d8d91d70f800/publicContain'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

/* Tagline/Icon Row (Top of Hero) */
.hero-content .tagline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-content .tagline span {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
}

.hero-content .tagline i {
    margin-right: 8px;
}


.hero-content .tagline .fa-star { 
    color: gold;
}
.hero-content .tagline .fa-shield-alt { 
    color: gold; 
}
.hero-content .tagline .fa-check-circle { 
    color: gold;
}

/* Text Styling */
.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Buttons - Updated with Logo Colors */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;

}

.hero-buttons .button {
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-buttons .button:hover {
    transform: translateY(-3px);
}

.hero-buttons .get-quote {
    background-color: var(--green); 
    color: var(--white);
}

.hero-buttons .get-quote:hover {
    background-color: var(--primary-purple); 
}

.hero-buttons .view-services {
    background-color: var(--primary-purple); 
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-buttons .view-services:hover {
    background-color: var(--green); 
    color: var(--white);
    border-color: #ffffff;
}

.hero-footer-notes {
    display: flex;              
    justify-content: center;   
    align-items: center;        
    gap: 30px;                  
    flex-wrap: wrap;          
    margin-top: 20px;          
}

.hero-footer-notes span {
    display: flex;
    align-items: center;
    color: #ffffff;            
    font-size: 16px;
    font-weight: 500;
}

.hero-footer-notes i {
    color: #ffcc00;            
    margin-right: 8px;        
}

.cleaning-service-full {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colum */
    gap: 4px; /* 2 pixels of space as you wish */
    width: 100%;
}

.flip-card {
    height: 350px; 
    perspective: 1000px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.is-active .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0; 
}

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Text bar - this will now take up very little space on the image */
.card-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--primary-purple); 
    color: #fff;
    padding: 8px 0; /* Padding reduced */
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.flip-back {
    background-color: var(--light-purple); 
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    color: #ffffff; /* text-color  */
}

/* Will show 1 on mobile */
@media (max-width: 768px) {
    .cleaning-grid {
        grid-template-columns: 1fr;
    }
}


.cleaning-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Will be hidden at first. */
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

/* Information will be displayed when the 'active' class is added. */
.service-card.active .overlay {
    opacity: 1;
}

.service-logo {
    width: 60px !important;
    height: auto !important;
    margin-bottom: 15px;
}

.info-content h3 {
    color: var(--green); 
    margin-bottom: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 5px;
}

/* Footer Notes (Bottom of Hero) */
.hero-footer-notes {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
    font-weight: 400;
    flex-wrap: wrap;
}

.hero-footer-notes span {
    display: flex;
    align-items: center;
}


.hero-footer-notes i {
    margin-right: 5px;
    color: gold;
}



@media (max-width: 992px) {
    /* Tablet/Small Desktop Adjustments */
    .navbar .nav-links {
        display: none; /* Hide nav links to save space */
    }
    .navbar {
        justify-content: center;
    }
    .navbar .book-button {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    /* Tablet/Vertical Adjustments */
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar .book-button {
        margin-top: 15px;
        margin-left: 0;
    }
    .hero-section {
        height: auto;
        padding: 80px 20px;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    /* Stack elements vertically */
    .hero-content .tagline,
    .hero-buttons,
    .hero-footer-notes {
        flex-direction: column;
        gap: 10px;
    }
    .hero-content .tagline span,
    .hero-footer-notes span {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Mobile Phone Adjustments */
    .navbar .logo img {
        height: 40px;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-buttons .button {
        width: 90%;
        text-align: center;
    }
}

/* Color Variables - Matching the new OCS logo precisely */
:root {
    --primary-purple: #005A9C; 
    --soft-purple: #0073C2; 
    --dark-text: #212121;
    --light-text: #616161;
    --soft-green: #388E3C; 
    --section-bg: #F4F4F9; 
    --card-bg: #FFFFFF;
    --card-shadow: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark-text);
    line-height: 1.6;
}

/* --- General Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Solutions Section Styling --- */
.solutions-section {
    background-color: var(--section-bg); /* EXACT Background color from image */
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 3rem !important; /* !important দিন */
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-description {
    font-size: 1em;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.solution-cards-wrapper {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 30px; /* Space between cards */
}

.solution-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    
    box-shadow: 0 10px 18px rgba(0, 90, 156, 0.2); 

    /*box-shadow: 0 10px 18px var(--card-shadow);*/
    overflow: hidden;
    /*width: 45%; Set a fixed percentage width for compact side-by-side display */
    min-width: 280px;
    flex: 1 1 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 90, 156, 0.3); 
}

@media (max-width: 768px) {
    
    .solution-cards-wrapper, .card-horizontal-row {
        flex-direction: column !important;
        align-items: center !important;
    }

    .solution-card {
        width: 100% !important; 
        max-width: 100% !important;
    }
}

/* Image and Tag Styling */
.card-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Compacted height */
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #6A0DAD; /* #6A0DAD background for the tag */
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.card-tag i {
    font-size: 1em;
}

/* Commercial Tag  */
.commercial-tag {
    background-color: #005A9C !important;
    color: white !important;
}

/* Residential Basic Tag  */
.residential-tag {
    background-color: #388E3C !important;
    color: white !important;
}

/* Residential Deep Tag  */
.residential-tag2 {
    background-color: #005A9C !important;
    color: white !important;
}

/* Card Content Styling */
.card-content {
    padding: 25px; /* Reduced padding for compactness */
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    text-align: left; 
}

.card-title {
    font-size: 1.4em; /* Reduced font size */
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.card-text {
    font-size: 0.9em; /* Reduced font size for description */
    color: var(--light-text);
    margin-bottom: 20px;
    /*flex-grow: 1;*/ 
}

.features-list {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 25px; /* Space before the button */
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--dark-text);
}

.features-list li i {
    color: var(--soft-green); /* Green checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    margin-top: 2px; /* Slight adjustment for visual alignment */
}

/* Button Styling (EXACT Match) */
.btn {
    display: block; /* Make it a block element */
    padding: 12px 25px; /* Reduced padding for smaller button */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    width: 100%; 
    box-sizing: border-box; 
}

.primary-btn {
    background-color: var(--primary-purple); /* EXACT Button Color */
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--soft-purple);
    transform: translateY(-2px);
}

/* --- Responsive Design --- */

@media (max-width: 1024px) {
    .solution-card {
        width: 48%; 
    }
}

@media (max-width: 768px) {
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }


    .solution-cards-wrapper, .card-horizontal-row, .feature-cards-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    .solution-card, .feature-card {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
    .card-content {
        padding: 20px;
    }


@media (max-width: 480px) {
    .solution-card {
        width: 95%; 
    }
    .card-image-container {
        height: 180px; 
    }
    .card-title {
        font-size: 1.3em;
    }
    .card-text,
    .features-list li {
        font-size: 0.85em;
    }
}

/* Color Variables - Updated to match the new logo colors */
:root {
    --white: #FFFFFF;
    --dark-text: #212121;
    --light-text: #616161;
    --founder-bg: #FFFFFF; 
    --founder-title-color: #333333; 
    --founder-desc-color: #666666; 
    --founder-text-color: #444444; 
    --founder-link-purple: #005A9C; 
    --founder-link-hover: #0073C2; 
    --founder-usp-icon: #388E3C;   
    --founder-badge-bg: #388E3C;   
    --founder-badge-icon: #FFFFFF;
}

/* Base Styles (Ensure these are present) */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark-text);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Founder Section Styling --- */
.founder-section {
    background-color: var(--founder-bg); 
    padding: 80px 0; /* Standard padding */
    text-align: center; 
}

.founder-section-title {
    font-size: 45px;
    line-height: 1;
    color: var(--founder-title-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-section-description {
    font-size: 1.1em;
    color: var(--founder-desc-color);
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.5;
}

.founder-content-wrapper {
    display: flex;
    justify-content: center;
    /* KEY CHANGE: Align items to the center (middle) */
    align-items: center; 
    gap: 50px; 
    max-width: 1000px;
    margin: 0 auto 60px auto; 
    text-align: left;
}

/* Founder Image Area */
.founder-image-area {
    flex-shrink: 0;
    position: relative;
    width: 300px; 
    height: 300px;
    /* REMOVED: margin-top: -80px; */ 
}

.founder-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px; 

}


.founder-photo {
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    object-fit: cover;
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 25px; 
    right: 25px; 
    width: 50px;
    height: 50px;
    background-color: var(--founder-badge-bg); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.founder-badge i {
    color: var(--founder-badge-icon); /* White gem icon */
    font-size: 1.4em;
}

/* Founder Text Area */
.founder-text-area {
    flex-grow: 1;
    max-width: 600px;
}

.founder-commitment-title {
    font-size: 2em;
    color: var(--founder-title-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.founder-text-paragraph {
    font-size: 0.95em;
    color: var(--founder-text-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.founder-text-paragraph strong {
    font-weight: 600;
    color: var(--dark-text);
}

.founder-text-paragraph .highlight-purple {
    color: var(--founder-link-purple); 
    font-weight: 600;
}

/* ============================================================
   (Specific to Home Page)
   ============================================================ */

.hero-section .fa-check-circle, 
.founder-section .fa-check-circle,
.founder-usp-item .check-icon i {
    color: #ffffff !important;   
    
    background-color: #388E3C !important; 
    border-radius: 50% !important;
    padding: 2px;                  
    font-weight: 900 !important;
}


.founder-usp-item .check-icon {
    
    background-color: #388E3C !important;
    color: #ffffff !important;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* USP (Unique Selling Proposition) Wrapper */
.founder-usp-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px; 
    flex-wrap: wrap;
}

.founder-usp-item {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--founder-text-color);
    font-weight: 500;
}

.founder-usp-item .check-icon {
    
    color: var(--founder-usp-icon);
    margin-right: 8px;
    font-size: 1.1em;
}

.bbb-usp-logo {
    height: 25px; 
    width: auto;
    margin-right: 8px; 
    vertical-align: middle; 
    display: inline-block;
}

/* Learn More Button Customization */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #005A9C; 
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 15px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease; 
    border: 2px solid #005A9C;
    margin-top: 10px;
}

/*  (Hover)  */
.learn-more:hover {
    background-color: #388E3C; 
    border-color: #388E3C;
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3); 
}


.learn-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}


.learn-more:hover i {
    transform: translateX(5px);
}


@media (max-width: 768px) {
    .bbb-usp-logo {
        height: 18px;
    }
}

/* --- Responsive Design (Handling Vertical Centering when stacked) --- */

@media (max-width: 1024px) {
    .founder-content-wrapper {
        flex-direction: column; 
        align-items: center;
        gap: 40px;
    }
    /* Margin reset is no longer needed since we removed the negative margin */
    .founder-text-area {
        max-width: 700px;
        text-align: center;
    }
    .learn-more-button {
        display: inline-flex;
    }
}
/* ... (Ensure smaller device styles are included below) ... */



/* Color Variables - Updated to match OCS Logo precisely */
:root {
    --white: #FFFFFF;
    --section-bg-color: #FFFFFF; 

    --title-font-color: #2D3748;
    --description-font-color: #718096;
    --card-heading-color: #2D3748;
    --card-text-color: #718096;

    /* Card Background/Visuals */
    --card-bg-color: #F8F9FA; /* Solid, very light background for the columns */
    --card-shadow-color: rgba(0, 0, 0, 0.1); 
    --card-border-radius: 10px; 

    /* Icon Circle Colors  */
    --icon-circle-purple: #005A9C; 
    --icon-circle-green: #388E3C;  
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--title-font-color);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* Added side padding to prevent overflow/cutoff on narrower viewports */
    padding: 0 40px; 
}



/* Custom Container to center content */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    
}

.display-6 {
    font-size: 3em;
    color: var(--title-font-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.lead {
    font-size: 1.1em;
    color: var(--description-font-color);
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.5;
}


/* This is the key part to keep cards side-by-side */
.card-horizontal-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* 🔥 important */
}

.solution-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex; /* 🔥 */
}


.card-inner {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px 10px;
    border-radius: 16px;
    transition: all 0.3s ease;
    
    box-shadow: 0 6px 20px rgba(0, 90, 156, 0.15);

    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    height: 100%; /* 🔥 equal height */
}

.card-inner {
    display: flex;
    align-items: center;
}


.card-inner:hover {
    transform: translateY(-5px);
    
    box-shadow: 0 8px 25px rgba(0, 90, 156, 0.2);
}

/* Icon Styling - Updated to match Logo Dark Blue */
.icon-holder {
    width: 60px;
    height: 60px;
    background-color: #005A9C; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    flex-shrink: 0;
}

.text-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}


/*.text-holder {
    margin-left: 15px;
}*/

.text-holder h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
}

/* Status Pill  */
.status-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #e0f0ff; 
    color: #005A9C; 
    width: fit-content;
}


.text-holder p {
    min-height: 44px; /* 🔥 equal text area */
    margin: 0;
    color: #666;
}



@media (max-width: 992px) {
    .card-horizontal-row {
        flex-wrap: wrap;
    }

    .solution-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}


@media (max-width: 576px) {
    .solution-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

    .card-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .icon-holder {
        margin-bottom: 10px;
    }
}

/* --- Why Choose Us Section --- */


@media (max-width: 991px) {
    
    .why-title, .section-title, h2, .display-6 {
        text-align: center !important; 
        margin-left: 0 !important;    
        margin-right: 0 !important;
        margin-top: 40px !important;
        font-size: 2.4rem !important; 
        width: 100% !important;        
        display: block !important;
        line-height: 1.2 !important;
        padding: 0 15px !important;    
    }

    
    .why-description, .lead, .section-description {
        text-align: center !important;
        margin: 0 auto 30px auto !important; 
        font-size: 1.1rem !important;
        padding: 0 20px !important;
        max-width: 100% !important;
    }

    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


.why-choose-us-section {
    background-color: var(--section-bg-color);
    padding: 80px 0;
    text-align: center;
    margin-top: -140px;
    margin-bottom: -50px;
}

.why-title {
    font-size: 3em;
    color: var(--title-font-color);
    margin-bottom: 20px;
    font-weight: 700;
    /*margin-left: 128px;*/
    margin-top: 110px;
}

.why-description {
    font-size: 1.1em;
    color: var(--description-font-color);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    margin: 0 auto 60px auto;
}

.feature-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding-bottom: 10px;
}

.feature-card {
    background-color: var(--card-bg-color); 
    border-radius: var(--card-border-radius); 
    box-shadow: 0 5px 15px var(--card-shadow-color); /* Clear, visible shadow */
    padding: 40px 25px; 
    text-align: center;
    
    background-color: #e0f0ff; 
    border-radius:15px;
    flex-basis: 25%; 
    width: 25%; 
    max-width: 225px; 
    min-width: 200px;
    min-height:320px ;
    height: auto;
    padding: 30px 20px;
    flex-shrink: 0;
    margin-bottom: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Hover Effect  */
.feature-card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 12px 30px rgba(0, 90, 156, 0.2); /* Enhanced blue hover shadow */
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.feature-icon-circle.purple {
    background-color: var(--icon-circle-purple); 
}

.feature-icon-circle.green {
    background-color: var(--icon-circle-green); 
}

.feature-icon {
    width: 40px; 
    height: 40px;
    object-fit: contain;
}

.feature-heading {
    font-size: 1.25em;
    color: var(--card-heading-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text {
    font-size: 0.9em;
    color: var(--card-text-color);
    line-height: 1.6;
    flex-grow: 1;
}

/* --- Responsive Design  --- */
@media (max-width: 1280px) {
    /* Allow wrapping when the container size is tight */
    .feature-cards-wrapper {
        flex-wrap: wrap; 
        overflow-x: hidden;
    }
    .feature-card {
        flex-basis: calc(50% - 25px); /* Two columns on tablets */
        width: calc(50% - 25px);
        min-width: 0; 
        flex-shrink: 1; 
        margin-bottom: 25px; /* Spacing between wrapped rows */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px; 
    }
    .feature-card {
        flex-basis: calc(50% - 15px); 
        width: calc(50% - 15px);
        padding: 30px 20px;
    }
}

@media (max-width: 580px) {
    .feature-card {
        flex-basis: 90%; /* Single column on mobile */
        width: 90%;
        padding: 25px 15px;
    }
}


/* Color Variables - Updated to match the new OCS logo precisely */
:root {
    --white: #FFFFFF;
    --section-bg-light-purple: #eef7ff; 
    --text-dark: #2D3748; 
    --text-medium: #718096;
    --button-bg-purple: #005A9C; 
    --button-text-white: #FFFFFF;
    --button-hover-bg-purple: #0073C2; 
    --overlay-bg: rgba(0, 90, 156, 0.85); 
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; 
}

.container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px; 
}

/* --- See The Shine Section --- */

.see-the-shine-section {
    background-color: var(--section-bg-light-purple); 
    padding-top: 80px; 
    padding-bottom: 80px;
    text-align: center;
    width: 100%;

}

.section-title {
    font-size: 3em; 
    color: var(--text-dark); 
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1em; 
    color: var(--text-medium); 
    max-width: 700px;
    margin: 0 auto 60px auto; 
    line-height: 1.5;
}




.cleaning-service-full {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.cleaning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2px; 
    width: 100%;
}

.flip-card {
    height: 350px; 
    perspective: 1000px;
    cursor: pointer;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.is-active .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0; 
}

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    
    background: #005A9C; 
    color: #fff;
    padding: 8px 0; 
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.flip-back {
    
    background: #0073C2; 
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    color:#fff;
}

@media (max-width: 768px) {
    .cleaning-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Button Styles --- */
.button-wrapper {
    margin-top: 43px;
    display: block;
    margin: 35px auto auto auto;
    margin-left: 40px; 
}

.full-gallery-button {
    display: inline-block;
    
    background-color: var(--button-bg-purple); 
    color: var(--button-text-white); 
    font-size: 1.1em; 
    font-weight: 600;
    padding: 15px 35px; 
    border-radius: 15px; 
    text-decoration: none; 
    transition: background-color 0.3s ease, transform 0.3s ease; 
    border: none;
    cursor: pointer;
}

.full-gallery-button:hover {
    
    background-color: var(--button-hover-bg-purple);
    transform: translateY(-2px);
}


/* --- Responsive Design  --- */
@media (max-width: 992px) {
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .image-gallery-grid-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .image-gallery-grid {
        grid-template-columns: 1fr; 
        gap: 10px;
    }
    .image-gallery-grid-wrapper {
        padding: 0 10px;
    }
}

/* Color Variables - Updated to match the new OCS logo precisely */
:root {
    --cta-gradient-start: #005A9C; 
    --cta-gradient-end: #388E3C;   
    --white: #FFFFFF;
    --text-light-grey: #D1D5DB; /* Light grey for description */
    --text-guarantee-light: #F3F4F6; /* Even lighter grey for guarantee text */

    /* Button Colors  */
    --primary-button-bg: #FFFFFF;
    --primary-button-text: #005A9C; 
    --primary-button-hover-bg: #f0f0f0;

    --secondary-button-bg: transparent;
    --secondary-button-border: #FFFFFF; 
    --secondary-button-text: #FFFFFF;
    --secondary-button-hover-bg: rgba(255, 255, 255, 0.1);
}

/* Base Styles (ensure these are present in your style.css) */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Ensure default padding for general layout */
}

/* --- Spotless CTA Section --- */
.spotless-cta-section {
    
    background: linear-gradient(to right, var(--cta-gradient-start), var(--cta-gradient-end));
    padding: 80px 0; /* Adjust vertical padding as needed */
    text-align: center;
    margin-top: -30px;
    color: var(--white); /* Default text color for the section */
}

.sparkle-icon-wrapper {
    margin-bottom: 25px; /* Space below the icon */
    background-color: rgba(255, 255, 255, 0.2); /* Transparent white circle background */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.sparkle-icon {
    width: 55px; /* Adjust size of the sparkle icon */
    height: 55px;
    filter: brightness(0) invert(1); /* Makes the icon white if it's black */
}

.cta-title {
    font-size: 3em; /* Exact font size */
    color: var(--white); /* Exact color */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2; /* Tighten line height for title */
}

.cta-description {
    font-size: 1.1em; /* Exact font size */
    color: var(--text-light-grey); /* Exact color */
    max-width: 600px;
    margin: 0 auto 40px auto; /* Space before buttons */
    line-height: 1.5;
}

.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-bottom: 40px; /* Space below buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em; /* Exact font size */
    font-weight: 600;
    padding: 15px 30px; /* Exact padding */
    border-radius: 8px; /* Exact border-radius */
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping within button */
}

.cta-button i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 1.2em;
}

.primary-button {
    background-color: var(--primary-button-bg);
    color: var(--primary-button-text);
    border: 2px solid var(--primary-button-bg); /* Solid border for consistency */
}

.primary-button:hover {
    background-color: var(--primary-button-hover-bg);
    border-color: var(--primary-button-hover-bg);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: var(--secondary-button-bg);
    color: var(--secondary-button-text);
    border: 2px solid var(--secondary-button-border); /* Border for secondary button */
}

.secondary-button:hover {
    background-color: white;
    
    color: #005A9C; 
    transform: translateY(-2px);
}

/* 🚩 FIX: Add this rule to ensure the phone icon is correctly oriented */
.secondary-button i {
    transform: rotate(0deg) !important; 
    /* The !important ensures it overrides any other unintended rotations */
}

.guarantees-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between guarantee items */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.guarantee-item {
    display: flex;
    align-items: center;
    font-size: 0.95em; /* Exact font size */
    color: var(--text-guarantee-light); /* Exact color */
    font-weight: 400;
    white-space: nowrap; /* Prevent text wrapping */
}

.guarantee-item i {
    color: var(--white); /* White checkmark icon */
    margin-right: 8px; /* Space between icon and text */
}

/* --- Responsive Design  --- */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2em;
    }
    .cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .cta-buttons-wrapper {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    .cta-button {
        width: 80%; /* Make buttons wider when stacked */
        max-width: 300px;
    }
    .guarantees-wrapper {
        flex-direction: column; /* Stack guarantees vertically */
        gap: 10px;
        align-items: center;
    }
    .guarantee-item {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8em;
    }
    .cta-description {
        font-size: 0.9em;
    }
    .cta-button {
        width: 90%;
    }
}


/* Color Variables - Updated to match the new OCS logo precisely */
:root {
    --footer-bg-dark: #1a1a1a; 
    --footer-text-light: #FFFFFF; /* White text color */
    --footer-link-hover: #9e9e9e; /* Lighter grey on link hover */
    --footer-bottom-bg: #111111; /* Slightly darker for bottom bar */
    --contact-icon-color: #388E3C; 
    --social-icon-color: #FFFFFF; /* White for social icons */
    --social-bg-purple: #005A9C; 
}

/* Base Footer Styles */
.main-footer {
    background-color: var(--footer-bg-dark);
    color: var(--footer-text-light);
    font-family: 'Poppins', sans-serif;
    padding-top: 50px; /* Top padding */
}

.footer-content-grid {
    display: grid;
    /* Define 4 columns: one wider for info, three equal width */
    grid-template-columns: 1.5fr repeat(3, 1fr); 
    gap: 30px;
    padding-bottom: 50px;
}

/* --- Column Styling --- */
.footer-column {
    line-height: 1.5;
}

/* Logo and Info Column */
.info-column {
    padding-right: 20px; /* Ensure space for the description text */
}

.footer-logo .logo-img {
    height: 90px; /* Adjust size to match image */
    margin-bottom: 15px;
}

.company-description {
    font-size: 0.9em;
    color: var(--footer-text-light);
    margin: 0 0 25px 0;
    font-weight: 300;
}

/* Column Titles */
.column-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Links (Services and Quick Links) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text-light);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
}

/* --- Contact Items --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--contact-icon-color); 
    font-size: 1.1em;
    margin-top: 3px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8em;
    font-weight: 600;
    color: var(--footer-text-light);
    margin-bottom: -5px;
}

.contact-detail {
    font-size: 0.9em;
    margin: 0;
    font-weight: 300;
}

/* --- Social Media Links --- */
.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    
    background-color: var(--social-bg-purple); 
    border-radius: 50%;
    color: var(--social-icon-color); /* White icon */
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    
    background-color: var(--contact-icon-color); 
}

/* --- Footer Bottom Bar (Copyright) --- */
.footer-bottom-bar {
    background-color: var(--footer-bottom-bg); /* Darker grey bar */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Very faint separator line */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85em;
}

.copyright-text {
    margin: 0;
    color: var(--footer-link-hover); /* Light grey color */
}

.policy-links a {
    color: var(--footer-link-hover);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--white);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    .info-column {
        grid-column: span 2; /* Info column spans both columns */
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .main-footer {
        padding-top: 30px;
    }
    .footer-content-grid {
        grid-template-columns: 1fr; /* Stack all columns on mobile */
        gap: 25px;
    }
    .info-column {
        grid-column: span 1;
    }
    .footer-bottom-content {
        flex-direction: column; /* Stack copyright and policy links */
        text-align: center;
    }
    .copyright-text {
        margin-bottom: 10px;
    }
    .policy-links a {
        margin: 0 10px;
    }
}


/* --- Modal (Popup) Design --- */
.custom-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.close-popup:hover { 
    
    color: var(--primary-purple); 
}

#planTitle {
    
    color: var(--primary-purple); 
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

#planDetails ul {
    list-style: none;
    padding: 0;
}

#planDetails li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

#planDetails li::before {
    content: "\f058"; /* FontAwesome check circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    
    color: var(--soft-green); 
    margin-right: 10px;
}


.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    
    box-shadow: 0 10px 30px rgba(0, 90, 156, 0.1); 
    border: 1px solid #eee;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box; 
}

.form-control:focus {
    
    border-color: #005A9C; 
    outline: none;
    box-shadow: 0 0 5px rgba(0, 90, 156, 0.2);
}

.primary-btn {
    
    background-color: #005A9C; 
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    
    background-color: #004070; 
    transform: translateY(-2px);
}


/*Contact Us*/

/* --- Contact Page Specific Fixes --- */


.contact-hero-overlay .gradient-shadow {
    /*  (#005A9C)  (#388E3C)  */
    background: linear-gradient(135deg, rgba(0, 90, 156, 0.8) 0%, rgba(56, 142, 60, 0.7) 100%) !important;
    position: absolute;
    inset: 0;
    z-index: 10;
}

/*  'Send Message'  */
.btn-wa-hover {
    background-color: #005A9C !important; 
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-wa-hover:hover {
    background-color: #388E3C !important; 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3);
}

/* --- Contact Us Section  --- */

.gradient-shadow {
    pointer-events: none; 
}

.container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.icon-box-bg {
    width: 60px;
    height: 60px;
    
    background: #e0f0ff; 
    color: #005A9C; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin: 0 auto 20px;
    font-size: 24px;
}

.card-item {
    background: white;
    transition: all 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    
    box-shadow: 0 25px 50px rgba(0, 90, 156, 0.1);
}


.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #005A9C !important;
    outline: none;
}

/*End contact*/

.custom-card-shadow {
    background: #ffffff !important;
    
    
    box-shadow: 0 10px 30px -5px rgba(0, 90, 156, 0.2), 
                0 20px 25px -5px rgba(0, 90, 156, 0.1) !important;
    border: 1px solid rgba(0, 90, 156, 0.05) !important;
    transition: all 0.4s ease-in-out;
}


.custom-card-shadow:hover {
    transform: translateY(-8px);
    
    box-shadow: 0 25px 50px -12px rgba(0, 90, 156, 0.3) !important;
}


.btn-dark {
    
    background-color: #005A9C !important; 
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; 
}


.btn-dark:hover {
    
    background-color: #388E3C !important; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3); 
}


/* --- Final Responsive & Movement Fix  --- */


* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    position: relative;
}


.container, .custom-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-horizontal-row {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .solution-card {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important; 
    }

    .section-title {
        font-size: 2rem !important;
    }
}


/* service page */

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.py-80 { padding: 80px 0; }
.pt-80 { padding-top: 80px; }
.text-center { text-align: center; }

/* Top Bar  */
.top-bar { background: #004070; color: white; padding: 10px 0; font-size: 13px; }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }

/* Navigation */
.main-header { padding: 15px 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; }
.nav-menu ul { list-style: none; display: flex; gap: 25px; }
.nav-menu ul li a { text-decoration: none; color: #333; font-weight: 600; font-size: 14px; }

/* Active  */
.nav-menu ul li a.active { color: #005A9C; }

/* Quote  */
.btn-quote { background: #005A9C; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 700; }

/* Hero Section */
.services-hero { 
    position: relative;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600') center/cover;
    padding: 200px 0 !important;
    color: white;
    text-align: center;
    min-height: 400px;
}


/* Purple/Green Shadow Gradient - Updated with Logo Blue/Green */
.hero-overlay-shadow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /*  (#005A9C)  (#388E3C) */
    background: linear-gradient(to bottom right, rgba(0, 90, 156, 0.6), rgba(0, 90, 156, 0.4), rgba(56, 142, 60, 0.6));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.services-hero h1 { font-size: 56px; font-weight: 700; margin-bottom: 15px; }


/* Service Rows */
.service-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.service-row.reverse { flex-direction: row-reverse; }
.service-image { flex: 1; }
.service-image img { width: 100%; border-radius: 25px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-details { flex: 1; }
.service-details h3 { font-size: 32px; color: #222; margin-bottom: 15px; font-weight: 700; }
.points-list { list-style: none; margin-top: 15px; }
.points-list li { margin-bottom: 12px; display: flex; align-items: center; font-size: 16px; }


.points-list li i { color: #388E3C; margin-right: 15px; font-size: 18px; }

/* Contact Us Today Styling */
.contact-today-section { background-color: #fdfbff; padding: 80px 0; }
.mb-50 { margin-bottom: 50px; }
.mb-50 {margin-top: -100px}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* ============================================================
   SERVICE PAGE CONTACT INFO FIX (HIGHLIGHTED SOLUTION)
   ============================================================ */

/* Info Cards Styling */
.info-card-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid transparent;
    transition: 0.3s;
    visibility: visible !important; 
    opacity: 1 !important;
}


.info-card-item.purple-border { border-left-color: #005A9C; }
.info-card-item.green-border { border-left-color: #388E3C; }

.info-icon {
    width: 50px; height: 50px;
    background: #eef7ff; 
    color: #005A9C; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-text h4 { 
    color: #333333 !important;      
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}
.info-text p { 
    color: #666666 !important;      
    font-size: 14px !important;
    opacity: 1 !important;          
}


/* Contact Form Styling */

.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 90, 156, 0.1);
}

.contact-form-card h3 { font-size: 24px; margin-bottom: 30px; color: #222; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-top: 20px; }

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    
    border-color: #005A9C;
    outline: none;
    background: #fff;
}


.btn-send-message {
    width: 100%;
    background: #005A9C;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
}


.btn-send-message:hover { background: #388E3C; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* Footer  */
.footer-section { background: #001a2e; color: white; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; }
.footer-about img { height: 60px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #bbb; text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 30px; font-size: 14px; color: #888; }

/* Responsive  */
@media (max-width: 768px) {
    .service-row, .service-row.reverse, .contact-grid, .footer-grid { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    .nav-menu { display: none; }
    .services-hero h1 { font-size: 36px; }
    .services-hero { padding: 100px 0 !important; }
}


@media (max-width: 480px) {
    h1, .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    h2, .section-title, .display-6 {
        font-size: 1.8rem !important;
    }
}



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Header Styles */
.header {
    position: relative;
    width: 100%;
    z-index: 50;
}
.top-bar {
    
    background-color: #004070; 
    color: #ffffff;
    padding: 10px 0; 
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 15px; 
    flex-wrap: wrap; 
}

.top-info-item {
    display: flex;
    align-items: center;
    font-size: 13px; 
    font-weight: 500;
    white-space: nowrap; 
}


.top-info-item a {
    color: #ffffff !important; 
    text-decoration: none;    
}


.top-info-item a:hover {
    color: #ffffff; 
    text-decoration: underline; 
}

.top-info-item i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 14px;
}


.prevent-wrap {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* gallery hero section */

.hero-content {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    justify-content: center !important;
}
.hero-content .breadcrumb {

    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;    
    text-align: center;
    width: 100%;
    gap: 10px;
}

.hero-title {
    margin-bottom: 15px !important;    
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    display: block !important;
}

/* Gallery Page Title and Breadcrumb Fix */
.hero-content {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    text-align: center !important;
}

.hero-content .breadcrumb {
    display: flex !important;
    flex-direction: row !important; 
    justify-content: center !important;
    margin-top: 15px !important; 
}

.hero-title {
    width: 100% !important;
    display: block !important;
}


/* --- Responsive Media Queries  --- */


@media (max-width: 1400px) {
    .top-bar-content {
        gap: 10px;
    }
    .top-info-item {
        font-size: 12px; 
    }
    .highlight-badge {
        padding: 4px 10px; 
    }
}

@media (max-width: 992px) {
    .top-bar-content {
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 15px;
    }
}


/* Special badge design  */
.highlight-badge {
    background: #004070; 
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive: To look better on small screens */
@media (max-width: 992px) {
    .top-bar-content {
        gap: 20px;
        font-size: 13px;
    }
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 80px; 
    margin-right: 10px;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--primary-purple); 
}

.navbar .book-button {
    
    background-color: #005A9C; 
    color: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.navbar .book-button:hover {
    
    background-color: #004070; 
}

/* Hero Section - Updated with Logo Blue & Green */
.hero {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, #005A9C, #388E3C);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url('https://i.ibb.co.com/PvFm7nf5/portrait-of-smiling-millennial-lady-holding-bucket-with-cleaning-supplies-and-mop-posing-and-looking.jpg')!important;
    z-index: 1 !important;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 90, 156, 0.2), rgba(0, 90, 156, 0.1), rgba(56, 142, 60, 0.1));
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.hero-leaf {
    position: absolute;
    top: 33%;
    right: 5rem;
    transform: rotate(-45deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    opacity: 0.9;
}


.hero-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 700;
}


.hero-content div span, 
.hero-content div a {
    color: #ffffff !important; 
    text-decoration: none;
}


.hero-content div span.text-green-500 {
    /*  (#388E3C)  */
    color: #388E3C !important; 
    font-weight: bold;
}


/* About */

/* ROOT VARIABLES - */
:root {
    --purple: #005A9C; /* Primary Blue from Logo */
    --green: #388E3C;  /* Primary Green from Logo */
    --dark: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-color: #666;
    --white: #ffffff;
}


/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}



body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}


.hero-container {
    position: relative;
    width: 100%;
    height: 400px; /* Mobile height */
    overflow: hidden;
}


/* TOP BAR */
.top-bar {
    
    background-color: var(--purple);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.divider { opacity: 0.3; }

.social-links a {
    color: var(--white);
    margin-right: 10px;
    transition: 0.3s;
}


.social-links a:hover { color: var(--green); }

.btn-quote {
    background: var(--green); 
    color: white;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    cursor: pointer;
}

/* NAVBAR */
.main-nav {
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-box {
    background: var(--green); 
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: white;
    color: var(--purple); 
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.nav-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    margin-right: 25px;
    transition: 0.3s;
}

/* Active and Hover  */
.desktop-menu a.active, .desktop-menu a:hover {
    color: var(--purple);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
}

.call-box {
    text-align: right;
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.call-box .label { font-size: 11px; color: var(--text-color); display: block; }

.call-box .number { font-size: 14px; font-weight: 700; color: var(--purple); }

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--purple);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .desktop-menu, .call-box { display: none; }
    .mobile-toggle { display: block; }
    .logo-box { padding: 15px 25px; }
}



/* Hero Section Container */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* =========================================
   Responsive Hero About Section Fix
   ========================================= */

.hero-about {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-image: url("https://i.ibb.co.com/MxDpP5hj/banner.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin: 0 !important; 
    padding: 0 20px !important; 
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*  (#005A9C) and (#388E3C)  */
    background: linear-gradient(135deg, rgba(0, 90, 156, 0.8) 0%, rgba(0, 90, 156, 0.6) 50%, rgba(56, 142, 60, 0.7) 100%) !important;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff !important;
    width: 100%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 50px; 
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.breadcrumb {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; 
}

.breadcrumb a, .breadcrumb span {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb .current {
    /*  (#388E3C)  */
    color: #388E3C !important;
    font-weight: 600;
}

/* =========================================
   Mobile & Tablet Responsive (Media Queries)
   ========================================= */

/* (Max-width: 992px) */
@media (max-width: 992px) {
    .hero-about {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
}

/* (Max-width: 768px) */
@media (max-width: 768px) {
    .hero-about {
        height: 300px; 
    }
    .hero-content h1 {
        font-size: 32px; 
    }
    .breadcrumb a, .breadcrumb span {
        font-size: 16px; 
    }
}

/* (Max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
}



.hero-content .breadcrumb {
    display: flex !important;           
    flex-direction: row !important;      
    justify-content: center !important;  
    align-items: center !important;      
    gap: 10px !important;                
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none !important;         
}


.breadcrumb a, 
.breadcrumb span, 
.breadcrumb .separator {
    display: inline-block !important;    
    text-decoration: none !important;
    font-size: 18px !important;
    color: #ffffff !important;
    margin: 0 !important;
}


.breadcrumb .current {
    /*  (#388E3C)  */
    color: #388E3C !important;            
    font-weight: 600 !important;
}

/* ABOUT SECTION STYLES */

.about-section .description {
    
    color: #2D3748 !important; 
    font-weight: 500 !important; 
    opacity: 1 !important;        
    line-height: 1.8 !important; 
}

.description {
    color: #1a1a1a; 
    margin-bottom: 30px;
    font-size: 17px; 
    font-weight: 500;
}
.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* Image Side */
.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 70%;
    height: 100%;
    background-color: rgba(56, 142, 60, 0.1); 
    border-top-left-radius: 50px;
    z-index: -1;
}

.image-container {
    position: relative;
}

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

/* Floating Badge  */
.exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--purple); 
    color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 220px;
    box-shadow: 0 15px 30px rgba(0, 90, 156, 0.3);
}

.badge-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.check-icon {
    background-color: var(--green); 
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.exp-number {
    font-size: 32px;
    font-weight: 700;
}

.exp-badge p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Content Side */
.sub-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sub-title {
    color: var(--green); 
    font-weight: 700;
    font-size: 18px;
}

.title-line {
    width: 50px;
    height: 2px;
    background-color: var(--green); 
}

.main-title {
    font-size: 45px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.purple-text {
    color: var(--purple); 
}

.description {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #444;
}

.feature-list i {
    color: var(--green); 
    font-size: 20px;
}

.btn-discover {
    background-color: var(--purple); 
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-discover:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}


/* Dots Pattern */
.dots-pattern {
    position: absolute;
    top: -20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    opacity: 0.2;
}

.dots-pattern span {
    width: 6px;
    height: 6px;
    
    background-color: var(--purple); 
    border-radius: 50%;
}

/* Responsive  */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .main-title {
        font-size: 32px;
    }
}


/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light Grayish Background */
}

.services-header {
    margin-bottom: 60px;
}

.sub-header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.header-line {
    width: 35px;
    height: 2px;
    /*  (#388E3C)  */
    background-color: var(--green); 

}

.sub-title {
    
    color: var(--purple); 
    font-size: 30px !important; 
    font-weight: 800 !important; 
    letter-spacing: 2px !important; 
    display: inline-block !important;
    /*font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;*/
}

.section-heading {
    font-size: 38px;
    color: var(--dark);
    line-height: 1.2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center; /* This helps align items properly */
}

/* Normal Card */
.service-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.service-card:hover:not(.active) {
    
    border-color: var(--green); 
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


/* Active Highlighted Card */
.service-card.active {
    background-color: var(--purple); 
    color: var(--white);
    border-color: var(--purple);
    transform: translateY(-15px); /* Lifted Up */
    box-shadow: 0 20px 40px rgba(0, 90, 156, 0.2);
}

/* Icon Styles */
.icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #f0fdf4; 
    color: var(--green); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 35px;
    transition: 0.3s;
}

.icon-wrapper.bg-green {
    background-color: var(--green); 
    color: var(--white);
}

.service-card:hover .icon-wrapper:not(.bg-green) {
    background-color: var(--green); 
    color: var(--white);
}

/* Text Inside Card */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-card.active p {
    color: rgba(255, 255, 255, 0.85);
}

/* Read More Button */
.read-more-btn {
    text-decoration: none;
    color: var(--purple); 
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more-btn.green-link {
    color: var(--green); 
}

.read-more-btn:hover {
    gap: 12px;
}

.service-card.active .read-more-btn:hover {
    color: var(--white);
}

/* Quote Footer */
.quote-footer {
    margin-top: 50px;
}

.quote-link {
    
    color: var(--purple); 
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--green); 
    text-underline-offset: 6px;
}

/* ============================================================
   ONLY FOR SERVICE PAGE 
   ============================================================ */


.services-hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 500px !important;
    padding: 100px 0 !important;
}


.services-hero .hero-content {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
}

.services-hero .hero-title {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}


.services-hero .breadcrumb-nav {
    display: flex !important;
    flex-direction: row !important; 
    align-items: center !important;
    gap: 10px !important;
    font-size: 16px !important;
}


.services-hero .home-text, 
.services-hero .sep, 
.services-hero i {
    color: #ffffff !important; 
    text-decoration: none !important;
}

.services-hero .service-text {
    
    color: #388E3C !important; 
    font-weight: 600 !important;
    
}

/* Responsive  */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card.active {
        transform: translateY(0);
    }
}


/* WHY CHOOSE US STYLES */
.reasons-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left side slightly wider */
    gap: 80px;
    align-items: center;
}

.reasons-sub-title {
    
    color: var(--purple); 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.reasons-main-heading {
    font-size: 40px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 45px;
    font-weight: 700;
}

/* List Items */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.reason-item {
    display: flex;
    gap: 20px;
}

.reason-icon-box {
    width: 55px;
    height: 55px;
    background-color: var(--green); 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(56, 142, 60, 0.2); 
}

.reason-text h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.reason-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Image Side with Green Frame Effect */
.reasons-image-area {
    position: relative;
    padding-top: 30px;
    padding-right: 30px;
}

.main-image-box {
    position: relative;
    z-index: 2;
    border: 10px solid white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    background-color: white;
}

.main-image-box img {
    width: 100%;
    display: block;
}


/* The Green Frame Behind  */
.green-frame-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #388E3C; 
    z-index: 1;
}

/* Responsive  */
@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .reasons-image-area {
        order: -1; /* Image comes first on mobile */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .reasons-main-heading {
        font-size: 32px;
    }
}


:root {
    
    --brand-purple: #005A9C; 
    --brand-green: #388E3C;  
    --white: #ffffff;
}

/* Stats Section Container */
.stats-section {
    padding: 80px 0;
    background-color: var(--brand-purple); 
    position: relative;
    overflow: hidden;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

/* Icon Box Styling */
.stat-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid var(--brand-green); 
    border-radius: 12px;
    color: var(--brand-green);
    font-size: 35px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-box {
    background-color: var(--brand-green);
    color: var(--white);
}

/* Typography */
.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7); /* text-white transparent effect */
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
}



/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .stat-number { font-size: 38px; }
}


/* PROCESS SECTION STYLES */
.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-header {
    margin-bottom: 80px;
}

.process-tag {
    /*  (#388E3C)  */
    color: var(--green); 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.process-title {
    font-size: 38px;
    color: var(--dark);
    line-height: 1.2;
}

/* Steps Layout */
.process-steps-container {
    position: relative;
}

/* The Horizontal Dotted Line */
.step-line {
    position: absolute;
    top: 50px; /* Aligns with the middle of the circles */
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #ddd;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.process-step-item {
    text-align: center;
}

/* Icon Circle Styling */
.icon-outer {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 2px dashed var(--purple); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--purple); 
    transition: all 0.3s ease;
}


/* Step Number Badge */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: var(--green); 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Hover Effects */
.process-step-item:hover .icon-circle {
    
    border-color: var(--green);
    color: var(--green);
    transform: scale(1.05);
}

/* Typography */
.process-step-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsive  */
@media (max-width: 768px) {
    .step-line { display: none; } /* Hide line on mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}



:root {
    
    --primary-purple: #005A9C; 
    --accent-green: #388E3C;   
    --light-purple: #e3f2fd;   
    --text-gray: #4B5563;
}

body {
    margin: 0;
    font-family: sans-serif;
}

.testimonials-section {
    
    background-color: var(--primary-purple);
    color: white;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Content */
.badge-text {
    
    color: var(--accent-green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: 2.5rem;
    margin: 20px 0;
}

.description {
    
    color: #f0f7ff; 
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.btn-outline, .btn-filled {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
}

.btn-outline:hover {
    
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-filled {
    background: var(--accent-green); 
    color: white;
    border: none;
}

.btn-filled:hover {
    background: white;
    color: var(--primary-purple);
}


/* Testimonial Card */
.testimonial-card {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-bg {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: rgba(56, 142, 60, 0.1); 
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-green); 
}

.client-name {
    margin: 0;
    color: var(--primary-purple); 
    font-size: 1.1rem;
}

.client-role {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
}

.decorative-quote {
    margin-left: auto;
    color: var(--accent-green); 
    font-size: 2.5rem;
    font-family: serif;
}

/* Dots */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    
    background: var(--primary-purple); 
    width: 32px;
}


:root {
    
    --purple: #005A9C; 
    --green: #388E3C;  
    --dark: #1a1a1a;
    --white: #ffffff;
}

.team-section {
    padding: 100px 0;
    background-color: var(--white);
    font-family: 'Outfit', sans-serif;
}

/* Header Styles */
.sub-title-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.sub-title-flex .line {
    width: 30px;
    height: 2px;
    background-color: var(--green); 
}

.sub-title {
    
    color: var(--green); 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.main-title {
    font-size: 36px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 60px;
}


/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

/* Image Area & Hover Effects */
.image-area {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Decorative Outer Circle */
.decorative-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green); 
    border-radius: 50%;
    transform: scale(1.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.team-member:hover .decorative-circle {
    opacity: 1;
}

/* Share Button */
.share-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--green); 
    color: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.share-btn:hover {
    
    background-color: var(--purple); 
}

/* Text Styles */
.member-name {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 5px;
}

.member-role {
   
    color: var(--purple); 
    font-weight: 500;
    font-size: 15px;
}

/* Dots */
.team-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    
    background-color: var(--green); 
}


/* Responsive  */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


:root {
    
    --purple: #005A9C; 
    --green: #388E3C;  
    --white: #ffffff;
    --bg-light: #f9f9f9;
}

.contact-section {
    padding-top: 100px;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Form Styles */
.tag-text {
    
    color: var(--purple); 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    margin: 15px 0 40px;
    color: #1a1a1a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-light);
    border: 1px solid #eee;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    
    border-color: var(--purple); 
    background-color: white;
}

.btn-submit {
    
    background-color: var(--purple); 
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    
    background-color: var(--green); 
}

/* Info Card Styles */
.info-card {
    
    background-color: var(--purple); 
    color: white;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--green); 
}

.card-slanted-shape {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background-color: var(--green); 
    transform: rotate(45deg);
}

.card-title {
    font-size: 24px;
    margin-bottom: 40px;
    position: relative;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green); 
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
