


 
    /* ═══════════════════════════════════════════
       ROOT VARIABLES
    ═══════════════════════════════════════════ */
    :root {
      --navy:        #010d1a;
      --navy-mid:    #020e1e;
      --navy-deep:   #031525;
      --blue-1:      #003c78;
      --blue-2:      #00b4ff;
      --blue-3:      #003c78;
      --accent:      #00b4ff;
      --accent-lt:   #67d9ff;
      --gold:        #ffca28;
      --gold-lt:     #ffeb3b;
      --white:       #ffffff;
      --light:       #f0f6ff;
      --muted:       #0b0b0b;
      --card-bg:     #ffffff;
      --border:      #e5e7eb;
      --radius:      16px;
      --radius-sm:   10px;
      --shadow:      0 8px 32px rgba(0,90,160,0.15);
      --shadow-lg:   0 20px 60px rgba(0,0,0,0.22);
      --hero-grad:
        radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,90,160,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,180,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,60,120,0.18) 0%, transparent 60%),
        linear-gradient(160deg, #010d1a 0%, #020e1e 40%, #031525 100%);
      --brand-grad:  linear-gradient(135deg, #005aa0, #00b4ff);
      --gold-grad:   linear-gradient(90deg, #ffca28, #ffeb3b);
      --font-head:   'Plus Jakarta Sans', sans-serif;
      --font-body: 'Inter', sans-serif;
          /* --font-body:   'Space Grotesk', sans-serif; */
    }

    /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; overflow-x:hidden;
  max-width: 100%; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: #1f2937;
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }

    /* ═══════════════════════════════════════════
       SHARED BUTTON SYSTEM  ← FIX: was missing
    ═══════════════════════════════════════════ */
    .btn-primary-scs {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--brand-grad);
      color: #fff;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 6px 20px rgba(0,90,160,.35);
      font-family: var(--font-head);
      white-space: nowrap;
    }
    .btn-primary-scs:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,180,255,.4);
      color: #fff;
    }
    .btn-outline-scs {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border: 2px solid var(--blue-1);
      border-radius: var(--radius-sm);
      color: var(--blue-1);
      background: transparent;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all .2s;
      font-family: var(--font-head);
      white-space: nowrap;
    }
    .btn-outline-scs:hover { background: var(--brand-grad); border-color: transparent; color: #fff; }
    .btn-white {
      background: #fff;
      color: var(--blue-1);
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 16px;
      text-decoration: none;
      display: inline-block;
      transition: all .2s;
      box-shadow: 0 8px 24px rgba(0,0,0,.2);
      border: none;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); color: var(--blue-1); }





 /* ═══════════════════════════════════════════
       HEADER  (scs-header) — naya, standalone section
    ═══════════════════════════════════════════ */
    .scs-header {
      background: var(--hero-grad);
      position: relative;
      z-index: 20;
      padding: 10px 32px;
      margin-bottom: -2px;
    }
    .scs-header-inner {
      max-width: 1320px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .scs-header .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      text-decoration: none;
    }
    .scs-header .logo img {
      height: 50px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }
    .scs-header .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .scs-header .logo-text .brand-name {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 22px;
      color: var(--white);
    }
    .scs-header .logo-text .brand-tagline {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.988);
      white-space: nowrap;
    }
    .scs-header-nav {
      display: flex;
      align-items: center;
      gap: 36px;
      flex: 1;
      justify-content: center;
    }
 

    .scs-header-nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-head);
  transition: color .2s;
  white-space: nowrap;
  position: relative;
  padding-bottom: 6px;
}
.scs-header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.scs-header-nav a:hover::after { width: 100%; }


    .scs-header .phone-btn {
      display: flex; align-items: center; gap: 8px;
      background: var(--gold-grad);
      color: #1a1a1a;
      padding: 10px 22px; border-radius: 50px;
      font-weight: 700; font-size: 15px;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .scs-header .phone-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255,202,40,.4);
    }
    .scs-nav-toggle {
      display: none;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--white);
      width: 42px; height: 42px;
      border-radius: 10px;
      font-size: 18px;
      cursor: pointer;
      flex-shrink: 0;
    }
 
    /* ═══════════════════════════════════════════
       HERO SECTION  (UNCHANGED)
    ═══════════════════════════════════════════ */
    .hero {
      background: var(--hero-grad);
      padding: 30px 32px 60px;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .hero-inner {
      max-width: 1320px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: start;
    }
    .hero-left, .hero-right { min-width: 0; }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(0,180,255,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,180,255,0.07) 0%, transparent 70%);
      top: -180px; right: -180px;
      pointer-events: none;
    }
    .hero-orb-bl {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,90,160,0.12) 0%, transparent 70%);
      bottom: -120px; left: -80px;
      pointer-events: none;
    }
    .hero-beam {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,180,255,0.5), transparent);
      animation: beamMove 4s ease-in-out infinite;
    }
    @keyframes beamMove { 0%,100%{opacity:.3} 50%{opacity:1} }
 
    .badge-ai {
      display: inline-flex; align-items: center; gap: 7px;
      background: linear-gradient(90deg, rgba(255,202,40,.18), rgba(255,202,40,.06));
      border: 1px solid rgba(255,202,40,.45);
      color: var(--gold);
      padding: 6px 18px; border-radius: 50px;
      font-weight: 700; font-size: 13px;
      margin-bottom: 20px;
    }
    .hero-main-title {
      font-size: clamp(1.85rem, 3.8vw, 2.65rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.18;
      letter-spacing: -.4px;
      margin: 0 0 8px;
    }
    .hero-main-title span {
      background: linear-gradient(90deg,#00c8ff 0%,#0095e8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title-underline {
      width: 120px; height: 4px;
      background: var(--gold-grad);
      border-radius: 4px;
      margin: 0 0 22px;
    }
    .hero-course-label { font-size: 17px; font-weight: 700; color: rgba(255,255,255,.95); margin: 0 0 10px; }
    .hero-course-desc { font-size: 15px; color: rgba(255, 255, 255, 0.921); line-height: 1.72; margin: 0 0 26px; }
    .hero-stats-divider {
      height: 1px;
      background: linear-gradient(90deg,rgba(255,255,255,.1),rgba(0,180,255,.3),rgba(255,255,255,.1));
      margin: 0 0 22px;
    }
    .hero-stats-strip { display: flex; margin-bottom: 30px; }
    .hss-item { flex:1; text-align:center; padding:0 12px; position:relative; }
    .hss-item + .hss-item::before {
      content:''; position:absolute; left:0; top:10%; bottom:10%;
      width:1px; background:rgba(255,255,255,.15);
    }
    .hss-icon { display:block; font-size:18px; margin-bottom:5px; color:#fff; }
    .hss-val  { display:block; font-size:19px; font-weight:800; color:#fff; margin-bottom:4px; }
    .hss-lbl  { font-size:13px; color:rgba(254, 254, 254, 0.973); line-height:1.3; }
    .cta-group { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:20px; }
 
    .btn-advisor-scs {
      background: rgba(255,255,255,.1);
      border: 1.5px solid rgba(255,255,255,.35);
      color: var(--white);
      padding: 13px 26px; border-radius: var(--radius-sm);
      font-weight: 700; font-size: 15px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background .2s, transform .18s;
      backdrop-filter: blur(6px);
    }
    .btn-advisor-scs:hover { background:rgba(255,255,255,.18); transform:translateY(-2px); color:#fff; }
 
    .btn-download-gold {
      background: var(--gold-grad);
      color: #1a1200;
      padding: 13px 26px; border-radius: var(--radius-sm);
      font-weight: 800; font-size: 15px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: transform .18s, box-shadow .18s;
      box-shadow: 0 6px 20px rgba(255,202,40,.35);
      border: none;
    }
    .btn-download-gold:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(255,202,40,.5); color:#1a1200; }
 
    .hero-video-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      margin-bottom: 20px;
      border: 1px solid rgba(0,180,255,.15);
      position: relative;
      padding-top: 56.25%;
    }
    .hero-video-wrap iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
      display: block;
    }
 
    .hero-stats {
      background: rgba(0,180,255,.07);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0,180,255,.18);
      border-radius: var(--radius);
      padding: 18px;
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 16px;
    }
    .hero-stat { flex:1; min-width:100px; text-align:center; }
    .hero-stat .val { font-size:22px; font-weight:800; color:#fff; display:block; }
    .hero-stat .lbl { font-size:13px; color:rgba(255, 255, 255, 0.979); }
    .timer-box {
      background: rgba(0,180,255,.06);
      border: 1px solid rgba(0,180,255,.2);
      border-radius: var(--radius);
      padding: 16px;
      text-align: center;
    }
    .timer-box h3 { color:#fff; font-size:16px; font-weight:700; margin-bottom:6px; }
    .timer-box #timer {
      font-size: 28px; font-weight: 800;
      background: linear-gradient(90deg,#00c8ff 0%,#0095e8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
 


    /* HEADER RESPONSIVE */
    @media (max-width: 991px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .hero {
        padding: 24px 24px 48px;
      }
      .scs-header-nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--navy-deep);
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
      }
      .scs-header-nav.open {
        max-height: 220px;
        padding: 10px 32px 18px;
      }
      .scs-header-nav a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .scs-nav-toggle { display: flex; align-items: center; justify-content: center; }
    }
 
    @media (max-width: 600px) {
      .scs-header { padding: 8px 18px; }
      .hero { padding: 20px 18px 40px; }
      .scs-header .logo img { height: 38px; }
      .scs-header .logo-text .brand-name { font-size: 17px; }
      .scs-header .logo-text .brand-tagline { font-size: 10.5px; }
      .scs-header .phone-btn { padding: 9px 16px; font-size: 13px; }
      .scs-header .phone-btn i { display: none; }
    }
 
    @media (max-width: 400px) {
      .scs-header .phone-btn { display: none;}
      .scs-header .logo-text .brand-tagline { display: none; }
      .scs-header .logo-text .brand-tagline { display: none; }
    }





    /* ═══════════════════════════════════════════
       SECTION COMMON
    ═══════════════════════════════════════════ */
    .section-pad { padding: 80px 0; }
    .section-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight:800; color:#111827; margin-bottom:12px; }
    .section-title span { color: var(--blue-1); }
    .section-sub { color: rgb(44, 37, 37); font-size:16px; max-width:640px; margin:0 auto; font-weight: 600; font-family: sans-serif; }


    /* ═══════════════════════════════════════════
       EARLY BIRD PRICING CARD
    ═══════════════════════════════════════════ */
    .pricing-card {
      background: linear-gradient(135deg, #010d1a, #031525);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(0,180,255,.15);
    }
    .pricing-card::before {
      content:''; position:absolute;
      width:300px; height:300px;
      background: radial-gradient(circle, rgba(0,90,160,.25), transparent 70%);
      top:-80px; right:-60px;
    }
    .pricing-card .badge-early {
      background: var(--gold-grad);
      color: #1a1a1a;
      padding: 5px 16px; border-radius: 50px;
      font-size: 13px; font-weight: 700;
      display: inline-block; margin-bottom: 16px;
    }
    .pricing-card h3 { color:#fff; font-size:1.5rem; margin-bottom:16px; position:relative; z-index:1; }
    .pricing-card .price-old { color:rgba(255,255,255,.5); font-size:2rem; text-decoration:line-through; }
    .pricing-card .price-new {
      background: linear-gradient(90deg,#00c8ff 0%,#0095e8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 3rem; font-weight:800;
    }
    .pricing-card .batch-times { color:rgb(255, 255, 255); font-size:15px; margin-top:12px; }
    .btn-book-now {
      display: inline-block;
      background: var(--gold-grad);
      border: none;
      padding: 16px 36px;
      border-radius: 50px;
      color: #1a1a1a;
      font-size: 18px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(255,202,40,.4);
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
      font-family: var(--font-head);
    }
    .btn-book-now:hover { transform:scale(1.05); box-shadow:0 12px 32px rgba(255,202,40,.5); color:#1a1a1a; }


    /* ═══════════════════════════════════════════
       CAREER TABS
    ═══════════════════════════════════════════ */
    .career-section { background: var(--light); }
    .tab-nav-custom { display:flex; flex-direction:column; gap:8px; }
    .tab-btn {
      background:#fff; border:2px solid var(--border);
      border-radius:var(--radius-sm); padding:14px 18px;
      text-align:left; font-weight:600; font-size:14.5px;
      color:#20252d; cursor:pointer; transition:all .25s;
    }
    .tab-btn:hover { border-color:var(--blue-1); color:var(--blue-1); transform:translateX(4px); }
    .tab-btn.active { background:var(--brand-grad); border-color:transparent; color:#fff; box-shadow:0 6px 20px rgba(0,90,160,.3); }
    .career-card { background:#fff; border-radius:20px; padding:32px; box-shadow:var(--shadow); animation:fadeUp .4s ease; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
    .career-card h4 { font-size:1.4rem; margin-bottom:8px; color:#111; }
    .career-card .avg { font-size:2.4rem; font-weight:800; color:var(--blue-1); }
    .career-card .openings {
      display:inline-block; background:#f0fdf4; color:#16a34a;
      padding:4px 14px; border-radius:50px; font-size:13px; font-weight:600; margin-bottom:20px;
    }
    .salary-bar-wrap { margin-top:8px; }
    .salary-labels { display:flex; justify-content:space-between; font-size:13px; color:var(--muted); margin-bottom:6px; }
    .salary-bar { height:10px; border-radius:6px; background:#e5e7eb; overflow:hidden; }
    .salary-fill { height:100%; border-radius:6px; background:var(--brand-grad); transition:width .8s ease; }



    /* ═══════════════════════════════════════════
       WHY LEARN
    ═══════════════════════════════════════════ */
    .feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
    .feat-card {
      display:flex; gap:16px; align-items:flex-start;
      padding:20px; border-radius:var(--radius-sm);
      background:#fff; border:1px solid var(--border);
      transition:transform .2s, box-shadow .2s;
    }
    .feat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }

   .feat-icon {
  width: 150px; 
  height: 100px; 
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}
.feat-icon img { 
  width: 150px; 
  height: 100px; 
  object-fit: cover; 
  border-radius: 14px; 
}
    .feat-card h5 { font-size:16px; font-weight:700; margin-bottom:4px; }
    .feat-card p  { font-size:16px; margin:0; color: #000; font-weight: 500; font-family: serif;}
    .stat-pills { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
    .pill {
      flex:1; min-width:130px;
      background:var(--light); border:1px solid var(--border);
      border-radius:var(--radius-sm); padding:16px; text-align:center;
    }
    .pill .num { font-size:1.4rem; font-weight:800; background:var(--brand-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .pill small { font-size:13px; color:rgb(57, 42, 42); font-weight: 600; font-family: sans-serif; }
    .cta-pair { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
    .salary-aside {
      background: var(--hero-grad);
      border-radius:20px; padding:28px;
      color:#fff; height:100%;
      display:flex; flex-direction:column; gap:20px;
      border:1px solid rgba(0,180,255,.15);
    }
    .salary-aside .big-sal { font-size:3rem; font-weight:800; color:var(--accent-lt); }
    .salary-aside .rating-badge { background:rgba(255,255,255,.15); padding:8px 16px; border-radius:50px; font-size:14px; font-weight:600; display:inline-block; }


@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;  /* 2 column se 1 column */
  }

  .feat-card {
    flex-direction: column;      /* image upar, text neeche */
    align-items: flex-start;
  }

  /* .feat-icon {
    width: 52px;
    height: 52px;
  }

  .feat-icon img { 
  width: 150px; 
  height: 100px; 
  object-fit: cover; 
  border-radius: 14px; 
} */

}



    /* ═══════════════════════════════════════════
       DEMO VIDEO SECTION  ← FULLY FIXED
    ═══════════════════════════════════════════ */
    .demo-section {
      background: #010d1a;
      position: relative;
      padding: 70px 0;
      overflow: hidden;
    }
    .demo-section::before {
      content:''; position:absolute; inset:0;
      background-image: radial-gradient(rgba(0,180,255,.04) 1px, transparent 1px);
      background-size: 32px 32px; pointer-events:none;
    }
    /* ── FIX: overflow hidden so marquee clips properly ── */
    .demo-scroll-wrapper {
      overflow: hidden;
      position: relative;
      padding: 12px 0 20px;
      /* fade edges */
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
              mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    .demo-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: demo-scroll 38s linear infinite;
    }
    .demo-track:hover { animation-play-state: paused; }
    @keyframes demo-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .demo-card {
      width: 460px;
      flex-shrink: 0;
      background: rgba(0,180,255,.05);
      border: 1px solid rgba(0,180,255,.15);
      border-radius: 12px;
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .demo-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 16px 40px rgba(0,180,255,.18);
      border-color: rgba(0,180,255,.5);
    }
    .demo-card .video-thumb {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      overflow: hidden;
      background: #000;
    }
    .demo-card .video-thumb img {
      position: absolute; top:0; left:0;
      width:100%; height:100%;
      object-fit: cover;
      transition: transform .4s ease;
      display: block;
    }
    .demo-card:hover .video-thumb img { transform: scale(1.05); }
    .play-btn {
      position: absolute; top:50%; left:50%;
      transform: translate(-50%,-50%);
      width:52px; height:52px;
      background: rgba(0,0,0,.65);
      border-radius: 50%;
      display: flex; align-items:center; justify-content:center;
      transition: background .3s, transform .3s;
    }
    .demo-card:hover .play-btn {
      background: rgba(0,180,255,.85);
      transform: translate(-50%,-50%) scale(1.12);
    }
    .play-btn svg { width:22px; height:22px; fill:#fff; margin-left:3px; }
    .demo-card-footer {
      padding: 14px 16px;
      display: flex; align-items:center; gap:12px;
      border-top: 1px solid rgba(0,180,255,.1);
      background: rgba(0,0,0,.2);
    }
    .demo-card-num {
      width:28px; height:28px; border-radius:50%;
      background: linear-gradient(135deg,#f5c842,#f08c00);
      color:#1a1a1a; font-weight:800; font-size:13px;
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .demo-card-title { font-size:13px; color:rgba(255,255,255,.75); font-weight:500; line-height:1.4; }



    
    /* ═══════════════════════════════════════════
       SYLLABUS / ACCORDION
    ═══════════════════════════════════════════ */
    .course-meta {
      background:var(--light); border-radius:var(--radius); padding:24px;
      display:flex; flex-wrap:wrap; gap:0;
      border:1px solid var(--border); margin-bottom:32px;
    }
    .meta-item {
      flex:1; min-width:130px; text-align:center;
      padding:12px; border-right:1px solid var(--border);
    }
    .meta-item:last-child { border-right:none; }
    .meta-item .mi-icon { font-size:22px; color:var(--blue-1); margin-bottom:6px; }
    .meta-item .mi-val  { font-size:1.3rem; font-weight:800; color:#111; }
    .meta-item .mi-lbl  { font-size:13px; color:black; }
    .placement-chip {
      background:var(--brand-grad); color:#fff; border-radius:var(--radius-sm);
      padding:20px 24px; display:flex; align-items:center; gap:16px;
    }
    .placement-chip i { font-size:1.8rem; }
    .placement-chip h5 { margin:0; font-size:1.1rem; }
    .acc-wrap { border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
    .acc-item { border-bottom:1px solid var(--border); }
    .acc-item:last-child { border-bottom:none; }
    .acc-header {
      display:flex; justify-content:space-between; align-items:center;
      padding:18px 24px; cursor:pointer;
      background:#fff; transition:background .2s; user-select:none;
    }
    .acc-header:hover { background:var(--light); }
    .acc-header.open { background:linear-gradient(90deg,rgba(0,90,160,.06),rgba(0,180,255,.04)); }
    .acc-header span.mod-num { color:black; font-size:14px; margin-right:12px; white-space:nowrap; }
    .acc-header h6 { margin:0; font-size:15px; font-weight:700; flex:1; }
    .acc-arrow { font-size:18px; color:var(--blue-1); transition:transform .3s; flex-shrink:0; }
    .acc-header.open .acc-arrow { transform:rotate(180deg); }
    .acc-body { display:none; padding:20px 24px; background:#f7faff; }
    .acc-body.show { display:block; animation:fadeUp .3s ease; }
    .acc-lists { display:grid; grid-template-columns:1fr 1fr; gap:0 24px; }
    .acc-lists ul { list-style:none; padding:0; margin:0; }
    .acc-lists ul li {
      padding:6px 0; font-size:14px; color:#374151;
      border-bottom:1px solid var(--border);
      display:flex; gap:8px;
    }
    .acc-lists ul li::before { content:'→'; color:var(--blue-1); font-weight:700; flex-shrink:0; }
    .acc-lists ul li:last-child { border-bottom:none; }



    /* ═══════════════════════════════════════════
       PROJECTS
    ═══════════════════════════════════════════ */
   :root {
    --brand-grad: linear-gradient(90deg, #6366f1, #a855f7);
    --blue-1: #4f46e5;
    --accent: #a855f7;
    --muted: #9ca3af;
    --border: #e5e7eb;
    --light: #f8fafc;
    --shadow-lg: 0 20px 40px rgba(0,0,0,.12);
    --dark-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family: 'Segoe UI', system-ui, sans-serif; background:#f0f4f8; }
  .container { max-width:1200px; margin:0 auto; padding:0 20px; }

  /* ═══════════════════════════════════════════
     PROJECTS
  ═══════════════════════════════════════════ */
  .projects-section { background: var(--light); padding:80px 0; }
  .section-title { font-size:2.4rem; font-weight:800; color:#111; margin-bottom:8px; }
  .section-title span { background: var(--brand-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
  .section-sub { font-size:1.05rem; color:#242529; max-width:600px; margin:0 auto; }
  .mb-5 { margin-bottom:3rem; }
  .text-center { text-align:center; }
  .row { display:flex; flex-wrap:wrap; margin:0 -12px; }
  .col-md-6, .col-lg-4 { padding:12px; }
  .col-md-6 { width:50%; }
  .col-lg-4 { width:33.333%; }
  .g-4 { gap:0; }

  /* ========== PROJECT CARD WITH IMAGE ========== */
  .proj-card {
    background:#fff; border-radius:20px;
    box-shadow:0 4px 16px rgba(0,0,0,.06);
    border:1px solid var(--border); height:100%;
    transition:transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s;
    position:relative; overflow:hidden;
    display:flex; flex-direction:column;
  }
  .proj-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
    background:var(--brand-grad);
    transform:scaleX(0); transform-origin:left; transition:transform .4s;
    z-index:10;
  }
  .proj-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
  .proj-card:hover::before { transform:scaleX(1); }

  /* Image area */
  .proj-img-wrap {
    position:relative; width:100%; height:220px; overflow:hidden;
    border-radius:20px 20px 0 0;
  }
  .proj-img-wrap img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .proj-card:hover .proj-img-wrap img { transform:scale(1.08); }

  /* Overlay on image */
  .proj-img-overlay {
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display:flex; flex-direction:column; justify-content:flex-end; padding:20px;
    transition:background .3s;
  }
  .proj-card:hover .proj-img-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
  }

  /* Stack label on image */
  .proj-stack-label {
    color:#fbbf24; font-size:11px; font-weight:800; letter-spacing:1.5px;
    text-transform:uppercase; margin-bottom:6px; text-shadow:0 2px 4px rgba(0,0,0,.5);
  }
  .proj-img-title {
    color:#fff; font-size:1.25rem; font-weight:700;
    text-shadow:0 2px 8px rgba(0,0,0,.4);
  }

  /* Number badge */
  .proj-number {
    position:absolute; top:16px; right:20px;
    color:rgb(255, 255, 255); font-size:0.9rem; font-weight:700;
    background:rgba(0,0,0,0.3); padding:4px 12px; border-radius:50px;
    backdrop-filter:blur(4px);
  }

  /* Content area */
  .proj-content { padding:24px; flex:1; display:flex; flex-direction:column; }
  .proj-content h5 { font-size:1.1rem; font-weight:700; margin-bottom:10px; color:#111; }
  .proj-content p  { font-size:15px; color:#151618; margin-bottom:16px; line-height:1.6; }
  .tech-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
  .tech-tag {
    background:#f3f4f6; color:var(--blue-1);
    font-size:11px; font-weight:600;
    padding:4px 12px; border-radius:50px; transition:all .2s;
  }
  .proj-card:hover .tech-tag { background:var(--blue-1); color:#fff; }
  .proj-link { color:var(--blue-1); font-weight:700; font-size:14px; text-decoration:none; margin-top:auto; }
  .proj-link:hover { color:var(--accent); }

  /* ========== SCROLL ANIMATIONS ========== */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .scroll-left  { transform: translateX(-60px); }
  .scroll-right { transform: translateX(60px); }
  .scroll-top   { transform: translateY(-60px); }
  .scroll-bottom{ transform: translateY(60px); }

  .scroll-left.revealed,
  .scroll-right.revealed,
  .scroll-top.revealed,
  .scroll-bottom.revealed {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Responsive */
  @media (max-width:992px) { .col-lg-4 { width:50%; } }
  @media (max-width:768px) { .col-md-6, .col-lg-4 { width:100%; } .proj-img-wrap { height:200px; } }



    /* ═══════════════════════════════════════════
       TECH STACK
    ═══════════════════════════════════════════ */
    .tech-section { background:#fff; }
    .tech-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:16px; }
    .tech-card {
      background:#fff; border:1px solid var(--border);
      border-radius:var(--radius); padding:24px 12px; text-align:center;
      transition:all .25s; cursor:default;
    }
    .tech-card:hover { border-color:var(--blue-1); box-shadow:0 8px 24px rgba(0,90,160,.15); transform:translateY(-4px); }
    .tech-card p { font-size:13px; font-weight:600; color:#374151; margin:10px 0 0; }
    .spin { animation:spin 6s linear infinite; }
    @keyframes spin { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }



    /* ═══════════════════════════════════════════
       HIGHLIGHTS
    ═══════════════════════════════════════════ */
    .highlights-section { background:var(--light); }
    .hl-nav { display:flex; flex-direction:column; gap:10px; position:sticky; top:80px; }
    .hl-btn {
      padding:14px 20px; border-radius:var(--radius-sm);
      border:2px solid var(--border); background:#fff;
      font-weight:600; font-size:14px; color:#374151;
      cursor:pointer; text-align:left; transition:all .25s;
    }
    .hl-btn:hover { border-color:var(--blue-1); color:var(--blue-1); }
    .hl-btn.active { background:var(--brand-grad); border-color:transparent; color:#fff; box-shadow:0 6px 20px rgba(0,90,160,.3); }
    .hl-card { background:#fff; border:2px solid var(--border); border-radius:20px; padding:0; overflow:hidden; transition:box-shadow .2s; }
    .hl-card:hover { box-shadow:var(--shadow); }
    .hl-card .row { margin:0; }
    .hl-card .card-body-txt { padding:32px; }
    .hl-card .card-body-txt h5 { font-size:1.2rem; font-weight:700; margin-bottom:12px; }
    .hl-card .card-body-txt p  { color:black; font-size:15px; }
    .hl-card img { width:100%; height:100%; object-fit:cover; min-height:180px; }



    /* ═══════════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════════ */
    .hiw-section { background:var(--hero-grad); }
    .hiw-section h2 { color:#fff; }
    .step-card {
      display:flex; gap:20px; align-items:flex-start;
      background:rgba(0,180,255,.06); backdrop-filter:blur(8px);
      border:1px solid rgba(0,180,255,.15);
      border-radius:var(--radius); padding:24px; margin-bottom:16px;
      transition:background .25s;
    }
    .step-card:hover { background:rgba(0,180,255,.12); }
    .step-icon {
      width:52px; height:52px; flex-shrink:0;
      border-radius:12px; background:var(--gold-grad);
      display:flex; align-items:center; justify-content:center; font-size:22px;
    }
    .step-card h5 { color:#fff; font-weight:700; margin-bottom:6px; }
    .step-card p  { color:rgba(255,255,255,.75); font-size:14px; margin:0; }


    /* ═══════════════════════════════════════════
       INTERVIEW PREP
    ═══════════════════════════════════════════ */
    .prep-section { background:#fff; }
    .prep-card {
      background:var(--light); border-radius:20px; padding:24px 16px;
      text-align:center; border:1px solid var(--border); transition:all .25s;
      height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    }
    .prep-card:hover { background:var(--brand-grad); color:#fff; transform:translateY(-4px); box-shadow:var(--shadow); }
    .prep-card:hover h5,.prep-card:hover p { color:#fff; }
    /* Responsive image inside prep card */
    .prep-card .prep-img-wrap {
      width: 100%;
      max-width: 160px;
      height: 110px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .prep-card img {
      max-width: 100%;
      max-height: 110px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .prep-card h5 { font-size:16px; font-weight:700; margin-bottom:6px; color:#111; line-height:1.3; }
    .prep-card p  { font-size:14px; color:black; margin:0; line-height:1.5;  font-weight: 500;}





    /* ═══════════════════════════════════════════
       CERTIFICATE
    ═══════════════════════════════════════════ */
    /* .cert-section { background:var(--hero-grad); padding:80px 0; }
    .cert-section h2 { color:#fff; }
    .cert-feat {
      display:flex; gap:16px; align-items:flex-start;
      padding:20px; border-radius:var(--radius-sm);
      background:rgba(0,180,255,.06); border:1px solid rgba(0,180,255,.15);
    }
    .cert-feat i { font-size:2rem; color:var(--gold); flex-shrink:0; }
    .cert-feat h5 { color:#fff; font-size:15px; font-weight:700; margin-bottom:4px; }
    .cert-feat p  { color:rgba(255,255,255,.7); font-size:13px; margin:0; }
    .cert-img-wrap { border-radius:16px; overflow:hidden; box-shadow:var(--shadow-lg); border:4px solid rgba(0,180,255,.2); } */

    /* ═══════════════════════════════════════════
   CERTIFICATE SECTION
═══════════════════════════════════════════ */
.cert-section {
  background: var(--hero-grad);
  padding: 80px 16px;
}

/* ── MAIN GRID ── */
.cert-main {
  display: grid;
 grid-template-columns: 280px 1fr;   /* image thodi zyada badi, features wide */
  gap: 24px;
  align-items: start; 
  max-width: 1100px;
  margin: 0 auto;
}

/* ── IMAGE ── */
.cert-img-col { display: flex; }

.cert-img-wrap {
  width: 100%;
  max-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(0,180,255,.2);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0,180,255,.08);
  position: relative;
 
}
.cert-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background-size: contain;
  object-position: top center;
  display: block;
}
/* subtle gloss */
.cert-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, transparent 55%);
  pointer-events: none;
}
/* floating badge on image */
.cert-float-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,12,28,.88);
  border: 1px solid rgba(245,200,66,.35);
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.cert-float-badge i    { color: var(--gold); font-size: 13px; }
.cert-float-badge span { color: #fff; font-size: 11.5px; font-weight: 600; }

/* ── FEATURES GRID ── */
.cert-feat-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;       /* 2x2 grid, rows stretch equally */
  gap: 14px;
}
.cert-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(0,180,255,.05);
  border: 1px solid rgba(0,180,255,.14);
  transition: background .2s, border-color .2s;
}
.cert-feat:hover {
  background: rgba(0,180,255,.1);
  border-color: rgba(0,180,255,.3);
}
.icon-box {
  width: 42px; height: 42px;
  border-radius: 9px;
  background: rgba(245,200,66,.1);
  border: 1px solid rgba(245,200,66,.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box i  { font-size: 1.2rem; color: var(--gold); }
.cert-feat h5{ color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 5px; line-height: 1.3; }
.cert-feat p { color: rgba(255,255,255,.6); font-size: 12.5px; margin: 0; line-height: 1.6; }

/* ══ RESPONSIVE ══ */

/* Tablet */
@media (max-width: 780px) {
  .cert-main            { grid-template-columns: 1fr; }
  .cert-img-wrap        { height: 300px; }   /* stacked hone pe fixed height */
  .cert-feat-col        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

/* Mobile */
@media (max-width: 480px) {
  .cert-section         { padding: 48px 14px; }
  .cert-img-wrap        { height: 240px; }
  .cert-feat-col        { grid-template-columns: 1fr; }  /* single column */
  .cert-feat            { padding: 14px 12px; }
  .icon-box             { width: 36px; height: 36px; }
}

    /* ═══════════════════════════════════════════
       CONTACT SECTION
    ═══════════════════════════════════════════ */
    .contact-section {
      background:var(--hero-grad); padding:80px 0;
      position:relative; overflow:hidden;
    }
    .contact-section::before {
      content:''; position:absolute; inset:0;
      background-image:radial-gradient(rgba(0,180,255,.05) 1px, transparent 1px);
      background-size:28px 28px; pointer-events:none;
    }
    .contact-orb {
      position:absolute; width:600px; height:600px;
      background:radial-gradient(circle,rgba(0,90,160,.18) 0%,transparent 70%);
      top:-150px; right:-150px; pointer-events:none;
    }
    .contact-section .container { position:relative; z-index:1; }
    .contact-section h2 { color:#fff; font-size:2rem; font-weight:800; margin-bottom:8px; }
    .contact-section .sub { color:rgb(255, 255, 255); font-size:15px; margin-bottom:0; }
    .contact-card {
      background:rgba(255,255,255,.04); backdrop-filter:blur(16px);
      border:1px solid rgba(0,180,255,.18); border-radius:24px;
      padding:40px; box-shadow:0 24px 60px rgba(0,0,0,.3);
    }
    .contact-info-box { display:flex; flex-direction:column; gap:24px; height:100%; justify-content:center; }
    .cinfo-item {
      display:flex; gap:16px; align-items:flex-start;
      background:rgba(0,180,255,.06); border:1px solid rgba(0,180,255,.15);
      border-radius:14px; padding:18px 20px;
    }
    .cinfo-icon {
      width:48px; height:48px; flex-shrink:0; border-radius:12px;
      background:var(--brand-grad);
      display:flex; align-items:center; justify-content:center; font-size:20px; color:#fff;
    }
    .cinfo-item h6 { color:var(--accent-lt); font-size:13px; font-weight:600; margin-bottom:2px; letter-spacing:.5px; }
    .cinfo-item p  { color:rgb(255, 255, 255); font-size:14px; margin:0; font-weight:500; }
    .form-group-scs { margin-bottom:18px; }
    .form-label-scs { display:block; margin-bottom:6px; color:rgba(255,255,255,.8); font-size:13px; font-weight:600; letter-spacing:.3px; }
    .form-control-scs {
      width:100%; background:rgba(255,255,255,.06); border:1px solid rgba(0,180,255,.2);
      border-radius:10px; padding:12px 16px; color:#fff; font-size:14px;
      font-family:var(--font-body); outline:none;
      transition:border-color .25s, background .25s, box-shadow .25s;
    }
    .form-control-scs::placeholder { color:rgba(255,255,255,.35); }
    .form-control-scs:focus {
      border-color:rgba(0,180,255,.5);
      background:rgba(0,180,255,.08);
      box-shadow:0 0 0 3px rgba(0,180,255,.1);
    }
    select.form-control-scs option { background:#020e1e; color:#fff; }
    textarea.form-control-scs { resize:vertical; min-height:100px; }
    .btn-contact-submit {
      width:100%; background:var(--brand-grad); color:#fff; border:none;
      padding:15px 28px; border-radius:10px; font-weight:800; font-size:16px;
      cursor:pointer; font-family:var(--font-head);
      transition:transform .2s, box-shadow .2s; box-shadow:0 8px 24px rgba(0,90,160,.4);
      position:relative; overflow:hidden;
    }
    .btn-contact-submit::before {
      content:''; position:absolute; inset:0;
      background:linear-gradient(135deg,rgba(255,255,255,.1),transparent);
      opacity:0; transition:opacity .2s;
    }
    .btn-contact-submit:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(0,180,255,.4); }
    .btn-contact-submit:hover::before { opacity:1; }
    .form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .form-success {
      display:none; background:rgba(0,180,255,.1); border:1px solid rgba(0,180,255,.3);
      border-radius:12px; padding:20px; text-align:center;
      color:var(--accent-lt); font-weight:600; font-size:15px; margin-top:12px;
    }
    .form-success i { font-size:2rem; margin-bottom:8px; display:block; }



  
    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .faq-section { background:var(--light); }
    .faq-item {
      background:#fff; border-radius:var(--radius-sm);
      margin-bottom:10px; overflow:hidden;
      border:1px solid var(--border); box-shadow:0 2px 8px rgba(0,0,0,.04);
    }
    .faq-q {
      width:100%; text-align:left; background:#fff; border:none;
      padding:18px 24px; font-size:15px; font-weight:600; color:#111; cursor:pointer;
      display:flex; justify-content:space-between; align-items:center; transition:background .2s;
    }
    .faq-q:hover { background:#f0f6ff; }
    .faq-q.open { background:linear-gradient(90deg,rgba(0,90,160,.07),rgba(0,180,255,.04)); color:var(--blue-1); }
    .faq-q .faq-icon { font-size:20px; color:var(--blue-1); transition:transform .3s; flex-shrink:0; }
    .faq-q.open .faq-icon { transform:rotate(45deg); }
    .faq-a { display:none; padding:0 24px 20px; font-size:14px; color:#374151; line-height:1.7; background:#f5faff; }
    .faq-a.show { display:block; animation:fadeUp .3s ease; }


    
    /* ═══════════════════════════════════════════
       FINAL CTA
    ═══════════════════════════════════════════ */
    .final-cta { background:radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,90,160,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(0,180,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(0,60,120,0.18) 0%, transparent 60%),
        linear-gradient(160deg, #010d1a 0%, #020e1e 40%, #031525 100%);
         padding:60px 0; text-align:center; }
    .final-cta h2 { color:#fff; font-size:2rem; margin-bottom:8px; }
    .final-cta p  { color:rgba(255,255,255,.8); margin-bottom:28px; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 992px) {
      .hl-nav { position:static; flex-direction:row; flex-wrap:wrap; }
    }
    @media (max-width: 768px) {
     
      .feature-grid { grid-template-columns:1fr; }
      .acc-lists { grid-template-columns:1fr; }
      .pricing-card { padding:24px; }
      .course-meta .meta-item { border-right:none; border-bottom:1px solid var(--border); }
      .course-meta .meta-item:last-child { border-bottom:none; }
      .contact-card { padding:24px; }
      .form-row-2 { grid-template-columns:1fr; }
      .demo-card { width: 320px; }
    }
    @media (max-width: 576px) {
      .hero-main-title { font-size:1.65rem; }
      .hero-stats-strip { gap:0; }
      .hss-item { padding:0 6px; }
      .hss-val  { font-size:16px; }
      .hss-lbl  { font-size:11px; }
      .cta-group { flex-direction:column; }
      .btn-advisor-scs, .btn-download-gold { width:100%; justify-content:center; }
      .stat-pills { justify-content:center; }
      .pill { min-width:120px; }
      .demo-card { width:280px; }
      .pricing-card .price-new { font-size:2rem; }
      .pricing-card .price-old { font-size:1.4rem; }
    }
 