/* ---------- UNIVERSAL CSS ENHANCED ---------- */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------- HERO ---------- */
.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 0;
}

.hero-left { flex: 1 1 500px; }

.hero-left .badge {
  display: inline-block;
  background: linear-gradient(90deg,#4169E1,#2E3192);
  color: #fff;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.hero-left .badge:hover { transform: scale(1.1); }

.hero-left h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #2E3192;
}
.hero-left p { margin-bottom: 25px; font-size: 1.1rem; }

.hero-btns a {
  text-decoration: none;
  padding: 12px 30px;
  margin-right: 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.pri { background: #4169E1; color: #fff; }
.btn.pri:hover { background: #2E3192; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.btn.ghost { background: transparent; border: 2px solid #4169E1; color: #4169E1; }
.btn.ghost:hover { background: #4169E1; color: #fff; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.btn.sec { background: #2E3192; color: #fff; }
.btn.sec:hover { background: #4169E1; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.hero-points span { display: block; margin: 6px 0; font-weight: 500; }

/* ---------- PRICE BOX ---------- */
.price-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.chip-card {
  background: #f1f5f9;
  padding: 12px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.chip-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg,#4169E1,#2E3192);
  color: #fff;
}
.price-actions .btn { display: inline-block; margin-top: 10px; }

/* ---------- INFO BAR ---------- */
.info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}
.info-tile {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.info-tile:hover {
  transform: translateY(-3px);
  background: #4169E1;
  color: #fff;
}
.info-tile span { display: block; font-weight: normal; margin-top: 5px; }

/* ---------- TWO COLUMN ---------- */
.two-col { display: flex; flex-wrap: wrap; gap: 25px; margin: 40px 0; }
.card-block {
  flex: 1 1 45%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.card-block:hover { transform: translateY(-5px); }
.card-block h2.h { margin-bottom: 15px; color: #2E3192; }
.icon-bullets { list-style: none; padding: 0; }
.icon-bullets li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}
.icon-bullets li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

/* ---------- DOCS ---------- */
.docs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.doc-chip {
  background: #f1f5f9;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.doc-chip:hover { background: #4169E1; color: #fff; transform: scale(1.05); }

/* ---------- REGISTRATION PROCESS BLOCKS ---------- */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.flow-step {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.flow-step:hover { transform: translateY(-5px); background: #4169E1; color: #fff; }
.circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: #2E3192; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; margin: 0 auto 10px;
  transition: all 0.3s ease;
}
.circle:hover { transform: scale(1.1); }

/* ---------- PACKAGES & PRICING ---------- */
.plans { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.plan {
  flex: 1 1 30%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); }
.plan.popular { border: 2px solid #4169E1; background: linear-gradient(145deg,#f0f4ff,#e2e9ff); }
.plan .badge {
  background: #4169E1;
  color: #fff;
  padding: 5px 12px;
  border-radius: 25px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 10px;
}
.plan-price { font-size: 1.8rem; color: #2E3192; margin: 12px 0; font-weight: 700; }

/* ---------- PACKAGE BUTTONS ---------- */
.plan .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #4169E1;
  transition: all 0.3s ease;
}
.plan .btn:hover {
  background: #2E3192;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ---------- WHY CHOOSE US ---------- */
.card-block ul.icon-bullets li { font-size: 1rem; padding-left: 30px; }
.card-block ul.icon-bullets li::before { content: "💡"; }
.compare { width: 100%; border-collapse: collapse; margin-top: 20px; }
.compare th, .compare td { border: 1px solid #ddd; padding: 12px; text-align: center; }
.compare th { background: #4169E1; color: #fff; }

/* ---------- OFFER ---------- */
.offer { background: linear-gradient(90deg,#4169E1,#2E3192); color: #fff; text-align: center; padding: 25px; border-radius: 15px; margin: 40px 0; }

/* ---------- FAQ ---------- */
.faq-section { margin: 50px 0; max-width: 800px; margin-left:auto; margin-right:auto; }
.faq-title { font-size: 2.2rem; margin-bottom: 25px; color: #2E3192; text-align: center; }
.faq-item { margin-bottom: 12px; border-radius: 8px; overflow: hidden; border: 1px solid #ddd; }
.faq-question {
  width: 100%; text-align: left;
  padding: 12px 18px;
  background: #f1f5f9; border: none; outline: none; cursor: pointer; font-weight: 600;
  transition: all 0.3s ease;
}
.faq-question:hover { background: #4169E1; color: #fff; }
.faq-answer { display: none; padding: 12px 18px; background: #fff; line-height: 1.6; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-wrap { flex-direction: column; }
  .two-col, .plans { flex-direction: column; }
  .card-block, .plan, .flow-step { flex: 1 1 100%; }
}
.faq-item.active .faq-answer {
  display: block;
}


/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.portfolio-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.portfolio-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.portfolio-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Pitch Deck Section */
.pitch-deck {
  padding: 50px 20px;
  background: #f4f6f8;
  text-align: center;
}

.pitch-deck h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.pitch-deck p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.pitch-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.pitch-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pitch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.pitch-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.pitch-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.pitch-card p {
  font-size: 0.95rem;
  color: #666;
}

.pitch-cta .btn {
  margin-top: 15px;
}
