body {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.7;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* 🔹 Top header bar */
.top-header {
  background: #1e293b;
  color: #ccc;
  font-size: 14px;
  padding: 8px 40px;
}
.top-header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-header .left-info span {
  margin-right: 20px;
}
.top-header .right-social a {
  color: #ccc;
  margin-left: 12px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .right-social a:hover {
  color: #facc15; /* golden hover */
}

/* 🔹 Main header */
header.main-header {
  background: #fff;
  color: #1e293b;
  padding: 15px 40px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-flex {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #1e293b;
  font-family: 'Playfair Display', serif;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
nav {
  display: flex;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, border-bottom 0.3s;
}
.nav-links li a:hover {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 3px;
}

/* 🔹 Mobile menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: 20px;
  color: #1e293b;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 65px;
    right: 20px;
    background: #f8fafc;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links li {
    margin: 15px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* 🔹 Hero */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') 
              no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero h2, .hero p {
  position: relative;
  z-index: 1;
}
.hero h2 { font-size: 40px; margin-bottom: 10px; }

/* 🔹 Services */
.section { padding: 60px 20px; text-align: center; }
.services {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px;
}
.service-card {
  flex: 1 1 250px;
  border-radius: 12px;
  padding: 30px 20px;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* 🔹 Testimonials */
.testimonials {
  background: #1f2937;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}
.author-info {
  display: flex; align-items: center; gap: 15px;
}
.author-info img {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
}
.author-info h4 { margin: 0; color: #222; }
.author-info span { font-size: 0.9rem; color: #777; }

/* 🔹 Footer */
footer {
  background: #333;
  color: #ccc;
  padding: 40px 20px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 20px;
  text-align: left;
}
.footer-columns h4 {
  margin-bottom: 15px;
  color: #fff;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
}
.footer-columns ul li {
  margin-bottom: 8px;
}
.footer-columns ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-columns ul li a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* 🔹 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 🔹 Milestones Section */
.milestones {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.milestones h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
}
.milestones h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #facc15;
  margin: 12px auto 0;
  border-radius: 2px;
}
.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-card {
  background: #ffffff;
  color: #1e293b;
  padding: 30px 40px;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.stat-card h3 {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 10px;
}
.stat-card p {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

/* 🔹 Partners Section */
.partners {
  background: #f8fafc;
  padding: 80px 20px;
  text-align: center;
}
.partners h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  position: relative;
  display: inline-block;
  color: #1e293b;
}
.partners h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2563eb;
  margin: 12px auto 0;
  border-radius: 2px;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partner-logos img {
  max-height: 70px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
