html, body {
  margin: 0;
   overflow-x: hidden;
  padding: 0;
min-height: 100dvh;
  background-color: #f5f5f7; /* soft elegant light grey */
    font-family: 'Poppins', sans-serif;
}

.header-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.2s ease;
}
.header-icon:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ✅ Language Modal Styling */
.lang-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 15px;
}
.lang-modal.show{ display:flex; }

.lang-modal-box{
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}
.lang-modal-box h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}
.lang-options{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lang-options label{
  flex: 1;
  min-width: 120px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  background: #fafafa;
}
.lang-options input{ margin-right: 8px; }

.lang-actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.lang-cancel, .lang-start{
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}
.lang-cancel{ background: #e9ecef; }
.lang-start{
  background: linear-gradient(90deg,#6a11cb,#00d4ff);
  color: #fff;
}
/* ===== PREMIUM DROPDOWN ===== */
.quick-menu{
  position: fixed;
  top: 65px;
  right: 15px;
  min-width: 190px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);

  padding: 8px 0;
  display: none;
  z-index: 999999;

  animation: fadeScale 0.2s ease;
}

.quick-menu a{
  display: block;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #111827;
  transition: 0.2s ease;
}

.quick-menu a:hover{
  background: linear-gradient(90deg,#e0f2fe,#d1fae5);
  padding-left: 20px;
}

/* Animation */
@keyframes fadeScale{
  from{opacity:0; transform:scale(0.95);}
  to{opacity:1; transform:scale(1);}
}
/* ===== BLINKING EFFECT ===== */
.blink-menu{
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow{
  0%{
    box-shadow: 0 0 0 rgba(37,99,235,0.6);
  }
  50%{
    box-shadow: 0 0 14px rgba(37,99,235,0.7);
  }
  100%{
    box-shadow: 0 0 0 rgba(37,99,235,0.6);
  }
}
.blink-menu{
  animation: bounceGlow 1s infinite;
}

@keyframes bounceGlow{
  0%,100%{
    transform: translateY(0);
    box-shadow: 0 0 6px rgba(0,200,255,0.5);
  }
  50%{
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,200,255,0.9);
  }
}



  
/* Theme & layout */

/* Header */

/* Search box */

/* CTA button */
.cta {
  background:#fff;
  color:#2575fc;
  padding:10px 18px;
  border-radius:0;
  font-weight:bold;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

/* Mobile responsiveness */





    /* Modals */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.modal.show {
  display: flex;
}
    .modal-content { background:#fff; width:320px; padding:20px; border-radius:10px; box-shadow:0 8px 20px rgba(0,0,0,0.3); text-align:center; animation:zoomIn 0.3s ease; position:relative; }
    @keyframes zoomIn { from {transform:scale(0.8); opacity:0;} to {transform:scale(1); opacity:1;} }
    .modal-content h2 { margin-bottom:15px; color:#007bff; }
    .modal-content input { width:90%; padding:8px; margin:6px 0; border:1px solid #ccc; border-radius:5px; font-size:14px; }
    .modal-content button { width:95%; padding:10px; margin-top:8px; background:#007bff; color:#fff; border:none; border-radius:5px; font-size:15px; font-weight:bold; cursor:pointer; }
    .modal-content button:hover { background:#0056b3; }
    .close-btn { position:absolute; top:10px; right:15px; font-size:24px; color:#333; cursor:pointer; }
    .error { color:red; font-size:13px; }
    .success { color:green; font-size:13px; }




   
    /* ✅ Premium Slim Bottom Menu */
.bottom-menu.premium-menu{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;

  width: calc(100% - 18px);
  max-width: 560px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 9px 10px;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);

  border-radius: 1px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);

  z-index: 99999;
}

/* ✅ Menu Item */
.bottom-menu.premium-menu .menu-item{
  flex: 1;
  text-decoration: none;
  color: #6b7280;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 8px 0;
  border-radius: 14px;

  transition: all 0.22s ease;
  position: relative;
}

/* ✅ Icon Bubble */
.bottom-menu.premium-menu .menu-item .icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.35rem;
  line-height: 1;

  transition: all 0.25s ease;
}

/* ✅ Label */
.bottom-menu.premium-menu .menu-item .label{
  font-size: 0.70rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-top: 4px;
}

/* ✅ Active (Gradient bubble + glow) */
.bottom-menu.premium-menu .menu-item.active{
  color: #0f172a;
}

.bottom-menu.premium-menu .menu-item.active .icon{
  background: linear-gradient(135deg, #2563eb, #1cc88a);
  color: #fff;
  transform: translateY(-2px) scale(1.07);
  box-shadow: 0 10px 22px rgba(37,99,235,0.25);
}

/* ✅ Active underline dot */
.bottom-menu.premium-menu .menu-item.active::after{
  content: "";
  position: absolute;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37,99,235,0.55);
}

/* ✅ Smooth press effect */
.bottom-menu.premium-menu .menu-item:active{
  transform: scale(0.98);
}

/* ✅ Hover (mobile devices ignore mostly) */
.bottom-menu.premium-menu .menu-item:hover{
  color: #111827;
}

/* ✅ Hide on Desktop */
@media(min-width: 769px){
  .bottom-menu.premium-menu{
    display:none;
  }
}

/* ✅ IMPORTANT: space for bottom menu so content doesn't hide */
@media(max-width: 768px){
  body{
    padding-bottom: 95px !important;
  }
}

   /* =========================
   MOBILE DASHBOARD FIX
========================= */


:root{
  --header-height: 60px;
}

@media(max-width:768px){
  :root{
    --header-height: 52px;
  }
}

.main-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100002;
}

body{
  padding-top: var(--header-height);
}

/* =========================
   ✅ Elegant Compact Header
   ========================= */
/* ✅ Online Mock.in Header (Same as previous test header style) */
.main-header{
  position: fixed;
  top: 0;
  z-index: 100002;

  min-height: 60px;      /* allow breathing */
  width: 100%;

  padding: 6px 14px;     /* vertical spacing */

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  background: linear-gradient(135deg, #1d4ed8, #16a34a);
  color: #fff;

  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  box-sizing: border-box;
}
.main-header{
 
}

@media(max-width:768px){
  .main-header{
    --header-height: 52px;
  }
}

body{
  padding-top: var(--header-height);
}


/* Left Brand */
.main-header .header-left{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name{
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-tagline{
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Center Search */
.header-center{
  display: flex;
  justify-content: center;   /* ✅ TRUE CENTER */
  align-items: center;
  min-width: 0;
}


.search-box{
  width: 100%;
  max-width: 420px;
 position: relative;
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 6px 8px;
  border-radius: 12px;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);

  backdrop-filter: none;
}

.search-box input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  min-width: 0;
}

.search-box input::placeholder{
  color: rgba(255,255,255,0.8);
}

.search-box button{
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 10px;

  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease;
}

.search-box button:hover{
  background: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}

/* Right Buttons */
.header-right{
  margin-left: auto;          /* ✅ pushes to right */
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* ✅ align inside right */
  gap: 10px;
  flex-shrink: 0;
}

.main-header .header-right{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;

  border-radius: 10px;
  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.2s ease;
}

.header-btn:hover{
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.header-btn.danger{
  background: rgba(255, 0, 0, 0.18);
  border: 1px solid rgba(255, 0, 0, 0.25);
}

.header-btn.danger:hover{
  background: rgba(255, 0, 0, 0.28);
}

/* ✅ Mobile */
@media(max-width:768px){
  .brand-tagline{
    display: none;
  }

  .search-box{
    max-width: 220px;
  }

  .header-btn{
    padding: 7px 10px;
    font-size: 0.8rem;
  }
}




/* ✅ Extra compact header on mobile */
@media(max-width:768px){

  .main-header{
    height: 52px;          /* ✅ smaller height */
    padding: 0 10px;       /* ✅ less padding */
    gap: 8px;
  }

  .brand-logo{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.85rem;
  }

  .brand-name{
    font-size: 0.95rem;    /* ✅ smaller text */
  }

  .brand-tagline{
    display: none;         /* ✅ hide tagline */
  }

  .search-box{
    max-width: 170px;      /* ✅ smaller search */
    padding: 4px 6px;
    border-radius: 10px;
  }

  .search-box input{
    font-size: 0.8rem;
  }

  .search-box button{
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 12px;
  }

  .header-btn{
    padding: 6px 10px;     /* ✅ smaller button */
    font-size: 0.78rem;
    border-radius: 9px;
  }
}
.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

/* ✅ Ultra small screens (hide search completely) */

/* ✅ Follow us section */
.follow-us{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}

.follow-text{
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.95;
}

/* ✅ Social icon buttons */
.social-btn{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;

  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
}

/* Platform hint colors */
.social-btn.insta:hover{
  box-shadow: 0 6px 16px rgba(255, 0, 150, 0.25);
}
.social-btn.telegram:hover{
  box-shadow: 0 6px 16px rgba(0, 150, 255, 0.25);
}
.social-btn.youtube:hover{
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

/* ✅ Hide follow icons on mobile */
@media(max-width:768px){
  .follow-us{
    display: none !important;
  }
}


.search-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  cursor:pointer;
  border-bottom: 1px solid #eef2f7;
  transition: all 0.18s ease;
}

.search-item:last-child{
  border-bottom:none;
}

.search-item:hover{
  background:#eef4ff;
  transform: translateX(2px);
}


.search-item:last-child{
  border-bottom:none;
}

.search-item:hover{
  background:#f4f8ff;
}

.search-item img{
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background:#fff;
}


.search-item span{
  font-size: 0.88rem;
  font-weight: 600;
  color:#111827;
  letter-spacing: 0.2px;
}

.search-badge{
  margin-left:auto;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}


.badge-test{
  background:#dbeafe;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
}

.badge-course{
  background:#dcfce7;
  color:#15803d;
  border:1px solid #bbf7d0;
}

/* each result row */

.no-result{
  padding: 12px;
  text-align: center;
  color: #666;
  font-weight: 600;
}
@media(max-width:768px){

  .brand-name{
    flex-direction: column;
    gap: 0;
    line-height: 1;
  }

  /* ✅ SHOW TAGLINE IN MOBILE */
  .brand-tagline{
    display: block;
    font-size: 0.45rem;
    opacity: 0.9;
    margin-top: 2px;
  }
}
.my-center-shortcuts{
  max-width: 1100px;
  margin: 25px auto 10px;
  padding: 0 20px;
  font-family: "Inter","Segoe UI",sans-serif;
}

.my-center-box{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.my-center-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111827;
}

.my-center-buttons{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.my-center-btn{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #eef2f7;
  background: #f9fafb;
  transition: 0.2s ease;
}

.my-center-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

.my-center-btn .btn-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.my-center-btn.tests .btn-icon{ background: #dbeafe; }
.my-center-btn.purchases .btn-icon{ background: #dcfce7; }

.my-center-btn .btn-text{ flex: 1; min-width: 0; }
.my-center-btn .btn-text b{
  display: block;
  font-size: 15px;
  color: #111827;
  font-weight: 900;
}
.my-center-btn .btn-text span{
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin-top: 2px;
}
.my-center-btn .btn-arrow{
  font-size: 22px;
  font-weight: 900;
  color: #9ca3af;
}
@media(max-width: 768px){
  .my-center-buttons{
    grid-template-columns: repeat(2, 1fr); /* ✅ keep side-by-side */
    gap: 10px;
  }

  .my-center-btn{
    padding: 12px 10px;
    border-radius: 12px;
  }

  .my-center-btn .btn-text b{
    font-size: 13px;
  }

  .my-center-btn .btn-text span{
    font-size: 11px;
  }

  .my-center-btn .btn-arrow{
    display:none; /* ✅ optional hide arrow to fit */
  }

  .my-center-btn .btn-icon{
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 12px;
  }
}
/* ✅ Hide Telegram icon in HEADER on mobile */
@media (max-width: 768px){
  .main-header .social-btn.telegram{
    display: none !important;
  }
}
/* =========================
   MOBILE SEARCH FINAL FIX
========================= */

.mobile-search-btn {
  display: none;
}

@media (max-width: 768px) {

  /* show mobile icon */
  .mobile-search-btn {
    display: inline-flex;
  }

  /* hide search by default */
  .header-center {
    display: none;
  }

  /* show when active */
  .header-center.show-mobile-search {
    display: flex;
  }

  /* hide inner search icon */
/* hide only search icon, not close button */
.search-box #searchBtn {
  display: none;
}


  /* allow dropdown */
  .search-box {
    overflow: visible;
  }
}
/* =========================
   MOBILE SEARCH DROPDOWN FIX
========================= */

/* =========================
   CENTER FLOAT SEARCH PANEL
========================= */
.search-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35); /* dark dim only */
  z-index: 100000;
  display: none;
}

.search-overlay.show{
  display: block;
}


/* =========================
   SEARCH DROPDOWN — FINAL FIX
========================= */

/* =========================
   SEARCH DROPDOWN — CLEAN FINAL
========================= */

/* =========================
   PREMIUM COMPACT SEARCH UI
========================= */

.search-results{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;

  background: #f9fafb; /* softer premium grey */
  border-radius: 12px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 10px 24px rgba(0,0,0,0.12);

  max-height: 220px;
  overflow-y: auto;

  display: none;
  z-index: 100001;

  scrollbar-width: none;
}

.search-results::-webkit-scrollbar{
  display: none;
}


.search-results::-webkit-scrollbar{
  display: none;
}

/* =========================
   MOBILE SEARCH PANEL FIX
========================= */
@media (max-width: 768px){

  .search-results{
    position: fixed;
    top: 70px; /* below header */
    left: 50%;
    transform: translateX(-50%);

    width: 94%;
    max-width: 480px;
    max-height: 55vh;

    background: #fff;
    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(0,0,0,0.25);

    overflow-y: auto;
    z-index: 100001;
  }

}



.search-box{
  position: relative;
  overflow: visible;
}

body.mobile-search-open {
  overflow: hidden;
}
/* Hide Get Started button in header on mobile */
@media (max-width: 768px){
  #get-started{
    display: none !important;
  }
    #get-logout{
    display: none !important;
  }
}


/* Download App button highlight */
.download-app-btn{
  background: linear-gradient(135deg,#ff9800,#ff5722);
  border: 1px solid rgba(255,255,255,0.25);
  color:#fff;
}

.download-app-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,87,34,0.35);
}
@media(max-width:768px){
  .download-app-btn{
    padding:6px 10px;
    font-size:0.75rem;
  }
}
/* =========================
   MOBILE FULL SEARCH MODE
========================= */
@media (max-width:768px){

  /* when search active */
  .main-header.search-active .header-left,
  .main-header.search-active .header-right{
    display: none !important;
  }

  /* make search full width */
  .main-header.search-active .header-center{
    display: flex !important;
    grid-column: 1 / -1;
    width: 100%;
  }

  .main-header.search-active .search-box{
    width: 100%;
    max-width: 100%;
  }

}
.close-search-btn{
  border:none;
  background:transparent;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  padding:4px 6px;
}

/* show only on mobile */
@media(min-width:769px){
  .close-search-btn{
    display:none;
  }
}




  .ultra-hero{
  position:relative;
  overflow:hidden;
  padding:100px 20px 160px;
  color:white;

  background:linear-gradient(-45deg,#1d4ed8,#16a34a,#0ea5e9,#22c55e);
  background-size:400% 400%;
  animation:gradient 12s ease infinite;
}

@keyframes gradient{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

#particles{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.hero-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
  position:relative;
  z-index:2;
}

.hero-badge{
  background:rgba(255,255,255,.2);
  padding:8px 16px;
  border-radius:30px;
}

.hero-left h1{
  font-size:48px;
  font-weight:800;
  margin:15px 0;
}

.hero-left p{
  font-size:18px;
  margin-bottom:25px;
}

.hero-buttons{display:flex;gap:15px;margin-bottom:30px;}

.hero-btn{
  padding:14px 28px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
}

.primary{background:white;color:#1d4ed8;}
.secondary{border:2px solid white;color:white;}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.hero-stats{display:flex;gap:40px;}

.stat span{font-size:26px;font-weight:800;}

.hero-right{position:relative;}

.hero-img{
  width:520px;
  transition:transform .2s ease;
}

.floating-card{
  position:absolute;
  padding:12px 18px;
  border-radius:12px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  font-weight:600;
}
.card1{top:40px;left:-30px;}
.card2{bottom:40px;right:-20px;}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.4;
}
.glow1{width:350px;height:350px;background:white;top:-120px;left:-120px;}
.glow2{width:300px;height:300px;background:#00f2ff;bottom:-120px;right:-100px;}

.hero-wave{
  position:absolute;
  bottom:0;
  width:100%;
}

@media(max-width:768px){
  .hero-container{flex-direction:column;text-align:center;}
  .hero-left h1{font-size:30px;}
}

    /* ===============================
   HOVER RIPPLE GLOW EFFECT
================================ */

.exam-subcat{
  position:relative;
  overflow:hidden;
}

/* glow circle */
.exam-subcat::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
  border-radius:50%;
  top:var(--mouse-y, 50%);
  left:var(--mouse-x, 50%);
  transform:translate(-50%, -50%);
  opacity:0;
  transition:opacity .3s ease;
  pointer-events:none;
}

/* show on hover */
.exam-subcat:hover::after{
  opacity:1;
}
/* ===============================
   SKELETON LOADING CARDS
================================ */

.skeleton-card{
  height:140px;
  border-radius:18px;
  background:linear-gradient(
    90deg,
    #e5e7eb 25%,
    #f3f4f6 50%,
    #e5e7eb 75%
  );
  background-size:200% 100%;
  animation:skeletonLoading 1.2s infinite;
}

@keyframes skeletonLoading{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}






    
    .app-download {
  display: flex;
  gap: 20px;
  align-items: center;
}

.store-btn img {
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
}

.store-btn img:hover {
  transform: scale(1.05);
}

/* iOS disabled style */
.store-btn.disabled {
  position: relative;
  opacity: 0.5;
  cursor: not-allowed;
}

.store-btn.disabled img {
  pointer-events: none;
}

.store-btn .coming {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #555;
}



/* Wrapper */
.exam-toggle-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden; /* hide native overflow */
}

/* Scroll buttons container above strip */
.scroll-buttons-top {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}

/* Scroll buttons style */
.scroll-buttons-top button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scroll-buttons-top button:hover {
  background-color: #f0f0f0;
}
/* Wrapper */
.choose-exam {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Scroll buttons container above strip */
.scroll-buttons-top {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}

.scroll-buttons-top button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scroll-buttons-top button:hover {
  background-color: #f0f0f0;
}

/* Horizontal toggle strip for exam categories */
/* ===============================
   PREMIUM EXAM CATEGORY PILLS
================================ */

.exam-toggle-strip{
  display:flex;
  scroll-snap-type:x mandatory;

  gap:10px;
  padding:12px;
  overflow-x:auto;
  scrollbar-width:none;
  background:transparent;
}

.exam-toggle-strip::-webkit-scrollbar{
  display:none;
}

/* pill button */
.exam-toggle{
  flex:0 0 auto;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;
  scroll-snap-align:start;

  font-weight:600;
  font-size:14px;

  color:#374151;
  background:white;

  border:1px solid #e5e7eb;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);

  transition:all .25s ease;
}

/* hover */
.exam-toggle:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

/* active */
.exam-toggle.active{
  background:linear-gradient(135deg,#2563eb,#1cc88a);
  color:white;
  border:none;
  box-shadow:0 6px 20px rgba(37,99,235,0.35);
}

/* text inside */
.exam-toggle span{
  white-space:nowrap;
}

/* Subcategory strip */
/* =========================
   GLASS SUBCATEGORY SECTION
========================= */

/* Subcategory strip */
/* =========================
   RESPONSIVE CARD GRID
========================= */

/* default (desktop) */
.exam-subcat-strip{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:20px;
}

/* tablet */
@media(max-width:768px){
  .exam-subcat-strip{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
}

/* small mobile */
@media(max-width:480px){
  .exam-subcat-strip{
    grid-template-columns:1fr;
    gap:12px;
  }
}

/* Individual subcategory card */



/* Logo */
.exam-subcat img {
  max-width: 80%;           /* scale with card width */
  max-height: 100px;          /* never bigger than 40px */
  object-fit: contain;
  margin-bottom: 4px;       /* space for text */
  flex: 0 0 auto;           /* prevent stretching */
  display: block;
}

/* Text */
.exam-subcat span {
  font-size: 0.7em;
  text-align: center;
  color:black;
  line-height: 1.1em;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;    /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  flex: 0 0 auto;           /* text stays visible */
}

/* Hover effect */
/* ===============================
   PREMIUM SUBCATEGORY CARDS
================================ */

.exam-subcat-strip{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:20px;
  margin-top:20px;
}

/* glass card */
.exam-subcat{
  position:relative;
  border-radius:18px;
  padding:24px 10px;
  text-align:center;
  cursor:pointer;

  background:rgba(255,255,255,0.65);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition:all .35s ease;
}

/* glow border */
.exam-subcat::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  padding:1px;
  background:linear-gradient(135deg,#2563eb,#1cc88a);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:.3s;
}

/* hover effect */
.exam-subcat:hover{
  transform:translateY(-8px) scale(1.04);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
    box-shadow:
  0 25px 60px rgba(37,99,235,0.2);

}

.exam-subcat:hover::before{
  opacity:1;
}

/* logo */
.exam-subcat img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin-bottom:12px;
  transition:.3s;
}

.exam-subcat:hover img{
  transform:scale(1.1);
}

/* title */
.exam-subcat span{
  font-size:13px;
  font-weight:700;
  color:#111827;
  line-height:1.3;
}


/* Mobile adjustments */
@media (max-width: 768px) {


  .exam-subcat img {
    max-width: 100%;
    max-height: 80px;        /* smaller logo */
    margin-bottom: 0px;
  }

  .exam-subcat span {
    font-size: 0.65em;
    -webkit-line-clamp: 2;   /* max 2 lines */
  }
}

/* ===============================
   PREMIUM EXAM SECTION HEADER
================================ */

.premium-exam-section{
  width:90vw;
  max-width:1000px;
  margin:40px auto;
}

.exam-section-header{
  text-align:center;
  margin-bottom:20px;
}

.exam-title{
  font-size:28px;
  font-weight:800;
  color:#111827;
  margin-bottom:6px;
}

.exam-subtitle{
  font-size:14px;
  color:#6b7280;
  font-weight:500;
}
/* ===============================
   PREMIUM EXAM SECTION BACKGROUND
================================ */

.premium-exam-section{
  position:relative;
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
  border-radius:22px;
  padding:35px 20px 45px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.6);
box-shadow:0 20px 60px rgba(0,0,0,0.08);

}

/* floating glow lights */
.premium-exam-section::before,
.premium-exam-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  opacity:.35;
  z-index:0;
}

/* blue glow */
.premium-exam-section::before{
  width:260px;
  height:260px;
  background:#3b82f6;
  top:-80px;
  left:-60px;
}

/* green glow */
.premium-exam-section::after{
  width:220px;
  height:220px;
  background:#22c55e;
  bottom:-70px;
  right:-60px;
}

/* keep content above glow */
.premium-exam-section > *{
  position:relative;
  z-index:1;
}
/* ===============================
   SUBCATEGORY BADGES
================================ */

.subcat-badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:4px 8px;
  font-size:10px;
  font-weight:700;
  border-radius:999px;
  color:white;
  letter-spacing:.3px;
}

/* badge styles */
.badge-popular{
  background:#ef4444;
}

.badge-recommended{
  background:#2563eb;
}

.badge-new{
  background:#22c55e;
}

/* ===============================
   CARD ENTRANCE ANIMATION
================================ */

.exam-subcat{
  opacity:0;
  transform:translateY(25px) scale(.95);
  animation:cardEnter .5s ease forwards;
}


@keyframes cardEnter{
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}
.skeleton-card{
  padding:20px;
}

.skeleton-card::before{
  content:"";
  display:block;
  width:60px;
  height:60px;
  border-radius:10px;
  background:#d1d5db;
  margin:0 auto 10px;
}

.skeleton-card::after{
  content:"";
  display:block;
  width:70%;
  height:12px;
  background:#d1d5db;
  margin:0 auto;
  border-radius:6px;
}

/* ===============================
   MOBILE TAP FEEDBACK
================================ */

.exam-subcat{
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* press effect */
.exam-subcat:active{
  transform:scale(.96);
  box-shadow:
    0 6px 12px rgba(0,0,0,0.15) inset;
}
.tap-active{
  transform:scale(.96) !important;
}



/* ===============================
   DASHBOARD SECTION
================================ */

.dashboard-slider-section{
  max-width:1100px;
  margin:10px auto;        /* reduced space */
  padding:0 10px;
}

/* ===============================
   COMPACT STRIP HEADER
================================ */
/* header strip */

.dashboard-slider-header{

display:flex;
justify-content:space-between;
align-items:center;

min-height:34px;

padding:4px 10px;

background:#f8fafc;
border:1px solid #e5e7eb;
border-radius:6px;

cursor:pointer;
}

/* title */

.dashboard-slider-header h2{
font-size:14px;
font-weight:700;
margin:0;
}

/* preview icons */

.dash-preview{
display:flex;
align-items:center;
gap:8px;
}

.dash-preview span{
font-size:14px;
}

/* toggle */

#dashToggle{

width:20px;
height:20px;

display:flex;
align-items:center;
justify-content:center;

font-size:14px;
font-weight:900;

background:white;
border:1px solid #e5e7eb;
border-radius:4px;
}
/* remove arrows */

.dash-scroll-btns{
  display:none;
}

/* ===============================
   GRID
================================ */

.dashboard-slider{

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:10px;

  overflow:hidden;

  max-height:0;
  opacity:0;

  transition:max-height .35s ease, opacity .25s ease;

  margin-top:6px;
}

.dashboard-slider.active{
  max-height:600px;
  opacity:1;
}

/* ===============================
   CARD
================================ */

.dash-slide{

  height:85px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:4px;

  border-radius:12px;

  text-decoration:none;
  color:#111;

  font-size:22px;
  font-weight:700;

  border:1px solid #e5e7eb;

  background:white;

  transition:.25s;
}

.dash-slide span{
  font-size:11px;
  font-weight:700;
}

.dash-slide:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 18px rgba(0,0,0,0.1);
}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

.dashboard-slider{
  grid-template-columns:repeat(2,1fr);
}

.dash-slide{
  height:80px;
  font-size:20px;
}

}

/* ===============================
   COLORS
================================ */

.dash-slide:nth-child(1){ background:#e0f2fe; }
.dash-slide:nth-child(2){ background:#fee2e2; }
.dash-slide:nth-child(3){ background:#fef3c7; }
.dash-slide:nth-child(4){ background:#dcfce7; }
.dash-slide:nth-child(5){ background:#ede9fe; }
.dash-slide:nth-child(6){ background:#fce7f3; }




.pending-tests-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:8px;
    background:linear-gradient(135deg,#f59e0b,#f97316); /* pause theme */
    color:#fff;
    font-size:13px;
    margin-right:6px;
    vertical-align:middle;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.pending-tests-icon + span{
    display:inline-block;
    padding:5px 10px;
    border-radius:10px;
    background:#fff7ed;
    font-size:13px;
    font-weight:600;
    color:#9a3412;
    border:1px solid #fed7aa;
    vertical-align:middle;
    letter-spacing:0.2px;
}

/* smooth press effect */
.pending-tests-icon:hover,
.pending-tests-icon:hover + span{
    transform:scale(0.97);
    transition:all .15s ease;
}

/* ==========================================================
   PENDING TESTS SECTION (New or Paused)
   ========================================================== */
/* ===== SECTION WRAPPER ===== */
.pending-tests {
    margin: 50px auto;
    max-width: 1100px;
    padding: 0 20px;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #0f172a;
}


/* ===== HEADING ===== */
.pending-tests-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding-bottom: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6eaf0;
}

.pending-tests-heading .pending-tests-icon {
    font-size: 26px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:10px;
    background:linear-gradient(135deg,#6366f1,#8b5cf6);
    color:#fff;
    box-shadow:0 4px 12px rgba(99,102,241,0.35);
}


/* ===== CONTAINER ===== */
.pending-tests-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 18px;
    padding: 4px 2px 12px;
    scrollbar-width: none;
}
.pending-tests-container::-webkit-scrollbar {
    display: none;
}


/* ===== CARD ===== */
.pending-tests-card {
    flex: 0 0 auto;
    width: 270px;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border-radius: 16px;
    padding: 18px;
    border: 1px solid #edf1f5;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.04),
        0 1px 2px rgba(0,0,0,0.05);

    transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

.pending-tests-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.08),
        0 4px 8px rgba(0,0,0,0.06);
}


/* ===== CARD TITLE ===== */
.pending-tests-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.4;
    color:#111827;
}


/* ===== INFO ROW ===== */
.pending-tests-info-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.pending-tests-info {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;

    background: linear-gradient(135deg,#eef2ff,#f5f3ff);
    color: #4338ca;
    border: 1px solid #e0e7ff;
}


/* ===== BUTTONS ===== */
.pending-tests-btn {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    transition: all .2s ease;
}


/* PRIMARY BUTTON */
.pending-tests-btn-primary {
    background: linear-gradient(135deg,#3b82f6,#6366f1);
    box-shadow: 0 4px 10px rgba(59,130,246,0.35);
}
.pending-tests-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(59,130,246,0.45);
}


/* WARNING BUTTON */
.pending-tests-btn-warning {
    background: linear-gradient(135deg,#f59e0b,#fb923c);
    box-shadow: 0 4px 10px rgba(245,158,11,0.35);
}
.pending-tests-btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(245,158,11,0.45);
}


/* ===== SCROLL ARROWS ===== */
.scroll-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scroll-btn {
    border: none;
    background: #ffffff;
    color: #334155;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all .25s ease;
}

.scroll-btn:hover {
    background: #6366f1;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(99,102,241,0.45);
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .pending-tests-heading {
        font-size: 22px;
    }

    .pending-tests-container {
        gap: 14px;
        scroll-snap-type: x mandatory;
    }

    .pending-tests-card {
        width: 85%;
        scroll-snap-align: center;
    }
}
html{
  scroll-behavior: smooth;
}



/* ==========================================================
   ATTEMPTED TESTS — ULTRA PREMIUM UI
   ========================================================== */
/* ==========================================================
   ATTEMPTED TESTS — ULTRA PREMIUM UI
   ========================================================== */
/* ==========================================================
   ATTEMPTED TESTS — COMPACT CLEAN UI
   ========================================================== */
.attempted-tests-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:8px;
    background:linear-gradient(135deg,#6366f1,#8b5cf6);
    color:#fff;
    font-size:13px;
    margin-right:6px;
    vertical-align:middle;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.attempted-tests-icon + span{
    display:inline-block;
    padding:5px 10px;
    border-radius:10px;
    background:#f8fafc;
    font-size:13px;
    font-weight:600;
    color:#1e293b;
    vertical-align:middle;
    letter-spacing:0.2px;
    border:1px solid #e2e8f0;
}

/* smooth app-like press effect */
.attempted-tests-icon:hover,
.attempted-tests-icon:hover + span{
    transform:scale(0.97);
    transition:all 0.15s ease;
}

/* ===== SECTION ===== */
.attempted-tests{
    margin:40px auto;
    max-width:1100px;
    padding:0 14px;
    font-family:"Poppins","Inter",sans-serif;
}

/* ===== HEADING ===== */
.attempted-tests-heading{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    padding-bottom:8px;
    margin-bottom:18px;
    position:relative;
}

/* subtle underline */
.attempted-tests-heading::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    width:90px;
    border-radius:4px;
    background:linear-gradient(90deg,#ef4444,#f97316);
}

/* ===== SCROLL CONTAINER ===== */
.attempted-tests-container{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding:6px 4px 10px 4px;
    scroll-behavior:smooth;
    scrollbar-width:none;
}
.attempted-tests-container::-webkit-scrollbar{
    display:none;
}

/* ==========================================================
   CARD
   ========================================================== */
.attempted-tests-card{
    flex:0 0 auto;
    width:240px;
    padding:14px;
    border-radius:14px;

    background:#ffffff;
    border:1px solid #f1f5f9;
    box-shadow:0 4px 10px rgba(0,0,0,0.04);

    display:flex;
    flex-direction:column;
    position:relative;
    transition:.25s ease;
}

.attempted-tests-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

/* ==========================================================
   COMPLETED BADGE RIBBON
   ========================================================== */
.rank-ribbon{
    position:absolute;
    top:10px;
    right:-28px;

    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;

    font-size:10px;
    font-weight:700;
    letter-spacing:.4px;

    padding:4px 30px;
    transform:rotate(45deg);
}

/* ==========================================================
   TITLE
   ========================================================== */
.attempted-tests-card h3{
    font-size:15px;
    font-weight:600;
    color:#020617;
    margin-bottom:10px;
    line-height:1.3;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* ==========================================================
   INFO ROW
   ========================================================== */
.attempted-tests-info-row{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.attempted-tests-info{
    flex:1;
    text-align:center;
    border-radius:8px;
    padding:6px 4px;

    background:#fff7f7;
    border:1px solid rgba(239,68,68,0.12);

    font-size:11px;
    font-weight:600;
    color:#ef4444;
}

.attempted-tests-info strong{
    display:block;
    margin-top:2px;
    font-size:13px;
    color:#020617;
}

/* ==========================================================
   CENTERED VIEW BUTTON
   ========================================================== */
.attempted-tests-btn-primary{
    margin-top:auto;          /* push to bottom */
    align-self:center;        /* center horizontally */

    width:100%;
    max-width:180px;

    padding:9px 12px;
    border-radius:10px;

    text-align:center;
    font-weight:600;
    font-size:13px;

    color:#fff;
    text-decoration:none;

    background:linear-gradient(135deg,#ef4444,#dc2626);
    box-shadow:0 4px 10px rgba(239,68,68,0.25);

    transition:.2s ease;
}

.attempted-tests-btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(239,68,68,0.35);
}

/* ==========================================================
   SCROLL BUTTONS
   ========================================================== */
.scroll-btn{
    width:32px;
    height:32px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    font-size:14px;

    background:#ffffff;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
    transition:.25s;
}

.scroll-btn:hover{
    background:#ef4444;
    color:#fff;
}

/* ==========================================================
   MOBILE
   ========================================================== */
@media(max-width:768px){

    .attempted-tests{
        margin-top:30px;
    }

    .attempted-tests-heading{
        font-size:20px;
    }

    .attempted-tests-card{
        width:80%;
        min-width:80%;
    }
}



/* =================================
   ULTRA PREMIUM PROMO SLIDER
================================= */

.banner-slider{
  position:relative;
  width:95%;
  max-width:1100px;
  margin:35px auto;
  overflow:hidden;
  border-radius:22px;
  color:#fff;
  font-family:'Poppins',sans-serif;

  /* animated gradient mesh */
  background:linear-gradient(-45deg,#1d4ed8,#16a34a,#0ea5e9,#22c55e);
  background-size:400% 400%;
  animation:gradientMove 12s ease infinite;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.25);
}

/* gradient animation */
@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* floating glow lights */
.banner-slider::before,
.banner-slider::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:.35;
}

.banner-slider::before{
  width:260px;
  height:260px;
  background:#fff;
  top:-80px;
  left:-80px;
}

.banner-slider::after{
  width:220px;
  height:220px;
  background:#00f2ff;
  bottom:-80px;
  right:-80px;
}

/* slides container */
.slides-container{
  position:relative;
  min-height:170px;
}

/* slide glass panel */
.slide{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:40px 24px;
  text-align:center;

  opacity:0;
  pointer-events:none;
  transform:translateY(10px) scale(.98);
  transition:all .7s cubic-bezier(.2,.7,.2,1);

  /* glass effect */
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.25);
}

/* active slide */
.slide.active{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0) scale(1);
  position:relative;
}

/* heading */
.slide h3{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:.3px;
  text-shadow:0 2px 8px rgba(0,0,0,.25);
}

/* text */
.slide p{
  max-width:760px;
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(255,255,255,.95);
}

/* =========================
   PREMIUM DOTS
========================= */

.slider-dots{
  position:absolute;
  bottom:16px;
  width:100%;
  text-align:center;
  z-index:20;
}

.slider-dots .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  margin:0 6px;
  border:none;
  cursor:pointer;

  background:rgba(255,255,255,.5);
  transition:all .3s ease;
}

.slider-dots .dot.active{
  background:#fff;
  transform:scale(1.35);
  box-shadow:0 0 12px rgba(255,255,255,.9);
}

/* =========================
   SLIDE PROGRESS BAR
========================= */

.banner-slider::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  height:4px;
  width:100%;
  background:rgba(255,255,255,.25);
}

.banner-slider .progress{
  position:absolute;
  bottom:0;
  left:0;
  height:4px;
  width:0%;
  background:#fff;
  animation:slideProgress 4s linear infinite;
}

@keyframes slideProgress{
  from{width:0}
  to{width:100%}
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .banner-slider{
    border-radius:16px;
    margin:20px auto;
  }

  .slide{
    padding:26px 14px;
  }

  .slide h3{
    font-size:1.3rem;
  }

  .slide p{
    font-size:.95rem;
  }
}


.promo-banner {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    max-width: 650px;       /* desktop max */
    margin: 40px auto;
    padding: 0 15px;        /* add horizontal padding for mobile */
    box-sizing: border-box;
}

.courses-banner h2 {
  color: #e65100; /* warm orange to differentiate from test banner */
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, #fff3e0, #ffe0b2);
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

.courses-banner p {
  color: #555;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 6px;
}




.why-choose {
  max-width: 1200px;
  margin: 70px auto;
  padding: 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2em;
  margin-bottom: 40px;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.choose-reasons-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.choose-reasons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  scroll-behavior: smooth;
}

.reason {
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.reason-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  color: #fff;
  font-size: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.reason-circle:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #1cc88a, #4e73df);
}

.reason h3 {
  font-size: 1.2em;
  margin: 10px 0;
  color: #1a73e8;
  font-weight: 700;
}

.reason p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5em;
  max-width: 250px;
  margin: 0 auto;
}

/* Dots */
.why-dots {
  text-align: center;
  margin-top: 20px;
}

.why-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.why-dots .dot.active {
  background-color: #1a73e8;
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .choose-reasons {
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }
  .reason {
    flex: 0 0 90%;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .choose-reasons-wrapper::-webkit-scrollbar { display: none; }
  .choose-reasons-wrapper { -ms-overflow-style: none; scrollbar-width: none; }
}



.contact-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 25px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.contact-container h2 { color:#1a73e8; font-size:1.5rem; margin-bottom:6px; }
.contact-container p { font-size:0.95rem; color:#555; margin-bottom:18px; }

.contact-container form input,
.contact-container form textarea {
    width: 80%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.contact-container form input:focus,
.contact-container form textarea:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 6px rgba(26,115,232,0.3);
}

.contact-container form button {
    width: 80%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.contact-container form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

#contact-status {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media(max-width:500px){
    .contact-container { margin:20px 15px; padding:20px 15px; }
}
.switch-link-buttons{
  margin-top:12px;
  display:flex;
  gap:10px;
}

.auth-btn{
  flex:1;                /* equal width */
  padding:10px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  border:none;
  transition:0.2s ease;
}

/* Register Button */
.auth-btn.secondary{
  background:linear-gradient(135deg,#1d4ed8,#16a34a);
  color:#fff;
}

.auth-btn.secondary:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* Forgot Password Button */
.auth-btn.link-btn{
  background:#f1f5f9;
  color:#333;
}

.auth-btn.link-btn:hover{
  background:#e2e8f0;
}


/* =================================
   ULTRA PREMIUM FOOTER
================================= */

.premium-footer{
  margin-top:60px;
  color:#fff;
  font-family:'Poppins',sans-serif;

  background:linear-gradient(135deg,#1d4ed8,#16a34a);
}

/* container */
.footer-container{
  max-width:1200px;
  margin:auto;
  padding:50px 20px;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

/* brand */
.footer-col.brand h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}

.footer-col.brand p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
}

/* headings */
.footer-col h4{
  margin-bottom:14px;
  font-size:16px;
  font-weight:700;
}

/* links */
.footer-col a{
  display:block;
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  margin-bottom:8px;
  font-size:14px;
  transition:.25s;
}

.footer-col a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* social */
.footer-social{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.footer-social .social{
  width:38px;
  height:38px;
  border-radius:10px;
  background:rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:.25s;
}

.footer-social .social:hover{
  background:#fff;
  color:#111;
  transform:translateY(-3px);
}

/* app button */
.footer-app-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 16px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  color:#fff;

  background:linear-gradient(135deg,#ff9800,#ff5722);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

.footer-app-btn:hover{
  transform:translateY(-2px);
}

/* support mail */
.support-mail{
  font-size:13px;
  opacity:.9;
}

/* bottom bar */
.footer-bottom{
  text-align:center;
  padding:16px;
  font-size:13px;
  background:rgba(0,0,0,0.15);
}

/* mobile */
@media(max-width:768px){
  .footer-container{
    padding:40px 16px;
    gap:25px;
  }
}
