.text-red-color {
  color: red;
}

.bg-red-color {
  background-color: red;
}
.red-strip{
  background-color: black;
  color: #fff;
}

.nav-active{
  background-color: red;
}

.nav-active a{
  color: white;
}
.navbar {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-style: Arial, sans-serif;;
}

.box-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
 /* ---------- HERO SECTION ---------- */
    .hero {
      position: relative;
      background: url('../images/service-renovation-img-1.png') top center/cover no-repeat;
      color: #fff;
      text-align: center;
      height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    /* .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: auto;
      padding: 1rem;
    }

    .hero h1 {
      font-size: 2rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1rem;
      margin: 15px 0 25px;
    }

    .hero .btn {
      background-color: #fbbf24;
      border: none;
      padding: 10px 25px;
      font-weight: 600;
      border-radius: 25px;
    } */

    /* ---------- SERVICES SECTION ---------- */
    .services {
      background: #fff;
      margin-top: -50px;
      position: relative;
      z-index: 2;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      padding: 0.8rem 3rem;
      /* text-align: center; */
    }

    .services h1 {
      font-size: 4rem;
    }

    /* ---------- QUALITY SECTION ---------- */
    .quality-section {
      position: relative;
      background: url('../images/building-img-7.jpg') no-repeat center center/cover;
      height: 450px;
      display: flex;
      align-items: center;
    }

    .quality-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.3);
    }

    .quality-content {
      position: relative;
      background: #fff;
      padding: 1.5rem;
      max-width: 500px;
      z-index: 2;
    }

    /* Push card to right on large screens */
    @media (min-width: 992px) {
      .quality-content {
        margin-left: auto;
        margin-right: 5%;
      }
    }

    /* Mobile Adjustments */
    @media (max-width: 991px) {
      .hero h1 {
        font-size: 1.6rem;
      }
      .services h1 {
        font-size: 2rem;
      }
      .quality-content {
        margin: 0 auto;
        text-align: center;
      }
    }


     /* .highlight-number {
      font-size: 3rem;
      font-weight: 700;
      color: red;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
    }
    .text-small-heading {
      color: red;
      font-weight: 600;
      letter-spacing: 1px;
    } */


     .highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: red; /* Highlight color */
  }
  .section-title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text-small-heading {
    color: red;
    font-weight: 600;
    letter-spacing: 1px;
  }


  /* --------------------------------------- */
/* css for footer-section */
footer {
  color: black;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

footer ul li a:hover {
  color: red;
}

.footer-bottom {
  background: red;
  color: #ccc;
  padding: 20px 0;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #f1f1f1;
  color: black;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
  color: #fff;
}

.subscribe-box input {
  border: 1px solid #ddd;
  border-radius: 0;
}

.subscribe-box button {
  background: red;
  border: none;
  color: #fff;
  border-radius: 0;
}

/* ✅ Floating Social Icons Around Footer Man */
.footer-floating-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  /* animation: bounce 2s infinite ease-in-out; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Random placements */
.icon-fb {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.icon-tw {
  top: 30%;
  right: 35%;
  animation-delay: 0.4s;
}

.icon-li {
  bottom: 15%;
  left: 20%;
  animation-delay: 0.8s;
}

.icon-ig {
  bottom: 15%;
  right: 35%;
  animation-delay: 1.2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .footer-floating-icon {
    display: none;
  }
}
