@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'BankGothic', 'Poppins', sans-serif;
  font-size: 1.5rem;
  background-color: #535353;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* --- Loader --- */

#loader_container{
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

@keyframes bounceLoader {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
}

.loader_logo {
  width: 100px;
  animation: bounceLoader 1.5s infinite ease-in-out;
}

/* --- Header & Navigation ---*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
  border-bottom: 3px solid black;
}

.nav {
  position: relative;
  height: 6rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*.nav_logo {
  color: white;
  font-weight: 400;
}*/

.nav_close, 
.nav_toggle {
  display: flex;
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Responsive for mobile --- */
@media screen and (max-width: 1150px) {
  .nav_menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #ff7f26;
    width: 70%;
    height: 80%;
    padding: 5rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav_item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav_item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav_item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav_item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav_item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav_item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav_list, 
.nav_social {
  display: flex;
}

.nav_list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav_link {
  position: relative;
  color: black;
  font-size: 1.2rem !important;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav_link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav_link span {
  position: relative;
  transition: margin .4s;
}

.nav_link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width .4s ease-out;
}

.nav_link:hover span {
  margin-left: 2.5rem;
}

.nav_link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav_link:hover span::after {
  width: 100%;
}

.nav_list:has(.nav_link:hover) .nav_link:not(:hover) {
  opacity: .4;
}

.nav_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav_social {
  column-gap: 1rem;
}

.nav_social_link {
  color: black;
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav_social_link:hover {
  transform: translateY(-.25rem);
}

.show-menu {
  left: 0;
}

.show-menu .nav_item {
  visibility: visible;
  transform: translateX(0);
}

/* --- Responsive for large device --- */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: 4.8rem;
  }

  .nav_toggle, 
  .nav_close {
    display: none;
  }

  .nav_link {
    font-size: 1rem;
  }

  .nav_link i {
    font-size: 1.5rem;
  }

  .nav_list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav_menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}

/* --- Home Page --- */

.home{
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home_content{
    text-align: center;
}

.home_subtitle{
  font-size: 32px;
  color: white;
  font-weight: 400;
  margin-bottom: -15px;
  margin-left: 20px;
  text-align: left;
}

.home_content h1{
    font-size: 175px;
    color: #ff7f26;
    font-weight: 600;
    transition: 0.5s;
}

.home_content h1:hover{
    -webkit-text-stroke: 2px #ff7f26;
    color: transparent;
}

.home_tagline{
  font-size: 36px;
  color: white;
  font-weight: 300;
  margin-top: -10px;
  letter-spacing: 20px;
  text-align: center;
}

.home_video{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(5px);
}

/* --- Home Page Responsive --- */

@media (max-width: 768px) {
    .home {
        padding: 0;
    }

    .home_video {
        height: 100vh;
        width: auto;
        min-width: 100%;
        min-height: 100%;
    }

    .home_content h1 {
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    .home_content h1 {
        font-size: 60px;
    }
}

/* --- About Page ---*/

.about{
    padding: 5rem 5%;
    background-color: #1a1f3b;
    color: white;
}

.about_data{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.about_image{
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.abt_img{
    /*width: 100%;*/
    max-width: 550px;
    border-radius: 8px;
    transition: transform 0.4s;
}

.about_image:hover .abt_img {
    transform: scale(1.1);
}

.about_text{
    flex: 1;
    text-align: left;
}

.about_title{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about_title span{
    color: #ff7f26;
}

.about_description{
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* --- About Us Responsive --- */

@media (max-width: 768px) {
    .about_data {
        flex-direction: column;
        text-align: center;
    }

    .about_image {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .abt_img{
        width: 400px;
    }

    .about_text {
        text-align: center;
    }

    .about_title {
        font-size: 2.5rem;
    }
}

/* --- Service Page --- */

.services{
  padding: 5rem 5%;
  background-image: url(../Assets/About-6.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

#service_section{
  min-height: 740px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#service_section h2{
  color: #ff7f26;
  font-size: 5rem;
  margin-bottom: 20px;
  position: relative;
}

#service_section #paragraph{
  width: 45%;
  font-size: 1.2rem;
  color: white;
  text-align: center;
  line-height: 1.5rem;
  white-space: 1px;
  margin-bottom: 40px;
}

.service_cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  z-index: 9;
  margin-top: 20px;
}

.service_cards .service_card{
  height: 280px;
  width: 380px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0 8%;
  background: white;
  position: relative; 
}

.service_cards .service_card::before{
  position: absolute;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: #ff7f26;
  transform: rotate(0deg);
  z-index: -1;
  transition: transform .5s ease;
}

.service_cards .service_card:hover.service_card::before{
  transform: rotate(10deg);
}

.service_cards .service_card i{
  font-size: 2.5rem;
  color: #ff7f26;
  margin-top: 40px;
  margin-bottom: 10px;
}

.service_cards .service_card h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #535353;
}

.service_cards .service_card .service_content p{
  font-size: 1rem;
  margin-bottom: 20px;
}

/* --- Service Page Responsive --- */

@media screen and (max-width: 1200px) {
  .services {
      padding: 3rem 5%;
      background-size: cover;
  }

  #service_section h2 {
      font-size: 2.8rem;
  }

  #service_section #paragraph {
      width: 80%;
      font-size: 1rem;
  }

  .service_cards {
      grid-template-columns: repeat(2, 1fr);
      grid-gap : 50px;
  }
}

@media screen and (max-width: 768px) {
  .services {
      padding: 3rem 5%;
  }

  #service_section h2 {
      font-size: 2.5rem;
  }

  #service_section #paragraph {
      width: 90%;
  }

  .service_cards {
      grid-template-columns: 1fr;
  }
}

/* --- Why Choose Us Section --- */

.choose{
  padding: 5rem 5%;
}

.choose_data{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.choose_image{
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.choose_img{
  max-height: 650px;
  border-radius: 8px;
  transition: transform 0.4s;
}

.choose_image:hover .choose_img {
  transform: scale(1.1);
}

.choose_text{
  flex: 1;
  text-align: left;
}

.choose_title{
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.choose_title span{
  color: #ff7f26;
}

.choose_description{
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  color: white;
}

.choose_special{
  line-height: 3rem;
}

.choose_special h3{
  color: white;
  font-size: 1.2rem;
  font-weight: 200;
}

/* --- About Us Responsive --- */

@media (max-width: 768px) {
  .choose_data {
      flex-direction: column;
      text-align: center;
  }

  .choose_image {
      justify-content: center;
      margin-bottom: 2rem;
  }

  .choose_img{
      width: 400px;
  }

  .choose_text {
      text-align: center;
  }

  .choose_title {
      font-size: 2.5rem;
  }
}

/* --- Industries We Serve Section --- */

.industries {
  text-align: center;
  padding: 20px;
  background-color: #1a1f3b;
  color: antiquewhite;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll_wrapper{
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.scroll_content {
  display: flex;
  min-width: 200%;
  animation: scrollEffect 20s linear infinite;
}
.scroll_content img {
  width: 200px;
  height: 200px;
  margin: 0 10px;
}

@keyframes scrollEffect {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-50%);
  }
}

.scroll_wrapper:hover .scroll_content {
  animation-play-state: paused;
}

/* --- FAQ's Section --- */

.faq{
  padding: 1rem 5%;
  background-image: url(../Assets/About-7.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.faq h2{
  text-align: center;
  color: #ff7f26;
}

.faq_container{
  margin-top: 20px;
}

.faq_items{
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  border-bottom: 3px solid #ff7f26;
}

.faq_question{
  font-size: 25px;
  font-weight: bold;
  color: #535353;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease-in-out;
}

.faq_question.active{
  color: #ff7f26;
}

.faq_answer{
  display: none;
  font-size: 20px;
  color: #535353;
  padding-top: 10px;
}

.faq_items:hover .faq_question, .faq_items:hover .faq_icon{
  color: #ff7f26;
}

.faq-question.active, .faq-question.active .toggle-icon {
  color: #ff7f26;
}

/* --- Footer Section --- */

footer{
  color: white;
  text-align: center;
  padding: 20px;
  background-color: black;
}

footer strong{
  color: #ff7f26;
}

.media{
  margin-bottom: 10px;
}

.media .icon{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.icon i {
  color: black;
  transition: color 0.3s;
}

.icon.youtube:hover i {color: #ff0000;}
.icon.instagram:hover i {color: #e1306c;}
.icon.linkedin:hover i {color: #0077b5;}
.icon.mail:hover i {color: #d44638;}

.cont{
  color: white;
  transition: 0.3s;
}

.cont:hover{
  color: #ff7f26;
  text-decoration: underline;
}

.footer_bottom {
  background-color: #ff7f26;
  text-align: center;
}