/* ---------- Root Variables ---------- */
:root {
  --primary: #26af57;
  --secondary: #9333ea;
  --accent: #06b6d4;
  --text-dark: #1e293b;
  --text-light: #475569;
  --bg: #f8fafc;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s ease;
}
 
/* ---------- Base Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
 
h1,
h2,
h3 {
  /* color: var(--primary); */
}
 
a {
  text-decoration: none;
  transition: var(--transition);
}
 
main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
 
/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 0;
  animation: fadeIn 1s ease;
}
 
.hero .text {
  flex: 1 1 500px;
  padding: 10px 10px;
}
 /* .text h1{
  color: #4E56C0 !important;
 } */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero p {
  font-size: 1.06rem !important;
  color: var(--text-light);
  margin: 20px 0 30px;
}
 
/* .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
 
.btn {
  background-color: #60c14f !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow);
}
 
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
 
.secondary {
  background: none;
  border: 5px solid #60c14f;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
}
 
.secondary:hover {
  background: #60c14f;
  color: #000000;
} */
 
.hero img {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
 
/* ---------- Features ---------- */
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 700;
}
 
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
 
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  transition: var(--transition);
}
 
.card:hover {
  transform: translateY(-5px);
}
 
.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
 
.card h3 {
  margin-bottom: 10px;
  font-weight: 500;
  /* color: var(--secondary); */
}
 
ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
}
 
/* ---------- Highlights Section ---------- */
:root {
  --primary: #1358ec;
  --secondary: #0b3e99;
  --text: #222;
  --text-light: #555;
  --card-bg: #fff;
  --bg: #f9fafc;
  --radius: 16px;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s ease;
}
 
.highlights-section {
  margin-top: 80px;
  padding: 40px 20px;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
 
.highlights-section h3 {
  font-size: 2rem;
  /* color: var(--secondary); */
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
 
.highlights-section h3::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #26af57;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
 
/* ---------- Animations ---------- */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- FAQ Section ---------- */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
}
 
.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1e40af;
}
 
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}
 
.faq-question {
  width: 100%;
  text-align: left;
  background: #f3f4f6;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  transition: background 0.3s;
  background: #4b79d1;
  color: #f9f9f9;
}
 
.faq-question:hover {
  background: #e0f2fe;
  color: black;
}
 
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9fafb;
  padding: 0 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
 
.faq-answer p {
  margin: 1rem 0;
}
 
.faq-question::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform 0.3s;
}
 
.faq-item.active .faq-answer {
  max-height: 1000px; /* adjust depending on content */
}
 
.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}
 
/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }
 
  .faq-answer p {
    margin: 0.8rem 0;
  }
}
 
@media (max-width: 480px) {
  .faq-container {
    padding: 1rem 0.5rem;
  }
 
  .faq-question {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
 
  .faq-answer p {
    font-size: 0.9rem;
    margin: 0.6rem 0;
  }
}
 
/* .faq {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 40px 25px;
      margin: 80px auto;
      max-width: 900px;
    }
 
    .faq h3 {
      text-align: center;
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 25px;
    } */
 
.accordion .item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
 
.accordion-button {
  width: 100%;
  background: #f8fafc;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 15px 20px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
 
.accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
 
.accordion-button[aria-expanded="true"]::after {
  content: "_";
  font-size: 2rem;
}
 
dd {
  padding: 0 20px 15px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  background: #fff;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
 
dd[hidden] {
  display: block !important;
  max-height: 0;
  opacity: 0;
}
 
dd:not([hidden]) {
  max-height: 300px;
  opacity: 1;
}
 
/* ---------- Animations ---------- */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
 
/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero img {
    order: -1;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
 
@media (max-width: 600px) {
  .btn,
  .secondary {
    width: 100%;
    text-align: center;
  }
  .faq {
    padding: 25px 15px;
  }
}
 
 