
html, body {
  overflow-x: hidden;
   overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.custom-nav {
  background: #ffffff;
}
.active {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 159, 11, 0.447), rgba(245,158,11,0.05));
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.3s ease;
}


.brand-gold {
  color: #F5A623;
  font-weight: 700;
}

.brand-white {
  color: white;
}

.btn-gold {
  background: #F5A623;
  color: #0B1C2D;
  font-weight: 600;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.service-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: .4s;
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-section {
  background: #0B1C2D;
  padding: 60px 0;
}

.feature-box {
  background: #111827;
  padding: 20px;
  border-radius: 8px;
  color: white;
}
/* Popular Categories Section */
.featured-categories {
  background: #ffffff;
}

.section-heading {
  font-weight: 700;
  color: #1e293b;
}

/* Category Card */
.category-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Card hover */
.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Image */
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Image zoom */
.category-card:hover img {
  transform: scale(1.12);
}

/* Overlay */
.category-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.4s ease;
}

/* Text */
.category-card h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card p {
  color: #e5e7eb;
  font-size: 14px;
  margin: 0;
}

/* Card hover */
.category-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.25)
  );
}


/* Why Us Section */
.why-us-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.why-us-section .section-title {
  font-weight: 700;
  color: #0f172a;
}

/* Why Card */
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.22);
}

/* Icon */
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(245,158,11,0.4);
}

/* Text */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.why-card p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}



/* NEWSLETTER */
.newsletter-section {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 3px solid #F5A623;
}

.newsletter-section .form-control {
  height: 48px;
  border-radius: 6px;
}

.newsletter-section .form-control:focus {
  border-color: #F5A623;
  box-shadow: 0 0 0 0.15rem rgba(245,166,35,.25);
}

.footer {
  background: #0B1C2D;
  color: white;
  text-align: center;
  padding: 15px;
}
.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: #CBD5E1;
  text-decoration: none;
}

.footer-list a:hover {
  color: #facc15;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
}

.footer-contact {
  font-size: 14px;
}

.footer-contact i {
  margin-right: 8px;
  color: #facc15;
}

.footer-link {
  color: #CBD5E1;
  text-decoration: none;
}
.footer-link:hover {
  color: #facc15;
}
/* Developer Credit Bar */
.developer-bar {
  display: block;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.developer-bar:hover {
  background: linear-gradient(120deg, #e1f4ff63, #d6efff60);
  transform: scale(1.09);
  transition: all 0.3s ease;
}

.developer-name {
  font-weight: 700;
}

.developer-bar img {
  transition: transform 0.3s ease;
}

.developer-bar:hover img {
  transform: scale(1.05);
}

/* ================= FLOATING CALLBACK BUTTON ================= */
.callback-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #ffffff;
  padding: 10px 17px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  z-index: 9999;
  cursor: pointer;
  animation: pulseGlow 1.5s infinite;
}

.callback-icon {
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: blink 1.5s infinite;
}

.callback-text {
  white-space: nowrap;
}

/* GLOW */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* BLINK */
@keyframes blink {
  50% { transform: scale(1.15); }
}

/* MOBILE */
@media (max-width: 576px) {
  .callback-text {
    display: none;
  }
  .callback-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* ================= MODAL ================= */
.callback-modal {
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.callback-modal .form-control {
  padding: 12px;
  border-radius: 10px;
}

.callback-modal .form-control:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 0.2rem rgba(34,197,94,0.25);
}

