body {
      font-family: 'Times New Roman', Times, serif;
      background-color: #fff;
      color: #333;
    }
    .navbar {
      background-color: #ff6600;
    }
    .navbar-brand, .nav-link {
      color: #fff !important;
      font-weight: 500;
      
    }

.navbar {
  background-color: #ff6600;
  position: sticky;
  top: 0;
  z-index: 1020; 
}

.logo {
  height: 40px;  
  width: auto;   
  border-radius: 8px; 
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1); 
}

    /* .hero {
      background: linear-gradient(to right, #ff6600, #000);
      color: #fff;
      padding: 100px 0;
      text-align: center;
    } */
  .hero img {
      max-width: 300px;
      margin-top: 30px;
    }
  .hero {
  background: url("/IMAGES/social\ mesh\ hero\ image.jpg") no-repeat center center/cover;
  color: #fff;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

    .cta-btn {
      margin: 10px;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s;
    }
    .cta-btn:hover {
      transform: scale(1.05);
    }
    .section-title {
      color: #ff6600;
      margin-bottom: 30px;
      font-weight: 600;
      font-size: 30px;
    }
    .services {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .about, .faq {
      padding: 40px 0;
    }
    .footer {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 30px 0;
    }
    .footer a {
      color: #ff6600;
      text-decoration: none;
    }