*{box-sizing:border-box;margin:0;padding:0;}
    body{font-family:'Nunito Sans',sans-serif;background:#f5f5f5;}

    /* ══ TOP BAR ══ */
.top-bar{
    background:linear-gradient(90deg,#12124f 0%,#1a1a6e 55%,#20208a 100%);
    padding:7px 32px;
    display:flex;justify-content:space-between;align-items:center;
    position:relative;overflow:hidden;
}
.top-bar::after{
    content:'';position:absolute;left:0;right:0;bottom:0;height:2px;
    background:linear-gradient(90deg,transparent,#ff6600 50%,transparent);
    opacity:.55;
}
.top-bar-left{display:flex;align-items:center;gap:16px;min-width:0;}
.top-bar-right{display:flex;align-items:center;gap:16px;flex-shrink:0;}

/* Enroll pill — the signature CTA */
.enroll-pill{
    display:inline-flex;align-items:center;gap:8px;flex-shrink:0;
    background:linear-gradient(135deg,#ff6600,#ff8a3d);
    color:#fff;font-size:11.5px;font-weight:800;letter-spacing:.3px;
    padding:6px 14px 6px 11px;border-radius:20px;text-decoration:none;
    box-shadow:0 2px 10px rgba(255,102,0,.35);
    transition:transform .2s ease,box-shadow .2s ease;
}
.enroll-pill:hover{transform:translateY(-1px);box-shadow:0 4px 16px rgba(255,102,0,.5);}
.pulse-dot{width:6px;height:6px;border-radius:50%;background:#fff;position:relative;flex-shrink:0;}
.pulse-dot::after{
    content:'';position:absolute;inset:-4px;border-radius:50%;
    border:1.5px solid #fff;animation:pulseRing 1.7s ease-out infinite;
}
@keyframes pulseRing{
    0%{transform:scale(.3);opacity:.9;}
    100%{transform:scale(2);opacity:0;}
}

/* News ticker */
.news-ticker{
    display:flex;align-items:center;gap:0;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:20px;overflow:hidden;
    min-width:0;
}
.news-label{
    display:flex;align-items:center;gap:5px;flex-shrink:0;
    background:#ff6600;color:#fff;font-size:9.5px;font-weight:800;
    padding:6px 10px;letter-spacing:.6px;text-transform:uppercase;
}
.news-wrapper{overflow:hidden;width:320px;position:relative;}
.news-content{
    display:inline-block;white-space:nowrap;
    color:#e2e2f8;font-size:11.5px;font-weight:600;
    padding:6px 0 6px 100%;
    animation:tickerScroll 50s linear infinite;
}
.news-ticker:hover .news-content{animation-play-state:paused;}
@keyframes tickerScroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-100%);}
}

.social-icons{display:flex;gap:8px;}
.social-icons a{
    text-decoration:none;width:24px;height:24px;border-radius:50%;
    border:1px solid rgba(255,255,255,.3);display:flex;align-items:center;justify-content:center;
    transition:border-color .2s,background .2s;
}
.social-icons a:hover{border-color:#ff6600;background:rgba(255,102,0,.15);}
.social-icons a i{font-size:11px;color:#ccc;}
    /* ══ MAIN BAR ══ */
    .main-bar{background:#fff;padding:12px 32px;display:flex;align-items:center;gap:16px;border-bottom:1px solid #eee;position:relative;z-index:200;}
    .logo-area{display:flex;align-items:center;gap:10px;min-width:220px;}
    .logo-area img{height:52px;object-fit:contain;}
    .logo-text{display:flex;flex-direction:column;line-height:1.15;}
    .logo-name{font-family:'Rajdhani',sans-serif;font-size:21px;font-weight:700;color:#1a1a6e;letter-spacing:.5px;}
    .logo-sub{font-size:10px;color:#ff6600;font-weight:700;letter-spacing:1px;text-transform:uppercase;}
    .search-bar{flex:1;display:flex;align-items:center;border:1.5px solid #ddd;border-radius:8px;overflow:hidden;background:#fafafa;transition:border-color .2s;}
    .search-bar:focus-within{border-color:#1a1a6e;}
    .search-bar input{flex:1;border:none;background:transparent;padding:10px 14px;font-size:13px;font-family:'Nunito Sans',sans-serif;color:#333;outline:none;}
    .search-bar button{background:#1a1a6e;border:none;padding:10px 18px;cursor:pointer;transition:background .2s;}
    .search-bar button:hover{background:#111155;}
    .search-bar button svg{width:16px;height:16px;display:block;}
    .icon-group{display:flex;align-items:center;gap:16px;margin-left:8px;overflow:visible;}
    .icon-wrap{position:relative;cursor:pointer;}
    .icon-wrap svg{width:26px;height:26px;fill:none;stroke:#1a1a6e;stroke-width:2;transition:stroke .2s;}
    .icon-wrap:hover svg{stroke:#ff6600;}
    .badge{position:absolute;top:-7px;right:-7px;background:#ff6600;color:#fff;font-size:9px;font-weight:700;width:17px;height:17px;border-radius:50%;display:flex;align-items:center;justify-content:center;}

 
    /* ══ NAV BAR ══ */
    .nav-bar{background:#1a1a6e;padding:0 32px;display:flex;gap:0;z-index:10;}
    .nav-bar.sticky{position:fixed;top:0;left:0;width:100%;z-index:9999;box-shadow:0 4px 10px rgba(0,0,0,0.1);}
    .nav-bar a{color:#bbc;font-size:13px;font-weight:600;padding:12px 18px;text-decoration:none;border-bottom:3px solid transparent;transition:all .2s;white-space:nowrap;display:block;}
    .nav-bar a:hover,.nav-bar a.active{color:#fff;border-bottom-color:#ff6600;background:rgba(255,255,255,.06);}


    /* ══ ALL COURSES TRIGGER ══ */
    .courses-trigger{position:relative;}
    .courses-trigger>a{display:flex;align-items:center;gap:6px;}
    .courses-trigger>a .arrow{transition:transform .25s;}
    .courses-trigger.open>a .arrow{transform:rotate(180deg);}

    /* ══ MEGAMENU ══ */
    .megamenu{
      position:absolute;top:100%;left:0;width:860px;
      background:#fff;border:1px solid #e0e0e0;
      border-top:3px solid #ff6600;border-radius:0 0 10px 10px;
      display:none;box-shadow:0 8px 32px rgba(26,26,110,.13);
      z-index:50;overflow:hidden;
    }
    .megamenu.open{display:flex;}
    .mega-inner{display:flex;width:100%;min-height:400px;}

    /* LEFT SIDEBAR */
    .mega-sidebar{width:220px;min-width:220px;background:#f4f4fb;border-right:1px solid #e0e0e0;padding:12px 0;overflow-y:auto;max-height:480px;}
    .mega-sidebar::-webkit-scrollbar{width:4px;}
    .mega-sidebar::-webkit-scrollbar-thumb{background:#1a1a6e44;border-radius:4px;}
    .cat-item{display:flex;align-items:center;gap:10px;padding:11px 18px;cursor:pointer;font-size:13px;font-weight:600;color:#444;border-left:3px solid transparent;transition:all .15s;}
    .cat-item:hover,.cat-item.active{background:#fff;color:#1a1a6e;border-left-color:#ff6600;}
    .cat-item .cat-dot{width:8px;height:8px;border-radius:50%;background:#ccc;flex-shrink:0;transition:background .15s;}
    .cat-item.active .cat-dot,.cat-item:hover .cat-dot{background:#ff6600;}
    .cat-count{margin-left:auto;background:#e8e8f5;color:#1a1a6e;font-size:10px;font-weight:700;padding:2px 7px;border-radius:10px;}

    /* RIGHT CONTENT */
    .mega-content{flex:1;padding:20px 20px 16px;overflow-y:auto;max-height:480px;}
    .mega-content::-webkit-scrollbar{width:4px;}
    .mega-content::-webkit-scrollbar-thumb{background:#1a1a6e44;border-radius:4px;}
    .mega-panel{display:none;}
    .mega-panel.active{display:block;}
    .panel-heading{font-family:'Rajdhani',sans-serif;font-size:17px;font-weight:700;color:#1a1a6e;margin-bottom:14px;padding-bottom:8px;border-bottom:1px solid #eee;}

    /* COURSE CARDS GRID */
.courses-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}    .course-card{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid #e8e8ee;border-radius:10px;padding:9px 12px;transition:box-shadow .2s,transform .2s,border-color .2s;cursor:pointer;}
.course-card:hover{box-shadow:0 4px 18px rgba(26,26,110,.12);transform:translateY(-2px);border-color:#ffd5b8;}
.course-card img{width:46px;height:46px;border-radius:50%;object-fit:cover;background:#e8e8f5;display:block;flex-shrink:0;}
.card-placeholder{width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,#e8e8f5,#d0d0ef);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.card-placeholder svg{width:18px;height:18px;fill:#9999cc;opacity:.6;}
.card-body{flex:1;min-width:0;}
.card-name{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:700;color:#1a1a6e;margin-bottom:3px;line-height:1.3;}
.popular-dot{width:6px;height:6px;border-radius:50%;background:#ff6600;flex-shrink:0;}
.card-desc{font-size:11px;color:#666;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

    /* VIEW ALL ROW */
    .view-all-row{margin-top:14px;text-align:right;}
    .view-all-link{color:#1a1a6e;font-size:12px;font-weight:700;text-decoration:none;border-bottom:1px dashed #1a1a6e;transition:color .2s;}
    .view-all-link:hover{color:#ff6600;border-bottom-color:#ff6600;}

    /* EMPTY STATE */
    .empty-state{text-align:center;padding:40px 20px;color:#aaa;font-size:13px;}
    .empty-state svg{width:40px;height:40px;fill:none;stroke:#ccc;stroke-width:1.5;margin-bottom:10px;}

    /* DROPDOWN */
    .dropdown{position:relative;}
    .dropdown-menu{z-index:99999 !important;position:absolute;}

    /* ════════════════════════════════════════
       TABLET  (769px – 1024px)
    ════════════════════════════════════════ */
    @media (max-width:1024px){
      .top-bar{padding:5px 16px;}
      .top-bar-left{gap:12px;}
      .top-bar-left a{font-size:11px;}  

      .main-bar{padding:10px 16px;gap:10px;}
      .logo-area{min-width:160px;}
      .logo-area img{height:44px;}

      .nav-bar{padding:0 16px;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;}
      .nav-bar::-webkit-scrollbar{display:none;}
      .nav-bar a{padding:11px 12px;font-size:12px;}

      .megamenu{width:680px;}
      .courses-grid{grid-template-columns:repeat(2,1fr);}
    }
    .mob-bottom-nav {
  display: none;
}
  @media (max-width:768px){

.main-bar{
    height:60px;
    padding:0 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
}

.logo-area{
    min-width:auto;
    display:flex;
    align-items:center;
    flex:1;
}

.logo-area img{
    height:42px;
    width:auto;
    display:block;
}

.search-bar{
    display:none;
}

.icon-group{
    margin-left:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:14px;
    flex-shrink:0;
}

.icon-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
}

.icon-wrap svg{
    width:22px;
    height:22px;
}

.badge{
    width:15px;
    height:15px;
    font-size:8px;
    top:-3px;
    right:-3px;
} 
.hamburger-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1e228c;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
}

.hamburger-btn .line-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hamburger-btn .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.hamburger-btn .line {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background: #fff;
}
#desktopNav{
    display:none !important;
}
.logo-area{
    overflow:hidden;
}

.main-bar *{
    box-sizing:border-box;
}body {
    padding-bottom: 60px;
  }

  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top: 1.5px solid #e5e7eb;
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.07);
  }

  /* ── IMPORTANT: mob-btn-item (bottom nav only) ── */
  .mob-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    text-decoration: none;
    color: #9ca3af;
    font-size: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
  }

  .mob-btn-item svg {
    width: 22px;
    height: 22px;
    stroke: #9ca3af;
    transition: stroke 0.2s;
  }

  .mob-btn-item.active {
    color: #1a1a6e;
    font-weight: 700;
  }

  .mob-btn-item.active svg {
    stroke: #ff6600;
  }

  .mob-btn-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #ff6600;
    border-radius: 0 0 4px 4px;
  }

  /* Search slide-up */
  .mob-search-drop {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 10px 16px;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.07);
  }

  .mob-search-drop.open {
    display: block;
  }

  .mob-search-inner {
    display: flex;
    border: 1.5px solid #1a1a6e;
    border-radius: 8px;
    overflow: hidden;
  }

  .mob-search-inner input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
  }

  .mob-search-inner button {
    background: #1a1a6e;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
}

.enroll-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  border: 1px solid rgba(26, 26, 110, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  font: inherit;
  color: #1a1a6e;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(26, 26, 110, 0.08);
}


.enroll-btn-premium:hover {
  background: linear-gradient(135deg, #1a1a6e, #2b2b9c);
  box-shadow: 0 4px 12px rgba(26, 26, 110, 0.25);
  transform: translateY(-1px);
}

.enroll-btn-premium:hover svg path,
.enroll-btn-premium:hover .enroll-text {
  fill: #ffffff;
  color: #ffffff;
}

.enroll-btn-premium svg {
  width: 20px;
  height: 20px;
  transition: fill 0.25s ease;
}
