/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

/* Header */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px; background: #d27827; border-bottom: 1px solid #ddd;
  position: sticky; top: 0; z-index: 100;
}
.logo { font-size: 24px; font-weight: bold; }
nav .btn {
  margin-left: 10px; padding: 10px 20px; border: none;
  cursor: pointer; border-radius: 5px; font-weight: bold;
}
.btn { background: #333; color: #fff; }
.btn.yellow { background: #ffcc00; color: #000; }

/* Hero Section */
.hero {
  position: relative; height: 100vh;
  background: url("home img.png") no-repeat center center/cover;
  display: flex; justify-content: center; align-items: center; color: #fff;
}
.hero-overlay {
  background: rgba(0,0,0,0.55);
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 20px;
}
.hero-title { font-size: 56px; font-weight: bold; margin-bottom: 15px; }
.hero-subtitle { font-size: 26px; margin-bottom: 30px; }
.search-box { display: flex; margin-bottom: 30px; }
.search-box input {
  padding: 18px; font-size: 20px; border: none; border-radius: 8px 0 0 8px; width: 350px;
}
.search-box button {
  padding: 18px 25px; font-size: 20px; border: none; border-radius: 0 8px 8px 0;
  background: #ffcc00; cursor: pointer; font-weight: bold;
}
.cta button {
  margin: 10px; padding: 16px 30px; font-size: 20px;
  border: none; border-radius: 8px; cursor: pointer;
  background: #fff; color: #333; font-weight: bold;
}

/* Sections */
section { padding: 80px 20px; text-align: center; }
h2 { font-size: 34px; margin-bottom: 40px; color: #222; }

/* Cards */
.card-container {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 25px; max-width: 1200px; margin: 0 auto;
}
.card {
  background: #fff; border-radius: 12px; box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  padding: 30px; width: 300px; font-size: 20px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, opacity 1s ease, transform 1s ease;
  opacity: 0; transform: translateY(40px);
}
.card img {
  width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 15px;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.2); }
.no-link-style {
  color: inherit;      /* Keeps the text color same as the surrounding */
  text-decoration: none; /* Removes underline */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Solution Section */
.solution-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 50px; padding: 60px 10%;
}
.solution-image img { max-width: 800px; border-radius: 12px; }
.solution-text { flex: 1; min-width: 300px; text-align: left; }
.solution-text h2 { font-size: 32px; font-weight: bold; }
.green-line { width: 60px; height: 5px; background: #2ecc71; border: none; margin: 10px 0 20px 0; }
.solution-text p { font-size: 18px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.green-btn {
  padding: 14px 30px; background: #2ecc71; border: none; border-radius: 25px;
  font-size: 18px; color: #fff; cursor: pointer; transition: background 0.3s;
}
.green-btn:hover { background: #27ae60; }

/* Footer */
footer { background: #333; color: #fff; padding: 20px; text-align: center; margin-top: 30px; }

/* Fade-in Animations */
.fade-in { opacity: 0; transform: translateY(40px); animation: fadeInUp 1s forwards; }
.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 20px; }
  .search-box { flex-direction: column; width: 100%; }
  .search-box input, .search-box button { width: 100%; margin-bottom: 10px; }
  .solution-container { flex-direction: column; text-align: center; }
  .solution-text { text-align: center; }
}
