html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 12px 0;
}

.navbar-brand img {
  height: 50px;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #dc2626;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/hero1.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: heroSlide 12s infinite ease-in-out;
  z-index: 0;
  transform: scale(1.02);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 24, 39, 0.85) 0%,
    rgba(17, 24, 39, 0.72) 45%,
    rgba(17, 24, 39, 0.58) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@keyframes heroSlide {
  0%, 45% {
    background-image: url('../images/hero1.jpg');
  }
  50%, 95% {
    background-image: url('../images/hero2.jpg');
  }
  100% {
    background-image: url('../images/hero1.jpg');
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-logo-wrap {
  margin-bottom: 18px;
}

.logo-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.hero-section h1 {
  margin: 0 0 16px 0;
  line-height: 1.1;
  max-width: 700px;
}

.hero-section .lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-card li:last-child {
  border-bottom: none;
}

/* Hero Entrance Animation */
.hero-section h1,
.hero-section p,
.hero-section .btn,
.hero-card,
.hero-logo-wrap,
.hero-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero-logo-wrap {
  animation-delay: 0.2s;
}

.hero-section h1 {
  animation-delay: 0.3s;
}

.hero-section p {
  animation-delay: 0.5s;
}

.hero-section .btn {
  animation-delay: 0.7s;
}

.hero-card {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Strip */
.trust-strip {
  background: #f1f5f9;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Section Styles */
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-soft {
  background: #f8fafc;
}

/* Cards */
.info-panel,
.service-card,
.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.small-list div {
  padding: 10px 0;
  border-bottom: 1px solid #eceff3;
}

.small-list div:last-child {
  border-bottom: none;
}

.service-card {
  transition: all 0.3s ease;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: #fecaca;
}

/* Coverage */
.coverage-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-wrap span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
  font-weight: 600;
}

/* Contact */
.contact-card a {
  color: #b91c1c;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  transition: all 0.25s ease;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-outline-light {
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: #111827;
  color: #ffffff;
}

/* Floating Call Button */
.call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: #dc2626;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  transition: background 0.25s ease;
}

.call-btn:hover {
  background: #b91c1c;
  color: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-card {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-logo {
    max-width: 180px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .call-btn {
    right: 15px;
    bottom: 15px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-logo {
    max-width: 180px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .call-btn {
    right: 15px;
    bottom: 15px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

