#clients img {
  transition: all 0.3s ease;
  max-height: 132px;
  border: 1px solid lightgrey;
}
#clients img:hover {
  filter: none;
  transform: scale(1.05);
}

:root {
  --brand: #fa5303; /* orange */
  --dark: #0b0b0b;
  --muted: #6c757d;
  --bg-soft: #fff8f2;
  --glass: rgba(255, 255, 255, 0.85);
}
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--dark);
  scroll-behavior: smooth;
  background-color: #fff;
}
.navbar-toggler {

    background-color: white !important; 
}
/* case studies */
.case-card img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.case-card:hover img {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.modal-content {
  background: transparent;
  box-shadow: none;
}
.modal-backdrop.show {
  opacity: 0.85;
  background: rgba(0,0,0,0.8);
}

/* Navbar */
.navbar-brand img {
  height: 55px;
}
.nav-link {
  color: white;
  font-weight: 500;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #fff 55%, #fff6f0);
 padding: 48px 0;
  overflow: hidden;
}

.hero h1 {
  color: #1e1e1e;
  line-height: 1.3;
  animation: fadeInUp 1s ease;
}

.hero p {
  animation: fadeInUp 1.2s ease;
}

.brand-pill {
  background: rgba(255, 122, 0, 0.1);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  animation: fadeInUp 1.3s ease;
}

.hero-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInRight 1s ease;
}

.hero-card .btn {
  background: var(--brand);
  border: none;
  transition: all 0.3s ease;
  color: white;
}

.hero-card .btn:hover {
  background: #e66a00;
  transform: translateY(-2px);
}

.hero .btn-outline-secondary {
  border-color: #ddd;
  color: #333;
}

.hero .btn-outline-secondary:hover {
  background: #f8f8f8;
}

/* Subtle floating animation for hero-card */
@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-card {
  animation: fadeInRight 1.2s ease, floatUp 6s ease-in-out infinite;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero {
    padding: 60px 0;
    background: #fff6f0;
  }
}

.text-muted {
  --bs-text-opacity: 1;
  color: black !important;
  font-size: 18px;
}

/* Services */
.service-card {
  transition: all 0.4s ease;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.15);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), #ffb377);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.service-card:hover .icon-box {
  transform: scale(1.1) rotate(3deg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#services .service-card {
  animation: fadeInUp 0.8s ease forwards;
}

.fw-semibold {
  font-weight: 600 !important;
  text-decoration: none !important;
}

#services .service-card:nth-child(1) {
  animation-delay: 0.1s;
}
#services .service-card:nth-child(2) {
  animation-delay: 0.2s;
}
#services .service-card:nth-child(3) {
  animation-delay: 0.3s;
}
#services .service-card:nth-child(4) {
  animation-delay: 0.4s;
}
#services .service-card:nth-child(5) {
  animation-delay: 0.5s;
}
/* About */
#about {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

#about h2 {
  font-size: 2rem;
  line-height: 1.3;
}

#about .badge {
  font-size: 0.9rem;
}

#about .btn:hover {
  background: #0d6efd;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Portfolio */
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card img {
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.04);
}

/* Footer */
footer {
  background: #0b0b0b;
  color: #cbd5e1;
  padding: 60px 0;
  font-size: 14px;
}

footer h5,
footer h6 {
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff7a00;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-contact p {
  margin-bottom: 4px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1100;
  box-shadow: 0 10px 30px rgba(16, 16, 16, 0.18);
  border-radius: 999px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero {
    padding: 36px 0;
  }
  .hero .col-lg-7 {
    order: 2;
  }
  .hero .col-lg-5 {
    order: 1;
    margin-bottom: 18px;
  }
}

  .sticky-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }

  .sticky-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .sticky-contact a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }

  .whatsapp-btn {
    background: #25D366;
  }

  .call-btn {
    background: #0a7cff;
  }