@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Montserrat","Instrument Sans","Caveat", cursive,"Anton SC", sans-serif;
   
}
body{
  background: #191818;
  color:#f1f1f1;
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
  color:#f1f1f1;
}

.whatsapp-ref{
  font-family:Caveat;
  color:#9CFF1E;
}
.headernav{  
  background-color: #191818;
    display:flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 45px;
}
.Logo{
  width: 100%;
  height: 50px;
}
.main-container{
  padding:45px;
}
/* navigation side menu starts */
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    /* background-color: rgba(0, 0, 0, 0.902); */
    overflow-y: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 30px;
  }
  
/* navigation side menu ends */

/* text animtions starts */
.hidden {
    opacity: 0;
    filter: blur (5px);
    transform: translateX(-100%);
    transition: all 1s;
    }
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    }
    
.logo:nth-child(2){
  transition-delay:400ms;
 }
 .logo:nth-child(3){
   transition-delay:500ms;
  }
  .logo:nth-child(4){
   transition-delay:600ms;
  }
  /* text animtions ends */


 /* custom scroll bar  starts*/
::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background: #B0A695;
}
::-webkit-scrollbar-thumb{
  background: #434242;
  border-radius: 40px;
}
 /* custom scroll bar ends */
/* selected works starts */
.gwrapper{
  display: grid;
  grid-template-columns:3fr 3fr;
  grid-template-rows:3fr 3fr;
  grid-gap: 30px;
  height: auto;
  padding:0;
}
.item {
  padding:0;
  height:auto;
}
.item .selected-image{
width:100%;
height:100%;
}
.selected-links{
  display:flex;
  justify-content: space-between;
  padding:10px 0 5px 0;
}
.number{
  font-size:20px;
  font-family:Montserrat;
  margin:0;
}
.visitlink{
  opacity: 0;
  padding-right:15px;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.3s ease;
}
.item-wrapper:hover .visitlink{
  opacity:1;
  transform: translateX(0);
}
/* selected works ends */
/* button style starts */
 
.btn {
  width: 150px;
  height: 50px;
  border-radius: 5px;
  border: none;
  transition: all 0.5s ease-in-out;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  background: #191818;
  color: #f5f5f5;
}

.btn:hover {
  box-shadow: 0 0 20px 0px #2e2e2e3a;
}

.btn .icon {
  position: absolute;
  height: 40px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.btn .text {
  transform: translateX(75px);
}

.btn:hover .icon {
  width: 175px;
}

.btn:hover .text {
  transition: all 0.5s;
  opacity: 0;
}

.btn:focus {
  outline: none;
}

.btn:active .icon {
  transform: scale(0.85);
}

/* second button starts */

.button {
  width: 170px;
  height: 56px;
  overflow: hidden;
  border: none;
  color: #fff;
  background: none;
  position: relative;
  padding-bottom: 2em;
  cursor: pointer;
}

.button > div,
.button > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

.button:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: currentColor;
  transition: transform 0.25s ease-out;
}

.button:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.button .clone > *,
.button .text > * {
  opacity: 1;
  font-size: 24px;
  transition: 0.2s;
  margin-left: 4px;
  font-family:Montserrat;
}

.button .clone > * {
  transform: translateY(60px);
}

.button:hover .clone > * {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.button:hover .text > * {
  opacity: 1;
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.button:hover .clone > :nth-child(1) {
  transition-delay: 0.15s;
}

.button:hover .clone > :nth-child(2) {
  transition-delay: 0.2s;
}

.button:hover .clone > :nth-child(3) {
  transition-delay: 0.25s;
}

.button:hover .clone > :nth-child(4) {
  transition-delay: 0.3s;
}
/* icon style and hover */
.button svg {
  width: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
}

.button:hover svg {
  transform: translateY(-50%) rotate(-90deg);
}

/* second button ends */
/* submit button starts */
/* From Uiverse.io by Wlidha09 */ 
.bt-white {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  min-height: 50px;
  padding: 0 20px;
  font-size: 17px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  background-color: transparent;
  width:100%;
}

.bt-white::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}

.bt-white::after {
  content: "";
  background-color: #fff;
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bt-white:hover {
  color: #232963;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bt-white:hover::after {
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.bt-white:hover::before {
  background-color: #232963;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* submit button ends */
/* button style ends */

/* form style */

.input-group {
  display: flex;
  gap: 10px;
  position: relative;
  padding: 7px 0 0;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
}

.input-text {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #7f7f7f;
  border-radius: 0 !important;
  outline: 0;
  font-size: 17px;
  color: #7f7f7f;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.input-text::placeholder {
  color: transparent;
}

.input-text:placeholder-shown ~ .input-text-label {
  font-size: 17px;
  cursor: text;
}

.input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: #7f7f7f;
  pointer-events: none;
}

.input-text:focus {
  padding-bottom: 6px;
  border-width: 3px;
  border-image: linear-gradient(to right, #F5F7F8, #7f7f7f);
  border-image-slice: 1;
}

.input-text:focus ~ .input-text-label {
  color: #F5F7F8;
}

.input-text:not(:placeholder-shown) ~ .input-text-label,
.input-text:focus ~ .input-text-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 15px;
  font-weight: 700;
  top: -17px;
}

.input-text:required,
.input-text:invalid {
  box-shadow: none;
}

/* form style */

/* service section */
.services{
  position:relative;

}
.service-image{
  position:absolute;
  width:30%;
  left:700px;
  bottom:100px;
  opacity:0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.service-container:hover .service-image{
  opacity:1;
  transform: translateY(0);
}
.service-container{
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding:20px;
  border-bottom:0.5px solid #ffff;
}
.service-number{
  font-size:140px;
}
.service-content{
  display:flex;
  align-items:center;
  width:50%;
  margin-top: 10px;
}
.service-icon{
  font-size: 18px;
}
.service-name{
  margin-left:30px;
}
/* service section ends */

.hero{
  font-family:Anton SC;
  text-align: center;
  font-size:200px;
}
.project-heading{
  font-family:Anton SC;
  text-align: center;
  font-size:194px;

}
.sub-content{
  font-family:Montserrat;
  font-size:20px;
  font-weight:400;
}
.hero-second{
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.calloption{
  font-family:Montserrat;
  font-size:20px;
  font-weight:400;
  margin-left:15px;
  margin-top:5px;
}
.sub{
  width:40%;
  padding:5px;
}
.img{
  background-image:url( 
    './assets/about.webp'); 
                height: 600px; 
                background-repeat: repeat-x; 
                background-position: center;
                background-size: cover;
                background-attachment: fixed;
}
.img1{
  background-image:url( 
    './assets/Cta.webp'); 
                height: 600px; 
                background-repeat: repeat-x; 
                background-position: center;
                background-size: cover;
                background-attachment: fixed;
}
.selected-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding:5% 3%;
}
.selected-heading{
  font-family:Anton SC;
  font-size:150px;
}
.cta{
  font-size:30px;
  font-family:Montserrat;
}
.footer{
  display:flex;
  align-items: center;
}

.footer-links{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content:start;
  width:25%;
  font-size: 24px;
}
.footer-links a{
  color:#7f7f7f;
}
.footer-links:hover a{
  color:#f4f4f4;
  transition: all 0.5s ease;
}
.footer-head{
  font-size: 180px;
  font-family:Anton SC;
}
.copy{
  font-size: 24px;
}
.menu-bar{
  display:none;
}
.backToTop{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top:3%;
  margin-bottom: 2%;
}
.clients{
  display:flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  padding:4%;
  margin-bottom:8%;
}
.clents-content{
display: flex;
align-items: center;
justify-content: space-between;
padding:20px 5px;
border-bottom:0.5px solid;
width:80%;
}
.about-img{
  width:40%;
  height: auto;
  border-radius:30px;
  margin-bottom:35px;
}
.about-section{
  display:flex;
  align-items:center;
  justify-content: center;
  flex-direction: column;
  padding:2%;
}
.about-content{
  font-size:30px;
  font-family:Montserrat;
  text-align: justify;
  padding:5%;
}
.clock{
  font-family:Montserrat;
  font-size: 24px;
  color: #f4f4f4;
}
.year{
  font-family:Montserrat;
  font-size: 24px;
  color: #f4f4f4;
}
.time{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:19%;
}
.current-year{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width:10%;
}
.location{
  font-family:Montserrat;
  font-size: 24px;
  color: #f4f4f4;
}
.contact_heading{
  font-size:55px;
  font-weight: 700;
  font-family:Montserrat;
}
.backtop{
  display:none;
}
.content-section{
  margin-top:3%;
  margin-bottom:9%;
}
 @media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }

  @media screen and (max-width:1180px){
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
      }
      .hero{
        font-size: 170px;
      }
      .main-container{
        padding:40px;
      }
      .project-heading{
      font-size: 170px;
    }
      .sub-content{
        text-align: center;
        font-size:20px;
      }
      .service-image{
        position:absolute;
         width:39%;
        left:59%;
        bottom:17%;
        opacity:0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;

      }
      .backToTop{
        width:90%;
        margin-top: 4%;
        margin-bottom:4%;
      }
      .about-content{
        font-size:25px;
        font-family:Montserrat;
        text-align: justify;
        padding:2% 5%;
      }
      .service-number{
        font-size: 100px;
      }
      .gwrapper{
        padding:25px;

      }
     .footer-links{
        width:60%;
        padding:10px;
  }
  .footer-head{
    font-size: 119px;
    padding:5%;
  }
  .cta{
    text-align: center;
    }
    .selected-heading{
      text-align: center;
    }
    .btn{
      display: none;
    }
    .menu-bar{
      display:block;
    }
    .about-img{
      width:70%;
      }
      .time{
        width:35%;
      }
      .footer{
        flex-direction: column;
      }
      .footer-links{
        flex-direction: row;
        justify-content: space-between;
        align-items:center;
        width:90%;
        font-size:22px;
      }
      .backtop{
        display:block;
        width:40px;
        height:40px;
      }
      .button{
        display: none;
      }
      .contact{
        padding:2% 12%;
      }
}
  @media screen and (min-width: 1550px){
    .headernav{
      padding: 2% 30% 2% 30%;
    }
  
  }
    @media screen and (max-width: 767px) {
      .overlay .closebtn {
        font-size: 35px;
        top: 11px;
        right: 28px;
        }
        .btn{
          display: none;
        }
        .menu-bar{
          display:block;
        }
  .gwrapper{
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    height: auto;
  }
  .contact_heading{
    font-size: 40px;

  }
  .hero{
    font-size:70px;
  }
  .project-heading{
    font-size:55px;
  }
.selected-heading{
  font-size:60px;
  text-align: center;
}

.footer-links{
  width:100%;
  font-size:13px;
}
.footer-head{
  font-size:50px;
  padding:3%;
}
.social-icons{
  width:30px;
  height:30px;
}
.cta{
font-size:16px;
text-align: center;
padding-top:15px;
}
.service-number{
  font-size:60px;
}
.service-name{
  font-size:20px;
}
.service-image{
  position:absolute;
   width:43%;
  left:59%;
  bottom:22%;
  opacity:0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;

}
.hero-second{
  flex-direction: column;
}
.sub{
  width:100%;
  padding:5px;
}
.main-container{
  padding:30px;
}
.sub-content{
  text-align: center;
  font-size: 12px;
}
.headernav{  
    padding: 45px 30px 45px 15px;
}
.img1 , .img{
  height:350px;
} 
.clents-content{
  width:95%;
}
.about-img{
width:90%;
}
.about-content{
  font-size:16px;
  font-family:Montserrat;
  text-align: justify;
  padding:2% 5%;
}
.copy{
  font-size: 15px;
}
.time{
  width:50%;
}
.current-year{
  width:17%;
}
.location , .clock ,.year{
  font-size:14px;
}
.backToTop{
  width:100%;
  margin-bottom: 3%;
  padding:0 30px 10px 30px;
}
 .backtop{
  display:block;
  width:30px;
  height:30px;
}
    }
