html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

.navbar-brand{
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color:rgb(33, 33, 33)
}
/* Hero Section Styles */
.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Optional dark overlay for better text visibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Text Styling */
.hero-content {
  z-index: 1;
  padding: 20px;
}
.mainText{
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 4px 3px 0px #050505, 0px 0px 20px #000000;
}

.About-us {
  background-color: #4c5b90;
  color: #fff;
  height: 20rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center; 
  text-align: center;
  align-items: center;
  flex-direction: column;
  /* font-size: large; */
}
.About-us h2{
    font-size: 3.2rem;
    font-weight: 600;
}
.About-us p{
    /* font-size: 1.2rem; */
    font-weight: 300;
}
.services{
     background: url('images/circuit-bg.jpg') no-repeat center center/cover;
      color: #000;
}
 .service-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      background: #fff;
      text-align: center;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-card img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      height: 160px;
      object-fit: cover;
    }
    .service-card h5 {
      font-weight: bold;
      margin-top: 10px;
    }
    .read-more {
      color: #0066cc;
      font-weight: 500;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }


.clients-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Background Image Layer */
.clients-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: url('images/clients-bg.png') center center / cover no-repeat fixed; /* ✅ true parallax here */
  overflow: hidden;
}

/* Dark Overlay */
.clients-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Text Layer */
.clients-section .container {
  position: relative;
  z-index: 2;
}



.footer {
  background-color: #000;          /* Black background */
  color: #fff;                     /* White text */
  font-size: 14px;
  text-align: center;
  padding: 15px 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer p {
  margin: 0;
  letter-spacing: 0.3px;
}

.footer span {
  color: #00bfff;                  /* Light blue accent (optional) */
  font-weight: 500;
}





.contact-section {
  background-color: #4c5b90;
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding: 60px 0;
}

.contact-heading {
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p,
.contact-address p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info i,
.contact-address i {
  color: #fff;
  background-color: #1a3c71;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 18px;
}

.contact-social a {
  color: #fff;
  background-color: #1a3c71;
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.contact-social a:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-section {
    text-align: center;
  }
  .contact-info i,
  .contact-social a {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .About-us h2{
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 20px;
}
 .service-card img {
        height: 140px;
      }
 .clients-section {
    background-attachment: scroll !important;
    background-position: center;
    background-size: cover;
    min-height: 50vh;
  }
  .clients-section p.lead {
    font-size: 1rem;
    padding: 0 15px;
  }
}

