:root {
    --primary-blue: #2A6F97;
    --primary-blue-light: #4682B4;
    --secondary-yellow: #FFD700;
    --secondary-yellow-light: #FFEA80;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-text: #343A40;
    --light-text: #6C757D;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--dark-text);
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--primary-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-yellow);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background-color 0s, border-color 0s;
}

.btn-primary:hover {
    background-color: #215A7A;
    border-color: #215A7A;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--dark-text);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background-color 0s, border-color 0s, color 0s;
}

.btn-secondary:hover,
.btn-secondary.active {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--dark-text);
}

/* Navbar */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}
@media (max-width:575px) {
    .navbar-brand{
        font-size: 12px;
    }
}
.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}
.navbar-nav{
        flex-wrap: wrap;
    justify-content: end;
}
.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    margin-left: 15px;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-yellow);
    transition: width 0s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: var(--primary-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232A6F97' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('static/uploads/Disinfectant-Gloves-Shot-Studio-Full-And-Bowl-Of-Housekeeper-Woman-While-Of-Office-Holding-Bottles-Cleaning-With-Wearing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    z-index: 1;
    padding-top: 100px; /* To account for fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-section h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-section p {
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

/* About Section (Timeline) */
.about-section {
    background-color: var(--white);
}

.about-section .timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.about-section .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-blue-light);
    border-radius: 2px;
}

.about-section .timeline-item {
    position: relative;
}

.about-section .timeline-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 1.2rem;

    border: 2px solid var(--primary-blue);
}

.about-section .timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.about-section .timeline-content p {
    color: var(--light-text);
}

/* Services Section (Process Flow) */
.services-section .process-flow {
    position: relative;
}

.services-section .process-step {
    position: relative;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}





.services-section .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 3px solid var(--secondary-yellow);
}

.services-section .step-icon {
    font-size: 3rem;
    color: var(--secondary-yellow);
    margin-bottom: 15px;
}

.services-section .step-title {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem!important;
}

.services-section .step-description {
    color: var(--light-text);
}

/* Features Section (Cards) */
.features-section .feature-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0s, color 0s, border-color 0s;
}

.features-section .feature-card:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.features-section .feature-card:hover .feature-icon,
.features-section .feature-card:hover .feature-title,
.features-section .feature-card:hover .feature-description {
    color: var(--white) !important;
}

.features-section .feature-icon {
    font-size: 3.5rem;
    color: var(--secondary-yellow);
    transition: color 0s;
}

.features-section .feature-title {
    color: var(--primary-blue);
    transition: color 0s;
}

.features-section .feature-description {
    color: var(--light-text);
    transition: color 0s;
}

/* How It Works Section */
.how-it-works-section .process-phases .col-md-4:not(:last-child)::after {
    content: '\F234'; /* Bootstrap icon for arrow right */
    font-family: 'bootstrap-icons';
    position: absolute;
    right: -15%; /* Adjust as needed */
    top: 30%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--primary-blue-light);
    z-index: 1;
}

@media (max-width: 767.98px) {
    .how-it-works-section .process-phases .col-md-4:not(:last-child)::after {
        content: none;
    }
}

.how-it-works-section .process-phase {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.how-it-works-section .phase-icon {
    font-size: 4rem;
    color: var(--secondary-yellow);
}

.how-it-works-section .phase-title {
    color: var(--primary-blue);
    margin-top: 10px;
}

.how-it-works-section .phase-description {
    color: var(--light-text);
}

/* Pricing Section */
.pricing-section .price-toggle .btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: background-color 0s, color 0s;
}

.pricing-section .price-toggle .btn.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.pricing-section .pricing-plan-card .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0s, box-shadow 0s;
}

.pricing-section .pricing-plan-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-section .plan-badge {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.pricing-section .plan-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-section .plan-price {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pricing-section .plan-price small {
    font-size: 1.2rem;
    color: var(--light-text);
}

.pricing-section .plan-features li {
    margin-bottom: 10px;
    color: var(--dark-text);
}

.pricing-section .plan-features li i {
    color: var(--secondary-yellow);
}

.pricing-section .plan-cta {
    width: 100%;
}

/* Team Section */
.team-section .team-member-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0s, color 0s;
}

.team-section .team-member-card:hover {
    background-color: var(--primary-blue-light);
    color: var(--white);
}

.team-section .team-member-card:hover .member-name,
.team-section .team-member-card:hover .member-title {
    color: var(--white) !important;
}

.team-section .member-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--secondary-yellow);
}

.team-section .member-name {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0s;
}

.team-section .member-title {
    color: var(--light-text);
    font-size: 0.9rem;
    transition: color 0s;
}

/* Portfolio Section */
.portfolio-scroll-wrapper {
display: flex;
flex-wrap: wrap;
    padding-bottom: 20px; /* Space for scrollbar */
}

.portfolio-item-container {
    display: flex;
    flex-wrap: wrap;
        justify-content: center;
    gap: 15px;
}

.portfolio-item-card {
    flex: 0 0 auto;
    width: 320px; /* Fixed width for cards */
    scroll-snap-align: start;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0s, box-shadow 0s;
    overflow: hidden;
}

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

.portfolio-item-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.portfolio-item-card .card-body {
    padding: 20px;
}

.portfolio-item-card .project-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-item-card .project-description {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Industries Section */
.industries-section .industry-item {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0s, color 0s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px; /* Give space for icon */
}

.industries-section .industry-item:hover {
    background-color: var(--secondary-yellow);
    color: var(--dark-text);
}

.industries-section .industry-item:hover .industry-icon {
    color: var(--primary-blue);
}

.industries-section .industry-item:hover .industry-name {
    color: var(--dark-text);
}

.industries-section .industry-item:hover .industry-description {
    color: var(--dark-text);
}

.industries-section .industry-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0s;
}

.industries-section .industry-name {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0s;
}

.industries-section .industry-description {
    color: var(--light-text);
    font-size: 0.9rem;
    transition: color 0s;
}

/* Stats Section */
.stats-section .stat-card {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-section .stat-card.bg-primary-light {
    background-color: var(--primary-blue-light);
}

.stats-section .stat-card.bg-yellow-light {
    background-color: var(--secondary-yellow-light);
    color: var(--dark-text);
}

.stats-section .stat-card.bg-yellow-light .stat-number,
.stats-section .stat-card.bg-yellow-light .stat-title,
.stats-section .stat-card.bg-yellow-light .stat-explanation {
    color: var(--dark-text);
}

.stats-section .stat-number {
    color: var(--white);
    margin-bottom: 5px;
}

.stats-section .stat-title {
    color: var(--white);
    font-weight: 600;
}

.stats-section .stat-explanation {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* FAQ Section (Accordion) */
.faq-section .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 20px;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: background-color 0s, color 0s, box-shadow 0s;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--secondary-yellow-light);
    color: var(--primary-blue);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232A6F97'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0s;
}

.faq-section .accordion-body {
    padding: 20px;
    background-color: var(--light-gray);
    color: var(--dark-text);
    border-top: 1px solid #e0e0e0;
}

/* Override Bootstrap's collapse transition for instant effect */
.accordion-collapse {
    transition: height 0s !important;
}

/* Testimonials Section */
.testimonials-section .testimonial-card {
    background-color: var(--white);
    border: none;
    position: relative;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-section .testimonial-bubble {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
    min-height: 150px; /* Ensure consistent height for bubble */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-section .testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--light-gray);
}

.testimonials-section .quote-text {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.testimonials-section .client-name {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonials-section .client-title {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Careers Section */
.careers-section .job-listing .accordion-button {
    font-size: 1.1rem;
    color: var(--primary-blue);
    background-color: var(--white);
    text-decoration: none !important;
    transition: background-color 0s, color 0s;
}

.careers-section .job-listing .accordion-button:hover,
.careers-section .job-listing .accordion-button:not(.collapsed) {
    background-color: var(--secondary-yellow-light);
    color: var(--primary-blue);
}

.careers-section .job-details {
    background-color: var(--white);
    border-top: 1px solid #e0e0e0;
    color: var(--dark-text);
}

.careers-section .job-details p {
    margin-bottom: 10px;
}

.careers-section .job-details strong {
    color: var(--primary-blue);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-blue-light);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background-color: var(--secondary-yellow);
}

.contact-section .contact-info-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--dark-text);
}

.contact-section .contact-info-card i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.contact-section .contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}
@media (max-width:575px) {
    .contact-section .contact-info-card a{
        font-size: 12px;
    }
}

.contact-section .contact-info-card a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-cta-bar {
    background-color: var(--secondary-yellow);
    color: var(--dark-text);
    font-weight: 600;
}

.footer-cta-bar p {
    margin-bottom: 0;
}

.main-footer .footer-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-footer .footer-brand .logo-img-footer {
    height: 35px;
    margin-right: 8px;
}

.main-footer h5 {
    color: var(--secondary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
}

.main-footer ul {
    padding-left: 0;
    list-style: none;
}

.main-footer ul li a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0s;
}

.main-footer ul li a:hover {
    color: var(--secondary-yellow);
}

.footer-bottom {
    background-color: #215A7A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#cookieConsentModal .modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
}

#cookieConsentModal .modal-title {
    font-weight: 700;
}

#cookieConsentModal .modal-body {
    padding: 30px;
    color: var(--dark-text);
}

#cookieConsentModal .cookie-policy-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

#cookieConsentModal .cookie-policy-link:hover {
    text-decoration: underline;
}

#cookieConsentModal .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

#cookieConsentModal .form-check-label {
    color: var(--dark-text);
}

#cookieConsentModal .modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 20px 30px;
}

#cookieConsentModal .btn-secondary {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--dark-text);
}

#cookieConsentModal .btn-secondary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

#cookieConsentModal .btn-primary {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--dark-text);
}

#cookieConsentModal .btn-primary:hover {
    background-color: #e0c200;
    border-color: #e0c200;
}

#cookieConsentModal .btn-success {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

#cookieConsentModal .btn-success:hover {
    background-color: #215A7A;
    border-color: #215A7A;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-nav .nav-link::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

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



    .services-section .process-flow .col-md-4 {
        margin-bottom: 30px;
    }

    .how-it-works-section .process-phases .col-md-4:not(:last-child)::after {
        content: none;
    }

    .pricing-section .pricing-plans .col {
        margin-bottom: 20px;
    }

    .footer-content .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .portfolio-item-card {
        width: 280px;
    }
}
/* Parent container for user-generated content */
.userClauseNet {
    padding: 20px 15px; /* Top/bottom and side padding */
    max-width: 800px; /* Limits content width for better readability */
    margin: 0 auto; /* Centers the content block horizontally */
    line-height: 1.6; /* Default line height for text within the container */
    color: #333; /* Default text color, a soft black */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; /* Modern sans-serif font stack */
}

/* Heading 1 styles */
.userClauseNet h1 {
    font-size: 1.8em; /* Moderate size for main heading */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: bold;
}

/* Heading 2 styles */
.userClauseNet h2 {
    font-size: 1.5em;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.25;
    font-weight: bold;
}

/* Heading 3 styles */
.userClauseNet h3 {
    font-size: 1.3em;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.3;
    font-weight: bold;
}

/* Heading 4 styles */
.userClauseNet h4 {
    font-size: 1.1em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.4;
    font-weight: bold;
}

/* Heading 5 styles */
.userClauseNet h5 {
    font-size: 1em; /* Same as base font, but bold */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: bold;
}

/* Paragraph styles */
.userClauseNet p {
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.userClauseNet ul {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indent for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles */
.userClauseNet li {
    margin-bottom: 0.5em; /* Space between list items */
}
