* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* font-family: "Montserrat", sans-serif; */
    /* overflow: hidden; */
  }
   
  /* --- Customize ScrollBars --- */
  .footer .center .linkedin-content::-webkit-scrollbar {
    width: 11px;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-track {
    background: #fff;
  }
  .footer .center .linkedin-content::-webkit-scrollbar-thumb {
    background: #676767;
    border-radius: 7px;
  }
  
  /* Header Styles Starts Here */
  header {
    background-color: #ec9122;
    padding: 5px 0;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .header a {
    text-decoration: none;
    color: #fff;
  }
  .header .icons i {
    margin-right: 7px;
    transition: all 0.3s ease;
  }
  .header .icons i:hover {
    scale: 1.2;
    color: #5f86c3;
  }
  .header .email i {
    margin-right: 1px;
  }

  @media screen and (max-width: 576px) {
    header {
      padding: 0 0 2px 0;
    }
    .header .icons i{
        margin-right: 3.5px;
    }
    .header a{
        font-size: 0.7rem;
    }
    .header .phone span{
        font-size: 0.7rem;
    }
    .header i{
        font-size: 0.8rem;
    }
  }
  /* Header Styles Ends Here */


  /* Nav Styles Starts Here */
  nav {
    padding: 12px 0 !important;
    font-family: "Montserrat", sans-serif !important;
  }
  nav .nav-link {
    font-weight: 500;
  }
  nav .dropdown-menu {
    background-color: #e79b3e !important;
  }
  nav .dropdown-item {
    color: #fff;
    font-weight: 400;
  }
  nav .dropdown-item:hover,
  nav .dropdown-item:focus {
    background-color: #e79b3e !important;
    color: #fff;
  }

  @media screen and (max-width: 576px) {
    nav .nav-link {
        font-size: 0.8rem !important;
      }
      nav .dropdown-item {
        font-size: 0.8rem !important;
      }
  }

  /* .dropdown-toggle::after {
    display: none;
  } */

  /* Nav Styles Ends Here */


  /* Top Image Section Starts Here */
  .top-image{
    overflow: hidden;
  }
  .top-image img{
    width: 100%;
  }

  @media screen and (max-width: 576px) {
    .top-image img{
      height: 9rem;
    }
  }
  /* Top Image Section Ends Here */


  /* Top Text Section Starts Here */
  .top-text{
    margin-top: 4rem;
  }
  .top-text h1{
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
  }
  .top-text p{
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    margin-top: 1.8rem;
    font-weight: 500;
    text-align: justify;
  }

  @media screen and (max-width: 576px) {
    .top-text{
      margin-top: 1.7rem;
    }
    .top-text h1{
      font-size: 1.5rem;
    }
    .top-text p{
      font-size: 0.8rem;
      margin-top: 1rem;
    }
  }
  /* Top Text Section Ends Here */


  /* Service Section Starts Here */
  .service-bg{
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
  }
  .service-bg img{
    width: 100%;
  }
  #mobile-bg{
    display: none;
  }
  .service-bg .service-content{
    width: 85%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 7.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1rem;
  }
  .service-bg .service-content h1{
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
  }
  .service-bg .service-content .btn-row{
    margin-top: 3.5rem;
  }
  .service-bg .service-content .btn-row button{
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 1rem;
    border-radius: 10px;
    margin-right: 0.5rem;
    border: none;
    outline: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
  }
  .service-bg .service-content .btn-row button:hover{
    background-color: #dfdfdf;
  }
  .service-bg .service-content .btn-row button.btn-active{
    color: #fff;
    background-color: #ff920c;
  }
  .service-bg .service-content .btn-row button.btn-active:hover{
    background-color: #e8840a;
  }
  .service-bg .service-content p{
   color: #fff;
   margin-top: 2rem;
   font-family: "Montserrat", sans-serif;
   font-size: 1rem;
   font-weight: 500;
   min-height: 3.2rem;
  }

  @media screen and (max-width: 1400px) {
    .service-bg .service-content{
      width: 90%;
      left: 5%;
    }
    .service-bg .service-content .btn-row{
      margin-top: 2.5rem;
    }
    .service-bg .service-content .btn-row button{
      font-size: 0.9rem;
    }
  }

  @media screen and (max-width: 576px) {
    .service-bg{
      margin-top: 2.5rem;
    }
    #desktop-bg{
      display: none;
    }
    #mobile-bg{
      display: block;
      height: 100vh;
    }
    .service-bg .service-content{
      width: 96%;
      left: 3%;
      padding-top: 1rem;
    }
    .service-bg .service-content h1{
      font-size: 1.4rem;
    }
    .service-bg .service-content .btn-row{
      margin-top: 2rem;
    }
    .service-bg .service-content .btn-row button{
      font-size: 0.8rem;
      padding: 4px 0.5rem;
      margin:0 0.2rem 0.5rem 0;
      border-radius: 4px;
      text-align: start;
    }
    .service-bg .service-content p{
      margin-top: 2rem;
      font-size: 0.9rem;
      min-height: 0;
      height: 13rem;
     }
    .service-bg .service-content .btn-row button.btn-active:hover{
      background-color: #ff920c;
    }
  }
  /* Service Section Ends Here */


  /* Wind Projects Section Starts Here*/
  .wind-projects{
    padding: 5rem 0 0 0;
  }
  .wind-projects h1{
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
  }
  .wind-projects .wind-projects-content{
    /* display: flex; */
    /* justify-content: space-between; */
    margin-top: 4rem;
  }
  .wind-projects .wind-projects-content .wind-projects-top{
    display: flex;
    justify-content: space-between;
  }

  .wind-projects .wind-projects-content .left{
    width: 45%;
    overflow: hidden;
    display: flex;
    /* justify-content: center; */
    align-self: flex-start;
    /* flex-direction: column; */
  }
  .wind-projects .wind-projects-content .left img{ 
    width: 100%;
    height: 60%;
    object-fit: contain;
  }
  .wind-projects .right{ 
    width: 57%;
  }
  .wind-projects .right .right-text{ 
    display: flex;
    /* margin-bottom: 1.5rem; */
  }
  .wind-projects .right-text p{ 
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2.8rem;
  }
  .wind-projects .right-text i{ 
    color: #ff920c;
    font-size: 1.4rem;
    margin-right: 1rem;
    margin-top: 3.5px;
  }
  .wind-projects .wind-projects-bottom{ 
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  .wind-projects .wind-projects-bottom .right-text{ 
    display: flex;
    max-width: 80%;
    margin-left: 20%;
  }

  @media screen and (max-width: 1400px) {
    .wind-projects .right-text p{ 
      font-size: 1rem;
    }
  }

  @media screen and (max-width: 576px) {
    .wind-projects{
      padding: 2.5rem 0.5rem 0 0.5rem;
    }
    .wind-projects h1{
      font-size: 1.5rem;
    }
    .wind-projects .wind-projects-content{
      margin-top: 2rem;
    }
    .wind-projects .wind-projects-content .wind-projects-top{
      flex-direction: column-reverse;
    }
    .wind-projects .wind-projects-content .left{
      width: 100%;
    }
    .wind-projects .wind-projects-content .left img{
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .wind-projects .right{ 
      width: 100%;
    }
    .wind-projects .right-text{ 
      margin-bottom: 0;
      margin: 0;
    }
    .wind-projects .right-text p{ 
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }
    .wind-projects .right-text i{ 
      font-size: 1rem;
      margin-right: 0.6rem;
    }

    .wind-projects .wind-projects-bottom{ 
      flex-direction: column;
      margin-top: 0;
    }
    .wind-projects .wind-projects-bottom .right-text{ 
      max-width: 100%;
      margin-left: 0;
    }
  }
  
  /* Wind Projects Section Ends Here*/


  /* Hydro Projects Section Starts Here*/
  .hydro-projects{
    padding: 5rem 0 0 0;
  }
  .hydro-projects-top{
    display: flex;
    justify-content: space-between;
  }
  .hydro-projects h1{
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
  }
  .hydro-projects .hydro-projects-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 4rem;
  }
  .hydro-projects .hydro-projects-content .left{
    width: 45%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
  }
  .hydro-projects .hydro-projects-content .left img{ 
    width: 100%;
    height: 87%;
    /* object-fit: contain; */
  }
  .hydro-projects .hydro-projects-content .right{ 
    width: 55%;
  }
  .hydro-projects .hydro-projects-content .hydro-projects-top .right .right-text{ 
    display: flex;
    max-width: 80%;
    margin-left: 20%;
  }
  .hydro-projects .hydro-projects-content p{ 
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2.8rem;
  }
  .hydro-projects .hydro-projects-content .right i{ 
    color: #ff920c;
    font-size: 1.4rem;
    margin-right: 1rem;
    margin-top: 3.5px;
  }

  .hydro-projects-bottom{
    display: flex;
    margin-top: 2rem;
  }
  .hydro-projects-bottom .right-text{
    display: flex;
  }

  @media screen and (max-width: 1400px) {
    .hydro-projects .hydro-projects-content p{ 
      font-size: 1rem;
    }
  }

  @media screen and (max-width: 576px) {
    .hydro-projects{
      padding: 2rem 0.5rem 0 0.5rem;
    }
    .hydro-projects h1{
      font-size: 1.5rem;
    }
    .hydro-projects .hydro-projects-content{
      margin-top: 2rem;
    }
    .hydro-projects .hydro-projects-top{
      flex-direction: column;
    }
    .hydro-projects .hydro-projects-content .left{
      width: 100%;
    }
    .hydro-projects .hydro-projects-content .left img{ 
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .hydro-projects .hydro-projects-content .right{ 
      width: 100%;
    }
    .hydro-projects .hydro-projects-content .hydro-projects-top .right .right-text{ 
      max-width: 100%;
      margin-left: 0;
    }
    .hydro-projects .hydro-projects-content p{ 
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }
    .hydro-projects .hydro-projects-content .right i{ 
      font-size: 1rem;
      margin-right: 0.6rem;
    }
    .hydro-projects-bottom{
      flex-direction: column-reverse;
      margin-top: 0.7rem;
    }
  }
 
  /* Hydro Projects Section Ends Here*/

  /* Ongoing Assignments Section Starts Here */
  .ongoing-assignments{
    padding: 1rem 0 0 0;
    position: relative;
  }
  .ongoing-assignments-banner{
    width: 100%;
    height: 60vh;
    padding: 4rem 0;
    /* background-color: #1e263b; */
    background-image: url('images/project-bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    overflow: hidden;
  }
  .ongoing-assignments-banner .banner-layer{
    position: absolute;
    width: 100%;
    height: 100%;
    top: -5rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.905), rgba(255, 255, 255, 0));
  }
  .ongoing-assignments-banner .banner-layer h1{
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    margin-top: 8rem;
  }
  .ongoing-assignments .projects{
    /* padding: 4rem 1rem 0 1rem; */
    margin-top: 13rem;
  }
  .ongoing-assignments .project-row{
    display: flex;
    /* justify-content: space-around; */
    justify-content: center;
    gap: 8%;
    padding: 2rem 1rem;
    overflow: hidden;
    /* background-color: red; */
  }
  .ongoing-assignments .project-row .project-card{
    /* background-color: #a5a5a5; */
    background-color: #e98b18;
    width: 31%;
    height: 18rem;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* transition: all 0.4s ease; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .ongoing-assignments .project-row .project-card .card-layer{
    width: 100%;
    height: 100%;
    /* background-color: #ec9122; */
    background-color: #a5a5a5;
    z-index: 1;
    position: absolute;
    bottom: -100%;
    transition: all 0.4s ease;
  }
  .ongoing-assignments .project-row .card-count{
    /* align-self: flex-start; */
    z-index: 5;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #ffac58;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
  }
  .ongoing-assignments .project-row .card-count h2{
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
  }
  .ongoing-assignments .project-row .project-card p{
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    /* font-weight: 500; */
    text-align: center;
    color: #fff;
    z-index: 5;
    height: 40%;
  }

  @media screen and (max-width: 576px) {
    .ongoing-assignments-banner .banner-layer h1{
      font-size: 1.5rem;
      margin-bottom: 0;
    }
    .ongoing-assignments .projects{
      margin-top: 7.5rem;
    }
    .ongoing-assignments .project-row{
      flex-direction: column;
      padding: 0 1rem;
    }
    .ongoing-assignments .project-row .project-card{
      width: 100%;
      height: 13rem;
      margin-bottom: 1rem;
    }
    .ongoing-assignments .project-row .card-count{
      margin-bottom: 1.7rem;
      width: 2rem;
      height: 2rem;
    }
    .ongoing-assignments .project-row .card-count h2{
      font-size: 1.5rem;
    }
    .ongoing-assignments .project-row .project-card p{
      font-size: 1rem;
      height: 60%;
    }
  }
  /* Ongoing Assignments Section Ends Here */


  /* Three Boxes Section Starts Here */
  .three-boxes{
    padding: 4rem 0;
  }
  .box-row{
    display: flex;
    justify-content: space-between;
  }
  .box-row .box{
    width: 30%;
    background-color: #fff;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.292) 0px 4px 10px;
  }
  .box-row .box h3{
    font-family: "Montserrat", sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
  }
  .box-row .box p{
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    margin-top: 2rem;
  }

  @media screen and (max-width: 576px) {
    .three-boxes{
      padding: 3rem 0.5rem;
    }
    .box-row{
      flex-direction: column;
    }
    .box-row .box{
      width: 100%;
      margin-bottom: 1rem;
    }
    .box-row .box p{
      margin-top: 1.5rem;
    }
  }
  /* Three Boxes Section Ends Here */


  /* Slider Section Starts Here */
  .marquee-container h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
  }
  .marquee {
    overflow-x: clip;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 1rem 0;
  }
  
  .marquee-inner {
    display: flex;
    align-items: center;
    gap: 3vw;
    /* padding: 1rem 0; */
    will-change: transform;
  }
  
  .marquee-inner img {
    height: 100%;
    transition: transform 0.5s;
    flex-shrink: 0;
    width: 11vw;
    border-radius: 2rem;
    margin-right: 1rem;
  }
  .marquee-inner #img-6 {
    width: 15vw;
  }
  
  .marquee-inner img:hover {
    transform: scale(1.03);
  }

  @media screen and (max-width: 576px) {
    .marquee-container h1 {
      font-size: 1.5rem;
      margin: 0 0 1rem 0;
    }
  }
  /* Slider Section Ends Here */


  /* Contact Us Section Starts Here */
  .contact{
    background-color: #f2f2f2;
    padding: 3rem 0 6rem 0;
    margin-top: 3rem;
  }
  .contact .contact-box h2{
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
  }
  .contact .contact-box .contact-row{
    margin-top: 2rem;
    display: flex;
    justify-content: space-around;
    gap: 5%;
  }
  .contact .contact-box .contact-row .contact-person{
    width: 40%;
    display: flex;
    background-color: #e0e0e0;
    gap: 5%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .contact .contact-box .contact-row .contact-person .person-image{
    width: 30%;
  }
  .contact .contact-box .contact-row .contact-person .person-image img{
    width: 100%;
  }
  .contact .contact-box .contact-row .contact-person .person-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact .contact-box .contact-row .contact-person .person-details h3{
    font-family: "Montserrat", sans-serif;
    font-size: 1.7rem;
  }
  .contact .contact-box .contact-row .contact-person .person-details p{
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    padding: 5px 0;
    font-weight: 500;
    margin: 0;
  }
  .contact .contact-box .contact-row .contact-person .person-details p span{
    font-weight: 700;
  }
  .contact .contact-box .contact-row .contact-person .person-details>div{
    margin-top: 0.8rem;
  }

  @media screen and (max-width: 576px) {
    .contact{
      padding: 2rem 0 3rem 0;
      margin-top: 1.5rem;
    }
    .contact .contact-box h2{
      font-size: 1.4rem;
    }
    .contact .contact-box .contact-row{
      flex-direction: column;
      gap: 0;
    }
    .contact .contact-box .contact-row .contact-person{
      width: 100%;
      gap: 3%;
      margin-bottom: 1.5rem;
    }
    .contact .contact-box .contact-row .contact-person .person-details h3{
      font-size: 1.2rem;
      padding-top: 0.4rem;
      margin-bottom: 1rem;
    }
    .contact .contact-box .contact-row .contact-person .person-details p{
      font-size: 0.8rem;
      margin-top: -8px;
    }
    .contact .contact-box .contact-row .contact-person .person-details>div{
      margin-top: 0.2rem;
    }
  }
  /* Contact Us Section Ends Here */


  /* Footer Styles Starts Here */
  footer{
    background-color: #ec9122;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  .footer{
    display: flex;
    justify-content: space-between;
  }
  .footer .left{
    width: 29%;
    color: #fff;
  }
  .footer .left img{
    background-color: #fff;
    padding: 0.5rem 0.8rem;
    margin-top: 1rem;
  }
  .footer .left a{
    color: #fff;
  }
  .footer .left .foot-icons{
    margin-top: 2rem;
  }
  .footer .left .foot-icons i{
    margin-right: 0.7rem;
    font-size: 1.3rem;
    transition: all 0.2s ease;
  }
  .footer .left .foot-icons i:hover{
    scale: 1.1;
    color: #5f86c3;
  }
  
  .footer .center{
    width: 30%;
  }
  .footer .center h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer .center img{
    width: 100%;
    /* position: relative; */
  }
  .footer .center button{
    position: absolute;
    left: 75%;
    top: 46%;
    border: none;
    outline: none;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #616161;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
  }
  .footer .center button:hover{
    background-color: #ededede4;
  }
  .footer .center .linkedin-content{
   height: 150px;
   overflow-y: scroll;
   padding: 10px;
   background-color: #d2d0d0;
  }
  
  .footer .end{
   width: 22%;
   color: #fff;
   display: flex;
   flex-direction: column;
  }
  .footer .end h3{
   font-size: 1.1rem;
  }
  .footer .end p{
   font-size: 0.8rem;
  }
  .footer .end div{
   margin-bottom: 1rem;
  }
  /* .footer .end img{
   width: 30px;
   margin-left: 90%;
   margin-top: 1.3rem;
   cursor: pointer;
   transition: all 0.3s ease;
  } */
  /* .footer .end img:hover{
   scale: 1.1;
  } */
  .footer-line .line{
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    margin-top: 1rem;
  }
  .copyright{
   display: flex;
   justify-content: space-between;
   color: #fff;
   margin-top: 7px;
   font-size: 0.9rem;
  }

  #back-to-top{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    bottom: 1.2rem;
    right: 1.4rem;
    box-shadow: rgba(0, 0, 0, 0.308) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: all 0.3s ease;
  }
  #back-to-top:hover{
      scale: 1.1;
  }

  @media screen and (max-width: 1400px) {
    .footer .center button{
      top: 41%;
    }
  }

  @media screen and (max-width: 576px) {
    footer{
        margin-top: 0;
    }
    .footer{
        flex-direction: column;
      }
      .footer .left{
        width: 100%;
      }
      .footer .left img{
        margin-top: 0.5rem;
        width: 45%;
      }
      .footer .left .foot-icons{
        margin-top: 1rem;
      }
      .footer .center{
        width: 100%;
        margin-top: 2rem;
      }
      .footer .end{
        width: 100%;
        margin-top: 2rem;
      }
      .copyright{
        font-size: 0.7rem;
       }
       #back-to-top{
        width: 20px;
        height: 20px;
        bottom: 1rem;
        right: 1rem;
      }
  }

/* Footer Styles Ends Here */