﻿:root {
    --primary-dark: #2C2E33; /* Dark gray for main text and backgrounds */
    --primary-accent: #85DA05; /* Bright green for accents and highlights */
    --primary-light: #F2F2F2; /* Light gray for backgrounds and text */

    --nav-color: #2C2E33;
    --nav-hover-color: #85DA05;
    --nav-mobile-background-color: #F2F2F2;
    --nav-dropdown-background-color: #F2F2F2;
    --nav-dropdown-color: #2C2E33;
    --nav-dropdown-hover-color: #85DA05;
    --background-color: #F2F2F2;
    --default-color: #2C2E33;
    --heading-color: #2d465e;
    --accent-color: #2C2E33;
    --surface-color: #F2F2F2;
    --contrast-color: #F2F2F2;
}

a.btn, a.btn-getstarted, button {
    background-color: var(--primary-accent) !important;
    border-color: var(--primary-dark) !important;
    color: var(--primary-dark) !important;
}

    a.btn:hover, a.btn-getstarted:hover, button:hover {
        color: var(--primary-accent) !important;
        border-color: var(--primary-dark) !important;
        background-color: var(--primary-dark) !important;
    }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    left: 25px;
    width: 60px; /* Increased size */
    height: 60px; /* Increased size */
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: all 0.3s ease-in-out;
    animation: whatsappBounce 2s infinite, glowing 2s infinite;
}

    .whatsapp-float:hover {
        background-color: #128c7e;
        color: #fff;
        transform: scale(1.15);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-float i {
        font-size: 35px; /* Increased icon size */
    }

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 5px #25d366;
    }

    50% {
        box-shadow: 0 0 20px #25d366;
    }

    100% {
        box-shadow: 0 0 5px #25d366;
    }
}

.section-title h2:after {
    background: var(--primary-accent);
}

.header .logo img {
    max-height: 55px;
}

.footer .footer-about .logo img {
    max-height: 65px;
}

.projects-card {
    height: 100%;
}

.page-title {
    padding: 130px 0 50px 0;
}

    .page-title h1 {
        margin-bottom: 20px;
    }

    .page-title .breadcrumbs ol li + li {
        padding-right: 10px;
        padding-left: 0;
    }

        .page-title .breadcrumbs ol li + li::before {
            padding-left: 10px;
            padding-right: 0;
        }

/* Fixed background pattern for sections */
.services, .clients, .contact {
    position: relative;
    /*background-color: rgba(242, 242, 242, 0.97);*/ /* Using var(--primary-light) with opacity */
}

    .services::before, .clients::before, .contact::before {
        content: '';
        position: absolute; /* Changed from fixed to absolute */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0; /* Changed from -1 to 0 */
        background-image: radial-gradient(circle, var(--primary-accent) 1px, transparent 1px);
        background-size: 20px 20px;
        background-attachment: fixed; /* This keeps the pattern fixed while scrolling */
        opacity: 0.5;
        pointer-events: none;
    }

    /* Ensure content appears above the pattern */
    .services > *, .clients > *, .contact > * {
        position: relative;
        z-index: 1;
    }

    /* Ensure service cards appear above the pattern */
    .services .service-card, .clients .client-card {
        position: relative;
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    }


.services .service-card .icon {
    margin-left: 30px;
    margin-right: 0;
}

.services .service-card .read-more:hover i {
    transform: translateX(-5px);
}

.service-details ul {
    font-size: 1rem;
}

    .service-details ul i {
        margin-left: 8px;
        margin-right: 0;
    }

.service-details h3 {
    font-size: 2rem;
}

.service-details p {
    font-size: 1.2rem;
}

.clients .swiper-slide img {
    opacity: 1;
    filter: none;
}