body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e2a38;
    color: white;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Light Theme */

/* Dark Theme */
.theme-dark {
    --bg-color: #000000;
    --text-color: #ffffff;
    --navbar-bg: #042f3a69;
    --navbar-bg-small: #042f3a;
    --navbar-shadow: #00404e;
    --link-color: #ffffff;
    --link-hover: #ffcc00;
    --cta-bg: #ffcc00;
    --cta-hover-bg: #000000;
    --cta-hover-text: #000000;
}

.theme-light {
    --bg-color: #ffffff;
    --text-color: #000000;
    --navbar-bg: #c0f0e4;
    --navbar-bg-small: #a5fce6;
    --navbar-shadow: #010202;
    --link-color: #000000;
    --link-hover: #01471f;
    --cta-bg: #00796b;
    --cta-hover-bg: #65ffe5;
    --cta-hover-text: #ffffff;
}



h2, h3, h4, h5 {
    color: #ffed00;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #333;
}



/* Intro section */
/* Services Intro Section */
#services-intro {
    position: relative;
    padding: 4rem 2rem;
    color: var(--text-color);
    background-image: url('../images/services-1.jpg');
    /* Background image */
    background-size: cover;
    background-position: center;
    /* background-blur: 8px; */
    /* Optional: Add a slight blur effect for better text readability */
    overflow: hidden;
}

/* Text Content */
.services-intro-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background for better text visibility */
    border-radius: 8px;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--cta-bg);
    /* Standout color for the heading */
}

.services-intro-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--cta-bg);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services-cta:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover-text);
    transform: scale(1.05);
    /* Enlarges the button slightly on hover */
}


.service-category, .service-detail, .service-example, .faq-item, .certifications {
    margin-bottom: 30px;
}

.service-detail ul {
    list-style-type: disc;
    padding-left: 20px;
}

.cta-button {
    background-color: #d2c505;
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffed00;
}

blockquote {
    background-color: #333;
    padding: 20px;
    border-left: 5px solid #d2c505;
    margin: 20px 0;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #d2c505;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea, form button {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #333;
    color: white;
}

form button {
    background-color: #d2c505;
    border: none;
    cursor: pointer;
}

#contact form button:hover {
    background-color: #ffed00;
}

.gallery {
    display: flex;
    gap: 10px;
}

.gallery img {
    max-width: 100%;
    height: auto;
    border: 2px solid #d2c505;
}


/* Section styling */
#service-categories {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 50px 0;
}

#service-categories .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#service-categories .service-category {
    background-color: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px var(--card-shadow);
    padding: 20px;
    margin: 15px;
    width: 22%;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect for service categories */
#service-categories .service-category:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover-text);
    transform: translateY(-10px);
    box-shadow: 0 8px 12px var(--card-shadow);
}

/* Headings and paragraphs */
#service-categories .service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

#service-categories .service-category p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#service-categories .service-category {
    animation: fadeInUp 0.8s ease both;
    animation-delay: calc(0.2s * var(--i));
}

/* Add different hover styles for dark and light themes */
.theme-dark #service-categories .service-category:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover-text);
}

:root #service-categories .service-category:hover {
    background-color: var(--cta-hover-bg);
    color: var(--cta-hover-text);
}

#service-categories .service-category i {
    font-size: 2.5rem;
    color: var(--cta-bg);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#service-categories .service-category:hover i {
    color: var(--link-hover);
}

#service-categories .service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

/* Media query for mobile screens (small, compact layout) */
@media (max-width: 480px) {
    #service-categories .container {
        gap: 2px;
        display: flex;
        justify-content: center;
        flex-direction: row;
        /* Reduce gap between categories */
    }

    #service-categories .service-category {
        flex: 1 1 calc(50% - 5px);
        /* Fit two smaller boxes per row */
        padding: 10px;
        /* Very small padding */
        font-size: 0.75rem;
        border: solid 1px;
        max-width: 100px;
        margin: 10px;
        height: 170px;
        /* Reduce base font size */
    }

    #service-categories .service-category {
        border: solid 1px gray;
    }

    #service-categories .service-category i {
        font-size: 1.2rem;
        /* Smaller icon size */
        margin-bottom: 8px;
        /* Less space below the icon */
    }

    #service-categories .service-category h3 {
        font-size: 0.875rem;
        /* Smaller heading */
        margin-bottom: 5px;
        /* Less space below heading */
    }

    #service-categories .service-category p {
        font-size: 0.625rem;
        /* Very small paragraph text */
        line-height: 1rem;
        /* Reduce line height */
    }
}

#service-details {
    padding: 50px 0;
    background-color: var(--secondary-bg);
    /* Light or dark theme based */
}

#service-details .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Grid layout */
    gap: 20px;
}

#service-details .service-detail {
    background-color: var(--card-bg);
    /* Card background color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--card-shadow);
    /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#service-details .service-detail:hover {
    transform: translateY(-10px);
    /* Hover effect */
    box-shadow: 0 6px 12px var(--card-shadow);
}

#service-details .service-detail h4 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

#service-details .service-detail p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

#service-details .service-detail ul {
    list-style-type: none;
    padding-left: 0;
}

#service-details .service-detail ul li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-color);
}

#service-details .service-detail ul li:before {
    content: "✔";
    /* Custom icon/bullet */
    position: absolute;
    left: 0;
    color: var(--cta-bg);
    /* Accent color */
}

#service-details i {
    font-size: 2rem;
    color: var(--cta-bg);
    /* Accent color for icons */
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 768px) {
    #service-details {
        padding: 30px 0;
    }

    #service-details .service-detail {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    #service-details .container {
        gap: 15px;
    }

    #service-details .service-detail {
        padding: 10px;
    }

    #service-details .service-detail h4 {
        font-size: 1.2rem;
    }

    #service-details .service-detail p {
        font-size: 0.85rem;
    }

    #service-details .service-detail ul li {
        font-size: 0.8rem;
    }

    #service-details i {
        font-size: 1.8rem;
    }
}

#service-examples {
    padding: 50px 0;
    background-color: var(--bg-color);
    /* Using theme background color */
}

#service-examples .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
    /* More space for images */
    gap: 25px;
}

#service-examples .service-example {
    background-color: var(--card-bg);
    /* Card background color from theme */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px var(--card-shadow);
    /* Enhanced shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Subtle border */
}

#service-examples .service-example:hover {
    transform: translateY(-12px);
    /* More prominent lift on hover */
    box-shadow: 0 10px 20px var(--card-shadow);
}

#service-examples .service-example h5 {
    font-size: 1.5rem;
    color: var(--link-hover);
    /* Use a vibrant color from theme for headings */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#service-examples .service-example:hover h5 {
    color: var(--cta-bg);
    /* Heading color change on hover */
}

#service-examples .service-example img {
    width: 300px;
    height: auto;
    display: flex;
    align-self: center;
    justify-self: center;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid var(--image-border);
    /* Image border color */
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

#service-examples .service-example img:hover {
    transform: scale(1.07);
    /* More zoom on hover */
    opacity: 0.9;
    /* Slight fade */
    box-shadow: 0 8px 16px var(--card-shadow);
}

#service-examples .service-example p {
    color: var(--text-muted);
    /* Muted color from theme */
    font-size: 1rem;
}

@media (max-width: 768px) {
    #service-examples .container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #service-examples {
        padding: 30px 0;
    }

    #service-examples .service-example {
        padding: 15px;
    }

    #service-examples .service-example h5 {
        font-size: 1.2rem;
    }

    #service-examples .service-example p {
        font-size: 0.85rem;
    }
}

#pricing {
    padding: 60px 0;
    background-color: var(--secondary-bg);
    /* Light or dark theme background */
    text-align: center;
}

#pricing h4 {
    font-size: 2rem;
    color: var(--heading-color);
    /* Bold heading color */
    margin-bottom: 20px;
}

#pricing p {
    font-size: 1.1rem;
    color: var(--text-muted);
    /* Muted for the subtext */
    margin-bottom: 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pricing-card {
    background-color: var(--card-bg);
    /* Background color for cards */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px var(--card-shadow);
    /* Subtle shadow */
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px var(--card-shadow);
}

.pricing-card.featured {
    border: 2px solid var(--cta-bg);
    /* Highlight featured plan */
    transform: translateY(-12px);
}

.pricing-card h5 {
    font-size: 1.5rem;
    color: var(--link-hover);
    /* Vibrant color for plan title */
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2rem;
    color: var(--cta-bg);
    /* Call to action color for price */
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    font-size: 1rem;
    color: var(--text-color);
    /* Main text color */
    margin-bottom: 10px;
}

.pricing-card ul li i {
    color: var(--cta-bg);
    /* Icons colored with CTA color */
    margin-right: 10px;
}

.pricing-card .cta-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: var(--cta-bg);
    color: var(--cta-hover-text);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    position: relative;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

#pricing .pricing-card .cta-btn a {
    text-decoration: none !important;
    width: 100%;
    position: absolute;
    /* border: solid; */
    top: 20%;

    left: 0;
}


#pricing .pricing-card .cta-btn:hover {
    background-color: var(--heading-color);
    color: var(--cta-hover-text);
}

/* Media Queries */
@media (max-width: 768px) {
    .pricing-cards {
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .pricing-card {
        padding: 20px;
        width: 90%;

    }
}

#testimonials {
    padding: 60px 0;
    background-color: var(--secondary-bg);
    /* Adapt to dark or light theme */
    text-align: center;
}

#testimonials h4 {
    font-size: 2rem;
    color: var(--heading-color);
    /* Strong heading color */
    margin-bottom: 40px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--card-bg);
    /* Card background color */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px var(--card-shadow);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-muted);
    /* Muted text color */
    margin: 0;
}

.testimonial-card blockquote p {
    font-size: 1.2rem;
    color: var(--text-color);
    /* Main text color */
    margin: 0 0 20px;
}

.testimonial-card blockquote i {
    color: var(--cta-bg);
    /* Color for quote icons */
    margin: 0 10px;
}

.testimonial-card cite {
    display: block;
    font-size: 1rem;
    color: var(--link-hover);
    /* Vibrant color for client name */
}

.testimonial-nav {
    margin-top: 30px;
}

.testimonial-nav .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--button-bg);
    /* Inactive color */
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.testimonial-nav .dot.active {
    background-color: var(--cta-bg);
    /* Active color */
}

/* Media Queries */
@media (max-width: 768px) {
    .testimonial-cards {
        grid-template-columns: 1fr;
        /* Single column for small screens */
    }
}

#workflow {
    padding: 60px 0;
    background-color: var(--secondary-bg);
    /* Light/Dark theme color */
    text-align: center;
}

#workflow h4 {
    font-size: 2.2rem;
    color: var(--heading-color);
    /* Strong heading color */
    margin-bottom: 40px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.workflow-step {
    background-color: var(--card-bg);
    /* Card background color */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px var(--card-shadow);
}

.workflow-step i {
    font-size: 3rem;
    color: var(--cta-bg);
    /* Vibrant color for icons */
    margin-bottom: 15px;
}

.workflow-step h5 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.workflow-step p {
    font-size: 1rem;
    color: var(--text-muted);
    /* Muted text color */
}

@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        /* Single column on smaller screens */
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }

    .workflow-step i {
        font-size: 2rem;
        color: var(--cta-bg);
        /* Vibrant color for icons */
        margin-bottom: 15px;
    }

    .workflow-step h5 {
        font-size: 1rem;
        color: var(--text-color);
        margin-bottom: 10px;
    }

    .workflow-step {
        background-color: var(--card-bg);
        /* Card background color */
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px var(--card-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 160px;
        height: 250px;
    }

}

/* FAQs Section */
#faqs {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.faqsContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
}

#faqs h4 {
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 15px 0;
    padding: 20px;
    transition: all 0.3s ease;
    max-width: 200px;
    border: solid 1px;
}

.faq-item h5 {
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Hover effect */
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 768px) {
    #faqs h4 {
        font-size: 1.5rem;
    }

    .faq-item h5 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    #faqs {
        padding: 20px 10px;
    }

    #faqs h4 {
        font-size: 1.3rem;
    }

    .faq-item {
        padding: 1px;
        width: 150px;
    }

    .faq-item h5 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.75rem;
    }
}

/* Contact Form Section */
#contact {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact h4 {
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;

}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    border: solid 1px;
    width: 400px;
    padding: 20px;
    border-radius: 20px;

}

#contact input,
#contact textarea {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
    color: var(--text-color);
    transition: border 0.3s ease;
}

#contact input:focus,
#contact textarea:focus {
    border: 1px solid var(--cta-bg);
    outline: none;
}

#contact button {
    background-color: var(--cta-bg);
    color: var(--cta-hover-text);
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: var(--cta-hover-bg);
}

/* Media Queries */
@media (max-width: 768px) {
    #contact h4 {
        font-size: 1.5rem;
    }

    #contact input,
    #contact textarea {
        font-size: 0.9rem;
    }

    #contact button {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #contact {
        padding: 20px 10px;
    }

    #contact form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 600px;
        border: solid 1px;
        width: 90vw;
        padding: 20px;
        border-radius: 20px;

    }

    #contact h4 {
        font-size: 1.3rem;
    }

    #contact input,
    #contact textarea {
        font-size: 0.85rem;
        padding: 12px;
    }

    #contact button {
        font-size: 0.85rem;
    }
}