    /* ---------- GLOBAL STYLES ---------- */
    body {
      font-family: 'Poppins', 'Segoe UI', sans-serif;
      margin: 0;
      background: linear-gradient(135deg, #e6efff 0%, #cdddfc 40%, #a8c7fa 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      color: #333;
      scroll-behavior: smooth;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 22px 22px;
      z-index: -1;
    }

    .navbar {
      
      background: linear-gradient(90deg, #161515 0%, #00376d 100%);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .navbar-brand { color: #fff !important; font-weight: 700; }
    .navbar-nav .nav-link { color: #dce8f9 !important; font-weight: 500; }
    .navbar-nav .nav-link:hover { color: #fff !important; }
    .navbar-brand img {  filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.2));}
    .navbar-brand span {  color: #ffffff !important;  letter-spacing: 0.3px;}
    .btn-header { border-radius: 50px; font-weight: 600; padding: 6px 18px;}

    /* ---------- STATISTICS ---------- */
    .stats {      
      text-align: center;
      padding: 60px 20px;
    }

    .stats h2 {
      color: #00509e;
      font-weight: 600;
      margin-bottom: 40px;
    }

    .stat {
      padding: 15px;
    }

    .stat i {
      font-size: 3rem;
      color: #00509e;
    }

    .stat h4 {
      font-weight: 700;
      color: #002b5b;
    }

    /* ---------- SERVICES ---------- */
    .services {      
      padding: 70px 20px;
    }

    .services h2 {
      text-align: center;
      color: #00509e;
      margin-bottom: 40px;
      font-weight: 600;
    }

    .service-card {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .service-card:hover { transform: translateY(-8px); }
    .service-card i {
      font-size: 2.5rem;
      color: #00509e;
      margin-bottom: 15px;
    }

    /* ---------- WHY US ---------- */
    .why-us {
      padding: 70px 20px;
      text-align: center;
    }

    .why-us h2 { color: #003366; font-weight: 600; margin-bottom: 40px; }

    .why-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .why-card i {
      font-size: 2.8rem;
      color: #00509e;
      margin-bottom: 10px;
    }

    /* ---------- CTA SECTION ---------- */
    .cta {
      background: linear-gradient(90deg, #00509e, #002b5b);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .cta h2 { font-weight: 600; margin-bottom: 15px; }
    .cta p { font-size: 1.1rem; margin-bottom: 25px; }
    .cta .btn {
      background: #ffc107;
      border: none;
      color: #002b5b;
      font-weight: 600;
      border-radius: 50px;
      padding: 12px 30px;
    }

    /* ---------- CONTACT ---------- */
    .contact {
      padding: 60px 20px;
    }

    .contact h2 {
      color: #00509e;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .contact-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      text-align: center;
    }

    .contact-card i {
      font-size: 2.5rem;
      color: #00509e;
      margin-bottom: 10px;
    }


       /* Process Section Styling */
  .thinkfirst-process {
    background: linear-gradient(135deg, #003a8c 0%, #002b5b 100%);
    color: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }

  .thinkfirst-process h2 {
    font-size: 2.2rem;
  }

  .step-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-height: 240px;
    position: relative;
    overflow: hidden;
  }

  .step-card:hover {
    background: #fff;
    color: #002b5b;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  }

  .step-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #00b4ff, #007bff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.25);
    transition: all 0.3s ease;
  }

  .step-card:hover .icon {
    background: #ffc107;
    color: #002b5b;
    transform: scale(1.1);
  }

  .step-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
  }

  .step-card p {
    font-size: 0.9rem;
    color: #dce8f9;
  }

  .step-card:hover p {
    color: #555;
  }

  .btn-light {
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .btn-light:hover {
    background: #ffc107;
    color: #002b5b;
  }

  @media (max-width: 768px) {
    .thinkfirst-process h2 {
      font-size: 1.6rem;
    }
    .step-card {
      min-height: auto;
    }
  }

      .programs-full {
  background: linear-gradient(135deg, #003a8c 0%, #002b5b 100%);
  color: #fff;
  padding: 100px 20px;
}
.search-bar input {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 12px 20px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.program-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.program-block {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 25px;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative
}
.program-block .block-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-decoration: none;
}
.program-block:hover {
  background: #fff;
  color: #002b5b;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.program-block h3 {
  color: #ffc107;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.program-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.program-block ul li {
  color: #dce8f9;
  font-size: 0.9rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 15px;
}
.program-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00b4ff;
}
.program-block:hover ul li { color: #333; }
.btn-light {
  border-radius: 50px;
  transition: 0.3s;
}
.btn-light:hover {
  background: #ffc107;
  color: #002b5b;
}

/* Custom dark pink button that matches Bootstrap btn styles */
.btn-pink {
  background-color: #d63384;
  border-color: #d63384;
  color: #fff;
}

.btn-pink:hover,
.btn-pink:focus {
  background-color: #b82c71;
  border-color: #b82c71;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(90deg, #00509e, #d63384);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-weight: 500;
  margin-top: 15px;
}

.hero-badges span {
  background: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.hero-img img {
  max-width: 500px;
  width: 100%;
  animation: float-home 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

@keyframes float-home {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .hero-badges {
    justify-content: center;
  }
}
    .hero-banner {
  position: relative;
  height: 95vh;
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=1600&auto=format");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 51, 0.72);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  max-width: 800px;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content .highlight {
  background: linear-gradient(90deg, #ffc107, #ff4fad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #e3e9ff;
}

.hero-btns .btn {
  border-radius: 50px;
  font-weight: 600;
}

.hero-stats {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: #ffc107;
}

@media (max-width: 768px) {
  .hero-banner {
    height: auto;
    padding: 80px 5% 100px;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

    /* FOOTER BASE STYLE */
.tf-footer {
  background: #002b5b;
  color: #dce8f9;
  padding: 18px 0;
  font-size: 0.9rem;
}

/* EMAIL LINK */
.tf-footer .footer-email {
  color: #ffc107;
  text-decoration: none;
}

/* RIGHT SIDE LINKS */
.tf-footer .footer-link {
  color: #ffc107;
  text-decoration: none;
}

.tf-footer .footer-link:hover,
.tf-footer .footer-email:hover {
  text-decoration: underline;
}

/* ENSURE PROPER ALIGNMENT ON DESKTOP */
.tf-footer-right {
  min-width: 260px; /* keeps spacing neat */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .tf-footer-center {
    order: 1;
    width: 100%;
    margin-bottom: 8px;
  }

  .tf-footer-right {
    order: 2;
    width: 100%;
    text-align: center !important;
  }
}



    /* Programs pages */
    .hero-prg {
    background: linear-gradient(293deg, #87196e 0%, #003a77 100%);
    color: white;
    text-align: center;
    padding: 65px 20px;
    position: relative;
}
    .hero-prg i {
      font-size: 2.6rem;
      margin-bottom: 10px;
    }
    .hero-prg h1 {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 2rem;
    }
    .hero-prg p {
      max-width: 760px;
      margin: 0 auto;
      color: #e8f0ff;
      font-size: 1rem;
    }

    /* CONTENT CARD */
    .content-prg {
      max-width: 1100px;
      margin: 40px auto;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    /* INNER */
    .inner-prg {
      padding: 40px;
    }
    .inner-prg h2 {
      color: #00509e;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .inner-prg ul {
      list-style: none;
      padding-left: 0;
    }
    .inner-prg ul li {
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
      font-size: 0.95rem;
    }
    .inner-prg ul li::before {
      content: "•";
      color: #00509e;
      position: absolute;
      left: 0;
      font-size: 1.3rem;
      top: -4px;
    }

    .highlight-box-prg {
      background: rgba(0,80,158,0.07);
      border-left: 4px solid #00509e;
      padding: 18px;
      border-radius: 8px;
      margin: 20px 0;
    }

    /* CTA BUTTON */
    .btn-apply-prg {
      background: #00509e;
      color: white;
      border-radius: 50px;
      padding: 12px 35px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-apply-prg:hover {
      background: #ffc107;
      color: #002b5b;
    }

 /* Programs main page */

.hero-programs {background:linear-gradient(135deg, #00509e, #ba0052);color:#fff;text-align: center;padding: 70px 20px;}
.hero-programs h1{font-weight:700;font-size:2.2rem;margin-bottom:10px;}
    
.program-grid {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 boxes per row */
  gap: 25px;
  padding: 0 20px;
}

.program-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: .3s;
  text-align: center;
  padding: 30px 20px;
}

.program-card:hover{
  transform:translateY(-6px);
}

.program-card i{
  font-size:2.8rem;
  color:#00509e;
  margin-bottom:10px;
}

.program-card h5{
  color:#002b5b;
  font-weight:600;
  margin-bottom:10px;
}

.program-card a{
  text-decoration:none;
  font-weight:600;
  color:#00509e;
}

.program-card a:hover{
  color:#ffc107;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablets – 2 cards per row */
@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles – 1 card per row */
@media (max-width: 576px) {
  .program-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

    /* ------------------------------ AGENT REGISTRATION PANEL ------------------------------ */
    .register-container-agnt {
      max-width: 1100px;
      margin: 70px auto;
      display: flex;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 35px rgba(0,0,0,0.15);
      min-height: 650px;
    }

    .left-panel-agnt {
      flex: 1;
      background: linear-gradient(135deg, #00509e, #002b5b);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 45px;
    }

    .left-panel-agnt img {
      width: 150px;
      margin-bottom: 20px;
      animation: float-agent 2.8s infinite ease-in-out;
    }

    @keyframes float-agent {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    .left-panel-agnt h2 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .right-panel-agnt {
      flex: 1.3;
      padding: 40px 35px;
    }

    .right-panel-agnt h3 {
      font-weight: 700;
      color: #00509e;
    }



    /* ------------------------------ BENEFITS ------------------------------ */
    .benefit-card-agnt {
      background: #fff;
      padding: 25px;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 5px 22px rgba(0,0,0,0.08);
      transition: .3s;
    }
    .benefit-card-agnt:hover { transform: translateY(-6px); }
    .benefit-card-agnt i {
      font-size: 2.4rem;
      color: #00509e;
      margin-bottom: 12px;
    }

    /* ------------------------------ CTA SECTION ------------------------------ */
    .cta-agent {
      background: linear-gradient(135deg, #002b5b, #00509e);
      color: white;
      border-radius: 14px;
      text-align: center;
      padding: 55px 20px;
      margin-top: 40px;
      box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    }

    .cta-agent h2 {
      font-weight: 700;
      font-size: 1.9rem;
    }

    /* ------------------------------ WORKFLOW SECTION ------------------------------ */
    .workflow-container-agnt {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 25px;
      flex-wrap: nowrap;
    }

    .workflow-step-agnt {
      background: #ffffff;
      padding: 25px;
      width: 240px;
      min-height: 300px;
      border-radius: 16px;
      box-shadow: 0 8px 26px rgba(0,0,0,0.10);
      text-align: center;
      transition: 0.3s ease;
      position: relative;
    }

    .workflow-step-agnt:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 34px rgba(0,0,0,0.18);
    }

    .workflow-step-agnt .icon {
      background: linear-gradient(135deg, #00509e, #0099ff);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .workflow-step-agnt .icon i {
      color: white;
      font-size: 2rem;
    }

    .step-circle-agnt {
      background: #00509e;
      color: white;
      width: 40px;
      height: 40px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 50%;
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .workflow-step-agnt h5 {
      margin-top: 20px;
      font-weight: 700;
      color: #003366;
    }

    @media (max-width: 992px) {
      .register-container-agnt { flex-direction: column; }
      .workflow-container-agnt { flex-wrap: wrap; }
      .workflow-step-agnt { width: 100%; min-height: auto; }
    }

 /* ------------------------------ Student Register------------------------------ */

/* Registration Box */
.student-register-container {
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1050px;
  margin: 100px auto 50px;
  width: 95%;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 0 25px rgba(0,0,0,0.05);
  backdrop-filter: blur(5px);
  animation: fadeUp-student .8s ease;
}

@keyframes fadeUp-student {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0px); }
}

/* Left Side Panel */
.student-left-panel {
  flex: 1;
  background: linear-gradient(135deg, #00509e 0%, #007bff 100%);
  color: #fff;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}

.student-left-panel img {
  width: 150px;
  margin-bottom: 20px;
}

.student-left-panel h2 {
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.student-left-panel p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Bullet Icons */
.student-infographic {
  text-align: left;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.student-infographic div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.94rem;
}

.student-infographic i {
  font-size: 1.5rem;
  color: #ffc107;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}

/* Right Panel */
.student-right-panel {
  flex: 1.3;
  padding: 50px 40px;
  background: #fff;
}

.student-right-panel h3 {
  color: #00509e;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Form Inputs */
.form-control, .form-select {
  border-radius: 10px;
  height: 46px;
}

.form-control:focus,
.form-select:focus {
  border-color: #00509e;
  box-shadow: 0 0 6px rgba(0,80,160,0.25);
}



/* Trust Badge */
.student-trustbadge {
  text-align:center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #00509e;
}

/* Responsive */
@media(max-width: 768px) {
  .student-register-container {
    flex-direction: column;
    margin-top: 30px;
  }

  .student-left-panel {
    padding: 25px 20px;
  }

  .student-right-panel {
    padding: 30px 20px;
  }
}

/* -----------------------------------
   HERO INTRO SECTION
------------------------------------ */

.student-hero-intro {
  text-align: center;
  padding: 110px 20px 40px;
}

.student-hero-intro h1 {
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 12px;
}

.student-hero-intro p {
  max-width: 650px;
  margin: auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Badges */
.student-hero-badges {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.student-hero-badges span {
  background: #ffffff;
  padding: 6px 15px;
  border-radius: 25px;
  border: 1px solid #d6e6ff;
  font-size: 0.92rem;
  color: #002b5b;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .student-hero-intro h1 {
    font-size: 1.6rem;
  }

  .student-hero-badges span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}


/* -----------------------------------
   TRUST SECTION (Why Students Trust Us)
------------------------------------ */

.student-trust {
  padding: 60px 20px;
 }

.student-trust-title {
  font-weight: 700;
  color: #003f7a;
  margin-bottom: 25px;
}

.student-trust-box {
  background: #f8fbff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.student-trust-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.student-trust-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #00509e;
}

.student-trust-box h5 {
  font-weight: 600;
  color: #002b5b;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .student-trust-box {
    padding: 20px 15px;
  }

  .student-trust-icon {
    font-size: 1.8rem;
  }

  .student-trust-box h5 {
    font-size: 1rem;
  }
}

/* -----------------------------------
   CTA SECTION (Global)
------------------------------------ */
.student-cta {
  background: #00509e;
  color: #fff;
  text-align: center;
  padding: 55px 20px;
  border-radius: 0;
}

.student-cta h2 {
  font-weight: 700;
  margin-bottom: 12px;
}

.student-cta p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #e8f4ff;
}

.student-cta-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: 0.3s ease-in-out;
}

.student-cta-btn:hover {
  background: #ffc107;
  color: #003366 !important;
  transform: translateY(-3px);
}

/* Mobile Styling */
@media (max-width: 768px) {
  .student-cta h2 {
    font-size: 1.5rem;
  }
  .student-cta p {
    font-size: 0.95rem;
  }
}

/* ------------------------------
   STUDENT PROCESS SECTION
------------------------------- */

.process-student {
  padding: 70px 20px;
  }

.process-title-student {
  font-weight: 700;
  color: #003f7a;
  margin-bottom: 30px;
}

.process-box-simple-student {
  background: #f8fbff;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.process-box-simple-student:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.step-icon-simple-student {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.process-box-simple-student h6 {
  font-weight: 600;
  margin-top: 5px;
  color: #003f7a;
}

/* Responsive Improvements */
@media (max-width: 768px) {
  .process-box-simple-student {
    padding: 22px 15px;
  }
  .step-icon-simple-student {
    font-size: 2rem;
  }
}


.terms-container {
      max-width: 900px;
      margin: 60px auto;
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.terms-container h2 {
      color: #003f7a;
      font-weight: 700;
      margin-bottom: 20px;
}

.terms-container h4 {
      margin-top: 28px;
      color: #00509e;
      font-weight: 600;
}



    /* ---------------- REGISTRATION SUCCESS SECTION ---------------- */
    .success-section-reg {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 15px;
      position: relative;
      overflow: hidden;
    }

    .success-card-reg {
      background: #fff;
      padding: 50px 40px;
      border-radius: 16px;
      text-align: center;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      z-index: 2;
      animation: fadeIn-success 1s ease;
    }

    @keyframes fadeIn-success {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .success-icon-reg {
      font-size: 5rem;
      color: #28a745;
      margin-bottom: 20px;
      animation: pop-success 0.6s ease-in-out;
    }

    @keyframes pop-success {
      0% { transform: scale(0.6); opacity: 0; }
      80% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); }
    }

    .success-icon-reg h2 {
      color: #00509e;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .success-icon-reg p {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 25px;
    }



    /* ---------------- CONFETTI ---------------- */
    .confetti {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
      z-index: 1;
    }

    .confetti span {
      position: absolute;
      width: 10px;
      height: 10px;
      background: #ffc107;
      animation: fall-success 3s linear infinite;
      opacity: 0.8;
    }

    @keyframes fall-success {
      0% { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(100vh) rotate(360deg); }
    }



