/* ==============================
   Global Styles
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

body {
  background: #f9fafc;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ==============================
   Hero Section
============================== */
.hero {
  position: relative;
   background: linear-gradient(to right, #0a74da, #0b92e8);
  color: white;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fffaf0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #ff7b00;
  font-weight: 600;
}

.btn-primary:hover {
  background: #ffefcc;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-icons {
  margin-top: 25px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-icons span {
  cursor: default;
  transition: transform 0.3s;
}

.hero-icons span:hover {
  transform: scale(1.2);
}

/* ==============================
   Card Section
============================== */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card h3 {
  color: #ff7b00;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.card .btn {
  background: #ff7b00;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
}

.card .btn:hover {
  background: #ff9500;
}


/* ==============================
   Responsive Design
============================== */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
