*{
    margin: 0;
    padding: 0;
}
.top-bar {
      background-color: #fff700;
      height: 12vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .top-bar a {
      color: #0077B6;
      font-size: 1.5rem;
      font-weight: bolder;
      text-decoration: none;
    }
    /* Navbar Styling */
    .navbar {
      background-color: #0077B6;
    }

    .navbar-brand {
      color: #fff700;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .navbar-nav .nav-link {
      color: #fff700;
      margin-right: 1rem;
      position: relative;
    }

    .navbar-nav .nav-link:hover::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #fff700;
    }

    .navbar-toggler {
      border-color: transparent;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff700' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .cta-btn {
    background-color: #fff700;
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .cta-btn:hover {
    background-color: #ffe600;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }
  .about-us-section h2 {
    color: #0077B6;
  }

  .hover-highlight {
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
  }

  .hover-highlight:hover {
    background-color: rgba(0, 119, 182, 0.05);
    padding-left: 10px;
    border-left: 3px solid #fff700;
    cursor: default;
  }
  .service-item h4 {
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.3s ease;
  }

  .service-item p {
    font-size: 1.05rem;
    color: #f1f1f1;
    transition: transform 0.3s ease;
  }

  .service-item:hover h4 {
    color: #fff700;
  }

  .service-item:hover p {
    transform: translateY(-5px);
  }

  .custom-hr {
    width: 75%;
    border-top: 2px solid #fff700;
    margin: 2rem auto;
  }
  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .pricing-card ul li {
    font-size: 1rem;
    font-weight: 500;
  }
  .contact-box {
    background-color: #0077B6;
    width: 80%;
    height: 25vh;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .contact-box:hover {
    transform: scale(1.01);
  }

  .call-btn {
    background-color: #fff700;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .call-btn:hover {
    background-color: #000;
    color: #fff700;
  }
  .start-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }

  .start-card::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .start-card:hover::before {
    opacity: 1;
  }

  .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: white;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .start-card:hover .overlay-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .overlay-content .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff700;
  }

  .overlay-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }
  .social-icon i {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
  }

  .social-icon i:hover {
    color: #fff700;
  }

  footer ul li {
    margin-bottom: 6px;
  }

  footer a.btn-warning {
    background-color: #fff700;
    color: #000;
    border: none;
    transition: background-color 0.3s ease;
  }

  footer a.btn-warning:hover {
    background-color: #ffdd00;
    color: #000;
  }

    @media (max-width: 768px) {
      .top-bar a {
        font-size: 1.2rem;
      }
    }
    @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }

    .cta-btn {
      font-size: 0.95rem;
      padding: 10px 20px;
    }
  }
    @media (max-width: 768px) {
    .service-item h4 {
      font-size: 1.3rem;
    }

    .service-item p {
      font-size: 0.95rem;
    }
  }
    @media (max-width: 768px) {
    .pricing-card h4 {
      font-size: 1.2rem;
    }
    .pricing-card h3 {
      font-size: 1.5rem;
    }
    .pricing-card ul li {
      font-size: 0.95rem;
    }
  }
    @media (max-width: 768px) {
    .contact-box {
      flex-direction: column;
      height: auto;
      padding: 2rem 1rem;
      text-align: center;
    }

    .call-btn {
      margin-top: 1rem;
    }
  }
    @media (max-width: 768px) {
    .start-card {
      height: 200px;
    }
    .overlay-content p {
      font-size: 1rem;
    }
  }