/* === Base === */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* === Navbar (modern polished look) === */
.navbar {
  background: rgba(179, 25, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin: 0 0.75rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* === Hero Section (clean, bold, modern) === */
.hero {
  background: linear-gradient(rgba(179, 25, 36, 0.75), rgba(30, 30, 30, 0.8)),
    url("images/skip-image-1.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .custom-button {
  background: #fff;
  color: #b31924;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero .custom-button:hover {
  background: #b31924;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(179, 25, 36, 0.35);
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 15px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* === Section Headings === */
section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #b31924;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* === Services === */
#services .card {
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}
#services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
#services img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}
#services h5 {
  color: #b31924;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1.2rem;
}
#services p {
  color: #555;
  margin-bottom: 0.5rem;
}

/* === About === */
#about {
  background: #fff;
  color: #444;
  padding: 70px 20px;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}
#about p {
  font-size: 1.1rem;
  max-width: 85%;
  margin: 0 auto;
}

/* === Contact === */
#contact {
  padding: 60px 0;
}
.contact-icons a {
  color: #b31924;
  font-size: 2rem;
  margin: 0 15px;
  transition: all 0.3s ease;
}
.contact-icons a:hover {
  color: #7d0e17;
  transform: scale(1.15);
}

/* === Buttons === */
.custom-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 30px;
  background: #b31924;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(179, 25, 36, 0.3);
  transition: all 0.3s ease;
}
.custom-button:hover {
  background: #8d1019;
  box-shadow: 0 6px 20px rgba(179, 25, 36, 0.4);
  transform: translateY(-3px);
}

/* === Footer === */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.75);
  padding: 30px 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
footer span {
  color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  #services img {
    height: 200px;
  }
}

/* Hide phone icon on desktop */
@media (min-width: 992px) {
  .contact-icons a[aria-label="Phone"] {
    display: none;
  }
}

#reviews .container {
  background: #fff; /* light white container */
  color: #444;
  padding: 70px 20px; /* same padding as About */
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 80px auto; /* center and add bottom spacing */
}

/* Keep text styling centered */
#reviews p {
  font-size: 1.1rem;
  max-width: 85%;
  margin: 0 auto 1rem auto;
  color: #555;
}

#reviews h2 {
  margin-bottom: 2rem;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

/* review card container */
.review-card {
  max-width: 700px; /* limit width */
  word-wrap: break-word; /* wrap long words */
  white-space: pre-line; /* preserve newlines if present */
  text-align: center;
}

/* Optional: add scroll for very long reviews */
@media (max-width: 768px) {
  .review-card {
    max-width: 90%;
  }
}
