@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

:root{
  --font-color:#9c9c9c;
  --heading-color:#2c353d;
  --primar-color:#efbb20;
  --navbar-color:#2c353d;
  --darkblue-color:#2c70b9;
  --blue-color:#47c7ee;
  --darkgreen-color:#2ba048;
  --orange-color:#f35325;
  --lightgreen-color:#81bc06;
  --yellow-color:#ffba08;
  --text-color:#1f1a17;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: 0.2s;
    text-transform: capitalize;
    transition: all 0.2s linear;
    text-decoration: none;
}
html{
    
    overflow-x:hidden ;
    scroll-behavior: smooth;
    scroll-padding-top:6rem ;

}


.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  
  align-items: center;
  list-style: none;
  position: fixed;
  z-index: 1000;
  overflow: hidden;
  
  background-color: rgb(255, 255, 255);
  padding: 8px 20px;
}
.logo img {width: 50px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
  display: inline-block;
  text-decoration: none;
  color: #2C70B9;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: 0.15s ease-in-out;
  position: relative;
  text-transform: uppercase;
}
.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #FFBA08;
  transition: 0.15s ease-in-out;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
  position: absolute;
  color: blue;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
}
.open-menu {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.close-menu {
  top: 20px;
  right: 20px;
}
.button {
  margin: 0 0px;
  margin-left: 8px;
  padding: .35em 1.5em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #2c9caf;
  transition: all 1000ms;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #2c9caf;
}

.button a {
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  color: #2c9caf;
  transition: all 1000ms;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

button:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #268391;
}

.button a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c9caf;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 800ms;
}

button:hover::before {
  width: 250%;
}
/*social*/
.nav-social a img {
  width: 25px;
  margin-top: 6px;
  margin-left: 10px;
  transition: 0.2s ease-in-out;
}

.nav-social a img:hover {
  transform: scale(1.15);
}

.navbar.active {
  right: 0;
}

#check {display: none;}
@media(max-width: 900px){
  .nav-bar{overflow: hidden;}
  .menu {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 60%;
      
      height: 100vh;
      position: fixed;
      top: 0;
      right: -100%;
      z-index: 100;
      background-color: whitesmoke;
      transition: all 0.2s ease-in-out;
  }
  .menu li {margin-top: 10px;}
  .menu li a {padding: 5px;}
  .open-menu , .close-menu {display: block;}
  #check:checked ~ .menu {right: 0;}
  .nav-social a img{width: 20px;}
  .button{width: calc(40%-10px);font-size: 10px;padding: .30em 1.4em;}
  button a{font-size: 5px;}
}
@media(max-width: 430px){
  .menu li {margin-top: 10px;}
  .menu li a {padding: 5px;}
  .open-menu , .close-menu {display: block;}
  #check:checked ~ .menu {right: 0;}
  .nav-social a img{width: 14px;}
  .button{width: calc(40%-10px);font-size: 6px;padding: .15em 1em;}
  button a{font-size: 5px;}
}
@media(max-width: 370px){
  .logo img {width: 40px;}
  .menu li {margin-top: 10px;}
  .menu li a {padding: 5px;}
  .open-menu , .close-menu {display: block;}
  #check:checked ~ .menu {right: 0;}
  .nav-social a img{width: 14px; margin-left: 1px;}
  .button{width: 48px;height: 20px; font-size: 6px;padding: 0;margin: 0;margin-left: 10px;}
  button a{font-size: 4px;font-weight: 100;letter-spacing: 0;}
}
/*about Box*/

.slideshow-container {
    width: 500px;
    height: 320px;
    position: relative;
    padding-left: 0px;
    padding-top: 55px;
}
.slideshow-container img{
  width: 500px;
  height: 290px;
  border-radius: 10px;
  
}


/* Caption text */
/* .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center
} */

.about{
    padding-top: 80px;
    padding-left: 100px;
    padding-right: 100px;
}
.work{
    padding: 50px 120px;
}
.work-box{
    padding: 50px 120px;
}
.box h1{
    margin-left: 10px;
    font-size: 1.6rem;
    
}
.in-box img{
    padding: 5px;
}

.in-box{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 10px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 10px;
    display: flex;
    
    border-radius: 10px;
    background:linear-gradient(135deg, #e9eced 0%,#fffcfc 100%);
}
.para{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background:linear-gradient(135deg, #a1f9b5 0%,#e6fca2 100%);
    border-radius: 10px;
    color: #222831;
}
.para p{
  font-size: 0.9rem;
}
.para h1{
  font-size: 1.4rem;
}
.para h2{
  font-size: 1.2rem;
}
.para p, h3, h1{
  display: block;
    
    margin-top: 5px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 10px;
}
.inner-work .work-para{
    font-size: 1rem;
}
.inner-work .work-head h3{
    font-size: 1rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
  .about {
      padding-left: 20px;
      padding-right: 20px;
  }

  .box h1 {
      font-size: 1.4rem;
  }
  .para p{
    font-size: 0.9rem;
  }
  .para h1{
    font-size: 1.4rem;
  }
  .para h2{
    font-size: 1.2rem;
  }
  .in-box {
      flex-direction: column;
  }

  .slideshow-container {
      width: 100%;
      max-width: none;
      margin-right: 0;
      padding-top: 0;
  }

  .para {
      width: 100%;
      margin-top: 20px;
  }
}


@media screen and (max-width: 428px) {
  .slideshow-container {
      width: 100%;
      max-width: none;
      margin-right: 0;
      padding-top: 0;
  }
  .box h1 {
    font-size: 1rem;
}
.para p{
  font-size: 0.7rem;
}
.para h1{
  font-size: 1rem;
}
.para h2{
  font-size: 1rem;
}
  .para {
      width: 100%;
      margin-top: 20px;
  }
}

/*yt video*/
.yt .icon {
    
    margin-left: 320px;
    margin-top: 30px;
    width: 50px;
    height: 50px;
    background-color: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .yt .icon , p{
    display: flex;
    
  }
  .yt .icon img{
    width: 50px;
    height: 50px;
  }
  .yt p{
    margin-left: 280px;
    margin-top: -35px;
    padding-left: 100px;
    font-size: 1rem;
    font-weight: bolder;
  }
  .icon:hover {
   transform: scale(1.1);
  }
  #youtube-player {
    display: none;
    width: 680px;
    height: 400px;
    margin-left: 380px;
    margin-top: 50px;
    
  }
  @media screen and (max-width: 768px) {
    .yt .icon {
      margin-top: 20px;

    }
    
    .yt p {
      margin-top: 10px; 
      margin-left: 20px; 
      padding: 0 20px; 
      font-size: 0.8rem; 
    }
  
    #youtube-player {
      width: 90%; 
      height: auto; 
      max-width: 100%; 
      margin: 20px auto; 
    }
  }
  
  @media screen and (max-width: 480px) {
    .yt .icon {
      margin-top: 10px; 
      width: 20px;
      height: 20px;
      margin-left: 20px;
    }
    .yt .icon img {
      width: 20px;
      height: 20px;
      }
    
    .yt p {
      margin-top: 10px; 
      margin-left: 10px; 
      padding: 0 10px; 
      font-size: 0.7rem; 
    }
    #youtube-player {
      width: 100px; 
      height: max-content; 
      max-width: 100%; 
      margin: 20px auto; 
    }
    .icon img{
      width: 10px;
    }
  }
  
 /* counter */

.counter-wrapper {
  padding-top: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.counter {
  width: calc(33.33% - 40px); /* Adjust the width for responsiveness */
  max-width: 200px; /* Set maximum width */
  text-align: center;
  margin-bottom: 30px;
  border: 0.1px solid #8f8e8e;
  border-radius: 5px;
  background: linear-gradient(135deg, #c4ecfb 0%, #9dbefd 100%);
  padding: 20px; /* Adjust padding */
  margin: 0 20px 30px; /* Adjust margin */
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.count {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #272727;
  margin-bottom: 10px;
}
.counter .count, span{
  text-align: center;
  font-size: 1.4rem;
}
.counter p {
  text-align: center;
  font-size: 18px;
  color: #3b3b3b;
  padding-left: 20px;
  font-weight: 600;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  .counter {
    text-align: center;
      width: calc(50% - 40px); 
  }
  .counter p {
    text-align: center;
    font-size: 14px;}
}

@media screen and (max-width: 480px) {
  .counter {
    text-align: center;
      width: calc(800% - 40px); 
  }
  .counter p {
    text-align: center;
    padding-left:20px ;
    font-size: 12px;}
}

/* E Services */
.E{
  margin: 70px 100px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.E-box h1{
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.eservices{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.eser{
  padding: 20px;
  width: calc(50% - 40px); 
  max-width: 200px; 
  height: 100px;
  border-radius: 30px;
  background: #f8f8f8;
  border: 0.1px solid rgb(180, 180, 180);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  margin-bottom: 20px; 
  transition: 0.5s;
}
.eser p{
  font-size: 1rem;
  padding-left: 10px;
  align-items: center;
  text-align: center;
  font-weight: 600;
}
.eser i{
  font-size: large;
  color: blue;
}
.eser:hover{
  transform:  scale(1.05);
  cursor: pointer;
  
  transition: all .4s ease-in-out ;
  
}

@media screen and (max-width: 768px) {
  .E {
    margin: 50px 20px;
  }
  .E-box h1{
    font-size: 1.2rem;}
    .eser p{
      font-size: 0.8rem;}
  .eser {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 480px) {
  .E-box h1{
    font-size: 1rem;}
    .eser p{
      font-size: 0.8rem;}
  .eservices{
    text-align: center;
    align-items: center;
    padding-left: 20%;
  }
  .eser {
    width: calc(100% - 40px);
    
  }
}



/* Footer  */
footer {
  background-color: var(--heading-color);
  color: white;
  border-radius: 75px 0 75px 0;
  margin-top: 150px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 50px 5%;
  height: auto; 
}

/* Footer content styles */
.foot-box {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
}

/* Footer section styles */
.foot-head,
.links,
.our-services,
.social,
.touch {
  flex: 1 1 auto; 
  max-width: 250px; 
  margin-top: 25px; 
  
}
.foot-head h1{
font-size: 1.5rem;
}
.foot-box P{
font-size: 0.8rem;
}
.links p,
.social p,
.touch p,
.our-services p{
font-size: 0.8rem;
}
.links p, .our-services p{
margin-left: 0;
}
/* Links styles */
.links a,
.our-services a,
.social a {
color: white;
text-decoration: none;
font-size: 0.8rem;
font-weight: 400;
  display: block; 
  margin: 5px 0; 
}

/* Social links styles */
.social a img {
  
  width: 25px;
  margin: 8px;
  transition: 0.2s ease-in-out;
}

.social a img:hover {
  transform: scale(1.15);
}

/* Input styles */
.touch input {
  width: 100%; 
  border-radius: 8px;
  padding: 5px;
  margin-top: 10px; 
}


.rights {
  text-align: center;
  margin-top: 20px; 
}

.rights span ,a {
font-size: 14px;color: white;
text-decoration: none;
  font-weight: bold;
}


hr {
  margin: 10px 0 5px; 
}


@media screen and (max-width: 768px) {
  .foot-head,
  .links,
  .our-services,
  .social,
  .touch {
      max-width: 100%; 
  }
}
@media screen and (max-width: 430px) {
  .foot-head h1{
    font-size: 1rem;
  }
  .foot-box P{
    font-size: 0.6rem;
  }
  .links p,
  .social p,
  .touch p,
  .our-services p{
    font-size: 0.6rem;
  }
  .links a,
.our-services a,
.social a {
  font-size:0.6rem ;
}
.rights span ,a {font-size: 14px;}
.rights p{font-size: 12px;}
.social a img{
  margin: 1px 5px;
}
}