


body {
    margin: 0;
    background-color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}




.navbar {
    display: flex;
    align-items: center;

    background: #333;    ;
    padding-right: 5%;

    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}



.logo {
    padding: 20px;
    border-radius: 70px;

    margin-left: 5%;

}

.logo-img{
    border-radius: 70px;
}

.navbar-links ul{
    padding: 0;
    display: flex ;
}

.navbar-links li{
   list-style: none;
   letter-spacing: 3px;
 }

 .navbar-links li a{
    text-decoration: none;
    padding: 1rem;
 }
 
 .navbar ul li a{
    font-size: 18px;
    text-transform: none;
    display: block;
    padding: 30px;
 }

.navbar a {
color: white;
text-decoration: none;
}

.navbar a:hover {
    color: black;

}

.CALL{
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: 3%;
}

.phone-img{
    border-radius: 70px;
}

.CALL h3{
    margin-left: 20px;
}

.background-container {
    background-image: url('background.jpg'); 

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Add this to make overlay positioned relative to the container */
}

.overlay-text {
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    font-size: 250%;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white; 
    background: rgba(171, 170, 170, 0.5);
    padding-right: 3%;
    padding-left: 3%;
    position: relative; /* Add position relative */
}

.portfolio {
    padding: 50px;
    text-align: center;
    align-items: center;
}

.portfolio h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.company {
    margin: 75px;
}

.company img {
    width: 150px; /* Adjust size as needed */
    height: auto;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .image-container {
    margin: 10px;
  }
  
  .gallery-image {
    width: 200px;
    height: auto;
    cursor: pointer;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2;
    text-align: center;
  }
  
  .overlay-image {
    max-width: 80%;
    max-height: 80%;
    margin-top: 5%;
  }
  
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
  }
  
  .prev, .next {
    color: white;
    position: absolute;
    top: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 3;
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }

  .gallery-image {
    width: 200px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .gallery-image:hover {
    opacity: 0.8;
  }
  
  

.image-comparison {
    max-width: 25%;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  
  .image-comparison .images-container {
    position: relative;
    display: flex;
  }
  
  .image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
  }
  
  .image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    transform: translate(-50%, -50%) rotateZ(90deg);
  }

  .comparison-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }


  
  @media (max-width: 600px) {
    .overlay {
      padding-top: 30%;
    }
    .prev, .next {
        color: white;
        position: absolute;
        top: 35%;
        font-size: 30px;
        cursor: pointer;
        z-index: 3;
      }
  }
  


  @media (max-width: 600px) {
    .image-container {
      flex-basis: calc(50% - 10px); /* Adjust margin */
      margin: 5px; /* Adjust margin */
    }



  }
  @media screen and (max-width: 768px) {
    .comparison-container {
      flex-direction: column;
    }

    .image-comparison {
      width: 100%;
    }
    .image-comparison {
        max-width: 80%;
        margin: 20px auto;
        border-radius: 20px;
        overflow: hidden;
      }
      
  }
  


.toggle-button{
position: absolute;
top: 5rem;
right: 1rem;
display: none;
flex-direction: column;
justify-content: space-between;
width: 50px;
height: 50px;
}

.toggle-button .bar{
 height: 3px;
 width: 100%;
 background-color: white;
 border-radius: 10px;
}





.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;

    padding-right: 10%;
    padding-left: 10%;

    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;

    
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 350px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    display: inline;
    margin-right: 20px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-contact a {
    text-decoration: none;
    font-style: none;
    color: white;
    font-size: 150%;
}
.footer-contact h3 {
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }



    .footer-contact {
        margin-bottom: 20px;
    }

    .footer-links {
        display: none;
    }
    .footer-contact a {
        text-decoration: none;
        font-style: none;
    }


}



@media (max-width: 1200px) {



.navbar{
    background-color: #333;
    margin: 0;
    padding: 0;

}

.navbar a {
    color: black;
    text-decoration: none;
    }


.CALL h3{
    color: white;
}


.toggle-button{
    display: flex;

    padding-right: 0;    
}
.toggle-button .bar{
    background-color: white;
}



.logo{
    margin-left: 2%;
}
.logo-img{
    float: left;
    left: 6%;
}


.navbar{
    flex-direction: column;
    align-items: flex-start;
    }






    .navbar-links{
    display: none;
    width: 100%;

    }

.navbar-links ul{

    flex-direction: column;
    width: 100%;        

    height: 100vh;
}
 
.navbar-links li{

text-align: center;
padding-top: 20px;
padding-bottom: 50px;

}

 
.navbar-links ul li{
    text-align: center;
    align-items: center;
    justify-content: center;

    padding: 10px;
    border-bottom: 1px solid gray;
}




.navbar-links.active{
    display: flex;

    align-items: center;
    text-align: center;
    background-color: white;


}


.CALL{
    display: none;
}
}


@media (max-width: 600px){
.CALL{
    display: none;
    align-items: center;
    align-items: center;
    text-align: center;
    margin:auto;
}
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap')
