 /* ///////////////////////////////////////////////////////////navbar////////////////////////////////// */
#lezgoNavbar {
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

#lezgoNavbar.scrolled {
  background-color: rgb(0, 0, 0);
  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;
}


/* ////////////////////////////////////////////////////////hero section/////////////////////// */

:root {
  --orange: #ff8210;
}

.text-orange {
  color: var(--orange);
}

.service-hero-section {
  background-color: #000;
}

.custom-banner {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-text h2 {
  font-size: 4rem;
  line-height: 1.2;
}

.hero-text h5 {
  font-size: 1.25rem;
}



/* Large screen: side-by-side layout */
@media (min-width: 992px) {
  .custom-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

}
/* Smaller screens: stacked layout */
@media (max-width: 991.98px) {
  .hero-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-text h5 {
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }
}



/* /////////////////////////////////////////////////////////////// branding section/////////////////////////////////// */


   .branding-section {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .section-title {
    color: var(--orange);
  }

  .branding-section {
    background-color: #000;
    padding: 7px ;
    position: relative;
  }

  .staggered-text p {
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--orange);
    text-align: left;
    max-width: 320px;
  }

  .branding-curve img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .btn-orange {
    background-color: var(--orange);
    border: none;
    color: #fff;
  }

  @media (max-width: 768px) {
    .staggered-text p {
      text-align: center;
      max-width: 100%;
    }
    .carousel-controls {
      position: static;
      justify-content: center;
      margin-top: 1rem;
    }
  }




/* //////////////////////////////////////////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;
}
  }

  