/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #faf7f7, #e9e9e9);
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  color: #800000; /* Maroon */
  letter-spacing: 0.5px;
}

/* ===== Navbar ===== */
.navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.4s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 140px;
  filter: drop-shadow(0 0 4px #800000);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* ✨ Updated link style */
.nav-links a {
  text-decoration: none;
  color: #800000; /* maroon red */
  font-weight: 700;
  font-size: 1.2rem; /* slightly larger */
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #800000);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37; /* golden hover */
  transform: scale(1.05);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  height: 85vh;
  background: linear-gradient(135deg, #fff, #f3e6e6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #800000;
  margin-bottom: 10px;
}

.hero-content p {
  color: #444;
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.btn {
  background: linear-gradient(90deg, #800000, #d4af37);
  color: #fff;
  padding: 12px 35px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ===== Section Base ===== */
section {
  padding: 90px 20px;
  max-width: 1150px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #800000;
  margin-bottom: 15px;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #800000, #d4af37);
  margin: 10px auto;
  border-radius: 3px;
}

p.section-sub {
  text-align: center;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* ===== About Section ===== */
.about p {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
}

/* ===== Services Section ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(128, 0, 0, 0.2);
}

.card h3 {
  margin-bottom: 10px;
  color: #800000;
  font-size: 1.3rem;
}

.card p {
  color: #555;
  font-size: 1rem;
}

/* ===== Partners Section ===== */
.partners {
  background: linear-gradient(180deg, #f7f3f3, #fff);
  border-radius: 16px;
  padding: 70px 30px;
}

.partners p {
  text-align: center;
  color: #333;
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== Contact Section ===== */
.contact {
  text-align: center;
  background: linear-gradient(90deg, #800000, #b30000);
  color: #fff;
  padding: 80px 20px;
  border-radius: 20px;
  max-width: 1000px;
}

.contact h2 {
  color: #fff;
}

.contact a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  background: #2b0000;
  color: #f1e6e6;
  padding: 30px 10px;
  font-size

