:root {
    --primary: #1976d2;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.image-container {
    overflow: hidden;
    position: relative;
}

.zoom-image {
    transition: transform 0.9s ease;
}

.image-container:hover .zoom-image {
    transform: scale(1.5);
}


/* Service Description page Css */
.service-desc-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    /* Optional: Background color for consistency */
}

.service-desc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-desc-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* portfolio page css */

/* portfolio page left category sticky */
#category-filter {
    position: sticky;
    top: 100px;
    z-index: 100;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    transition: transform 0.8s ease-in-out;
}

.portfolio-img:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-btn {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}


/* css for explore more btn on index page */
.explore-more-btn {
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.explore-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0066cc;
    transition: all 1s ease;
    z-index: -1;
}

.explore-more-btn:hover::before {
    left: 0;
}

.explore-more-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* end explore more btn css */

/* Underline css */
.title-with-line {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.title-with-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #32C36C;
}


/* service and why choose us box hover */

/* .portfolio-item:hover {
    transform: translateY(-10px);
    transition: transform 0.8s ease-in-out;
} */
.box-hover {
    transition: all 0.3s ease;
}

.box-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: #f7f7f7;
}

.service-box:hover {
    transform: translateY(-10px);
    transition: transform 0.5s ease-in-out;
}

.why-choose-box:hover {
    transform: translateY(-10px);
    transition: transform 0.5s ease-in-out;
}

/* Animation for text */
.wow.fadeInUp {
    opacity: 0;
    transform: translateY(50px);
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Bar CSS */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* end */

/* Responsive CSS */
@media only screen and (max-width: 576px) {
    .navbar .site-name {
        font-size: 13px;
    }

    .about-us .about-us-title {
        font-size: 35px;
    }

    .about-us .about-us-content {
        font-size: 15px;
        line-height: 2;
    }

    .call-to-action .call-to-action-title {
        font-size: 25px;
        line-height: 2;
    }

    .call-to-action .call-to-action-content {
        font-size: 15px;
        line-height: 2;
    }

    .call-to-action .call-to-action-button {
        padding: 8px 10px;
        font-size: 12px;
    }
}


.banner-img {
    height: 750px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .banner-img {
        height: 300px;
        object-fit: cover;
    }
}
.header-main {
    position: relative;
}

.header-topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: row;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .navbar .collapse {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: white;
    }
    .navbar .collapse.navbar-collapse.show {
        border: 1px solid #000000;
    }
}

.whatsapp-button{
    z-index: 99999;
    width: 60px;
    height: 60px;
}