/* ///////////////////////////////////////////////////////////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;
}


        /* //////////////////////////title/////////////////////// */

/* Base Styles */
.insights-section {
  background: #000000; /* light pink */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insights-container {
  background: #FF7A00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 1000px;
  width: 100%;
  height: 289px;
  transition: all 0.3s ease-in-out;
margin-top: 30px;  

display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.insights-container h2 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .insights-container {
    padding: 50px 30px;
  }

  .insights-container h2 {
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .insights-container {
    padding: 40px 20px;
  }

  .insights-container h2 {
    font-size: 1.5rem;
  }
}



/* /////////////////////////////////////////////////////////////////////////////////card////////////////////////////////////////// */
section.container {
  background-color: #fff;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid #FF8210; /* orange border */
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: none;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .p-3 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.read-more-link {
  margin-top: auto;
  display: inline-block;
  color: #FF8210;
  font-weight: 600;
  text-decoration: none;
}

.read-more-link {
  color: #007BFF;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.read-more-link:hover {
  text-decoration:none;
}


        /* /////////////////////////////////////////////////////footer////////////////////////// */

        .footer-section {
            background-color: #000;
            color: #fff;
        }

        .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 {
            display: flex;
            justify-content: flex-end;
        }

        .social-icons a i {
            transition: color 0.3s ease;
        }

        .social-icons a:hover i {
            color: #ff8210 !important;
        }

        @media (max-width: 764px) {
            .social-icons {
                justify-content: center;
            }
        }
   