   .scan-flow {
  padding: 90px 0;
  background: #fff;
  text-align: center;
  position: relative;
}

.section-title {
  color: #f97316;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 80px;
}

.flow-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.flow-wrapper::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb26b, #f97316);
  z-index: 0;
  opacity: 0.35;
}

.flow-card {
  width: 23%;
  text-align: center;
  position: relative;
  background: none;
  z-index: 2;
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.flow-icon {
  font-size: 55px;
  margin-bottom: 20px;
  background: #fff;
  width: 75px;
  height: 75px;
  border-radius: 3%;
  border: 3px solid #f97316;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  box-shadow: 0 0 15px rgba(249,115,22,0.3);
}

.flow-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.flow-card p {
  font-size: 15px;
  color: #475569;
}

/* ✅ Animations */
@keyframes fadeSlide {
  to { opacity: 1; transform: translateY(0); }
}

/* ✅ Delay steps */
.flow-card:nth-child(1) { animation-delay: 0.2s; }
.flow-card:nth-child(2) { animation-delay: 0.4s; }
.flow-card:nth-child(3) { animation-delay: 0.6s; }
.flow-card:nth-child(4) { animation-delay: 0.8s; }

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .flow-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .flow-wrapper::after {
    width: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
  }

  .flow-card {
    width: 100%;
  }

  .flow-icon {
    font-size: 45px;
    width: 65px;
    height: 65px;
  }
}
/* Dark Theme Style */
.why-scan-section {
  background: #0f293f;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.scan-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.scan-subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
}

.scan-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.benefit-box {
  background: #ffb957;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.benefit-box:hover {
  border-color: #f97316;
  transform: translateY(-6px);
}

.benefit-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 16px;
  color: #bbbbbb;
}
:root {
  --primary-color: #F97316;
  --secondary-color: #0F172A;
  --bg-dark: #0B1120;
  --text-light: #FFFFFF;
  --text-muted: #CBD5E1;
}

/* Section */
.scan-benefits {
  background: #0B1120;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

/* Glow background */
.scan-benefits::before,
.scan-benefits::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  filter: blur(200px);
  opacity: 0.18;
  border-radius: 50%;
}
.scan-benefits::before { top: -80px; left: -60px; }
.scan-benefits::after { bottom: -80px; right: -60px; }

/* Title */
.benefits-title {
  color: var(--text-light);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.benefits-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
  animation: underlineGrow 1s ease forwards;
}

/* Benefit row style */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 22px 26px;
  border-left: 6px solid var(--primary-color);
  border-radius: 14px;
  margin-bottom: 25px;
  transform: translateX(-50px);
  opacity: 0;
  animation: slideIn 0.9s ease forwards;
}

.benefit-item:nth-child(2){animation-delay:0.2s;}
.benefit-item:nth-child(3){animation-delay:0.4s;}

.icon-wrap {
  background: rgba(249,115,22,0.08);
  border: 2px solid var(--primary-color);
  width: 55px;
  height: 55px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary-color);
  transition: .3s;
}

.text-wrap h3 {
  color: var(--text-light);
  font-size: 21px;
  margin-bottom: 5px;
}

.text-wrap p.short {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.text-wrap p.sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.benefit-item:hover {
  background: rgba(249,115,22,0.13);
}
.benefit-item:hover .icon-wrap {
  transform: rotate(12deg) scale(1.12);
}

/* Animations */
@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes underlineGrow {
  0% { width: 0; }
  100% { width: 80px; }
}

/* Responsive */
@media(max-width: 768px) {
  .benefit-item {
    flex-direction: row;
    text-align: left;
    gap: 14px;
    padding: 18px 20px;
  }
  .icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* Section Style */
.program-features {
  background: linear-gradient(135deg, #ffffff, #FFCC93);
  padding: 100px 20px;
  text-align: center;
}

.pf-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0B1120;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}

/* Flip Card */
.flip-card {
  perspective: 1200px;
}

.flip-inner {
  width: 100%;
  height: 350px;
  position: relative;
  transition: transform 0.9s cubic-bezier(.4,2.3,.3,.8);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Front */
.flip-front {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.flip-front img {
  width: 100%;
  height: 78%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.flip-front h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0B1120;
}

/* Back */
.flip-back {
  background: #F97316;
  transform: rotateY(180deg);
  color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-back h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.flip-back ul {
  list-style: none;
  padding: 0;
}

.flip-back ul li {
  font-size: 16px;
  margin: 8px 0;
  position: relative;
  color: #ffffff;
}

/* ✅ Orange Theme Tick */
.flip-back ul li::before {
  content: "✔";
  margin-right: 8px;
  color: #0B1120;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .flip-inner {
    height: 300px;
  }
}

/* carees page css */
 .floating-icon {
    animation: floatAround 6s ease-in-out infinite alternate;
    pointer-events: none;
  }

  .floating-icon:nth-child(1) { animation-delay: 0s; }
  .floating-icon:nth-child(2) { animation-delay: 1s; }
  .floating-icon:nth-child(3) { animation-delay: 2s; }
  .floating-icon:nth-child(4) { animation-delay: 3s; }

  @keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(10deg); }
    50% { transform: translate(-5px, 10px) rotate(-10deg); }
    75% { transform: translate(10px, -5px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }

  @media (max-width: 768px) {
    .intro-image { margin-top: 40px; }
    .floating-icon { display: none; } /* hide icons on small screens */
  }
  /*  */

/* existing + improved */
.apply-hero .overlay{
    position: absolute;
    top:0; left:0;
    width:100%;
    background: rgba(4,23,60,0.92);
    backdrop-filter: blur(4px);
}

/* hero */
.hero-content{
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 80px 0;
}

/* card */
.form-card{
    width: 100%;
    max-width: 900px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(2,10,30,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
}

/* title */
.form-card h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 22px;
    color: #ff8400;
    letter-spacing: 1px;
}

/* grid */
.form-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.form-group.full{ grid-column: span 3; }

/* labels */
.form-group label{
    font-size: 13px;
    margin-bottom: 8px;
    color: #dfe7ff;
    display: block;
}

/* inputs improved */
input, select, textarea{
    width: 100%;
    background: linear-gradient(90deg, #ffb957, #ffffff);
    padding: 12px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    color: #000;
    transition: all .22s ease;
    outline: none;
    font-size: 14px;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.02);
}

/* focus: orange border + subtle glow */
input:focus,
select:focus,
textarea:focus {
    border: 2px solid transparent; /* border transparent for gradient effect */
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(90deg, #ffb957, #ffffff) border-box;
    box-shadow: 0 6px 20px rgba(255,132,0,0.08), 0 0 0 3px rgba(255,132,0,0.15);
    transform: translateY(-1px);
    outline: none; /* default outline remove */
}

/* placeholder */
::placeholder{ color: rgba(255,255,255,0.55); }

/* checkbox */
.checkbox-field label{ display:flex; align-items:center; gap:8px; font-size:15px; color:#e6eefc;}
.checkbox-field input{ width:auto; margin-top:0; }

/* submit */
.form-btn{
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg,#ff8400,#ff9b3a);
    color: #06202b;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(255,132,0,0.12);
}
.form-btn:hover{ transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,132,0,0.16); }

/* error / success messages */
.input-error{
    border-color: #ff4d4f !important;
    box-shadow: 0 6px 16px rgba(255,77,79,0.08) !important;
}
.help-text{ font-size:13px; margin-top:6px; color:#ffbaba; display:none; }
.help-text.show{ display:block; }

/* responsive tweaks */
@media(max-width: 992px){
    .form-grid{ grid-template-columns: repeat(2,1fr); }
    .form-group.full { grid-column: span 2; }
}
@media(max-width: 768px){
    .form-grid{ grid-template-columns: 1fr; }
    .form-group.full{ grid-column: span 1; }
}

