body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F9FA;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #007bff; /* Primary blue for headers */
}

.text-primary {
    color: #007bff !important; /* Bootstrap primary blue */
}

.text-secondary {
    color: #6c757d !important; /* Bootstrap secondary gray */
}

.bg-primary {
    background-color: #007bff !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    text-decoration: none; /* Remove underline */
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
    text-decoration: none; /* Remove underline */
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
    text-decoration: none; /* Remove underline */
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.navbar-brand .text-primary {
    color: #007bff !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #007bff !important;
}

.nav-item .btn {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.1)), url('static/uploads/cleaning-hero-bg_3.jpg') no-repeat center center/cover;
    padding-top: 120px !important; /* Adjust for fixed header */
    padding-bottom: 120px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.5); /* Darker overlay for text readability */
    z-index: 0;
}

.hero-section h1 {
    color: #fff;
    font-size: 3.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-grid-container {
    margin-top: 60px;
}

.hero-tile {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: none; /* No animation */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-tile:hover {
    background-color: #e0f7fa; /* Light blue on hover */
    border-color: #007bff;
}

.hero-tile-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: #555;
    transition: none; /* No animation */
}

.hero-tile.is-active .hero-tile-content {
    max-height: 100px; /* Sufficient height */
    opacity: 1;
    transition: none; /* No animation */
}

/* About Us Section */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f0f8ff; /* Very light blue background */
}

.about-section .text-block h2, .about-section .text-block h3 {
    color: #007bff;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Services Section */
.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0f7fa; /* Light blue border */
    transition: none; /* No animation */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card .btn {
    text-decoration: none;
}

/* Features Section */
.features-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #e0f7fa; /* Light blue background */
}

.feature-card {
    background-color: #fff;
    border: 1px solid #c0e6f2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: none; /* No animation */
}

.feature-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Industries Section */
.industries-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
}

.industry-item {
    background-color: #fff;
    border: 1px solid #e0f7fa;
    transition: none; /* No animation */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: #555;
    transition: none; /* No animation */
}

.industry-item.is-visible .industry-description {
    max-height: 100px; /* Sufficient height */
    opacity: 1;
    transition: none; /* No animation */
}

/* Stats Section */
.stats-section {
    background-color: #007bff; /* Primary blue background */
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: none; /* No animation */
}

.stat-card.bg-info {
    background-color: #17a2b8 !important;
}

.stat-card.bg-secondary {
    background-color: #6c757d !important;
}

/* How It Works Section */
.how-it-works-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f0f8ff;
    position: relative;
}

.how-it-works-path {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c0e6f2; /* Light blue line */
    z-index: 0;
    transform: translateY(-50%);
}

.path-step {
    background-color: #fff;
    border: 1px solid #e0f7fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: none; /* No animation */
    opacity: 0.6;
    transform: translateY(10px);
}

.path-step.path-step-unlocked {
    opacity: 1;
    transform: translateY(0);
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.path-step .step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.path-step .step-icon i {
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
}

/* Contact Form Section */
.contact-form-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #fff;
}

.contact-form-section .card {
    border: none;
    background-color: #f0f8ff; /* Light blue card background */
}

.contact-form-section .form-label {
    font-weight: 600;
    color: #333;
}

.contact-form-section .form-control:focus, .contact-form-section .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.contact-form-section .btn {
    text-decoration: none;
}

/* Footer Section */
.footer-section {
    background-color: #0d1a26 !important; /* Darker blue/gray */
    color: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-section a {
    color: #f8f9fa;
    text-decoration: none;
    transition: none; /* No animation */
}

.footer-section a:hover {
    color: #007bff;
}

.footer-tile {
    background-color: #1a2c3d;
    border: 1px solid #2a3e50;
    transition: none; /* No animation */
}

.footer-tile:hover {
    background-color: #2a3e50;
    border-color: #007bff;
}

.footer-tile h3 {
    color: #007bff; /* Primary blue for footer headings */
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    background-color: #0d1a26 !important;
    color: #f8f9fa;
    border-top: 1px solid #2a3e50;
}

.cookie-banner a {
    color: #4dd0e1 !important; /* A slightly different blue for links in banner */
}

.cookie-banner .btn {
    text-decoration: none;
}

.modal-content {
    border-radius: 8px;
}

.modal-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-footer {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-grid-container {
        margin-top: 30px;
    }
    .call-to-action {
        flex-direction: column;
    }
    .call-to-action .btn {
        width: 100%;
    }
    .about-section .row, .how-it-works-path .row {
        flex-direction: column;
    }
    .path-line {
        display: none; /* Hide line on small screens */
    }
    .path-step {
        margin-bottom: 20px;
    }
    .path-step:last-child {
        margin-bottom: 0;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .cookie-banner .d-flex.gap-2 {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-banner .d-flex.gap-2 .btn {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .hero-tile-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 123, 255, 0.8);
        color: #fff;
        padding: 15px;
        transform: translateY(100%);
        transition: none; /* No animation */
        opacity: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-tile.is-active .hero-tile-content {
        transform: translateY(0);
        opacity: 1;
        transition: none; /* No animation */
    }

    .hero-tile {
        position: relative;
        overflow: hidden;
    }

    .industry-description {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 123, 255, 0.8);
        color: #fff;
        padding: 15px;
        transform: translateY(100%);
        transition: none; /* No animation */
        opacity: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .industry-item.is-visible .industry-description {
        transform: translateY(0);
        opacity: 1;
        transition: none; /* No animation */
    }

    .industry-item {
        position: relative;
        overflow: hidden;
    }

    .how-it-works-path .path-step:nth-child(even) {
        margin-top: 60px; /* Offset for zig-zag effect */
    }
}

/* Ensure all grid cards have equal height */
.row.g-4 > .col, .row.g-4 > [class*="col-"] {
    display: flex;
}

.row.g-4 > .col > div, .row.g-4 > [class*="col-"] > div {
    flex: 1;
}
/* Wrapper for content, providing overall padding */
.rightsCloudWrap {
    padding: 80px 30px; /* Top/bottom padding 80px, left/right 30px */
    /* You might want to add a max-width and margin: 0 auto; here for content centering */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

/* Heading 1 styles */
.rightsCloudWrap h1 {
    font-size: 2.5rem; /* Relatively smaller H1 for content sections */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1.5rem; /* Spacing below the heading */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles */
.rightsCloudWrap h2 {
    font-size: 2rem; /* Heading 2 font size */
    margin-top: 2rem; /* Spacing above the heading */
    margin-bottom: 1.2rem; /* Spacing below the heading */
    line-height: 1.3;
}

/* Heading 3 styles */
.rightsCloudWrap h3 {
    font-size: 1.75rem; /* Heading 3 font size */
    margin-top: 1.8rem; /* Spacing above the heading */
    margin-bottom: 1rem; /* Spacing below the heading */
    line-height: 1.4;
}

/* Heading 4 styles */
.rightsCloudWrap h4 {
    font-size: 1.5rem; /* Heading 4 font size */
    margin-top: 1.5rem; /* Spacing above the heading */
    margin-bottom: 0.8rem; /* Spacing below the heading */
    line-height: 1.5;
}

/* Heading 5 styles */
.rightsCloudWrap h5 {
    font-size: 1.25rem; /* Heading 5 font size */
    margin-top: 1.2rem; /* Spacing above the heading */
    margin-bottom: 0.6rem; /* Spacing below the heading */
    line-height: 1.6;
}

/* Paragraph styles */
.rightsCloudWrap p {
    font-size: 1.1rem; /* Base paragraph font size */
    line-height: 1.7; /* Line height for better readability */
    margin-bottom: 1rem; /* Spacing between paragraphs */
}

/* Unordered list styles */
.rightsCloudWrap ul {
    list-style: disc; /* Default disc style for list items */
    margin-top: 1rem; /* Spacing above the list */
    margin-bottom: 1rem; /* Spacing below the list */
    padding-left: 25px; /* Indentation for list items */
}

/* List item styles */
.rightsCloudWrap li {
    font-size: 1.1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
}

/* Responsive adjustments for the wrapper padding */
@media (max-width: 767.98px) {
    .rightsCloudWrap {
        padding: 60px 15px; /* Adjust padding for smaller screens */
    }

    .rightsCloudWrap h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    .rightsCloudWrap h2 {
        font-size: 1.7rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }
    .rightsCloudWrap h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    .rightsCloudWrap h4 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }
    .rightsCloudWrap h5 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .rightsCloudWrap p,
    .rightsCloudWrap li {
        font-size: 1rem; /* Slightly smaller text on mobile */
    }
}


.stats-section  h2, .dop-locorBtn{
    color: #fff !important;
}

.dop-locorBtn:hover{
    color: #fff !important;
}