/* ///////////////////////////////////////////////////////////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////////////////////////// */

/* Remove background from body */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #000; /* default text color */
  background-color: #fff; /* default light bg */
}

/* Only black background for hero section */
.hero-section {
  background-color: #000;
}

/* Optional: text and image styling */
.hero-title {
  color: #ff8210;
  font-weight: 700;
}

.hero-img {
  border-radius: 8px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-top: 5rem;
}



/* /////////////////////////////table of content///////////////////// */

.toc-wrapper {
  position: sticky;
  top: 100px;
  border-radius: 8px;
  color: #000000;
  font-family: 'Segoe UI', sans-serif;
  max-width: 300px;
  max-height: 16rem;
}

.toc-items li {
 color: #FF8210;
  font-weight: 500;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
}


/* /////////////////////////blog content///////////////////// */

 .blog-section img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 1rem;
      object-fit: cover;
 
    }

    
.core-services-list li {
  margin-bottom: 1.2rem;
  padding-left: 1.2rem;
  position: relative;
}

.core-services-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}



/* //////////////////////////////////////////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;
}
  }
