@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins" !important;
}

.top_text{
    font-family: 'Poppins';
    color: #fff;
    padding: 1rem;
    padding-left: 0;
    letter-spacing: 0.5px;
}

.background {
    text-align: center;
    width: 100%;
}

/* Basic styling for the navbar */

nav {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    width: 100%;
}

/*-------------------*/
nav {
    z-index: 99;
    width: 100%;
    background: #fff;
    height: 100px;
}

.nav-links {
    margin-left: 25%;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 80px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 160px;
    height: auto;
    padding-top: 12%;
}

.wrapper .nav-links {
    display: inline-flex;
    margin-top: 3%;
}

.nav-links li {
    list-style: none;
}

    .nav-links li a {
        color: #333;
        text-decoration: none;
        font-size: 19px;
        font-weight: 600;
        padding: 9px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .nav-links li a:hover {
         /*   background-color: #155fa5;*/
            color: #fff;
        }

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.row img {
    width: 100px;
    height: 100px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

    .mega-box .content {
        padding: 20px 20px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        height: 300px;
    }

        .mega-box .content .row {
            width: calc(25% - 30px);
            line-height: 45px;
            .content .row img

{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: #d9d9d9;
        font-size: 17px;
        display: block;
    }

        .row .mega-links li a:hover {
            color: #f2f2f2;
        }

}
/* Basic styling for the card container */
.card-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between cards */
    gap: 15px; /* Gap between cards */
    padding: 30px; /* Padding for the container */
    height: auto;
    background-color: #fff;
}

    /* Styling for individual cards */
    .card-container .card {
        text-align: center; /* Center-align text */
        border-radius: 50%; /* Rounded corners */
        box-shadow: 0 0px 2px 4px #155fa5; /* Subtle shadow */
        flex: 1; /* Allow cards to grow equally */
        border: #155fa5;
        height: 180px;
    }

/* Style for the card image */
.card img {
    width: 70%;
    margin-top: 10%;
    margin-left: 12%;
}

/* Style for the card text */
.card-container .card h3 {
    font-size: 15px; /* Font size for heading */
    color: #000;
    cursor: pointer;
    margin-top: 5% !important;
}
/* Responsive design for smaller screens */
.wrapper .btn {
    color: #333;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

    .wrapper .btn.close-btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }

@media screen and (max-width: 970px) {
    }

nav input {
    display: none;
}

.call button{
    border-color: #155fa5;
    padding: 0 !important;
    border-radius: 70px;
}
.call button:hover{
    border-color: #e31616;
}
/*-----card------------*/
.service-banner img {
    height: 300px;
    width: 100%;
    opacity: 0.7;
    position: relative;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.service-banner h3 {
    text-align: center;
}

.products {
    padding: 20px;
    background-color: #f9f9f9; /* Background color for the products container */
}

.row {
    display: flex; /* Use flexbox to arrange items in a row */
    justify-content: space-between; /* Space out the left and right columns */
    align-items: flex-start; /* Align items at the top */
}

.left-column {
    background-color: #e4eef1;
    border-right: 6px solid #148fd2;
    width: 23%;
    margin-left: 5%;
    margin-top: 3%;
    padding: 15px;
    margin-right: 4rem;
}

.right-column {
    width: 65%;
}

p {
    margin: 0; /* Reset default margins */
    color: #333; /* Dark gray text color */
    line-height: 1.5; /* Set line height for readability */
}

.products .left-column h5 {
    font-size: 15px;
    color: #000000;
    margin-top: 2%;
    font-weight: bold;
}

.products .left-column h6 {
    color: #025f91;
    margin-top: 2%;
    font-weight: bold;
    font-size: 15px;
}

.products .left-column p {
    line-height: 2;
    letter-spacing: 1;
    font-size: 13px;
    margin-left: 4%;
    padding-right: 0.5rem;
    padding-bottom: 1rem;
}

.products .content-list p {
    margin-left: 6%;
    padding-bottom: 0.2rem;
    color: #000;
}
.cardservice-container {
    display: flex;/*
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    padding: 20px;
    margin-top: 4%;*/
}

.card-service img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background-color: #fff;
    margin-top: 4%;
}

.card-service {
  height: 540px;
    flex: 1;
    max-width: 360px;
    margin: 0px;
    overflow: hidden;
    transition: transform 0.3s;
    margin-left: 40px;
    border: 1px solid #c1c1c1;
    border-radius: 15px;
    box-shadow: -15px 15px 0 -5px rgb(20 143 210 / 35%);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    margin: 26px;
    --e-column-margin-right: 30px;
    --e-column-margin-left: 30px;
    background-color: #fff;
    margin-top: 3rem;
    padding: 0.8rem
12.8px
;
}

    .card-service:hover {
        box-shadow: -15px 15px 0 -5px rgb(0 136 209);
        transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
        margin: 26px;
        --e-column-margin-right: 30px;
        --e-column-margin-left: 30px;
        cursor: pointer;
        margin-top: 3rem;
    }

.card-image1 {
    width: 100%;
    height: auto;
}

.cardservice-content h2 {
    font-size: 14px;
    margin-top: 4%;
    font-family: 'Poppins';
    color: #000;
}

a {
    text-decoration: none;
}

.cardservice-content {
    text-align: center; /* Center the content within the card */
}
    .cardservice-content p {
        color: rgb(0 0 0);
        font-weight: bold;
        font-family: 'Poppins';
        font-size: 20px;
        letter-spacing: 0;
    }

.box {
    margin-top: 10%;
    margin-left: 29%;
    transform: translate(-35%, -50%);
    position: relative;
    padding: 8px 36px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    font: 14px / 20px Arial, sans-serif;
    background-color: #4973ff;
    transition: box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
    font-family: 'Poppins';
    font-weight: bold;
    border-radius: 50px;
}

    .box:hover {
        background-color: #6c757d;
        box-shadow: 0 0 2px 0 rgba(109, 106, 102, 0.1), 0 0 4px 0 rgba(117, 113, 107, 0.2), 0 0 6px 0 rgba(89, 87, 85, 0.3), 0 0 8px 0 rgba(66, 62, 55, 0.4), 0 0 12px 0 rgba(67, 63, 59, 0.5), 0 0 18px 0 rgba(117, 117, 111, 0.6), 0 0 4px 0 rgba(116, 116, 108, 0.7);
    }


    .box span {
        color: #fff;
        letter-spacing: px;
    }

    .box i {
        position: absolute;
        z-index: -1;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 200px;
        background-color: inherit;
        box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
        transition: transform 0.4s linear, top 1s linear;
        overflow: hidden;
    }

        .box i:before,
        .box i:after {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            top: 0;
            left: 50%;
            transform: translate(-50%, -75%);
        }

        .box i:before {
            border-radius: 46%;
            background-color: rgba(20, 20, 20, 0.2);
            animation: animate 5s linear infinite;
        }

        .box i:after {
            border-radius: 40%;
            background-color: rgba(20, 20, 20, 0.5);
            animation: animate 10s linear infinite;
        }






@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

.cardservice-content button:hover {
    background-color: #6c757d;
}

/*---------footer-----------*/
.footer-container {
    background-image: url(images/43c45e03-2dea-4d88-965f-f40cd5dbf6a4.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

.row3 {
    display: flex;
    justify-content: space-evenly;
}

.col1 a {
    color: #000;
    display: inline;
}

.col1 h1 {
    margin-bottom: 5%;
    margin-top: 20%;
    color: #000;
}

.col1 h3 {
    font-size: 20px;
    color: #000;
}

.useful-links {
    margin-top: 3%;
}

.address {
    margin-top: 3%;
}

.col1 p {
    margin-top: 5%;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.footer-content a p:hover {
    color: #01A2ff;
    transform: translateX(20px);
}

.copy-right {
    text-align: center;
}

    .copy-right p {
        font-size: 16px;
        font-weight: bold;
        color: #000;
        margin-bottom: 0;
        padding-bottom: 0.5%;
    }

    .copy-right a {
        color: #01A2ff;
        cursor: pointer;
        font-size: 19px;
    }

.icons {
    margin-top: 10%;
}

    .icons a {
        padding: 8px;
        background-color: #01A2ff;
        color: #FFF;
        justify-content: space-between;
    }

        .icons a:hover {
            background-color: #f39237;
            color: #FFF;
        }

.col1 img {
    width: 150px;
    height: auto;
}

.footer-address {
    display: flex;
}

    .footer-address i {
        margin-top: 7%;
        font-size: 20px;
        color: #155fa5;
    }

    .footer-address p {
        margin-left: 5px;
    }

.mobile-num {
    display: flex;
}

    .mobile-num i {
        margin-top: 5%;
        font-size: 20px;
        color: #155fa5;
    }

    .mobile-num p {
        margin-left: 5px;
    }
.whats-app {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    z-index: 100;
}



/*-------preloader--------*/
.drop {
    position: relative;
    width: 20px;
    height: 20px;
    top: -30px;
    margin: 0 auto;
    background: #FFF;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    -moz-animation-name: drip;
    -webkit-animation-name: drip;
    animation-name: drip;
    -moz-animation-timing-function: cubic-bezier(1, 0, .91, .19);
    -webkit-animation-timing-function: cubic-bezier(1, 0, .91, .19);
    animation-timing-function: cubic-bezier(1, 0, .91, .19);
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1.5s;
}

    .drop:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 30px solid rgba(255, 255, 255, 1);
        top: -22px;
    }
/*
.wave {
  position: relative;
  opacity: 0;
  top: 0;
  width: 2px;
  height: 3px;
  border: #FFF 7px solid;
  -moz-border-radius: 300px / 150px;
  -webkit-border-radius: 300px / 150px;
  border-radius: 300px / 150px;
  -moz-animation-name: ripple;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -moz-animation-delay: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 5s;
}

.wave:after {
  content: "";
  position: absolute;
  opacity: 0;
  top: -5px;
  left: -5px;
  width: 2px;
  height: 1px;
  border: #FFF 5px solid;
  -moz-border-radius: 300px / 150px;
  -webkit-border-radius: 300px / 150px;
  border-radius: 300px / 150px;
  -moz-animation-name: ripple-2;
  -webkit-animation-name: ripple-2;
  animation-name: ripple-2;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 3s;
}
*/
@keyframes ripple {
    from {
        opacity: 1;
    }

    to {
        width: 600px;
        height: 400px;
        border-width: 1px;
        top: -100px;
        opacity: 0;
    }
}

@keyframes ripple-2 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        width: 200px;
        height: 300px;
        border-width: 1px;
        top: -1000px;
        opacity: 0;
    }
}

@keyframes drip {
    to {
        top: 190px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


#preloader {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}

    #preloader:before,
    #preloader:after {
        content: "";
        background-color: #3498DB;
        position: absolute;
        inset: 0;
        width: 50%;
        height: 100%;
        transition: all 4s ease 10s;
        z-index: -1;
    }

    #preloader:after {
        left: auto;
        right: 0;
    }

    #preloader .drop .wave {
        position: relative;
        overflow: hidden;
        margin: auto;
        width: 1px;
        height: 280px;
        transition: all 10s ease 6ss;
    }

        #preloader .drop .wave:before {
            content: "";
            position: absolute;
            background-color: #fff;
            left: 0;
            top: 50%;
            width: 1px;
            height: 0%;
            transform: translateY(-50%);
            animation: lineincrease 1000ms ease-in-out 10s forwards;
        }

        #preloader .drop .wave:after {
            content: "";
            position: absolute;
            background-color: #999;
            left: 0;
            top: 0;
            width: 1px;
            height: 100%;
            transform: translateY(-100%);
            animation: linemove 1200ms linear 10s infinite;
            animation-delay: 2000ms;
        }

    #preloader.loaded .drop .wave {
        opacity: 0;
        height: 100% !important;
    }

    #preloader.loaded .drop:after {
        opacity: 0;
    }

    #preloader.loaded:before,
    #preloader.loaded:after {
        animation: preloaderfinish 40s ease-in-out 40s forwards;
    }

@keyframes lineincrease {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes linemove {
    0% {
        transform: translateY(200%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes preloaderfinish {
    0% {
        width: 5 0%;
    }

    100% {
        width: 0%;
    }
}




@media (max-width: 768px) {
    .wrapper .btn {
        display: block;
    }

    .cart-item {
        display: none;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked ~ .nav-links {
        left: 0%;
    }

    #menu-btn:checked ~ .btn.menu-btn {
        display: none;
    }

    #close-btn:checked ~ .btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

        .nav-links li a {
            padding: 0 20px;
            display: block;
            font-size: 20px;
            color: #fff;
        }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .nav-links .mobile-item:hover {
            background: #3A3B3C;
        }

    .drop-menu li {
        margin: 0;
    }

        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .mega-box .content {
            box-shadow: none;
            flex-direction: column;
            padding: 20px 20px 0 20px;
        }

            .mega-box .content .row {
                width: 100%;
                margin-bottom: 15px;
                border-top: 1px solid rgba(255,255,255,0.08);
            }

                .mega-box .content .row:nth-child(1),
                .mega-box .content .row:nth-child(2) {
                    border-top: 0px;
                }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
/*-----end nav-responsiveness---------*/
/*-----body responsiveness------*/
    .gradient-overlay{
        height: 30% !important;
    }
    .bread_text{
        padding-top: 180px !important;
        padding-left: 8rem !important;
    }
    .card-container {
        flex-direction: column; /* Stack cards vertically */
        overflow: auto;
    }

    .card {
        margin-bottom: 20px; /* Space between stacked cards */
    }
    
    .bread_bg_m .row{
        flex-direction:row; /* Stack columns on smaller screens */
        margin-top: -18%;
    }
    .cardservice-container{
        display: block;
        margin-left: 10%;
    }
    .left-column {
        border-bottom: 2px solid #ddd; /* Add a border at the bottom */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .card-service{
        width: 400px;
    }
    
}
/*---- FOOTER ----*/
@media screen and (max-width: 970px) {
    .row3 {
        flex-direction: column; /* Stack columns vertically for mobile */
        align-items: center; /* Center columns horizontally for mobile */
        padding: 20px; /* Add padding for mobile */
    }

    .col1 {
        text-align: center; /* Center text for mobile */
        margin-top: 20px; /* Add margin between columns for mobile */
    }

        .col1 h1, .col1 h3 {
            margin-top: 0; /* Remove top margin for headings for mobile */
        }

        .col1 p {
            margin-top: 10px; /* Add margin between paragraphs for mobile */
        }

    .footer-address, .mobile-num {
        align-items: center; /* Align items horizontally for mobile */
    }

    .copy-right {
        padding-top: 20px; /* Add padding at the top for mobile */
        padding-bottom: 20px; /* Add padding at the bottom for mobile */
    }

    .icons {
        margin-top: 20px; /* Add margin at the top for mobile */
    }
}

