:root{
    --ed-blue:#0b5ed7;
    --ed-blue2:#0a53be;
    --ed-bg:#f5f7fb;
    --ed-card:#fff;
    --ed-text:#0f172a;
    --ed-muted:#64748b;
    --ed-border:#e5e7eb;
    --ed-shadow: 0 10px 28px rgba(15,23,42,.08);
    --ed-radius: 16px;
    --ed-success:#16a34a;
  }

  .ed-page{ background: var(--ed-bg); }

  /* top header */
  .ed-header{
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ed-border);
    position: sticky; top: 0; z-index: 50;
  }
  .ed-header .wrap{ height: 70px; display:flex; align-items:center; justify-content:space-between; gap:12px; }
  .ed-brand{ display:flex; align-items:center; gap:10px; text-decoration:none !important; }
  .ed-brand img{ height: 34px; width:auto; display:block; }
  .ed-nav a{
    color:#334155; font-weight:800; font-size:14px;
    text-decoration:none !important; margin-left: 18px;
  }
  .ed-nav a:hover{ color: var(--ed-blue); }
  .ed-login-pill{
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--ed-border);
    background:#fff;
    padding: 9px 12px;
    border-radius: 12px;
  }

  /* hero */
  .ed-hero{ padding: 34px 0 10px; }
  .ed-h1{ font-size: 46px; font-weight: 900; line-height:1.12; color: var(--ed-text); margin: 10px 0 12px; }
  .ed-sub{ font-size:16px; color:#334155; max-width: 560px; }
  .ed-list{ list-style:none; padding:0; margin: 18px 0 20px; }
  .ed-list li{ display:flex; gap:12px; align-items:flex-start; margin-bottom: 10px; font-weight: 800; color:#0f172a; }
  .ed-badge{
    width: 22px; height: 22px; border-radius: 15px;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight:900; flex:0 0 22px; margin-top:1px;
  }
  .ed-badge.green{ background: var(--ed-success); }
  .ed-badge.teal{ background:#10b981; }
  .ed-badge.blue{ background: var(--ed-blue); }

  .ed-btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding: 12px 18px; border-radius: 12px;
    font-weight: 900; text-decoration:none !important;
    border: 1px solid transparent;
  }
  .ed-btn-primary{ background: var(--ed-blue); color:#fff !important; }
  .ed-btn-primary:hover{ background: var(--ed-blue2); }
  .ed-btn-ghost{ background:#fff; border-color: var(--ed-border); color:#0f172a !important; }
  .ed-btn-ghost:hover{ border-color:#cbd5e1; }

  /* hero image background block (girl) */
  .ed-hero-img-wrap{
    position: relative;
    margin-top: 18px;
    height: 260px;
    border-radius: var(--ed-radius);
    overflow:hidden;
    border: 1px solid var(--ed-border);
    box-shadow: var(--ed-shadow);
    background:#fff;
  }
  .ed-hero-img-wrap img{
    width:100%; height:100%;
    object-fit: cover;
    object-position: right center;
    display:block;
  }
  /* white fade like your visual */
  .ed-hero-img-wrap:before{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(circle at 35% 50%, rgba(255,255,255,.88) 0%, rgba(255,255,255,.65) 32%, rgba(255,255,255,0) 70%);
    pointer-events:none;
  }
  /* keep left side cleaner */
  .ed-hero-img-wrap:after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(245,247,251,.95) 0%, rgba(245,247,251,.75) 35%, rgba(245,247,251,0) 70%);
    pointer-events:none;
  }

  /* card */
  .ed-card{
    background: var(--ed-card);
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius);
    box-shadow: var(--ed-shadow);
  }

  /* form */
  .ed-form{ padding: 18px; }
  .ed-form h3{ font-weight: 900; font-size: 18px; margin:0 0 8px; color: var(--ed-text); }
  .ed-form p{ margin:0 0 14px; color: var(--ed-muted); font-size: 13px; }

  .ed-input, .ed-select{
    height: 44px;
    border-radius: 12px !important;
    border: 1px solid var(--ed-border) !important;
    box-shadow: none !important;
  }
  .ed-input:focus, .ed-select:focus{ border-color: rgba(11,94,215,.45) !important; }

  .ed-switch{
    display:flex; align-items:center; justify-content:space-between;
    border:1px solid var(--ed-border);
    border-radius: 12px;
    padding: 10px 12px;
    background:#fff;
    margin-top: 8px;
  }
  .ed-switch .left{ display:flex; align-items:center; gap:10px; color:#334155; font-weight: 900; font-size: 13px; }
  .ed-toggle{ width: 48px; height: 26px; border-radius: 999px; background: var(--ed-success); position: relative; }
  .ed-toggle:after{ content:""; position:absolute; width:22px; height:22px; top:2px; left:24px; background:#fff; border-radius: 50%; box-shadow:0 4px 10px rgba(0,0,0,.12); }

  .ed-chipbar{ display:flex; gap:8px; flex-wrap:wrap; }
  .ed-chip{
    padding: 8px 10px; border-radius: 12px;
    border:1px solid var(--ed-border);
    background:#f8fafc;
    font-weight: 900; font-size: 12px;
    color:#334155; cursor:pointer; user-select:none;
  }
  .ed-chip.active{ background:#eaf2ff; border-color:#cfe1ff; color:#1d4ed8; }

  .ed-submit{
    width:100%; height: 46px;
    border-radius: 12px;
    background: var(--ed-blue); color:#fff;
    font-weight: 900; border:none; margin-top: 10px;
  }
  .ed-submit:hover{ background: var(--ed-blue2); }
  .ed-form-note{ text-align:center; font-size: 12px; color: var(--ed-muted); margin-top: 8px; }

  /* trust strip */
  .ed-trust{
    margin-top: 22px;
    padding: 16px 18px;
    display:flex; align-items:center; justify-content:space-between;
    gap: 14px; flex-wrap:wrap;
  }
  .ed-trust-title{ font-weight: 900; font-size: 14px; color: var(--ed-text); }
  .ed-logos{ display:flex; gap:20px; flex-wrap:wrap; }
  .ed-logo-img{ width: 42px; height: 42px; border-radius: 999px; border:1px solid var(--ed-border); background: linear-gradient(180deg,#fff,#f1f5f9); }

  /* section headings */
  .ed-section{ padding: 22px 0 0; }
  .ed-section h2{ font-weight: 900; font-size: 22px; color: var(--ed-text); margin-bottom: 14px; }

  /* demo feature cards */
  .ed-feature{ padding: 12px; height: 100%; }
  
  .ed-thumb{
    /* height: 92px;  */
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #eef2ff);
    border:1px solid #e6edf8; position: relative; overflow:hidden;
  }
  /* .ed-thumb:after{
    content:""; 
    position:absolute; inset: 14px; border-radius: 10px;
    background: linear-gradient(90deg, rgba(11,94,215,.15) 0 35%, transparent 35% 40%, rgba(11,94,215,.15) 40% 70%, transparent 70% 75%, rgba(11,94,215,.15) 75% 100%);
    opacity: .75;
  } */
  .ed-feature h5{ margin: 10px 0 0; font-weight: 900; font-size: 14px; color: var(--ed-text); }

  /* steps bar */
  .ed-stepsbar{
    margin-top: 14px;
    padding: 10px;
    border-radius: 999px;
    background:#fff;
    border:1px solid var(--ed-border);
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:space-between;
  }
  .ed-step{
    display:flex; align-items:center; gap:10px;
    font-weight: 900; font-size: 13px;
    color:#334155;
    padding: 8px 10px;
    border-radius: 999px;
    flex: 1 1 auto;
    justify-content:center;
    min-width: 170px;
  }
  .ed-step .no{
    width: 28px; height: 28px; border-radius: 999px;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-weight: 900;
  }
  .ed-step.one .no{ background:#0b5ed7; }
  .ed-step.two .no{ background:#16a34a; }
  .ed-step.three .no{ background:#f59e0b; }
  .ed-step.four .no{ background:#2563eb; }

  /* testimonial right card */
  .ed-testi{
    padding: 14px 16px;
    display:flex; gap:12px; align-items:center;
  }
  .ed-testi img{
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--ed-border);
    background:#fff;
  }
  .ed-tname{ font-weight: 900; color: var(--ed-text); }
  .ed-tdes{ font-size: 12px; color: var(--ed-muted); margin-top: 2px; }
  .ed-quote{ margin-top: 8px; font-size: 13px; color:#334155; font-weight: 800; }

  /* faq block */
  .ed-faq{ margin-top: 22px; padding: 16px; height: 100%; }
  .ed-faq ul{ margin:0; padding-left: 16px; }
  .ed-faq li{ margin-bottom: 10px; color:#334155; font-weight: 900; }
  .ed-faq small{ display:block; color: var(--ed-muted); font-weight: 600; margin-top: 4px; }

  /* bottom CTA bar */
  .ed-bottom{
    margin-top: 22px;
    margin-bottom: 30px;
    padding: 14px 16px;
    border-radius: var(--ed-radius);
    background: #0b2a52;
    color:#fff;
    display:flex; align-items:center; justify-content:space-between;
    gap: 12px; flex-wrap:wrap;
  }
  .ed-bottom strong{ font-size: 16px; }
  .ed-bottom .btns{ display:flex; gap:10px; flex-wrap:wrap; }
  .ed-bbtn{
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration:none !important;
    display:inline-flex; align-items:center; justify-content:center;
    gap:10px;
  }
  .ed-bbtn.call{ background:#0b5ed7; color:#fff !important; }
  .ed-bbtn.wa{ background:#16a34a; color:#fff !important; }




  /* ---------- HERO BACKGROUND IMAGE ---------- */
.ed-hero-bg {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 50px;
    min-height: 360px;
    display: flex;
    align-items: center;
}

/* Background Image */
.ed-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay for Readability */
.ed-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
}

/* Content */
.ed-hero-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    color: #ffffff;
}

/* Subtitle */
.ed-sub {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: #f3f4f6;
}

/* Feature List */
.ed-list {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.ed-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Buttons */
.ed-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ed-btn-primary {
    background: #2563eb;
    color: #fff;
}

.ed-btn-primary:hover {
    background: #1e40af;
}

.ed-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(6px);
}

.ed-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}
.eel-faq-question {
    outline: none !important;
}

#demo select {
    height: 44px !important;
}
.eel-app-download-card {
  margin-top: 22px;
    background: linear-gradient(135deg, #ffffff, #f4f8ff);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-width: 420px;
}

.eel-app-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
}

.eel-app-subtitle {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.eel-app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.eel-app-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.eel-app-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eel-btn-download {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eel-btn-download:hover {
    background: #155ab6;
    transform: translateY(-2px);
}

.eel-google-play-badge {
    max-width: 170px;
}

.eel-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin: 0px;
}

.eel-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.eel-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.eel-switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 8px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.eel-switch input:checked + .slider {
  background-color: var(--ed-success);
}

.eel-switch input:focus + .slider {
  box-shadow: 0 0 1px var(--ed-success);
}

.eel-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.eel-switch .slider.round {
  border-radius: 34px;
}

.eel-switch .slider.round:before {
  border-radius: 50%;
}


/* From Uiverse.io by bandirevanth */ 
/* Switch starts here */
.rocker {
  display: inline-block;
  position: relative;
  /*
  SIZE OF SWITCH
  ==============
  All sizes are in em - therefore
  changing the font-size here
  will change the size of the switch.
  See .rocker-small below as example.
  */
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #888;
  width: 7em;
  height: 4em;
  overflow: hidden;
  border-bottom: 0.5em solid #eee;
}

.rocker-small {
  font-size: 0.75em;
 /* Sizes the switch */
  margin: 1em;
}

.rocker::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #999;
  border: 0.5em solid #eee;
  border-bottom: 0;
}

.rocker input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-left,
.switch-right {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5em;
  width: 3em;
  transition: 0.2s;
  user-select: none;
}

.switch-left {
  height: 2.4em;
  width: 2.75em;
  left: 0.85em;
  bottom: 0.4em;
  background-color: #ddd;
  transform: rotate(15deg) skewX(15deg);
}

.switch-right {
  right: 0.5em;
  bottom: 0;
  background-color: #bd5757;
  color: #fff;
}

.switch-left::before,
.switch-right::before {
  content: "";
  position: absolute;
  width: 0.4em;
  height: 2.45em;
  bottom: -0.45em;
  background-color: #ccc;
  transform: skewY(-65deg);
}

.switch-left::before {
  left: -0.4em;
}

.switch-right::before {
  right: -0.375em;
  background-color: transparent;
  transform: skewY(65deg);
}

input:checked + .switch-left {
  background-color: #0084d0;
  color: #fff;
  bottom: 0px;
  left: 0.5em;
  height: 2.5em;
  width: 3em;
  transform: rotate(0deg) skewX(0deg);
}

input:checked + .switch-left::before {
  background-color: transparent;
  width: 3.0833em;
}

input:checked + .switch-left + .switch-right {
  background-color: #ddd;
  color: #888;
  bottom: 0.4em;
  right: 0.8em;
  height: 2.4em;
  width: 2.75em;
  transform: rotate(-15deg) skewX(-15deg);
}

input:checked + .switch-left + .switch-right::before {
  background-color: #ccc;
}

/* Keyboard Users */
input:focus + .switch-left {
  color: #333;
}

input:checked:focus + .switch-left {
  color: #fff;
}

input:focus + .switch-left + .switch-right {
  color: #fff;
}

input:checked:focus + .switch-left + .switch-right {
  color: #333;
}

#whatsappToggle {
  user-select: none;
}


/* ===== EasyEdulab Submit Button ===== */
.eel-submit-btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b5ed7, #0a53be);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* Smooth transitions */
  /* transition:
    background 0.7s ease,
    opacity 0.7s ease,
    box-shadow 0.7s ease,
    transform 0.7s ease; */
}

/* Hover */
.eel-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.35);
}

/* Active */
.eel-submit-btn:active:not(:disabled) {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.25);
}

/* Disabled */
.eel-submit-btn:disabled {
  background: #94a3b8;
  opacity: 0.75;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Text */
.eel-btn-text {
  transition: opacity 0.2s ease;
}

/* Loader */
.eel-btn-loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: eel-spin 0.8s linear infinite;
  display: none;
}

/* Loading State */
.eel-submit-btn.loading .eel-btn-text {
  opacity: 0.7;
}

.eel-submit-btn.loading .eel-btn-loader {
  display: inline-block;
}

/* Spinner animation */
@keyframes eel-spin {
  to { transform: rotate(360deg); }
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .ed-hero-bg {
        padding: 30px;
        min-height: auto;
    }

    .ed-hero-content {
        max-width: 100%;
    }

    .ed-sub {
        font-size: 16px;
    }

    .ed-faq {
      padding: 0px;
    }

    .eel-faq-left-box {
      padding: 15px;
    }

    .eel-faq-title {
        font-size: 25px;
    }

    .ed-section {
      text-align: center;
    }
}



  @media (max-width: 991px){
    .ed-h1{ font-size: 36px; }
    .ed-hero-img-wrap{ height: 220px; }
  }