/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Top Strip */
.top-strip {
  background: #0A2A43;
  color: #ffffff;
  text-align: center;
  padding: 6px 10px;
  font-size: 14px;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo h2 {
  font-size: 20px;
  color: #0A2A43;
  font-weight: 700;
}

.logo .tagline {
  font-size: 13px;
  color: #777;
}

/* Right Side */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Phone */
.phone {
  text-decoration: none;
  color: #0A2A43;
  font-weight: 600;
  font-size: 15px;
}

/* CTA Button */
.cta-btn {
  background: #D4AF37;
  color: #0A2A43;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #b8962f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  
  .container {
    flex-direction: column;
    gap: 10px;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 60%, #f7f9fc 40%);
  padding: 60px 0;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side */
.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  color: #0A2A43;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.primary-btn {
  background: #D4AF37;
  color: #0A2A43;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #b8962f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.secondary-btn {
  border: 2px solid #0A2A43;
  color: #0A2A43;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: #0A2A43;
  color: #fff;
}

/* Trust Text */
.hero-trust {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

/* Right Side */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mockup-box {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mockup-box img {
  width: 100%;
  display: block;
}
@media (max-width: 992px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 32px;
  }

}

/* PROBLEM SECTION */
.problem-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  color: #0A2A43;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 16px;
  color: #666;
}

/* Grid Layout */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.problem-card {
  background: #f9fbfd;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.problem-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.problem-card h3 {
  font-size: 18px;
  color: #0A2A43;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* GAP SECTION */
.gap-section {
  background: #0A2A43;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}

.gap-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #D4AF37;
}

.gap-header p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 60px;
}

/* Funnel Layout */
.funnel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.funnel-step {
  background: #ffffff;
  color: #0A2A43;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.funnel-step.highlight {
  background: #D4AF37;
  color: #0A2A43;
}

.arrow {
  font-size: 22px;
  color: #D4AF37;
}

/* Bottom Text */
.gap-footer-text {
  font-size: 18px;
  font-weight: 500;
  max-width: 700px;
  margin: auto;
  color: #ffffff;
}
@media (max-width: 768px) {

  .funnel-wrapper {
    flex-direction: column;
  }

  .arrow {
    display: none;
  }

}

/* SYSTEM SECTION */
.system-section {
  background: #f7f9fc;
  padding: 100px 0;
}

.system-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.system-section h2 {
  font-size: 34px;
  color: #0A2A43;
  margin-bottom: 15px;
}

.system-section p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */
.system-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.system-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.system-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.system-card h3 {
  font-size: 20px;
  color: #0A2A43;
  margin-bottom: 15px;
}

.system-card ul {
  list-style: none;
  padding: 0;
}

.system-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
  position: relative;
  padding-left: 18px;
}

.system-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 12px;
}

@media (max-width: 992px) {

  .system-grid {
    grid-template-columns: 1fr;
  }

}

/* ROI SECTION */
.roi-section {
  background: #0A2A43;
  padding: 100px 0;
  color: #ffffff;
}

.roi-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.roi-left h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #D4AF37;
}

.roi-numbers {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.roi-block {
  text-align: center;
}

.big-number {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
}

.roi-symbol {
  font-size: 30px;
  color: #D4AF37;
}

.roi-result {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

/* RIGHT */
.roi-right h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.roi-right p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}

.roi-right ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.roi-right ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.roi-right ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #D4AF37;
}

.roi-btn {
  background: #D4AF37;
  color: #0A2A43;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.roi-btn:hover {
  background: #b8962f;
  transform: translateY(-3px);
}

@media (max-width: 992px) {

  .roi-content {
    flex-direction: column;
    text-align: center;
  }

  .roi-numbers {
    justify-content: center;
  }

}

/* ===================================== */
/* QUALIFICATION SECTION – PREMIUM STYLE */
/* ===================================== */

.qualification-section {
  background: #f4f7fb;
  padding: 120px 20px;
}

/* Container */
.qualification-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Form Wrapper Card */
.form-wrapper {
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Section Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 34px;
  color: #0A2A43;
  margin-bottom: 12px;
  font-weight: 700;
}

.form-header p {
  font-size: 16px;
  color: #666;
}

/* Benefits Row */
.form-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.form-benefits span {
  background: #f9fafc;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #0A2A43;
  font-weight: 500;
  border: 1px solid #eef1f5;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-full {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

/* Inputs */
.admission-form input,
.admission-form select {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e5e9f0;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

/* Input Hover */
.admission-form input:hover,
.admission-form select:hover {
  border-color: #d4af37;
}

/* Input Focus */
.admission-form input:focus,
.admission-form select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Submit Button */
.form-btn {
  width: 100%;
  background: linear-gradient(135deg, #D4AF37, #c79c2b);
  color: #0A2A43;
  padding: 20px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

/* Form Note */
.form-note {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #888;
}

/* Subtle Section Accent Line */
.form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0A2A43, #D4AF37);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media (max-width: 992px) {

  .form-wrapper {
    padding: 50px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-benefits {
    flex-direction: column;
    align-items: center;
  }

  .form-header h2 {
    font-size: 26px;
  }

}


/* ABOUT SECTION */
.about-section {
  background: #0A2A43;
  color: #ffffff;
  padding: 100px 0;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Left Side */
.about-left h2 {
  font-size: 30px;
  color: #D4AF37;
  margin-bottom: 10px;
}

.about-left h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ddd;
}

.about-left p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #ccc;
}

/* Right Side */
.about-right h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #D4AF37;
}

.about-right p {
  font-size: 14px;
  margin-bottom: 15px;
}

.about-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  background: #D4AF37;
  color: #0A2A43 !important;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #b8962f;
  transform: translateY(-3px);
}

/* Footer Legal Links Layout */

.main-footer {
  background: #081d2d;
  color: #aaa;
  padding: 20px 0;
  font-size: 13px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-right a:hover {
  color: #D4AF37;
}

.footer-right span {
  color: #555;
}

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Optional Pulse Effect */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* EXIT POPUP FIXED VERSION */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* MUST BE NONE */
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.popup-content {
  background: #ffffff;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-content h2 {
  color: #0A2A43;
  margin-bottom: 15px;
}

.popup-content p {
  color: #555;
  margin-bottom: 25px;
}

.popup-btn {
  background: #D4AF37;
  color: #0A2A43;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ============================= */
/* LEGAL PAGE CLEAN LAYOUT FIX */
/* ============================= */

.legal-page {
  padding: 120px 20px 80px 20px;
  background: #f7f9fc;
  display: block; /* force normal flow */
}

.legal-page .container {
  max-width: 900px;
  margin: 0 auto;
  display: block; /* remove flex/grid */
}

/* Main Title */
.legal-page h1 {
  font-size: 40px;
  color: #0A2A43;
  margin-bottom: 10px;
  font-weight: 700;
}

.effective-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

/* Section Headings */
.legal-page h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0A2A43;
  font-weight: 600;
}

/* Paragraph Styling */
.legal-page p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

/* Lists */
.legal-page ul {
  margin-left: 25px;
  margin-bottom: 25px;
}

.legal-page ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Add subtle section separation */
.legal-page h2 {
  border-left: 4px solid #D4AF37;
  padding-left: 12px;
}
