*, 
*:before, 
*:after{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-decoration: none;
    scroll-behavior: smooth;
    
} 
 
:root {
    /* --bg-color: #080808; */
    --bg-color: #161c1c;
    --second-bg-color: #101010;
    --text-color: rgb(203, 203, 203);
    --sub-heading-color:grey;
    --main-color: #ea580c;
    --heading-font: "Lato";
    --paragraph-font: "Lato";
  }

html{
    font-size: 60%;
    overflow-x: hidden;   
    /* font-family: "Afacad Flux", serif; */
}
body{
    background-color: var(--bg-color);
    color: var(--text-color);
    /* font-family: "Demo Bitblend", serif; */
    /* font-family:"Playfair Display"; */
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}
h1{
  color: var(--text-color);
}
h2, h3 {
  color: var(--sub-heading-color);
}
p{
    font-family: var(--paragraph-font);
    letter-spacing: 1px;
}
  .header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2rem 15%;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.header.darker {
  background-color: rgba(0, 0, 0, 0.6); /* Darker background when scrolling */
}

#menu-icon {
    font-size: 3.5rem;
    color: var(--main-color);
    display: none;
}
 
.logo {
    display: flex;
    align-items: center;
    font-size : 3rem;
    color :var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    gap: 1rem;
}

.name-logo {
    width: 70px;
}
.logo:hover {
    transform: scale(1.1);
}  .btn-group {
    display: flex;
    gap: 1.5rem;
}
.navbar a{
  font-size: 1.8rem;
  font-family: var(--paragraph-font);
  color: white;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border-bottom: 3px solid transparent;
}

.navbar a:hover{
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--main-color);
    box-shadow: 0 0 5px var(--main-color);
    font-family: var(--heading-font);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn:hover{
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--main-color),
    0 0 8px var(--main-color);
}

.btn-group a:nth-of-type(2){
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 15px transparent;
}
.btn-group a:nth-of-type(2):hover{
    box-shadow: 0 0 15px var(--main-color);
    background-color: var(--main-color);
    color: black;
}

  .project_section{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    /* border: 2px solid white; */
    /* align-items: center; */
  }

  .main-section{
    display:flex;
    /* border: 1px solid yellow; */
    margin-top: 150px;
    color: var(--text-color);
    gap: 5rem;
    width: 70%;
  
  }
  .main-section-poject-name{
    /* border: 1px solid green; */
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5rem;
  }
  .main-section-poject-name h1{
    /* padding-left: 10px; */
    font-size: 4rem;
    font-weight: 500;
    line-height: 45px;
    margin-top: 0px;
  }
  .main-section-poject-name h2{
    /* padding-left: 10px; */
    font-size: 1.8rem;
    line-height: 40px;
    letter-spacing: 1.2px;
    margin-top: 10px;
  }
  .main-section-poject-name h3{
    /* padding-left: 10px; */
    font-size: 1.4rem;
    color:  var(--main-color);
    line-height: 25px;
    letter-spacing: 1px;
    margin-top: 3px;
  }
  .main-section-poject-name-text{
    margin-top: 20px; 
    width: 35vw;
  }
  .main-section-poject-name-text p{
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 50px;
    line-height:25px;
    text-align: justify;
  }
  /* .main-section-image{
    border: 1px solid white;
  } */
  .logo-img{
    /* margin-top: 100px; */
    width: 35vw;
    border-radius: 1.5rem;
    /* box-shadow: 0 0 5px var(--main-color); */
  }
  .overview{
    /* border: 1px solid red; */
    text-align: justify;
    width: 70%;
    margin-top: 130px;
    margin-bottom: 20px;
  }
  .overview ul {
    list-style-type:disc; 
    margin-left: 20px;  
  }
  .overview ul li {
    font-size: 1.5rem;
    color:var(--text-color); 
    font-family: var(--paragraph-font);
    margin-bottom: 10px; 
    line-height: 1.6; 
  }
  .overview h1 {
    font-size: 4rem;
    /* font-size: 1.8em; */
    /* letter-spacing: 3px; */
    margin-bottom: 20px;
  }
  .overview h2 {
    /* font-size: 4.2rem; */
    font-size: 2.2rem;
    color: var(--main-color);
    /* letter-spacing: 3px; */
    margin-bottom: 10px;
  }
  .overview p {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 400;
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 10px;
    columns: 2;
    column-gap: 25px;
  }
  span{
    background: linear-gradient(
        260deg,
        #DF8908 10%,
        #ff1d15 100%
    );
    background-clip:text ;
    color: transparent;
}
/* retail installation process css */
  .stations {
    /* margin-top: 100px !important; */
    vertical-align: baseline;
    margin: 2.0rem auto;
  }
  .stations h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .station1 {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 2.0rem;
  }
  .st1-text {
    width: 48%;
  }
  .st1-text h2 {
    font-size: 2.2rem!important;
    color:  var(--sub-heading-color);
    margin-bottom: 10px;
  }
  .st1-text p {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: justify;
  }
  .st1-video, .st2-video {
    width:50%;
  }
  
  .st1-btns, .st2-btns {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.0rem;
    margin-top: 1.0rem;
    font-family: var(--paragraph-font);
  }
  .st-btn, .st-btn2 {
    font-size: 1.5rem; 
    font-weight: 600;
    padding: 5px;
    background-color: grey;
    color: black;
    width: 15.0rem;
    text-align: center;
    border-radius: 2.0rem;
    cursor: pointer;
  }
  .active, .active2 {
    background-color: #ea580c;
    color: #fff;
  }
  .stations h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .station2 {
    margin-top: 100px;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 2.0rem;
  }
  .st2-text {
    width: 48%;
  }
  .st2-text h2 {
    font-size: 2.2rem;
    color:  var(--sub-heading-color);
    margin-bottom: 10px;
  }
  .st2-text p {
    font-size: 1.6rem;
    color: var(--text-color);
    font-weight: 400;
    margin-top: 0px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: justify;
  }

  /* end of retailinstallation */
  




  .diff_imgs{
    width: 70%;
    /* border: 1px solid blue; */
    align-items: center;
    margin-top: 10px;
  }
  .imgbox{
    /* height: 600px; */
    overflow: hidden;
    border-radius: 1.5rem;
    /* border: 1px solid red; */
  }
 
  .imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
        
  }

  .objective-challenges{
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    /* border: 1px solid yellowgreen; */
  }
  .rajasthan-objective {
    width: 100%;
  }
  .rajasthan-objective h2{
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px; 
  }
  .rajasthan-objective p{
    /* font-size: 4rem; */
    color: var(--text-color);
    margin-bottom: 0px; 
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 0px;
    line-height: 25px;
    color: var(--text-color);
  }

  .objective, .challenges {
    width: 48%; /* Both will take up 48% of the container's width to leave space for margin */
}
  
  .objective h2 {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px;  
  }
  .objective p {
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 0px;
    line-height: 25px;
    color: var(--text-color);
  }
  .objective ul {
    list-style-type:disc; 
    margin-left: 20px; /* Indent the list for clarity */
  }
  .objective ul li {
    font-size: 1.6rem;
    color:var(--text-color); 
    font-family: var(--paragraph-font);
    margin-bottom: 10px; 
    line-height: 1.6; 
  }
  .teamleadrole {
    width: 100%;
  }
  .teamleadrole ul {
    font-size: 1.8rem;
    line-height: 2.5; 
    margin-left: 0px !important;
    font-family: var(--paragraph-font);
  }
  .teamleadrole li {
    font-size: 1.5rem;
    line-height: 1; 
    margin-left: 40px;
    font-family: var(--paragraph-font);
  }
 
  .challenges h2 {
    font-size: 4rem;
    color: var(--text-color);
    margin-bottom: 20px; 
    margin-top: 10px;
  }
  .challenges p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 25px;
    margin-top: 0px;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  .challenges ul {
    list-style-type:disc; 
    margin-left: 20px; /* Indent the list for clarity */
  }
  .challenges ul li {
    font-size: 1.5rem;
    color:var(--text-color); 
    font-family: var(--paragraph-font);
    margin-bottom: 10px; 
    line-height: 1.6; 
  }
  .challenges ul li:last-child {
    margin-bottom: 0; 
  }
  .theProcess {
    width: 70%;
    margin-top: 90px;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .theProcess h1 {
    font-size: 4rem;
    margin-bottom: 20px; 
    margin-top: 10px;
  }
  .theProcess li{
    font-size: 1.5rem;
    color:var(--text-color); 
    font-family: var(--paragraph-font);
    margin-bottom: 10px; 
    margin-left: 25px;
    line-height: 1.6; 
  }
  .theProcess p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 25px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--text-color);
  }
  .process-imgs {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .top {
    width: 100%;
    height: auto;
    /* border: 1px solid yellow; */
    overflow: hidden;
    border-radius: 12px;
  }
  .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .bottom {
    width:100%;
    gap: 20px;
    /* height: 390px; */
    /* height: 100%; */
    display: flex;
  }
  
  .bottom-left, .bottom-middle, .bottom-right {
    flex: 1; 
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}
  .bottom-left img,
  .bottom-middle img,
  .bottom-right img
  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}
.bottom-left img:hover,
.bottom-middle img:hover,
.bottom-right img:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}

  
  .deliverables{
    width: 70%;
    margin-top: 100px;
   position: relative;
   
  }
  .deliverables p{
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 25px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--text-color);
  }
  .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.brandingvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
 
  .video{
    border-radius: 12px; 
  }
  .deliverables h1{
   font-size: 4rem;
   margin-bottom: 40px;
   margin-top: 10px;
 }

  .deliverables-img {
    display: flex;
    flex-direction: row;
    width: 70%;
    margin-top: 30px;
    gap: 30px;
    justify-content: space-between;
  }
  .box{
    /* width: 48%; */
    /* height: 100%; */
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
  }
  
  .box img {
    width: 100%;
    height: auto;
}
.box-video {
  border-radius: 12px;
  width: 100%; 
  /* height: auto; */
  height: 100%;
}


  ::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

.footer{
  background-color: var(--second-bg-color );
  padding: 30px 0;
  margin-top: 20px;
}
.footer .copyright {
  text-align: center;
  color: var(--text-color);
  font-size: 16px;
}

/* next project */
/* Next Project Link Styles */
.next-project-section {
  text-align: center;
  margin: 4rem 1rem;
  display: flex;
  justify-content: space-between; 
  padding: 0 100px;
}


.next-project-link {
  font-family: var(--heading-font);
  font-weight: 600;
  background: var(--main-color);
  font-size: 1.2rem;
  text-decoration: none;
  color: black;
  transition: 0.3s ease-in-out;
  /* border: 2px solid #333; */
  padding: 0.7rem 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 30px;
  /* margin: 0 410px */
}

.next-project-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px var(--main-color),
  0 0 8px var(--main-color);
  color: white;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--main-color);
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  opacity: 0.7;
  transition: 0.3s;
  z-index: 1000;
}

.scroll-top:hover {
  opacity: 1;
}


@media screen and (max-width: 1024px) {
    .header {
        padding: 2rem 10%;
    }

    .logo {
        font-size: 2.5rem;
    }

    .navbar a {
        font-size: 1.6rem;
        margin-left: 2rem;
    }

    .main-section {
        flex-direction: column;
        align-items: center;
        width: 90%;
        gap: 3rem;
        margin-top: 120px;
    }

    .main-section-poject-name {
        text-align: center;
        gap: 3rem;
    }

    .main-section-poject-name-text {
        width: 90%;
        margin-top: 10px;
    }

    .main-section-image {
        text-align: center;
    }

    .logo-img {
        width: 90%;
    }

    .overview, .diff_imgs, .objective-challenges, .theProcess {
        width: 90%;
    }

    .overview p {
        columns: 1;
    }

    .objective-challenges {
        flex-direction: column;
        gap: 3rem;
    }

    .objective, .challenges {
        width: 100%;
        text-align: center;
    }
    .objective p, .challenges li {
      text-align: justify;
    }
    .objective h2, .challenges h2 {
      text-align: left;
    }
    

    .process-imgs {
        gap: 20px;
    }

    .bottom {
        flex-direction: column;
        height: auto;
    }

    .bottom-left, .bottom-middle, .bottom-right {
        width: 100%;
        height: 250px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}


/* responsive for mobile */
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }

  .navbar{
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    padding: 1rem 3rem;
    background: rgba(0,0,0,0.8);
    border-bottom-left-radius: 2rem;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: none;
  }
  .navbar a{
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    color: var(--text-color);
  }
  .navbar.active {
    display: block;
  }

  .main-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    width: 90%;
}

.main-section-poject-name {
    gap: 2rem;
    width: 100%;
}

.main-section-poject-name-text {
    width: 100%;
}

.main-section-poject-name h1 {
    font-size: 3rem;
    line-height: 40px;
}

.main-section-poject-name h2 {
    font-size: 1.6rem;
    line-height: 30px;
}

.main-section-poject-name h3 {
    font-size: 1.3rem;
}

.main-section-poject-name-text p {
    font-size: 1.6rem;
    line-height: 22px;
}

.logo-img {
    width: 100%;
}

.overview {
    width: 90%;
    margin-top: 80px;
}

.overview p {
    columns: 1;
    font-size: 1.6rem;
}
/* retail installation */
.station1, .station2 {
  flex-direction: column;
}

.st1-video, .st2-video {
  
  width: 100%;
}
.st1-text, .st2-text {
  width: 100%;
}

 
/* end retail installation */

.diff_imgs {
    width: 90%;
}

.imgbox {
    height: auto;
}

.objective-challenges {
    flex-direction: column;
    gap: 3rem;
    width: 90%;
}


.objective,
.challenges {
    width: 100%;
}
.teamleadrole{
  text-align: justify;
}
.theProcess {
    width: 90%;
    text-align: justify;
    /* padding: 10px; */
}
.theProcess p {
  font-size: 1.6rem;
}
.bottom {
  flex-direction: column;
  height: auto;
  gap: 20px;
}

.bottom-left, .bottom-middle, .bottom-right {
  width: 100%;
  height: auto;
}

.bottom-left img,
.bottom-middle img,
.bottom-right img {
  width: 100%;
  height: auto;
}


.deliverables {
    width: 90%;
}

.deliverables-img {
    flex-direction: column;
    width: 90%;
    gap: 2rem;
}

.box {
    width: 100%;
}
/* next project */
/* Next Project Link Styles */
.next-project-section { 
  padding: 0 10px;
}
}
