@import url('https://fonts.googleapis.com/css2?family=Poppins');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
}
:root{
    --blue-accent: #18d8ff;
    --darkpurple: #5b3fa1f4; 
    --lightpurple: #875df09d;
    --extralightpurple: #bfa6f9eb;
    --white-accent: #ffffff;
    --offwhite: #f8fbfe;
    --grey-accent: #5a5858; 
}
body{
  background: var(--offwhite);
}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
} 
/* ---------- Header section ---------- */
.header{
  background-color: var(--lightpurple);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem; 
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0px;
    z-index: 50;
    backdrop-filter: blur(.5rem);
}
.logo img{
    height: 3rem;
    padding-top: 4px;
    padding-left: 1rem;
}
.logo a{
    text-decoration: none;
}
#trade-Mark-Span{
    color: #000000;
    font-size: 1rem;
    margin-left: -1rem;
    text-decoration: none;
}

.navigation-Items ul{
    height: 10vh;
    width: 70vw; 
    margin-right: 5rem;
    min-width: 600px;
    display: inline-flex; 
    align-items: center; 
    justify-content: flex-end;
    
}
.navigation-Items ul li{
    position: relative;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 0 1.1rem;
    transition: all .3s ease 0s;
}
.navigation-Items a{
    color: var(--offwhite); 
    flex: 2;
    text-decoration: none;
    &:hover{
        color: var(--white-accent);
    } 
    text-transform: uppercase;  
}
nav .active{
    background-color: #8060d1f4;
    box-shadow: .5rem .5rem .5rem #efe90d;
    margin: 0rem -1rem;
    padding: 0.6rem 1.2rem;
    position: relative;
    border-radius: 0.8rem;
    transition: all .3s ease 0s;
}
nav .active:hover{
    background-color: var(--darkpurple);
    box-shadow: .5rem .5rem .5rem #fcf289;
    font-weight: 600;
}
nav .menu-Options:hover{
    background: var(--darkpurple);
    box-shadow: .5rem .5rem .5rem #fcf289;
    font-weight: 600;
    margin: 0rem -1rem;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: 0.8rem;
    transition: .3s all ease;
}
nav .menu-Options a:active{
    background: var(--darkpurple);
    box-shadow: .5rem .5rem .5rem #fcf289;
    border-radius: 0.8rem;
    color: red;
    transition: .3s all ease;
}
.header ul li ul{
    display: block;
    position:absolute;
    background-color: var(--darkpurple);
}
.banner-BTN{
  display: none;
}
/* ---------- H1 header ---------- */
h1{
  font-size: 4rem;
  font-style: italic;
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.main{
  display: flex;
  justify-content: center;
  align-items:center;
  margin-top: 1rem;
  padding: 2rem;
}
/* ---------- Display/Hide Menu Options ---------- */
.menu-Icon{
    cursor: pointer;
    display: none;
    position: fixed;
    top: .8rem;
    right: 2rem;
    width: 2rem;
    z-index: 100;
}
.mediaQuery-Menu{
    background: #583c9e80;
    backdrop-filter: Blur(.3rem);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem; 
    display: none;
    height: 100vh;
    line-height: 4rem;
    top: 3.4rem;
    right: -200px;
    padding: 1rem;
    position: fixed;
    width: 155px;
    transition: .8s ease;
}
.mediaQuery-Menu ul{
    list-style: none;
}
.mediaQuery-Menu a{
    color: var(--white-accent);
    font-size: 1.2rem;
    line-height: 4rem;
    text-transform: uppercase;
}
/* ---------- Carousel section ---------- */
.carousel{
  height: 400px;
  width: 900px;
  border-radius: 1rem;
  overflow: hidden;
}
.slides{
  display: flex;
  height: 500px;
  width: 500%;
}
.slides input{
  display: none;
}
.slide{
  width: 20%;
  transition: 2s;
}
.slides video{
  height: 400px;
  width: 900px;
}
.navigation-manual{
  position: absolute;
  margin-top: 360px;
  width: 900px;
  display: flex;
  justify-content: center;
}
.manual-Btn{
  border: 2px solid var(--lightpurple);
  border-radius: 10px;
  cursor: pointer;
  padding: 5px;
  transition: 1s;
}
.manual-Btn:not(:last-child){
  margin-right: 40px;
}
.manual-Btn:hover{
  background: var(--lightpurple);
}
#radio1:checked ~ .first{
  margin-left: 0;
}
#radio2:checked ~ .first{
  margin-left: -20%;
}
#radio3:checked ~ .first{
  margin-left: -40%;
}
#radio4:checked ~ .first{
  margin-left: -60%;
}
#radio5:checked ~ .first{
  margin-left: -80%;
}
#radio6:checked ~ .first{
  margin-left: -100%;
}
#radio7:checked ~ .first{
  margin-left: -120%;
}
.navigation-auto{
  position: absolute;
  display:flex;
  justify-content: center;
  margin-top: 360px;
  width: 900px;
}
.navigation-auto div{
  border: 2px solid var(--lightpurple);
  border-radius: 10px;
  padding: 5px;
  transition: 1s;
}
.navigation-auto div:not(:last-child){
  margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-Btn1{
  background: var(--lightpurple);
}
#radio2:checked ~ .navigation-auto .auto-Btn2{
  background: var(--lightpurple);
}
#radio3:checked ~ .navigation-auto .auto-Btn3{
  background: var(--lightpurple);
}
#radio4:checked ~ .navigation-auto .auto-Btn4{
  background: var(--lightpurple);
}
#radio5:checked ~ .navigation-auto .auto-Btn5{
  background: var(--lightpurple);
}
#radio6:checked ~ .navigation-auto .auto-Btn6{
  background: var(--lightpurple);
}
#radio7:checked ~ .navigation-auto .auto-Btn7{
  background: var(--lightpurple);
}
/* ---------- Container Video section ---------- */
.video-Container{
  text-align: center;
}
video{
  width: 90%;
  height: auto;
  border-radius: 2rem;
  margin: 0 auto; 
}
/* ---------- Services section ---------- */
.services{
  margin: auto;
  margin-top: 10rem;
  padding: 6rem 0rem 2rem 0rem; 
  text-align: center;
  width: 90%;
}
.service-Grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
  justify-content: center;
}
.service-Article{
  background: var(--lightpurple);
  border-radius: .8rem;
  color: #d9d9d9;
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 3%;
  padding: 7%;
  text-align: center;
  transition: .5s ease;
  &:hover{
    box-shadow: -1rem 1.4rem 1rem #5d38bc;
    cursor: pointer;
    transform: scale(1.2);
    translate: 20px -35px;
  } 
}
#project-Management{
  visibility: hidden;
}
p{
  text-align: center;
}
section a{
  color: var(--offwhite);
  cursor: pointer;
}
section a:hover{
  color: #000;
}
/* ---------- Footer ---------- */
footer {
    text-align: center;
    background-image: linear-gradient(to right bottom, #414141, #474747, #4c4c4c, #525252, #585858, #5e5e5f, #656565, #6b6b6c, #737475, #7c7d7d, #858686, #8e8f8f);
    border-top-left-radius: 6rem;
    color: var(--offwhite);
    font-size: 1rem;
    padding-top: 6rem;
    bottom: 0;
    z-index: 50;
}
.footer-Row{
    display: flex;
    align-items: start;
    justify-content: space-evenly;
}
.footer-Row h3{
    color: var(--extralightpurple);
    font-size: 1.2rem;
    font-weight: 500;
}
.column-One{
    flex-basis: 20%;
    text-align: left;
}
.column-One img{
    width: 6rem;
}
.column-One p{
  text-align: left;
}
.column-Two{
    flex-basis: 20%;
    text-align: left;
    padding-left: 4rem;
}
.column-Two ul{
    line-height: 1.5rem;
    list-style: none;
    text-align: left;
}
.column-Three{
    flex-basis: 20%;
    text-align: left;
}
.column-Three ul{
    line-height: 1.5rem;
    list-style: none;
    text-align: left;
}
.column-Four{
    flex-basis: 20%;
    text-align: left;
}
.column-Four p{
    line-height: 1.5rem;
    list-style: none;
    text-align: left;
}
.social-Media{
    margin-top: 1rem;
}
footer hr{
  background: var(--extralightpurple);
  border: none;
  border-radius: 3px;
  height: 3px;
  margin: auto;
  width: 95%;
}
footer a{
    color: var(--white-accent);
    transition: all 0.4s ease;
}
footer a:hover{
    color: #9d00e0;
}
/*---------- Media query ----------*/
@media(min-width: 2559px){
  .logo img{
    margin-top: 1rem;
    margin-right: -1.2rem;
    margin-left: 2rem;
    width: 6.5rem;
  }
  h1{
    font-size: 8rem;
    font-style: italic;
    margin-top: .2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .carousel{
    height: 1000px;
    width: 1500px;
  }
  .slides{
    height: 1100px;
  }
  .slides video{
    height: 1000px;
    width: 1500px;
  }
  .navigation-auto, .navigation-manual{
    margin-top: 850px;
    width: 1300px;
  }
  .manual-Btn, .navigation-auto div{
    border-radius: 15px;
    padding: 15px;
    font-size: 2rem;
  }
  .manual-Btn:not(:last-child){
    margin-right: 80px;
  } 
  .navigation-auto div:not(:last-child){
    margin-right: 80px;
  } 
  .service-Grid{
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
  }
  .service-Article{
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .service-Article h2{
    font-size: 2.7rem;
    font-weight: 700;
  } 
  #project-Management{
    display: none;
  }

  footer {
      font-size: 2rem;
      padding-top: 6rem;
  }
  .footer-Row h3{
      font-size: 2rem;
      font-weight: 500;
  }
  .column-One img{
      width: 12rem;
  }
  .column-Two{
      padding-left: 6rem;
  }
  .column-Two ul{
      line-height: 2.5rem;
  }
  .column-Three ul{
      line-height: 2.5rem;
  }
  .column-Four p{
      line-height: 2.5rem;
  }
  .social-Media{
      margin-top: 2rem;
  }
  footer hr{
  border-radius: 3px;
  height: 5px;
  }
  footer a:hover{
      font-size: 1.5rem;
  }
}
@media(max-width: 960px){
  .header ul{
    display: none;
  }
  .menu-Icon{
    display: block;
  }
  .mediaQuery-Menu{
    display: block;
    z-index: 50;
  }
  .mediaQuery-Menu ul li a:hover{
    background: var(--darkpurple);
    border-radius: 1rem;
    color: var(--white-accent);
    font-size: 1.2rem;
    padding: .5rem .8rem;
    transition: all .4s ease;
  }
  .mediaQuery-Menu img{
    cursor: pointer;
    width: 2rem;
  }
}
@media(max-width: 810.4px){
  #project-Management{
    display:none;
  }
  .service-Article:hover{
    transform: scale(1.1);
    translate: 10px -25px;
  }
}
@media(max-width: 60rem){
  .manual-Btn, .navigation-auto div{
    width: 1000px;
  }
  .footer-Row{
    padding: 0 2rem;
    line-height: 1rem;
  }
  .column-One, .column-Three, .column-Four{
    padding-bottom: 2rem;
    }
  .column-Two{
    flex-basis: 20%;
    text-align: left;
    padding-left: 0rem;
    padding-bottom: 2rem;
  }
}
@media(max-width: 48rem){
  h1{
    font-size: 3rem;
  }
  .carousel{
    height: 575px;
    width: 768px;
  }
  .slides{
    height: 575px;
  }
  .slides video{
    height: 575px;
    width: 705px;
  }
  .navigation-auto, .navigation-manual{
    margin-top: 480px;
    width: 500px;
  }
  .manual-Btn, .navigation-auto div{
    border-radius: .3rem;
    padding: .3rem;
    font-size: .3rem;
  }
  .manual-Btn:not(:last-child){
    margin-right: 85px;
  } 
  .navigation-auto div:not(:last-child){
    margin-right: 85px;
  } 
}

@media(max-width: 767px){
  .navigation-auto, .navigation-manual{
    display: none;
  }
  .manual-Btn, .navigation-auto div{
    display: none;
  }
  .manual-Btn:not(:last-child){
    display: none;
  } 
  .navigation-auto div:not(:last-child){
    display: none;
  } 
  .services{
    margin-top: -10rem;
  }
  .footer-Row{
    display: block;
    line-height: 1rem;
    margin: 0 auto;
  }
  .column-Three, .column-Four{
    padding-left: 0;
  }
}
@media(max-width: 426px){
  .carousel{
    height: 250px;
    width: 325px;
  }
  .slides{
    height: 250px;
  }
  .slides video{
    height: 250px;
    width: 325px;
  }
}
@media(max-width: 321px){
  h1{
    font-size: 2.5rem;
  }
  .carousel{
    height: 175px;
    width: 250px;
  }
  .slides{
    height: 175px;
  }
  .slides video{
    height: 175px;
    width: 250px;
  }
  .service-Grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    justify-content: center;
  }
  .service-Article{
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .service-Article h2{
    font-size: 1.3rem;
  }
}