/* =========================
   Home Page Styles
   ========================= */

/* ===== Hero Section ===== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 8%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  min-height: 80vh;
}

.hero-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.hero-content h1 .highlight {
  color: #0078ff;
}

.hero-content h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #444;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}
.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #0078ff;
  color: #fff;
}

.btn.primary:hover {
  background-color: #005fcc;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #0078ff;
  color: #0078ff;
}

.btn.secondary:hover {
  background-color: #0078ff;
  color: #fff;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 50%;
  border: 5px solid #0078ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Highlights Section ===== */
.highlights {
  padding: 4rem 8%;
  text-align: center;
  background: #ffffff;
}

.highlights h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}


.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.4rem;
  color: #0078ff;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.card .btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
  background-color: #222;
  color: #f1f1f1;
  padding: 1.5rem 8%;
  text-align: center;
}

footer .social-links a {
  color: #0078ff;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: #ffffff;
}


