/* Global Reset */
body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #222;
  overflow-x: hidden;
}
a{
  text-decoration: none;
}
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.icon {
  width: 180px;
  margin: 20px;
}



.hero {
  height: 60vh; /* 90% of the viewport height */
  min-height: 500px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text .highlight {
  color: #fbbf24; /* RadBudd yellow */
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-btn {
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.cta-btn.primary {
  position: relative;
  background-color: #22c55e; /* Bright green */
  color: white;
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 0 #1a9e4b; /* Darker green bottom shadow */
  transition: all 0.2s ease;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #1a9e4b;
  background-color: #12e760;
}

.cta-btn.primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a9e4b;
}


.cta-btn.secondary {
  background-color: #fbbf24; /* Yellow */
  color: black;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.hero-animation {
  flex-shrink: 0;
  text-align: center;
}

.site-footer {
  background-color: #f1f1f1;
  color: #555;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}


/* --- Header Layout Fix --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Optional for logo spacing */
.header-left img.icon {
  width: 180px;
}

/* --- Keep login button clean and in line --- */
.login-btn {
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 999px;
  background-color: white;
  color: #222;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  white-space: nowrap;
}

.login-btn:hover {
  background-color: #f9f9f9;
  border-color: black;
}

/* --- Get Started Button w/ Shine Effect --- */
.cta-btn.primary {
  position: relative;
  background-color: #22c55e;
  color: white;
  padding: 16px 36px;
  font-size: 1.2rem;
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}

.cta-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
  animation: shine 5s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}




/*THIS IS THE TYPING EFFECT FOR RADIOTHERAPY*/
.typing-container {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fbbf24;
  animation: 
    typing 2s steps(12, end) forwards,
    blink 0.6s step-end 6,
    remove-cursor 0.1s 3.6s forwards,
    unclip 0.1s 3.7s forwards; 
}

.typing-text {
  display: inline-block;
  color: #fbbf24;
}

@keyframes typing {
  from { width: 0 }
  to { width: 11ch }
  
}

@keyframes blink {
  0%, 100% { border-color: #fbbf24; }
  50% { border-color: transparent; }
}

@keyframes hide-cursor {
  0%   { border-right: 2px solid #fbbf24; }
  100% { border-right: none; }
}
@keyframes remove-cursor {
  to {
    border-right: none;
  }
}
@keyframes unclip {
  to {
    overflow: visible;
    white-space: normal;
    width: auto;
  }
}



/*THIS IS FOR THE MODULE SECTION UNDER THE HERO SECTION*/
.module-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 20px 10px 30px;
  margin-top: 60px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.module {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
  text-align: center;
  width: 100px;
  transition: transform 0.2s ease;
}

.module img {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}


.module span {
  max-width: 90px;
  line-height: 1.2;
  word-wrap: break-word;
}




/*VALUE PROPOSITION*/
.value-proposition {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-feature {
  display: flex;
  align-items: center; /* Already good */
  justify-content: center; /* <== Change from 'space-between' to 'center' */
  gap: 200px; /* <== Reduce gap from 40px to 20px */
  padding: 60px 100px;
  flex-wrap: wrap;
  text-align: left;
}


.value-feature.reverse {
  flex-direction: row-reverse;
}



.value-feature div {
  flex: 1;
  min-width: 260px;
}

.vp-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #22c55e;
}

.value-feature p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .value-feature,
  .value-feature.reverse {
    flex-direction: column;
    text-align: center;
  }

  .value-feature img {
    width: 150px;
  }

  .vp-title {
    font-size: 1.5rem;
  }
}


.value1{
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}






/*TESTIMONIAL*/
.testimonial-section {
  background: radial-gradient(circle at top, #fdfdfd, #a5a4a4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #e9e9e9;
}

.testimonial {
  max-width: 300px;
  margin: 20px;
}

.quote {
  font-size: 3rem;
  color: #f87171; /* soft red-pink */
  line-height: 0;
  display: block;
  margin-bottom: 10px;
}

.student-name {
  color: #f87171;
  font-size: 1.3rem;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0 0 10px;
}

.testimonial-text {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #111;
  font-size: 1rem;
  line-height: 1.6;
}



.testimonial-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.gold-box {
  margin-top: -5px; /* Pulls it up so it's close to the button */
  width: 120px;
  height: auto;
  /* Ensures it looks "behind" the button if needed */
  opacity: 1;
  transition: transform 0.3s ease;
}

.cta-btn.primary:hover {
  transform: scale(1.05);
}


.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 2000px;
  margin: 0 auto;
}





/*THIS IS FOR THE FOOTER*/

.footer-logo {
  flex: 1 1 150px;
}

.footer-logo img {
  width: 180px; /* Adjust to match your layout */
  height: auto;
  display: block;
  
}


.site-footer {
  background-color: #000;
  color: #ccc;
  padding: 60px 40px 30px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  flex: 1 1 150px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 2 1 400px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1rem;
  color: #888;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1 1 150px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: brightness(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-legal a {
  color: #888;
  margin: 0 10px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

.footer-copy {
  color: #666;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social {
    margin-top: 20px;
  }
}

.phone {
  display: none;
}

.animation{
  width: 100%;
  max-width: 350px;
  height: auto;
}

.cta-buttons.big {
  display: flex;
}

.cta-buttons.small {
  display: none;
}
.login-btn {
    position: absolute;
    top: 16px;
    right: 100px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
/*THIS IS FOR THE MOBILE LOOK*/
/*THIS STOPS THE TYPING ANIMATION IF THE SCREEN IS SMALL*/
@media (max-width: 1100px) {
  .hero {
    height: 80vh;
    min-height: 700px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }
  .typing-container {
    animation: none !important;
    border-right: none !important;
    overflow: visible;
    white-space: normal;
  }
  .cta-buttons.big {
    display: none;
  }
  .cta-buttons.small {
    display: flex;
    justify-content: center;
  }
}

/* Mobile hero layout */
@media (max-width: 1000px) {
 .hero {
    height: 83vh;
    min-height: 700px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
  }
  .animation{
  
  max-width: 300px;
  height: auto;
}

  .hero-animation {
    width: 100%;
    max-width: 350px;
    align-self: center;
    margin-top: 0;
  }

  .hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    max-width: 400px;
    
  }

  .cta-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .login-btn {
    position: absolute;
    top: 16px;
    right: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .header-left {
    justify-content: center;
    width: 100%;
  }

  .icon {
    max-width: 150px;
    margin: 0 auto;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 16px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value-feature,
  .value-feature.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }

  .value-feature img {
    order: 3;
    width: 180px;
  }

  .value-feature .vp-title {
    order: 1;
    font-size: 1.5rem;
    margin: 0;
    color: #22c55e;
  }

  .value-feature p {
    order: 2;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    color: #333;
  }
     .module-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 30px;
    gap: 20px;

    scroll-padding-left: 50px; /* ✅ Prevents first item cutoff */
  }

  .module {
    flex: 0 0 auto;
    width: 100px;
  }

  .module-strip::-webkit-scrollbar {
    height: 6px;
  }

  .module-strip::-webkit-scrollbar-thumb {
    background: #3aad49;
    border-radius: 10px;
  }

  .module-strip::-webkit-scrollbar-track {
    background: transparent;
  }

  .phone {
    display: block;
    min-width: 100px;
    flex: 0 0 auto;
  }
  
}














/* ===== VALUE SECTION – FADE TO BLACK ===== */
.value-section {
  position: relative;
  padding: 130px 0 150px;  /* more space top & bottom */
  background: linear-gradient(to bottom, #ffffff 0%, #020617da 30%, #000000 100%);
}

.value-proposition {
  position: relative;
  display: flex;
  flex-direction: column;
           /* 🔥 much bigger gap between blocks */
  max-width: 1200px;

  padding: 40px 24px 0;
  color: #e5e7eb;
}

.value-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 40px 40px;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 20rem;
  /* fade-in base state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* when in view */
.value-feature.vp-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* keep spacing comfortable on mobile */
@media (max-width: 1000px) {
 
  .value-proposition {
    gap: 90px;
  }

  .value-feature {

    gap: 32px;
  }
}


.value-feature.reverse {
  flex-direction: row-reverse;
}

/* Apply 220px ONLY to the small icons, not the ImageMatch image */
.value-feature img:not(.image-match-img) {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}


.value-feature div {
  flex: 1;
  min-width: 260px;
}

.vp-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #22c55e;
}

.value-feature p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e5e7eb;
}

.value1 {
  max-width: 360px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== IMAGE MATCHING CARD (BIGGER IMAGE) ===== */
.image-match-feature {
  align-items: stretch;
}

.image-match-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  transform-origin: center;
  animation: float-card 6s ease-in-out infinite;
}

.image-match-orbit {
  position: absolute;
  inset: 6px;
  border-radius: 24px;
  border: 1px dashed rgba(52, 211, 153, 0.35);
  filter: blur(0.3px);
  opacity: 0.9;
  animation: orbit 14s linear infinite;
  pointer-events: none;
}

/* Make the image fill the entire card */
.image-match-img {
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: contain;         /* 🔑 fills the box while keeping aspect ratio */
  display: block;
  border-radius: 0;          /* card handles rounding */
}

/* Badge stays the same, but looks better on the bigger image */
.image-match-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.95);
  color: #ecfdf5;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.9);
  z-index: 2;
}

.image-match-card {
  transform-origin: center;
  animation: float-card 6s ease-in-out infinite;
}
.image-match-card:hover {
  animation: none;
  transform: translateY(-8px) scale(1.02);
}


/* Image Match "Try now!" button */
.image-match-feature .try-now-btn {
  background: #2563eb;              /* blue */
  border-color: #2563eb;
  color: #ffffff;
  font-size: 0.95rem;    
  font-weight: bold;           
  padding: 0.65rem 1.6rem;          /* smaller pill */
  margin-top: 1.5rem;               /* space below the list */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;   
  box-shadow: 0 8px 0 #1d4ed8;       /* 3D bottom edge */
  border-radius: 50px;    
  transition: transform 0.12s ease, box-shadow 0.12s ease,
              background 0.12s ease;          
}

/* Hover: slightly “press” the button */
.image-match-feature .try-now-btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(2px);
  box-shadow: 0 6px 0 #1e3a8a;
}

/* Shine animation just for this button */
.image-match-feature .try-now-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -40%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-150%);
  animation: tryNowShine 2.5s infinite;
  pointer-events: none;
}

/* Active (mouse down): fully pressed */
.image-match-feature .try-now-btn:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 #1e3a8a;
}

@keyframes tryNowShine {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(250%);
  }
}



/* ===== IMAGE MATCH – MOBILE LAYOUT FIX ===== */
@media (max-width: 900px) {
  /* Stack content nicely on phones */
  .image-match-feature {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
    padding: 32px 16px;
  }

  /* Text block (with title) first */
  .image-match-feature .value1 {
    order: 1;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  /* Big title on top */
  .vp-title.image-match-title {
    font-size: 3.0rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;

  }
  
  .vp-title.question-bank-title{
    font-size: 3.0rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;

  }
  
  
  
  .vp-title.medical-imaging-title {
    font-size: 3.0rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;

  }


 

  .value-section {
  position: relative;
  padding: 130px 0 150px;  /* more space top & bottom */
  background: linear-gradient(to bottom, #ffffff 0%, #020617d8 10%, #000000 100%);
}

  .image-match-card {
    order: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
    cursor: auto;
    transform-origin: center;
    animation: float-card 6s ease-in-out infinite;

    /* Let the image decide height */
    aspect-ratio: auto;
    height: auto;
  }

  .image-match-card .image-match-img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;        /* 🔑 no fixed 300px */
    object-fit: contain; /* 🔑 show whole image, no cropping */
    border-radius: 0;
    transform: none;
  }


/* QUESTION BANK – MOBILE ORDER FIX */

    .question-bank-feature {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
    padding: 32px 16px;
  }

  /* Text first */
  .question-bank-feature .value1 {
    order: 1;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  /* Card second */
  .question-bank-feature .question-bank-card {
    order: 2;
    max-width: 100%;
    margin: 0;
  }
  

  /* MEDICAL IMAGING – MOBILE ORDER FIX */
    .medical-imaging-feature {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
    padding: 32px 16px;
  }

  /* Text first */
  .medical-imaging-feature .value1 {
    order: 1;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  /* Image stack second */
  .medical-imaging-feature .medical-imaging-stack {
    order: 2;
    max-width: 100%;
    margin: 0;
  }



}



/* ===== MOBILE ADAPTATION ===== */
@media (max-width: 1000px) {

  .question-bank-card {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .mcq-3d {
    transform: rotateX(12deg) rotateY(-12deg);
  }

  .question-bank-title {
    font-size: 2rem;
  }
  .value-section {
    padding: 80px 0 90px;
  }

  .value-proposition {
    gap: 60px;
    padding: 20px 16px 0;
  }

  .value-feature,
  .value-feature.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 32px 12px;
  }


  .vp-title {
    font-size: 1.6rem;
  }

  .value1 {
    max-width: 100%;
  }

    .image-match-card {
    order: 2;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
    cursor: auto;
    transform-origin: center;
    animation: float-card 6s ease-in-out infinite;

    /* Let the image decide height */
    aspect-ratio: auto;
    height: auto;
  }

  .image-match-card .image-match-img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;        /* 🔑 no fixed 300px */
    object-fit: contain; /* 🔑 show whole image, no cropping */
    border-radius: 0;
    transform: none;
  }



  .medical-imaging-stack {
    flex: 0 0 auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
  }

  .value-section {
  position: relative;
  padding: 130px 0 150px;  /* more space top & bottom */
  background: linear-gradient(to bottom, #ffffff 0%, #020617f1 5%, #000000 100%);
}
}





/* ===== ANIMATIONS ===== */
@keyframes float-card {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes pulse-badge {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.6);
  }
  50% {
    transform: translateY(-2px) scale(1.07);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.9);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.7;
  }
}






/* ===== IMAGE MATCH TITLE – HIGH CONTRAST ===== */
.image-match-title {
  font-size: 4.2rem;
  font-weight: 800;
  background: linear-gradient(120deg, #1ee783, #35e670);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* gradient text */

}

/* ===== IMAGE MATCH LIST – GLOW + ANIMATION ===== */
.image-match-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.image-match-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #e5e7eb;
  opacity: 0;
  transform: translateX(-10px);
  animation: imageMatchBulletIn 0.6s ease-out forwards;
}

/* Glowing green bullets */
.image-match-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0%, #16a34a 60%, transparent 100%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/* Staggered animation for each bullet */
.image-match-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.image-match-list li:nth-child(2) {
  animation-delay: 0.25s;
}
.image-match-list li:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes imageMatchBulletIn {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

















/* ===== QUESTION BANK FEATURE ===== */
.question-bank-feature {
  align-items: flex-start;
  gap: 120px;          /* more space between card and text */
}

/* Card container */
.question-bank-card {
  flex: 0 0 360px;     /* slightly narrower so it can't sit on top of text */
  max-width: auto;
  min-width: 280px;
  perspective: 1200px;
}


/* 3D MCQ block */
.mcq-3d {
  position: relative;
  width: 100%;
  padding: 22px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #4f46e5, #1d4ed8);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
  transform-style: preserve-3d;
  /* pulled slightly left + a tiny bit less Y tilt */
  transform: translateX(-40px) rotateX(16deg) rotateY(-14deg);
  animation: mcqFloat 6s ease-in-out infinite;
}


/* Two rows, 2 x 2 grid */
.mcq-row {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}

.mcq-row:last-child {
  margin-bottom: 0;
}

/* Option cards */
.mcq-option {
  flex: 1;
  height: 64px;
  border-radius: 18px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #020617;
  box-shadow: 0 8px 0 rgba(15, 23, 42, 0.35);
  transform: translateZ(25px);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Correct A – green glow */
.option-a {
  background: #22c55e;
  color: #ecfdf5;
  box-shadow: 0 10px 0 #15803d, 0 0 18px rgba(34, 197, 94, 0.8);
  animation: correctPulse 2.4s ease-in-out infinite;
}

/* Neutral options */
.option-b,
.option-d {
  background: #f9fafb;
}

/* Incorrect C – red + shake */
.option-c {
  background: #fee2e2;
  color: #991b1b;
  box-shadow: 0 8px 0 #b91c1c, 0 0 12px rgba(239, 68, 68, 0.6);
  animation: wrongShake 3.4s ease-in-out infinite;
}

/* Hover lift */
.mcq-option:hover {
  transform: translateZ(32px) translateY(-2px);
  box-shadow: 0 14px 0 rgba(15, 23, 42, 0.4), 0 0 24px rgba(15, 23, 42, 0.7);
}



/* Small click rays around cursor */
.mcq-cursor::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #020617;
  opacity: 0;
  transform: scale(0.5);
  animation: clickRipple 2.8s ease-in-out infinite;
}

/* Question bank title style */
.question-bank-title {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(120deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Question bank list */
.qb-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.qb-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.qb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8 0%, #0ea5e9 60%, transparent 100%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
}

/* ===== ANIMATIONS ===== */
@keyframes mcqFloat {
  0%, 100% {
    transform: translateX(-40px) rotateX(16deg) rotateY(-14deg) translateY(0);
  }
  50% {
    transform: translateX(-40px) rotateX(12deg) rotateY(-10deg) translateY(-8px);
  }
}


@keyframes correctPulse {
  0%, 100% {
    box-shadow: 0 10px 0 #15803d, 0 0 18px rgba(34, 197, 94, 0.7);
    transform: translateZ(25px);
  }
  50% {
    box-shadow: 0 14px 0 #15803d, 0 0 26px rgba(34, 197, 94, 0.9);
    transform: translateZ(30px) translateY(-2px);
  }
}

@keyframes wrongShake {
  0%, 100% {
    transform: translateZ(25px);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateZ(25px) translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateZ(25px) translateX(2px);
  }
}

@keyframes cursorClick {
  0%, 50% {
    transform: translateZ(40px) rotate(-18deg) translate(0, 0) scale(1);
  }
  60% {
    transform: translateZ(40px) rotate(-18deg) translate(3px, 4px) scale(0.96);
  }
  80%, 100% {
    transform: translateZ(40px) rotate(-18deg) translate(0, 0) scale(1);
  }
}

@keyframes clickRipple {
  0%, 50% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.3);
  }
}























/* ===== MEDICAL IMAGING FEATURE ===== */
.medical-imaging-feature {
  align-items: center;
}

/* Image stack container */
.medical-imaging-stack {
  position: relative;
  flex: 0 0 520px;          /* 🔥 nice and big */
  max-width: 520px;
  min-width: 320px;
  aspect-ratio: 16 / 9;
}


/* Base style for each “album card” */
.mi-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.9);
  opacity: 0;
  transform-origin: center center;
  animation: miAlbum 10s infinite ease-in-out;
}

/* Each image has its own “back” position */
.mi-img-1 {
  --x: -26px;
  --y: 10px;
  --angle: -10deg;
  animation-delay: 0s;
  z-index: 3;
}

.mi-img-2 {
  --x: 0px;
  --y: 22px;
  --angle: 0deg;
  animation-delay: 3s;
  z-index: 2;
}

.mi-img-3 {
  --x: 26px;
  --y: 10px;
  --angle: 10deg;
  animation-delay: 6s;
  z-index: 1;
}


/* Medical Imaging title style */
.medical-imaging-title {
  font-size: 2.4rem;
  background: linear-gradient(120deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Medical imaging bullet list */
.mi-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.mi-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.mi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8 0%, #22c55e 60%, transparent 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.9);
}

@keyframes miAlbum {
  /* back of the stack */
  0% {
    opacity: 0.15;
    transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--angle, 0deg)) scale(0.9);
  }

  /* move to front */
  8% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  /* stay as primary image (≈5s total with delays) */
  33% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  /* fade back to its “stacked” position */
  40% {
    opacity: 0.15;
    transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--angle, 0deg)) scale(0.9);
  }

  /* remain in the stack until its next turn */
  100% {
    opacity: 0.15;
    transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--angle, 0deg)) scale(0.9);
  }
}





















/* ===== ABOUT / CLOUD BANNER ===== */
.about-banner {
  background: #f9fafb;
  padding: 80px 16px 100px;
}

.about-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-banner-card {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  padding: 40px 56px;
  color: #ffffff;
  opacity: 0;                     /* for scroll fade-in */
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-banner-card.vp-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Text inside card */
.about-banner-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 30px;
}

.about-subtitle {
  font-weight: 600;
  margin: 0 0 70px;
}

.about-body {
  margin: 0 0 24px;
  max-width: 560px;
}

/* White pill button variant */
.about-btn {
  background: #ffffff;
  color: #1e293b;
  border-radius: 999px;
  padding: 12px 32px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  font-size: 1rem;
}

.about-btn:hover {
  background: #e0f2fe;
  transform: translateY(-1px);
}

/* Animated clouds */
.about-cloud {
  position: absolute;
  background: rgba(148, 201, 255, 0.23);
  border-radius: 999px;
  filter: blur(0.3px);
  animation: cloudDrift 22s linear infinite;
}

/* Left, right, and mid clouds with different sizes/paths */
.cloud-left {
  width: 200px;
  height: 160px;
  top: -40px;
  left: -60px;
}

.cloud-right {
  width: 260px;
  height: 200px;
  bottom: -70px;
  right: -80px;
  animation-duration: 26s;
}

.cloud-mid {
  width: 180px;
  height: 140px;
  top: 40%;
  right: 18%;
  opacity: 0.7;
  animation-duration: 30s;
}

/* Drift gently left/right */
@keyframes cloudDrift {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(25px);
  }
  100% {
    transform: translateX(-20px);
  }
}

/* Mobile tweaks */
@media (max-width: 800px) {
  .about-banner-card {
    padding: 28px 24px 32px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-banner-content {
    max-width: 100%;
  }

  .cloud-right,
  .cloud-mid {
    opacity: 0.4;
  }
}















/* ===== COMMUNITY / TIKTOK SECTION ===== */
.community-section {
  background: #f9fafb;
  padding: 80px 16px 100px;
}

.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.community-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.community-subtitle {
  font-size: 1.02rem;
  color: #4b5563;
  margin: 0 0 28px;
}

.community-embed {
  display: flex;
  justify-content: center;
}

/* optional fade-in reuse */
.community-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.community-section.vp-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* mobile tweaks */
@media (max-width: 768px) {
  .community-title {
    font-size: 1.6rem;
  }
}













/* COMMUNITY SECTION – SOFT SKY + CLOUDS */
.community-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  /* soft fade top + bottom */
  background: linear-gradient(
    to bottom,
    #f5fbff 0%,     /* very light at top */
    #8de4ff 25%,    /* sky blue */
    #5fd9ff 50%,    /* richer in the middle */
    #8de4ff 75%,    /* sky blue again */
    #f5fbff 100%    /* very light at bottom */
  );
}

/* soft colour “edges” on top & bottom */
.community-section::before,
.community-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.community-section::before {
  top: 0;
  background: linear-gradient(to bottom, #f5fbff 50%, transparent 100%);
}

.community-section::after {
  bottom: 0;
  background: linear-gradient(to top, #f5fbff 50%, transparent 100%);
}

/* Make content sit above background layers */
.community-inner {
  position: relative;
  z-index: 3;
}

/* Base cloud shape */
.cloud-bg {
  position: absolute;
  width: 220px;
  height: 80px;
  background: #ffffff;
  border-radius: 50px;
  opacity: 0.55;
  filter: blur(1px);
  pointer-events: none;
  box-shadow:
    60px 0 0 0 #ffffff,
    120px 10px 0 0 #ffffff,
    30px -15px 0 0 #ffffff,
    90px -10px 0 0 #ffffff;
  animation: floatCloud 55s linear infinite;
  z-index: 2; /* under content, above gradient */
}

/* Individual cloud positions – more of them */
.cloud-1 { top: 8%;  left: -18%; }
.cloud-2 { top: 25%; right: -20%; animation-duration: 60s; opacity: 0.45; }
.cloud-3 { top: 50%; left: -22%; animation-duration: 70s; opacity: 0.4; }
.cloud-4 { top: 65%; right: -25%; animation-duration: 80s; opacity: 0.35; }
.cloud-5 { bottom: 10%; left: 10%; animation-duration: 75s; opacity: 0.4; }
.cloud-6 { bottom: 0%; right: 5%; animation-duration: 90s; opacity: 0.3; }

/* Slow drifting animation */
@keyframes floatCloud {
  0%   { transform: translateX(0); }
  100% { transform: translateX(140%); }
}
