
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

*{
    margin:0;
    padding:0;
}
.web-banner{
   width:100%;
   height:700px;
   object-fit: cover;
   
   
}


.web-banner-main{
   width:100%;
   height:700px; 
   position: relative;
   
}
.navbar{
    width:100%;
    height:100px;
    position: relative;
    display: flex;
    justify-content: left;
   
 }
 .nav-items{
    display: flex;
    position: absolute;
    z-index: 1;
 }
 .nav-items li{
    list-style-type: none;
    margin:5%;
    
   
 }
 .nav-items li a {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  color: rgb(49, 236, 196);
  font-family: "Poppins", sans-serif;
}

.nav-items li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-items li a:hover::after {
  transform: scaleX(1);
}

.nav-items li a:hover::after {
  transform: scaleX(1);
}
.num{
   font-size: 80px;
}

.banner-text{
   z-index: 2;
   display: flex;
   flex-direction: column;
   position: absolute;
   font-size: 15px;
   font-family: "Poppins", sans-serif;
   margin:5%;
}
.banner-text1{
   color:rgb(5, 54, 52);
   font-size: 50px;
font-family: "Poppins", sans-serif;
  
}
.banner-text2{
   color:rgb(12, 194, 154);
    font-size: 50px;
   font-family: "Poppins", sans-serif;
}
.banner-text3{
   color:rgb(12, 194, 154);
   width:40%;
   
}
.banner-text4{
  width:40%;
  font-size: 17px;
   
}
.btn-banner{
   width: 15%;
   background-color:rgb(5, 54, 52);
   color:white;
   padding:19px 0px;
   border: none;
   cursor: pointer;
}
.btn-banner2{
   width: 15%;
   background-color:white;
   color:rgb(5, 54, 52);
   padding:15px 0px;
   border: 4px solid rgb(5, 54, 52);
   cursor: pointer;
}
header{
   position: relative;
   height: 700px ;
}
.header-main{
  background-color: rgb(250, 248, 248);
  display: flex;
  justify-content: center;
  font-family: arial;
  padding-top:5%;
  padding-bottom: 5%;
}
.main-section-1{
   background-color: rgb(250, 248, 248);
   display: flex;
   justify-content: center;
   align-items: center;
   padding-bottom: 10%;
}
.info-section{
   background-color: white;
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   padding:2%;
   height:240px;
   text-wrap: wrap;
   text-align:center;
}
.main-section-2{
   display:flex;
   justify-content: center;
   align-items: center;
   background-color: rgb(12, 194, 154);
   color: white;
   font-family: "Poppins", sans-serif;
   padding: 6%;

}
.client-section{
   margin: 5%;
   text-align: center;
}
.main-section-3-1{
   display:flex;
   text-align: center;
   background-color: rgb(250, 248, 248);
   padding-bottom: 1%;
}

.info-section-3{
   background-color: white;
   color: white;
   font-family: "Poppins", sans-serif;
   width:30%;
   padding:2%;
   height:200px;
   text-wrap: wrap;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   z-index: 0;
   
   

}
.main-section-3-2{
   display:flex;
   text-align: center;
   background-color: rgb(250, 248, 248);
   padding-bottom: 10%;
   
}
.service-btn-section{
   display: flex;
   justify-content: center;
   align-items: center;
}
.service-btn{
   width:40%;
   padding:4%;
   background-color: transparent;
   color: white;
   border: 3px solid white;
   cursor: pointer;
  
}
.card-image{
   position: absolute;
   filter: brightness(60%);
   width:100%;
   height:100%;
   inset:0;
   transition: transform 0.5s;
   z-index:-1;
}
.info-section-3:hover .card-image{
   transform: scale(1.15);
   cursor: pointer;
}
.footer-section{
   display: flex;
   justify-content: center;
   font-family: "Poppins", sans-serif;
   background-color: rgb(7, 7, 78);
   color: white;
}
.footer-info-section{
   
   margin: 0 auto;
   padding:5%;
   
   
}
.footer-info-section a{
color: white;
}
.footer-social-icon-section{
   display: flex;
   flex-direction: row;
  
}
.social-icon{
   margin: 0 auto;
}

/* Initial hidden state */
.banner-text {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease-in-out;
}

.banner-text.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Buttons animation */
.banner-btns button {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}

/* Animate buttons one by one */
.banner-btns button:nth-child(1).show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.banner-btns button:nth-child(2).show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
/* Initial hidden state for each info-section-3 by ID */
#info-section-3-1,
#info-section-3-2,
#info-section-3-3,
#info-section-3-4,
#info-section-3-5,
#info-section-3-6 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* mobile device */

@media only screen and (min-width:200px){
 .web-banner{
  display:none;
   
   
}
.web-banner2{
   width:100%;
   height:400px;
   object-fit: cover;
   
   
}
.web-banner-main{
   width:100%;
   height:700px; 
   position: relative;
   
}
.nav-items{
   width:100%;
   display: flex;
   flex-direction: column;
}
.nav-items li a{
  display: flex;
  justify-content: center;
  align-items: center;
}
.toggle-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 24px;
  border: 2px solid white;
  color: white;
  padding-left:3%;
  padding-right:3%;
  background-color: transparent;
}
.banner-text1{
   position: relative;
   width:100%;
   top:300px;
   text-align: center;
 }
 .banner-text2{
   position: relative;
   width:100%;
   top:300px;
   text-align: center;
 }
 .banner-text3{
   position: relative;
   width:100%;
   top:300px;
   text-align: center;
 }
 .banner-text4{
   position: relative;
   width:100%;
   top:300px;
   text-align: center;
 }
 .banner-btns{
    position: relative;
   width:100%;
   top:300px;
 }
 .btn-banner{
    position: relative;
   width:100%;
   
 }
 .header-main{
    position: relative;
   width:100%;
   top:400px;
   text-align: center;
 }
 .main-container{
    position: relative;
   width:100%;
   top:400px;
 }
 .main-section-1{
   display: flex;
   flex-direction: column;
 }
 .info-section{
   position: relative;
  margin:10%;
   font-family: "Poppins", sans-serif;
   width:80%;
   padding:2%;
   height:240px;
   text-wrap: wrap;
   text-align:center;
 }
 .main-section-2{
   display: flex;
   flex-direction: column;
 }
 .main-section-3-1{
   display:flex;
   width: 100%;
   flex-direction: column;
 }
 .info-section-3{
   width:80%;
  margin: 0 auto;
  margin-top:10%;
  padding-bottom:30%;
 }
 #header-main{
    position: relative;
   width:100%;
   top:50px;
   text-align: center;
 }
 .main-section-3-2{
   display:flex;
   width: 100%;
   flex-direction: column;
 }
 .info-section-3-2{
   width:80%;
   margin:10%;
   padding-bottom:30%;
 }
 .main-container{
   display: block;
 }
 .footer-section{
   display: flex;
   margin-top:400px;
   flex-direction: row;
   
  
}
.footer-info-section{
   width:33%;
   font-size:6px;
}
.footer-info-section h2{
   
   font-size:8px;
}
.footer-info-section-2{
   display: flex;
   flex-direction: row;
}
.social-icon{
   font-size:8px;
}
 .nav-items {
    display: none;
  }

  .nav-items.active {
    display: flex;
    flex-direction: column;
    background-color:rgb(31, 51, 47);
    color: white !important;
    z-index: 9998;
  }

  .toggle-btn {
    z-index: 9999;
  }
  .footer-info-section a{
   margin-left:2%;
}
}

/* tablet device */

@media only screen and (min-width:1366px){
   .nav-items{
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 1;
 }
 .nav-items li{
    list-style-type: none;
    margin:5%;
    
   
 }
 .banner-text1{
   position: relative;
   width:100%;
   top:0;
   text-align: left;
 }
 .banner-text2{
   position: relative;
   width:100%;
   top:0;
   text-align: left;
 }
 .banner-text3{
   position: relative;
   width:40%;
   top:0;
   text-align: left;
 }
 .banner-text4{
   position: relative;
   width:40%;
   top:0;
   text-align: left;
 }
 .banner-btns{
    position: relative;
   width:100%;
   top:0;
 }
 .btn-banner{
   width: 15%;
   background-color:rgb(5, 54, 52);
   color:white;
   padding:19px 0px;
   border: none;
   cursor: pointer;
   
 }
 .nav-items{
   
   display: flex;
   flex-direction: row;
}
.nav-items li a{
   display: block;
  justify-content: left;
  
}
.header-main{
    position: relative;
   width:100%;
   top:0;
   text-align: center;
 } 
 #header-main{
    position: relative;
   width:100%;
   top:0;
   text-align: center;
 } 
 .main-section-1{
   background-color: rgb(250, 248, 248);
   display: flex;
   flex-direction:row;
   justify-content: center;
   align-items: center;
   padding-bottom: 10%;
}
.info-section{
  
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   height:240px;
   text-wrap: wrap;
   text-align:center;
     z-index: 0;
}
.main-container{
    position: relative;
   width:100%;
   top:0;
 }
.main-section-2{
   display: flex;
   flex-direction: row;
}
.main-section-3-1{
   display: flex;
   flex-direction: row;
}
 .info-section-3{
   background-color: white;
   color: white;
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   padding:2%;
   height:200px;
   text-wrap: wrap;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   z-index: 0;
}
.main-section-3-2{
   display: flex;
   flex-direction: row;
}
.info-section-3-2{
   background-color: white;
   color: white;
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   padding:2%;
   height:200px;
   text-wrap: wrap;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   z-index: 0;
}
.footer-section{
   display: flex;
   margin-top:0;
   flex-direction: row;
   justify-content: center;
}
.footer-info-section{
   width:32%;
   font-size:15px;
   position: relative;
}
.footer-social-icon-section{
   display: flex;
   position: absolute;
   flex-direction: row;
  
}
.social-icon{
   margin-left:20%;
}
.toggle-btn {
  display: none; /* hidden by default */
 
}
 .web-banner2{
  display:none;
   
   
}
.web-banner{
   display: block;
   width:100%;
   height:700px;
   object-fit: cover;
   
   
}
.footer-info-section h2{
   
   font-size:30px;
}
.footer-info-section a{
   margin-left:2%;
}
.social-icon{
   font-size:20px;
}
}
/* laptop device */
@media only screen and (min-width:1440px){
   .nav-items{
    display: flex;
    flex-direction: row;
    position: absolute;
    z-index: 1;
 }
 .nav-items li{
    list-style-type: none;
    margin:5%;
 }
 .banner-text1{
   position: relative;
   width:100%;
   top:0;
   text-align: left;
 }
 .banner-text2{
   position: relative;
   width:100%;
   top:0;
   text-align: left;
 }
 .banner-text3{
   position: relative;
   width:40%;
   top:0;
   text-align: left;
 }
 .banner-text4{
   position: relative;
   width:40%;
   top:0;
   text-align: left;
 }
 .banner-btns{
    position: relative;
   width:100%;
   top:0;
 }
 .btn-banner{
   width: 15%;
   background-color:rgb(5, 54, 52);
   color:white;
   padding:19px 0px;
   border: none;
   cursor: pointer;
 }
 .nav-items{
   display: flex;
   flex-direction: row;
}
.nav-items li a{
   display: block;
  justify-content: left;
}
.header-main{
    position: relative;
   width:100%;
   top:0;
   text-align: center;
 } 
 #header-main{
    position: relative;
   width:100%;
   top:0;
   text-align: center;
 } 
 .main-section-1{
   background-color: rgb(250, 248, 248);
   display: flex;
   flex-direction:row;
   justify-content: center;
   align-items: center;
   padding-bottom: 10%;
}
.info-section{
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   height:240px;
   text-wrap: wrap;
   text-align:center;
   z-index:0;
}
.main-container{
    position: relative;
   width:100%;
   top:0;
 }
.main-section-2{
   display: flex;
   flex-direction: row;
}
.main-section-3-1{
   display: flex;
   flex-direction: row;
}
 .info-section-3{
   background-color: white;
   color: white;
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:100%;
   padding:2%;
   height:200px;
   text-wrap: wrap;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   z-index: 0;
}
.main-section-3-2{
   display: flex;
   flex-direction: row;
}
.info-section-3-2{
   background-color: white;
   color: white;
   margin:2%;
   font-family: "Poppins", sans-serif;
   width:30%;
   padding:2%;
   height:200px;
   text-wrap: wrap;
   justify-content: center;
   align-items: center;
   position: relative;
   overflow: hidden;
   z-index: 0;
}
.footer-section{
   display: flex;
   margin-top:0;
   flex-direction: row;
   justify-content: center;
}
.footer-info-section{
   width:32%;
   font-size:15px;
   position: relative;
}
.footer-social-icon-section{
   display: flex;
   position: absolute;
   flex-direction: row;
}
.social-icon{
   margin-left:20%;
}
.toggle-btn {
  display: none; /* hidden by default */
}
.web-banner2{
  display:none;
}
.card-image{
    object-fit: cover;
    width:100%;
    inset: 0;   
}
.web-banner{
   display: block;
   width:100%;
   height:700px;
   object-fit: cover;
}
.footer-info-section h2{
   font-size:30px;
}
.footer-info-section a{
   margin-left:2%;
}
.social-icon{
   font-size:20px;
}

/* ===========================
   FIX: prevent image overflow
   =========================== */
  .main-section-3-1 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
  }

  .info-section-3 {
    flex: 0 0 calc(33.33% - 2%) !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .card-image {
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    z-index: -1 !important;
  }
}







