*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
/* Font-Family */

@font-face {
  font-family: sfpro-reg;
  src: url(./Font/SFPRODISPLAYREGULAR.OTF);
}
@font-face {
  font-family: sfpro-bold;
  src: url(./Font/SFPRODISPLAYBOLD.OTF);
}
@font-face {
  font-family: sfpro-semi;
  src: url(./Font/SFPRODISPLAYSEMIBOLDITALIC.OTF);
}
@font-face {
  font-family: sfpro-med;
  src: url(./Font/SFPRODISPLAYMEDIUM.OTF);
}
@font-face {
  font-family: sfpro-lite;
  src: url(./Font/SFPRODISPLAYLIGHTITALIC.OTF);
}
@font-face {
  font-family: sfpro-heavy;
  src: url(./Font/SFPRODISPLAYHEAVYITALIC.OTF);
}


/* New code */

.stats-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
    overflow-x: auto;
}

.stats-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 1rem;
    border: 1px solid white;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: 2.875rem;
    font-weight: 600;
    color: #150a33;
    margin: 0;
}

.stats-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: orangered;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-item {
        max-width: 100%;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .stats-label {
        font-size: 0.875rem;
    }
}

/* New code end */


/* whatsapp button */
/* Styles for WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* whatapp end */




html, body{
  height: 100%;
  width: 100%;
  font-family: sfpro-reg;
}


/* Preloader */


/* Loader styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 100000; /* Ensure loader is on top */
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side, orangered 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, orangered);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 { 
  100% { transform: rotate(1turn) }
}

/* Hides the main content while loading */
.main-content {
  opacity: 0;
  transition: opacity 1s ease;
}

/* Once the content is ready, loader will disappear and content will fade in */
.content-visible {
  opacity: 1;
}


/* Preloader */



nav {
  background-color: rgba(240, 240, 240, 0.856);
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: 2%;
  left: 50%;
  transform:translateX(-50%);
  height: 8%;
  width: 80%;
  border-radius: 500px;
  border: solid 0.2px;
  z-index: 99;
  position: fixed;
  backdrop-filter: blur(15px);
  /* overflow: hidden; */
  /* border-image: linear-gradient(to right, #1900ff, #ff0000) 1 stretch; */
}

nav ul {
  display: flex;
  list-style-type: none;
  cursor: pointer;
  gap: 2.5vw;
}

#logo{
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.main-logo{
  width: 2vw;
  margin-right: 10px;
}

.text-logo{
  width: 6vw;
  height: auto;

}

#phone-num a{
  color: white;
  text-decoration: none;
}

#phone-num a :hover{
  color: white;
  text-decoration: none;
}

#phone-num{
  width: 16vw;
  height: 5.2vh;
  background-color: orangered;
  color: white;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.2vw;
  border: none;
  border-radius: 50px;
  cursor:pointer;
  transition: 0.2s;
}

#phone-num:hover{
  background-color: rgb(255, 95, 36);
}


nav ul li a{
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  font-family: sfpro-bold;
  font-style: normal;
  transition: 0.2s;
  font-size: 1.2vw;
}

nav ul li a:hover{
  color: orangered;
}

#icons{
  font-size: 6vw;
  cursor: pointer;
  padding-top: 0.4vh;
  display: none;
  position: fixed;
}

/* #sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#sidebar li{
  width: 100%;

}

#sidebar a {
  width: 100%;
} */

#main{
  position: relative;
  overflow: hidden;
  scroll-behavior: smooth;
}

#check{
  display: none;  
}



@media (max-width: 768px) {

  #icons{
    display: none;
  }


  


  #phone-num{
    height:2vh;
  }

  .text-logo{
    margin-top: 0.3vw;
    margin-left: 0;
  }

  .main-logo{
    margin-right: 0.8vw;
  }
  
  ul li  {
    padding-bottom: 0.7vh;
  }

  

}

@media (max-width: 1025px){

  #home{
    height:100vh;
  }

}


@media (max-width: 480px){

  #icons{
    display:block;
    position: absolute;
    right: 0;
    margin-right: 5vw;
  }


  #menu-itemss{
    position: absolute;
    top: 120%;
    left: 12%;
    /* background-color: red; */
    width: 100%;
    height: 50%;
  }

  nav ul.show {
    display: block; /* Display the dropdown menu when the class is added */
  }


  nav{
    height: 7vh;
    position: fixed;
    z-index: 5000;
    background-color: oa;
  }


  nav ul {
    display: none;
    position: absolute;
    left: 0;
    right: 40%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    background: #ffffffd7;
    gap: 5;
    overflow: hidden;
    height: 30vh;
    width: 80%;
    backdrop-filter: blur(50px);
    border: orangered solid 1px;
    border-radius: 15px;
    animation: ease;
  }



  #menu-itemss ul li a{
    display: block;
    font-size: 5vw;
    margin-top: 4px;
  }

  #phone-num{
    display: none;
  }



  /* #building{
    margin-top: 0;
    display: block;
  } */

  #logo{
    /* margin-left: 15vw; */
    justify-content: center;
    align-items: center;
  }

  .main-logo{
    height: auto;
    width: 6vw;
  }

  .text-logo{
    height: auto;
    width: 20vw;
  }

  #home{
    overflow: hidden;
  }

}

#home{
  height: 100vh;
  width: 100vw;
  background-image: url(./img/SS\ Infra\ -\ BG\ .svg);
  /* background: cover; */
  background-repeat:no-repeat;
}

#inner{
  display:flex;
  align-items: center;
  height: 100vh;
  width: 100%;
  margin:0 10%;
  z-index: 1000;
  overflow: hidden;
}

#left h1{
  font-family: sfpro-med;
  letter-spacing: 1px;
  font-size: 3.3vw;
}

#left>p{
  font-size: 1.2vw;
  color: rgb(20, 20, 20);
  margin-top: 0.5vw;
}

#right #building{
margin-top: 120px;
  width: 55vw;
  z-index: 99;
  /* display:block; */
  overflow: hidden;
}

#left{
  display: flex;
  flex-direction: column;
  top:50%;
  width: 40%;
}

#btns{
  display: flex;
  justify-content: flex-start;
  margin-top: 1vh;
}


#career{
  height: 5.5vh;
  width: 9vw;
  background-color: orangered;
  border: none;
  border-radius: 500px;
  color: white;
  font-size: 1.2vw;
}

#career a{
  text-decoration: none;
  color: white;
}


#call{
  height: 5.5vh;
  width: 11vw;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 500px;
  color:orangered;
  margin-left: 20px;
  font-size: 1.2vw;
}

#call a{
  text-decoration: none;
  color: orangered;
}


@media (max-width: 480px){
  #inner{
    /* margin: 0; */
    height: 97vh;
    margin-top: 12vh;
    display: flex;
    flex-direction: column;
    /* position: absolute; */
    overflow: hidden; 
    justify-content: center ;
  }

  #left{
    align-items: ce;
    width: 100%;
    padding-top: 8vw;
  }

  #left h1{
    font-size: 7vw;
  }

  #left>p{
    font-size: 3vw;
  }

  #btns{
    margin-top: 1vh;
    
  }


  #career{
    height: 7vw;
    width: 25vw;
    font-size: 3vw;
  }

  #call{
    height: 7vw;
    width: 30vw;
    font-size: 3vw;
  }


  #right{
    margin-top: 7vh;
  }


  #right> #building{
    overflow: hidden;
    width: 130vw;
    position:relative;
    overflow: hidden;

  }
  
  #home{
    overflow: hidden;
  }

}




@media (max-width: 768px){
  #inner{
    /* margin: 0; */
    /* height: 100vh; */
    /* margin-top: 20vh;  */
    display: flex;
    flex-direction: column;
    position:absolute;
    justify-content: center ;
  }

  #left{
    width: 100%;
    padding-top: 40vw;
  }

  #left h1{
    /* font-size: 5vw; */
  }

  #left>p{
    font-size: 3vw;
  }

  #btns{
    margin-top: 1vh;
  }


  #career{
    height: 7vw;
    width: 25vw;
    font-size: 3vw;
  }

  #call{
    height: 7vw;
    width: 30vw;
    font-size: 3vw;
  }


  #right{
    /* margin-top: 7vh; */
    overflow: hidden;
    
  }

  #right> #building{
    overflow: hidden;
    width: 100vw;
    position:relative;
  }
  
  #home{
    display: block;
    overflow: hidden;
  }


  #right #building{
    margin-top: 0px;
      /* width: 55vw; */
      z-index: 99;
      overflow: hidden;
      /* display:block; */
    }

}

/* #logo-section{
  height: 20vh;
  width: 100%;
  color: crimson;
  } */


  /* Logos */


  @keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    /* padding: 30px 0px; */
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  .logos:hover .logo_items {
    /* animation: 40s slides infinite linear; */
  }
  
  .logo_items img{
    height: 20vh;
  }


  /* Logos */





  /* About us */


  /* section 3 */

.about-us-section {
  display: flex;
  padding: 0 12vw;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 5vw; /* Gap between image and content */
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 5vh;
  padding-bottom: 5vh;

}

/* Image Section with Balanced Background Box */
.about-us-image {
  position: relative;
  flex-shrink: 0;
  width: 400px; /* Fixed width for the image */
  z-index: 1;
}

.about-us-image::before {
  content: '';
  position: absolute;
  top: 10px;  /* Minimal offset for top */
  left: 10px; /* Minimal offset for left */
  right: 0;
  bottom: 0;
  width: calc(100% + 10px); /* Adds extra width for the background */
  height: calc(100% + 8px); /* Adds extra height for the background */
  background-color: #f3e4d9; /* Light tan/peach color similar to the image */
  border-radius: 20px; /* Rounded corners */
  z-index: -1; /* Position behind the image */
}

.about-us-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid grey;
}

/* About Us Section */
.about-us-content {
  flex-grow: 1;
  padding-left: 0vw;
  /* padding-right: 159px; */
}

.about-us-content h2 {
  font-size: 2.2vw;
  font-family: sfpro-med;
  letter-spacing: 1px;
  margin-bottom: 2vh;
}

.underline-about {
  /* margin: 0 0 50px 0; */
  width: 210px;
  height: 2px;
  background-color: #f05a28;
  margin-right: 20px;
  /* align-items: center;
  justify-content: center; */
}
.underline {
  width: 210px;
  height: 2px;
  background-color: #f05a28;
  margin-bottom: 20px;
  /* align-items: center;
  justify-content: center; */
}

.about-us-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #1d1d1d;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 500px;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #000000;
}

.feature img {
  width: 5vh;
  height: 5vh;
  margin-right: 1vw;
}


.line{
  color: orangered;
}

@media (max-width:768px) {
  
  .about-us-content h2 {
    font-size: 1.8vw;
}

  .about-us-content p {
    font-size: 1em;
}

.about-us-section{
  display: flex;
  flex-direction: column;
}
}

@media (max-width:480px) {

  .about-us-section{
    display: flex;
    flex-direction: column;
  }

  .about-us-image::before{
    display: none;
  }

  .about-us-image img {
    width: 80%;
    height: auto;
    border-radius: 10px;
    border: 1px solid grey;
    overflow: hidden;
  }
  
  .about-us-content h2 {
    font-size: 1.5em;
}

.about-us-content p {
    font-size: 0.9em;
}

.features {
    grid-template-columns: 1fr;
}

.feature {
    font-size: 4vw;
}
.feature img{
  height: auto;
  width:6vw;
}
  
}


  /* About us End */




  /* Project Phases Start */


  /* section 4*/

.project-phases-section {
  position: relative;
  overflow: visible; /* Ensure elements aren't cut off */
  background-color: white;
  margin: 6vw;
  margin-top: 1.2vh;
}


.content .subtitle{
  font-size: 1vw;
}



/* Content Area */
.content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

.content h1{
  font-size: 2vw;
  font-family: sfpro-med;
}

p.subtitle {
  color: #666;
  margin-top: 10px;
  font-style: italic;
}

/* Phase Boxes */
.phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  /* width: 85vw; */
}

.phase-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; /* Ensure the pseudo-element lines are positioned correctly */
}

.phase-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Orange bottom line on hover */
.phase-box::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background-color: orangered;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.phase-box:hover::before {
  width: 100%; /* Expands the orange line on hover */
}

.phase-box h2 {
  display: flex;
  font-family: sfpro-reg;
  letter-spacing: 1px;
  align-items: center ;
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 2vh;
}

.phase-box h2 img {
  margin-right: 10px;
  
}

.phase-box>p {
  /* align-items: flex-start; */
  text-align: start;
  font-size: 1vw;
  color: #000000;
  line-height: 1.5;
}

@media (max-width:480px) {

  .content h1{
    font-size: 5.5vw;
  }

  .content .subtitle{
    font-size: 2.9vw;
  }

  .project-phases-section
    {
      margin-bottom: 500px;
      margin: 40px; /* Adds space between sections */
    }

    .content {
      padding-top: 30px;
      height: 100%;
  }
  .phases {
      grid-template-columns: 1fr; /* Stacks the phase boxes in a single column */
      gap: 20px; /* Adds spacing between phase boxes */
      margin: 20px 0; /* Adds margin to separate from other sections */
      /* padding: 0 10px;  */
  }

  .phase-box {
      padding: 15px;
      width: 100%; /* Ensure full width */
      margin: 10px 0; /* Add spacing between each phase box */
      text-align: left; /* Align text to the left for better readability */
  }

  .phase-box h2 {
      font-size: 1rem; /* Adjust phase title size */
      margin-bottom: 10px; /* Ensure spacing below the title */
  }

  .phase-box p {
      font-size: 0.8rem; /* Adjust text size for readability on mobile */
      line-height: 1.5;
  }

  .hr1{
      margin-top: 350px;
  }

  
}



  /* Project Phases End */

  /* Services */

  .service-container {
    width: 100%;
    height: 100%;
    padding: 0px 8%;
    margin-top: 1.2vh;
  }
  
  .service-container h1 {
    text-align: center;
    font-size: 2.2vw;
    /* padding-top: 10%; */
    margin-bottom: 60px;
    font-weight: bold;
    position: relative;
  }
  
  /* .service-container h1::after {
    content: '';
    background: orangered;
    width: 200px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
  } */
  
  /* Services Section Styles */
  
  .service-container h1 {
    text-align: center;
    font-size: 2.2vw;
    margin-bottom: 30px;
  }
  
  .highlight {
    color: orangered;
    font-weight: bold;
  }
  
  .service-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
  }
  
  .service-name {
    text-align: center;
    padding: 25px;
    border: 2px solid orangered;
    border-radius: 12px;
    font-size: 1.1rem;
    background: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .service-name h2 {
    color: orangered;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .service-name ul {
    list-style: none;
    padding: 0;
    justify-content: flex-start;
    text-align: center;
  }
  
  .service-name ul li {
    padding: 8px 0;
    font-size: 1.2rem;
  }
  
  .service-name img{
    height: 40px;
    width: 40px;
    color: orangered;
  }
  .service:hover img {
    color: #fff;
  }
  
  /* Hover Effects */
  .service-name::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, orangered, orangered);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    transform: rotate(20deg);
  }
  
  .service-name:hover::before {
    opacity: 0.7;
    transform: rotate(0deg);
  }
  
  .service-name:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 8px 20px orangered;
    color: #fff;
  }
  
  .service-name h2,
  .service-name ul li {
    position: relative;
    z-index: 1;
  }
  
  .service-name:hover h2,
  .service-name:hover ul li {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  /* Responsive Design */
  @media (max-width: 780px) {
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .service-row {
        grid-template-columns: 1fr;
    }
    .service-container h1{
        font-size: 6.2vw;
    }
    .service-name h2{
      font-size: 1rem;
    }
    .service-name ul li{
      font-size: 0.8rem;
    }
  }
  
  
  


  /* Services End*/



  /* Projects Section */

  /* Projects section */

#project-wala{
    margin-top: 15vh;
}

.projects-section {
  width: 100%;
  margin-top: 1;
}

.projects-container {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.projects-section h2 {
  font-family: sfpro-med;
  font-size: 2.2vw;
  margin-bottom: 10px;
  /* margin-left: 46%; */
  align-items: center;
}

.projects-container h2 :after {
  content: '';
  background: orangered;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);

}

p {
  color: #242424;
  margin-bottom: 1vh;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 50px;
}

.project-box {
  background-color: #fff;
  border: 2px solid orangered;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: left; /* Align text and icon properly */
  position: relative; /* Ensure the icon can be aligned well */
}

.project-box h3{
  font-size: 2rem;
}
.project-box p{
  font-size: 1.2rem;
}

.project-box:hover {
  background-color: orangered;
  border: 2px solid orangered;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: left; /* Align text and icon properly */
  position: relative; /* Ensure the icon can be aligned well */
}

.project-box:hover h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: rgb(255, 255, 255);
  padding-left: 60px; /* Create space to the left for the icon */
}

.project-box:hover p {
  font-size: 0.8rem;
  color: #fafafa;
  padding-left: 60px; /* Create space to the left for the icon */
}

.project-box img {
  width: 40px;  /* Adjust width of the cube */
  height: 40px;  /* Adjust height of the cube */
  position: absolute;
  top: 10px;    /* Adjust position to place the icon exactly as needed */
  left: 10px;   /* Adjust left position */
}

.project-box h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: orangered;
  padding-left: 60px; /* Create space to the left for the icon */
}

.project-box>p {
  font-size: 0.9em;
  color: #554747;
  padding-left: 60px; /* Create space to the left for the icon */
}




@media (max-width:768px) {
  

  .projects-section {
    width: 100%;
    margin-top: 50px;
}

.projects-container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.projects-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    /* margin-left: 46%; */
    align-items: center;
}

/* p {
    color: #666;
    margin-bottom: 30px;
} */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.project-box {
    background-color: #fff;
    border: 2px solid orangered;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-align: left; /* Align text and icon properly */
    position: relative; /* Ensure the icon can be aligned well */
}

.project-box img {
    width: 40px;  /* Adjust width of the cube */
    height: 40px;  /* Adjust height of the cube */
    position: absolute;
    top: 10px;    /* Adjust position to place the icon exactly as needed */
    left: 10px;   /* Adjust left position */
}

.project-box h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: orangered;
    padding-left: 60px; /* Create space to the left for the icon */
}

.project-box p {
    font-size: 0.9em;
    color: #555;
    padding-left: 60px; /* Create space to the left for the icon */
}

}

@media (max-width:480px) {
  .projects-container {
    width: 95%;
}

.projects-container h2 {
    font-size: 1.5em;
    /* margin-left: 40%; */
}

p {
    font-size: 0.9em;
}

.projects-grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.project-box {
    padding: 10px;
}

.project-box h3 {
    font-size: 1em;
}

.project-box p {
    font-size: 0.8em;
}

.project-box img {
    width: 35px; /* Slightly smaller for mobile */
    height: 35px;
}
}


  /* Projects Section End */








  /* Teams Start */

  .team-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
}

.team-section h2 {
    font-size: 2.2vw;
    font-family: sfpro-med;
    margin-bottom: 10px;
    align-items: center;
}


.highlight {
    color: #f36c21;
}

.team-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    margin-top: 80px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-member p {
    color: #f36c21;
}


@media (max-width:480px) {


  .team-section h2{
    font-size: 5vw;
    /* margin-left: 120px; */
    text-align: center;
}

.testimonial-text p {
    font-size: 14px;
}

.testimonial-text h3 {
    font-size: 16px;
}
.team-grid {
    grid-template-columns: 1fr;
}

.team-section h2 {
    font-size: 1.8em;
}

.team-section p {
    font-size: 1em;
}
  
}


  /* Teams End */


  /* Banner Start */

  .banner-section {
    background: linear-gradient(to right, #f36c21,orangered);
    padding: 3vw 8vw;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.heading-with-icon {
    display: flex;
    align-items: center;
}

.heading-with-icon .icon {
    font-size: 4em;
    margin-right: 15px;
}

.heading-with-icon h1 {
    font-size: 3.5em;
    margin: 0;
}

.banner-section h1{
    color: white;
}

.text-content h1{
  font-size: 2vw;
}

.text-content p {
    font-size: 1.5  vw;
    margin-top: 10px;
    color: #ffd5a1;
    margin-left: 3vw;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.request-call {
    background-color: white;
    color: #f36c21;
    border: none;
    padding: 15px 25px;
    font-size: 1.2em;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.request-call:hover {
    background-color: #ffd5a1;
}

.no-cc {
    color: #ffd5a1;
    font-size: 0.9em;
}

@media (max-width:768px) {
  
  .banner-content {
    flex-direction: column;
    text-align: center;
}

.text-content h1 {
    font-size: 4vw;
}
.text-content p {
    font-size: 2vw;
}

.cta-button {
    margin-top: 1vh
}

}


@media (max-width:480px) {
  
  .banner-section {
    /* padding: 20px; */
    margin-right: -10px;
}

.text-content h1 {
    font-size: 4.5vw;
}

.text-content p {
    font-size: 3vw;
    margin-left: 10px;
}

.request-call {
    padding: 10px 20px;
    font-size: 3vw;
}

.no-cc {
    font-size: 0.8em;
}

.icon {
    font-size: 1.5em;
    margin-right: 10px;
}


}

  /* Banner End */


  /* Contact Us Start */


  .contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6vw 12vw;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    height: 550px;
    width: 100%;
    background-color: white;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.contact-form h2 {
  font-family: sfpro-reg;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-form p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  /* height: ; */
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    /* font-size: 1em; */
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f36c21;
    outline: none;
    box-shadow: 0 0 5px rgba(243, 108, 33, 0.5);
}

textarea {
    resize: vertical;
    min-height: 30px;
}

.form-group.checkbox {

    display: flex;
    flex-direction: row;
    /* align-items: center; */
}


.form-group.checkbox input {
    margin-right: 10px;
}

#policy{
    width: 12px;
    margin-right: 12px;
}

.form-group.checkbox a {
    color: #f36c21;
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: orangered;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2vw;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff8a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Google Map Styling */
.contact-map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 420px;
}


@media (max-width:768px) {
  
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.contact-map {
    height: 300px;
    margin-top: 30px;
}


}
@media (max-width:480px) {
  .contact-container {
    padding: 20px;
    margin-bottom: 250px;
}

.contact-form h2 {
    font-size: 1.8em;
}

.contact-form p {
    font-size: 4vw;
}

.form-group input,
.form-group textarea {
    /* padding: 12px; */
}

.submit-btn {
    font-size: 4vw;
    padding: 12px;
}

.contact-map {
    height: 250px;
}
  

}

  /* Contact Us End */


  /* Footer Start */
  .footer {
    position: relative;
    width: 100%;
    background: orangered;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
  }
  
  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("./img/wave.png");
    background-size: 1000px 100px;
  }
  
  .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }
  
  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  /* Footer End */