/* banner */

html {
  scroll-behavior: smooth;
}


body, html {
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

/* Hero Content */
.hero-content {
  margin-left: 80px;
}

/* Navbar */
#lezgoNavbar {
  background-color: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

#lezgoNavbar.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

/* Link Hover */
.nav-link:hover {
  color: #ff7a00 !important;
}

/* Brand Color */
.text-orange {
  color: #ff7a00;
}

/* Hero Subtext */
.hero-subtext {
  max-width: 700px;
  color: #ffffff;
}

/* Buttons */
.contact-btn {
  background-color: #FF8210;
}

.start-btn {
  background-color: #FF8210;
  color: #fff;
  font-size: medium;
}

@media (max-width:500px) {

.hero-content {
padding-top: 50px;
padding-bottom: 50px;
margin-left: 2px;
}

.text-orange {
  font-size: 24px;
}

.hero-subtext {
  font-size: 16px;
}

.start-btn{
  height: 40px;
  width:90%;
  font-size: 14px;
  font-weight: 300;
  
}

}



      /* who we are */

/* Dark Theme for Body */
.dark-theme {
  background-color: #000;
  color: #fff;
}

/* Orange Text */
.text-orange {
  color: #ff7a00;
}

/* Rounded Custom (not yet used) */
.rounded-custom {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 2.5rem;
  border-bottom-left-radius: 0.5rem;
  border-top-left-radius: 2.5rem;
}

/* Image Styling */
.who-img {
  max-width: 100%;
  height: auto;
}

/* Dotted Element */
.dots-img {
  width: 320px;
}


     /* experience */

 /* Theme */
.dark-theme {
  background-color: #000;
  color: #fff;
}

.image_style{
  border-radius: 8px;
}

/* Utility */
.text-orange {
  color: #FF8210;
}

        .swiper {
            width: 100%;
            padding-bottom: 60px;
        }

        .swiper-slide {
            display: flex;
          
        }

        .work-card {
            background-color: #1a1a1a;
            border-radius: 1rem;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 320px;
            min-height: 200px;
        }

        .work-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 130, 16, 0.3);
        }

        .work-card img {
            max-width: 60px;
            margin-bottom: 15px;
        }

        .text-orange {
            color: #ff8210;
        }

        .text-white-50 {
            color: rgba(255, 255, 255, 0.6);
        }

        .swiper-button-next{
          margin-right: -0.7rem ;

        }

        .swiper-button-prev{
           margin-left: -0.7rem ;
        }
        /* Swiper nav arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: #f8f4f4 !important;
            
        }



/* Responsive Typography */
@media (max-width: 767.98px) {

  #lezgoNavbar{
     background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }

  h1, h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
  }

  /* Hero Content */
.hero-content {
  margin-top: 100px;
}
.swiper-wrapper{
  display: flex;  
}

 .swiper-slide{
    padding-left: 80px;

 }

} 


/* /////////////////////////////////////////////////////////////////////////////////////////////// */

   /* what we do */

/* Section spacing */
.what-we-do {
  background-color: #000;
}

/* Section heading */
.what-we-do .text-orange {
  color: #FF8210;
}

/* Service cards */
.service-card {
  background-color: #2a2a2a;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 130, 16, 0.3);
}

/* Images inside cards */
.service-card img {
  max-height: 160px;
  object-fit: contain;
  margin-top: auto;
}

/* Responsive typography tweak */
@media (max-width: 767.98px) {
  .what-we-do h2 {
    font-size: 1.8rem;
  }
  .service-card h5 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}


/*why choose us  */

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  position: relative;
}

.why-us-section {
  margin-top: 100px;
}

.staggered-list li {
  position: relative;
  padding-left: 24px;
}

.staggered-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  color: #ffffff;
}

/* Staggering effect with nth-child */
.staggered-list li:nth-child(1) {
  margin-left: -90px;
  margin-top: 0;
}
.staggered-list li:nth-child(2) {
  margin-left: 0;
  margin-top: 40px;
}
.staggered-list li:nth-child(3) {
  margin-left: 60px;
  margin-top: 40px;
}
.staggered-list li:nth-child(4) {
  margin-left: 0;
  margin-top: 40px;
}
.staggered-list li:nth-child(5) {
  margin-left: -90px;
  margin-top: 40px;
}

.staggered-list h5 {
  font-weight: 700;
}

.staggered-list p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .staggered-list li {
    margin-left: 0 ;
    margin-top: 0 ;
  

  }

  /* .staggered-list {
    padding-left: 0px;
    
  } */

  .question-image{
    opacity: 0.2 ;
 
}
 .why_choose_us_content{
  margin-top: -130%;
  margin-left: 1rem;
      padding-right: 2rem ;

 }

 .staggered-list li:nth-child(5) {
  margin-left: 0px;
  margin-top: 60px;
 
}

.staggered-list li:nth-child(1) {
  margin-left: 0px;
  margin-top: 60px;
  
}

.staggered-list li:nth-child(2) {
  margin-top: 60px;
}

.staggered-list li:nth-child(3) {
  margin-left: 0px;
  margin-top: 60px;
  
}

.staggered-list li:nth-child(4) {
  margin-top: 60px;
}

  }


  @media (max-width: 500px) {
  .staggered-list li {
    margin-left: 0 ;
    margin-top: 0 ;

  }

  
 .why_choose_us_content{
  margin-top: -150%;
  margin-left: 1rem;
      padding-right: 2rem ;

 }


  }

   @media (max-width: 420px) {
  .staggered-list li {
    margin-left: 0 ;
    margin-top: 0 ;

  }

  
 .why_choose_us_content{
  margin-top: -180%;
  margin-left: 1rem;
      padding-right: 2rem ;

 }


  }

     @media (max-width: 320px) {
  .staggered-list li {
    margin-left: 0 ;
    margin-top: 0 ;

  }

  
 .why_choose_us_content{
  margin-top: -250%;
  margin-left: 1rem;
      padding-right: 2rem ;

 }


  }

   @media (max-width: 1280px) {
  .staggered-list li {
    margin-left: 0 ;
    margin-top: 0 ;

  }

   .question-image{
    opacity: 0.4 ;
 
}

}

/* contact us */

body {
  background-color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #fff;
}

.contact-section {
  background-color: #000;
}

.text-orange {
  color: #FF8210;
}

.contact-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  color: #fff;
}

.contact-input::placeholder {
  color: #888;
}

.contact-input:focus {
  box-shadow: none;
  border-color: #FF8210;
  background: transparent;
  color: #fff;
}

.form-label {
  color: #ccc;
  font-size: 0.9rem;
}

.btn-orange {
  background-color: #FF8210;
  color: white;
  border: none;
}

.btn-orange:hover {
  background-color: #e57300;
}


/* footer */


.contact-info i {
  margin-right: 6px;
  color: #ff8210;
}



body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Footer Section */
.footer-section {
  background-color: #000;
}

.footer-logo {
  max-width: 160px;
}

.logo-text {
  color: #5f1d0d;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 14px;
}

.contact-info p {
  margin: 0;
  font-size: 14px;
}

.social-icons a i {
  transition: color 0.3s ease;
}

.social-icons{
  display: flex;
  justify-content: flex-end;
}

.social-icons a:hover i {
  color: #ff8210 !important;
}


@media (max-width: 500px) {
  .social-icons{
  display: flex;
  justify-content: center;
}
  }

  @media (max-width: 400px) {
  .social-icons{
  display: flex;
  justify-content: center;
}
  }

  @media (max-width: 600px) {
  .social-icons{
  display: flex;
  justify-content: center;
}
  }

  @media (max-width: 700px) {
  .social-icons{
  display: flex;
  justify-content: center;
}
  }

  @media (max-width: 764px) {
  .social-icons{
  display: flex;
  justify-content: center;
}
  }

  


  
  