

 

 .navbar-nav .nav-link {
   padding: 10px 15px;
   color: #000000 !important;
   font-weight: 500;
   transition: color 0.3s ease;
 }

 .navbar-nav .nav-link:hover,
 .navbar-nav .nav-link:focus {
   color: #007bff !important;
   /* Blue hover effect */
 }

 .navbar-toggler {
   border: none;
 }

 .navbar-toggler:focus {
   outline: none;
   box-shadow: none;
 }

 .logo-img {
   height: 50px;
   width: 163px;
 }

 /* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: url('hero-banner.jpg') no-repeat center center/cover;
  color: #fff;
}

/* DIM BACKGROUND */
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1.5px);
  z-index: 1;
}

/* TEXT CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 8%;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e8e8e8;
  margin-bottom: 40px;
}

/* BUTTONS SIDE BY SIDE */
.hero-btns {
  display: flex;
  gap: 20px; /* keeps them side by side */
  flex-wrap: nowrap;
}

.hero-btns a {
  white-space: nowrap;
}

/* PRIMARY BUTTON */
.hero-btns .btn-primary {
  background-color: #ff5b45;
  border: none;
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 91, 69, 0.3);
  transition: 0.3s;
}

.hero-btns .btn-primary:hover {
  background-color: #ff3d2d;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.hero-btns .btn-outline-light {
  border: 2px solid #fff;
  padding: 12px 28px;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.hero-btns .btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-section {
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* Base section */
.hero-yellow-section {
  background-color: #fff86a; /* bright yellow like the screenshot */
  border-radius: 16px;
  text-align: center;
  padding: 100px 40px;
  max-width: 1100px;
  margin: 100px auto;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* Heading */
.hero-yellow-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}

/* Paragraph */
.hero-yellow-section p {
  font-size: 1.1rem;
  color: #333;
  max-width: 720px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

/* Button */
.hero-yellow-section .btn-dark {
  display: inline-block;
  background-color: #222;
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-yellow-section .btn-dark:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-yellow-section {
    padding: 80px 20px;
  }

  .hero-yellow-section h1 {
    font-size: 2rem;
  }

  .hero-yellow-section p {
    font-size: 1rem;
  }
}

.service-card {
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-title {
  margin-top: 10px;
  margin-bottom: 15px;
}

.card-text {
  font-size: 0.95rem;
}

i.fas {
  transition: transform 0.3s;
}

.service-card:hover i.fas {
  transform: scale(1.1);
}


