/* -----------------------------
     UNIVERSAL COLORS
------------------------------ */
:root {
  --primary: #b30000;
  --dark: #1e1e1e;
  --light: #ffffff;
  --accent: #ffca28;
  --bg: #f5f5f7;
  --card: #ffffff;
  --shadow: 0 4px 18px rgba(0,0,0,0.08);

  /* Footer variables */
  --sr-bg: #071a2a;
  --sr-dark: #04121a;
  --sr-accent: #d4af37;
  --sr-card: #071a2a;
  --sr-text: #e8eef6;
  --sr-muted: #b9c6d4;
  --sr-white: #ffffff;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* FIX: no horizontal scroll ever */
  background: var(--bg);
  font-family: Arial, sans-serif;
}
/* FIX: Main wrapper to prevent overflow */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
  overflow-x: hidden;
}

/* -----------------------------
          TOPBAR
------------------------------ */
.topbar-pro {
  background: var(--dark);
  color: var(--light);
  padding: 8px 0;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* -----------------------------
           HEADER
------------------------------ */
.main-header {
  background: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}

.header-wrap {
  max-width: 1150px;
  margin: auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

/* -----------------------------
        DESKTOP MENU
------------------------------ */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.menu a:hover {
  color: #000;
  background: #fff;
  border-radius: 4px;
}

/* -----------------------------
        MOBILE MENU BUTTON
------------------------------ */
.menu-toggle {
  font-size: 28px;
  background: transparent;
  border: none;
  display: none;
  cursor: pointer;
  color: #fff;
}

/* -----------------------------
         MOBILE MENU
------------------------------ */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #b30000; /* RED BACKGROUND as requested */
  border-top: 1px solid rgba(255,255,255,0.15);
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 300;
}

.mobile-menu a {
  padding: 14px 18px;
  text-decoration: none;
  color: #fff; /* WHITE TEXT */
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px;
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.12);
}

.show-menu {
  display: flex !important;
}

body.no-scroll {
  height: 100vh;
  overflow-y: hidden;
}

/* -----------------------------
         MARQUEE UPDATE
------------------------------ */
.updates-container {
  margin-top: 20px;
  background: var(--accent);
  padding: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.updates-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.updates-track {
  display: inline-block;
  animation: scroll 22s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-60%); }
}

.update-item {
  margin-right: 50px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.update-item:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* BADGES */
.badge-new { background:#d50000; padding:4px 8px; color:#fff; border-radius:4px; font-size:12px; }
.badge-hot { background:#ff6f00; padding:4px 8px; color:#fff; border-radius:4px; font-size:12px; }
.badge-info{ background:#0277bd; padding:4px 8px; color:#fff; border-radius:4px; font-size:12px; }

/* -----------------------------
         SEARCH BAR
------------------------------ */
.search-section, .jobs-search-box {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.search-section input,
.jobs-search-box input {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.jobs-search-box button {
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}
/* ================================
   MODERN CATEGORY SECTION (2026)
================================ */

.category-section-pro {

  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;

}


/* ================================
   MODERN HEADING
================================ */

.category-section-pro .section-heading {

  font-size: 32px;
  font-weight: 800;

  background: linear-gradient(90deg,#0f172a,#2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 30px;

}


/* ================================
   GRID LAYOUT
================================ */

.category-grid-pro {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 22px;

}


/* ================================
   MODERN CARD DESIGN
================================ */

.category-card-pro {

  background: #ffffff;

  border-radius: 14px;

  padding: 22px;

  border: 1px solid #e6edf5;

  transition: all 0.28s ease;

  position: relative;

  overflow: hidden;

}


/* modern glow effect */

.category-card-pro::before {

  content: "";

  position: absolute;

  top: -60px;
  right: -60px;

  width: 160px;
  height: 160px;

  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent);

  border-radius: 50%;

}


/* hover effect */

.category-card-pro:hover {

  transform: translateY(-6px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.06);

  border-color: #2563eb;

}


/* ================================
   ICON DESIGN
================================ */

.category-card-pro .icon {

  width: 48px;
  height: 48px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  background: linear-gradient(135deg,#2563eb,#1d4ed8);

  color: #fff;

  margin-bottom: 12px;

}


/* ================================
   TITLE
================================ */

.category-card-pro h3 {

  font-size: 19px;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 14px;

}


/* ================================
   LIST STYLE
================================ */

.category-card-pro ul {

  list-style: none;
  padding: 0;
  margin: 0;

}


/* each item */

.category-card-pro ul li {

  border-bottom: 1px solid #f1f5f9;

}


.category-card-pro ul li:last-child {

  border-bottom: none;

}


/* links */

.category-card-pro ul li a {

  display: block;

  padding: 10px 0;

  font-size: 14.5px;

  font-weight: 600;

  color: #334155;

  text-decoration: none;

  transition: all 0.2s ease;

}


/* hover */

.category-card-pro ul li a:hover {

  color: #2563eb;

  padding-left: 6px;

}


/* ================================
   MODERN VIEW ALL BUTTON
================================ */

.view-all-btn {

  display: inline-block;

  margin-top: 16px;

  padding: 10px 16px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  color: #fff;

  border-radius: 8px;

  background : linear-gradient(135deg,#2563eb,#1d4ed8);

  transition: all 0.25s ease;

}


/* hover */

.view-all-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(37,99,235,0.35);

}


/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  .category-section-pro {

    margin: 40px auto;

  }

  .category-section-pro .section-heading {

    font-size: 24px;

  }

  .category-card-pro {

    padding: 18px;

  }

  .category-card-pro h3 {

    font-size: 17px;

  }

  .category-card-pro ul li a {

    font-size: 14px;

    padding: 12px 0;

  }

  .view-all-btn {

    width: 100%;

    text-align: center;

  }

}
/* =========================
   JOB PAGE MODERN DESIGN
========================= */

.jobs-main{
background:#f8fafc;
min-height:100vh;
}

/* HEADER */

.jobs-header{
background:linear-gradient(135deg,#020617,#1e3a8a);
padding:60px 20px;
color:white;
}

.jobs-header-inner{
max-width:1000px;
margin:auto;
}

.breadcrumb-modern{
font-size:14px;
margin-bottom:15px;
opacity:.8;
}

.breadcrumb-modern a{
color:#cbd5e1;
text-decoration:none;
}

.jobs-title{
font-size:36px;
font-weight:800;
margin-bottom:10px;
}

.jobs-subtitle{
font-size:16px;
color:#cbd5e1;
margin-bottom:25px;
}

/* SEARCH */

.jobs-search-modern{
display:flex;
gap:10px;
}

.jobs-search-modern input{
flex:1;
padding:14px;
border-radius:8px;
border:none;
font-size:15px;
}

.jobs-search-modern button{
background:#2563eb;
color:white;
border:none;
padding:14px 22px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

/* JOB LIST */

.jobs-container{
max-width:1000px;
margin:auto;
padding:40px 20px;
}

.job-card{
background:white;
padding:25px;
margin-bottom:20px;
border-radius:12px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
transition:.3s;
border:1px solid #e2e8f0;
}

.job-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.job-title{
font-size:20px;
margin-bottom:10px;
color:#0f172a;
}

.job-tags span{
background:#eff6ff;
color:#1e40af;
padding:5px 10px;
margin-right:8px;
border-radius:6px;
font-size:13px;
}

.job-meta{
margin-top:8px;
font-size:14px;
color:#64748b;
}

.apply-btn{
background:#2563eb;
color:white;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.apply-btn:hover{
background:#1d4ed8;
}

/* MOBILE */

@media(max-width:768px){

.job-card{
flex-direction:column;
align-items:flex-start;
}

.job-card-right{
margin-top:15px;
}

.jobs-title{
font-size:26px;
}

}

.tag-green{

background:#dcfce7;

color:#166534;

padding:5px 10px;

border-radius:6px;

font-size:12px;

font-weight:600;

margin-right:6px;

}

.tag-orange{

background:#ffedd5;

color:#9a3412;

padding:5px 10px;

border-radius:6px;

font-size:12px;

font-weight:600;

margin-right:6px;

}
.tag-green{
background:#dcfce7;
color:#166534;
padding:5px 10px;
border-radius:6px;
font-size:12px;
font-weight:600;
margin-right:6px;
}
/* ===========================
   MODERN PREMIUM FOOTER
=========================== */
/* ================= FOOTER ================= */

.modern-footer{
background:#0f172a;
color:#cbd5e1;
padding:60px 20px 30px;
font-family:Arial, sans-serif;
}

.footer-container{
max-width:1200px;
margin:auto;
}

/* ================= ABOUT ================= */

.footer-about{
max-width:600px;
margin-bottom:40px;
}

.footer-logo-img{
width:90px;
margin-bottom:10px;
}

.footer-logo{
font-size:24px;
color:#ffffff;
margin-bottom:10px;
}

/* ================= SOCIAL ================= */

.footer-social{
display:flex;
gap:12px;
margin-top:15px;
}

.footer-social .social{
width:38px;
height:38px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:16px;
text-decoration:none;
transition:all .3s ease;
}

.social.whatsapp{background:#25D366;}
.social.telegram{background:#0088cc;}
.social.instagram{background:#E4405F;}
.social.facebook{background:#1877f2;}
.social.youtube{background:#ff0000;}

.footer-social .social:hover{
transform:scale(1.1);
opacity:.9;
}

/* ================= GRID ================= */

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
margin-top:40px;
}

/* ================= COLUMNS ================= */

.footer-col h3{
color:#ffffff;
font-size:18px;
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
transition:all .2s ease;
font-size:15px;
}

/* ================= HOVER ================= */

.footer-col ul li a:hover{
color:#38bdf8;
padding-left:5px;
}

/* ================= BOTTOM ================= */

.footer-bottom{
border-top:1px solid #334155;
margin-top:40px;
padding-top:20px;
text-align:center;
}

.footer-links-bottom{
margin-bottom:10px;
}

.footer-links-bottom a{
margin:0 10px;
color:#cbd5e1;
text-decoration:none;
font-size:14px;
}

.footer-links-bottom a:hover{
color:#38bdf8;
}

.footer-copy{
font-size:14px;
color:#94a3b8;
line-height:1.6;
}
.footer-col ul li a{
position:relative;
}

.footer-col ul li a::after{
content:'';
position:absolute;
left:0;
bottom:-2px;
width:0;
height:2px;
background:#38bdf8;
transition:.3s;
}

.footer-col ul li a:hover::after{
width:100%;
}
/* ABOUT SECTION LAYOUT */

.footer-about{
display:flex;
align-items:flex-start;
gap:25px;
max-width:900px;
}

/* LOGO */

.footer-logo-img{
width:90px;
height:auto;
flex-shrink:0;
}

/* TEXT BLOCK */

.footer-about-text{
flex:1;
}

/* TITLE */

.footer-logo{
font-size:28px;
font-weight:700;
color:#ffffff;
margin-bottom:10px;
}

/* DESCRIPTION */

.footer-about-text p{
color:#cbd5e1;
line-height:1.6;
margin-bottom:12px;
}
/* ================= ABOUT SECTION ================= */

.footer-about{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

/* LOGO */

.footer-left{
flex:0 0 auto;
}

.footer-logo-img{
width:85px;
}

/* TEXT */

.footer-center{
flex:1;
max-width:650px;
}

.footer-logo{
font-size:30px;
font-weight:700;
color:#ffffff;
margin-bottom:12px;
}

.footer-center p{
color:#cbd5e1;
line-height:1.7;
margin-bottom:12px;
font-size:16px;
}

/* SOCIAL RIGHT */

.footer-right{
flex:0 0 auto;
display:flex;
align-items:center;
}

.footer-social{
display:flex;
gap:14px;
}

/* ICON STYLE */

.footer-social .social{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:18px;
transition:.3s;
text-decoration:none;
}

.social.whatsapp{background:#25D366;}
.social.telegram{background:#0088cc;}
.social.instagram{background:#E4405F;}
.social.facebook{background:#1877f2;}
.social.youtube{background:#ff0000;}

.footer-social .social:hover{
transform:translateY(-3px);
box-shadow:0 6px 14px rgba(0,0,0,0.3);
}

/* ============================================================
     RESPONSIVE ADJUSTMENTS
============================================================ */

/* Tablet Fix */
@media (max-width: 900px) {
  .menu { display: none; }         /* hide desktop menu */
  .menu-toggle { display: block; } /* show hamburger */

  .category-grid-pro {
    grid-template-columns: repeat(2, 1fr);
  }

  .updates-track { animation-duration: 30s; }
}

/* Phones */
@media (max-width: 600px) {
  .wrap { width: 94%; }
  .category-grid-pro { grid-template-columns: 1fr; }
  .search-section { flex-direction: column; }

  /* Mobile Menu Fixed */
  .mobile-menu {
    top: 56px;
    width: 100%;
  }

  /* Footer Adjust */
  .gf-card {
    padding: 18px;
  }
  .gf-title { font-size: 20px; }
}

/* PX-Perfect Mobile Menu Prevent Scrollbar */
@media (max-width: 760px) {
  body.no-scroll {
    overflow: hidden;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    background: #b30000; /* red */
    z-index: 200;
  }

  .mobile-menu.show-menu {
    display: flex !important;
    animation: slideDown .2s ease-out;
  }
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Remove Horizontal Scroll Forever */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* -------------------------------------------
   SARKARI RESULT STYLE UPDATE BUTTONS
-------------------------------------------- */

.sr-updates-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.sr-updates-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #b30000;
}

.sr-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 12px;
}

.sr-btn {
  display: block;
  background: #f7f7f7;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  transition: 0.25s ease;
}

.sr-btn:hover {
  background: #fff0f0;
  border-color: #b30000;
  color: #b30000;
  transform: translateY(-2px);
}

/* Tags like NEW / HOT */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 6px;
  color: #fff;
}

.tag.new { background: #d50000; }
.tag.hot { background: #ff6f00; }

/* Mobile Optimization */
@media (max-width: 600px) {
  .sr-btn {
    font-size: 14px;
    padding: 12px 14px;
  }
}

ul li {
  padding: 6px 0;
}

ul li a:hover {
  color: var(--primary);
  padding-left: 4px;             /* slight slide-right animation */
  background: rgba(179,0,0,0.06); /* soft red hover */
  border-radius: 4px;
  text-decoration: none;
}


    :root{
      --accent:#b30000;
      --muted:#5b6b7a;
      --bg:#f8fafc;
      --card:#ffffff;
      --glass: rgba(11,27,43,0.04);
      --radius:12px;
      --maxwidth:1150px;
    }

    /* page container */
    .wrap { max-width: var(--maxwidth); margin:20px auto; padding:0 18px; box-sizing:border-box; }

    /* breadcrumb */
    .breadcrumb { font-size:14px; color:var(--muted); margin-bottom:12px; }
    .breadcrumb a { color:var(--muted); text-decoration:none; }
    .breadcrumb a:hover { text-decoration:underline; color:var(--accent); }

    /* hero */
    .post-hero { display:flex; gap:20px; align-items:flex-start; margin-bottom:18px; }
    .hero-left { flex:1; }
    .hero-right { width:320px; flex:0 0 320px; }

    .hero-badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
    .badge { background:var(--accent); color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; font-size:13px; }
    .badge.ghost { background:transparent; color:var(--muted); border:1px solid rgba(0,0,0,0.05); }

    .post-title { font-size:22px; margin:6px 0 8px; color:#071122; line-height:1.18; font-weight:800; }
    .post-sub { color:var(--muted); margin-bottom:8px; font-weight:700; }

    .meta-row { display:flex; gap:12px; flex-wrap:wrap; color:var(--muted); font-weight:700; font-size:14px; margin-bottom:12px; }

    /* share / actions */
    .share-row { display:flex; gap:8px; align-items:center; margin-bottom:16px; flex-wrap:wrap; }
    .share-btn, .print-btn { background:#fff; border:1px solid #e6eef5; padding:8px 10px; border-radius:8px; font-weight:800; color:#0b1b2b; text-decoration:none; cursor:pointer; }
    .share-btn:hover, .print-btn:hover { box-shadow:0 6px 18px rgba(11,27,43,0.06); }

    /* sticky apply box */
    .sticky-apply { position: sticky; top:84px; background:var(--card); border-radius:var(--radius); border:1px solid #eef4fb; padding:14px; box-shadow:0 10px 30px rgba(12,20,30,0.06); }
    .apply-btn { display:block; width:100%; text-align:center; background:var(--accent); color:#fff; padding:12px; border-radius:10px; font-weight:900; text-decoration:none; margin-bottom:10px; }
    .btn-outline { display:block; width:100%; text-align:center; padding:10px; border-radius:10px; border:1px solid #e6eef5; color:#071122; text-decoration:none; margin-bottom:8px; }
    .note { font-size:13px; color:var(--muted); margin-top:8px; }

    /* post boxes */
    .post-box { background:var(--card); border-radius:12px; border:1px solid #eef4fb; padding:18px; margin-bottom:18px; box-shadow:0 6px 20px rgba(12,20,30,0.03); }
    .section-heading { font-size:18px; margin:0 0 12px; color:#071122; font-weight:800; display:inline-block; border-left:6px solid var(--accent); padding-left:10px; }

    /* tables */
    .post-table { width:100%; border-collapse:collapse; margin-top:8px; font-size:15px; }
    .post-table th, .post-table td { padding:12px 14px; border:1px solid #f1f6fb; text-align:left; vertical-align:top; color:#1b2b36; }
    .post-table thead th { background:#fbfdff; font-weight:800; color:#071122; }

    /* vacancy grid */
    .vacancy-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px; margin-top:12px; }
    .vac-box { background:var(--bg); padding:12px; border-radius:10px; border:1px solid #eef6fb; text-align:center; }
    .vac-count { font-size:20px; font-weight:900; color:var(--accent); }
    .vac-label { color:var(--muted); font-weight:700; margin-top:6px; display:block; }

    /* list styles */
    .apply-steps, .doc-list, .tips-list { margin-left:18px; color:#21303a; line-height:1.7; }
    .apply-steps li, .doc-list li, .tips-list li { margin:8px 0; }

    /* FAQ */
    .faq details { background:var(--bg); padding:12px; border-radius:10px; margin-bottom:10px; border:1px solid #eef6fb; }
    .faq summary { font-weight:800; cursor:pointer; font-size:15px; color:#071122; }

    /* related */
    .related { display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }
    .related a { background:#fff; border-radius:10px; padding:10px 12px; border:1px solid #eef4fb; text-decoration:none; color:#071122; font-weight:800; }

    /* small helpers */
    .muted { color:var(--muted); font-weight:700; }
    .two-col { display:grid; grid-template-columns: 1fr 320px; gap:20px; align-items:start; }
    @media (max-width:1100px) { .two-col { grid-template-columns: 1fr 340px; } .hero-right { width:340px; } }
    @media (max-width:900px) {
      .post-hero, .two-col { display:block; }
      .hero-right, .sticky-apply { position:static; width:auto; margin-top:12px; }
      .apply-btn, .btn-outline { width:100%; }
      .post-table th,.post-table td { padding:10px; font-size:14px; }
    }
    @media (max-width:520px) {
      .post-title { font-size:20px; }
      .hero-right { width:100%; }
    }
/* ================================
   USER-FRIENDLY POST CARDS
================================ */

/* Card hover clarity */
.jobs-table tr {
  transition: background 0.25s ease, transform 0.15s ease;
  cursor: pointer;
}

.jobs-table tr:hover {
  background: #fff6f6;          /* soft red highlight */
  transform: translateX(2px);   /* subtle motion */
}

/* -------------------------------
   POST TITLE LINKS (VISIBLE + UX)
-------------------------------- */

/* Normal link */
.jobs-table td a,
.category-card-pro a,
ul li a {
  color: #0b4da2;               /* user-friendly blue */
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

/* Hover state */
.jobs-table td a:hover,
.category-card-pro a:hover,
ul li a:hover {
  color: #b30000;               /* brand red */
  background: rgba(179,0,0,0.08);
  padding-left: 6px;
  border-radius: 4px;
}

/* Visited link (IMPORTANT UX FIX) */
.jobs-table td a:visited,
.category-card-pro a:visited,
ul li a:visited {
  color: #6a1b9a;               /* purple = already seen */
}

/* -------------------------------
   DETAILS BUTTON (CLEAR CTA)
-------------------------------- */

.btn-details {
  background: #ffffff;
  border: 1px solid #cdd6df;
  color: #0b4da2;
  font-weight: 800;
  transition: all 0.25s ease;
}

.btn-details:hover {
  background: #b30000;
  color: #ffffff;
  border-color: #b30000;
}

/* Visited state for Details button */
.btn-details:visited {
  background: #f3e5f5;
  color: #6a1b9a;
  border-color: #ce93d8;
}

/* -------------------------------
   POST TAGS (READABLE)
-------------------------------- */

.job-tag {
  background: rgba(11,77,162,0.12);
  color: #0b4da2;
}

/* -------------------------------
   MOBILE FRIENDLY TOUCH FEEL
-------------------------------- */
@media (max-width: 600px) {
  .jobs-table td a {
    font-size: 15px;
    display: inline-block;
  }

  .btn-details {
    width: 100%;
    text-align: center;
  }
}

/* ------------------------------
   AUTO STATUS HIGHLIGHTS
------------------------------- */

/* NEW auto tag */
.auto-new::before {
  content: "NEW";
  background: #d50000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  margin-right: 8px;
}

/* HOT auto tag */
.auto-hot::before {
  content: "HOT";
  background: #ff6f00;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  margin-right: 8px;
}

/* Expiring Soon */
.expiring {
  border-left: 4px solid #ff9800;
  background: #fff8e1 !important;
}

/* Visited links UX */
.job-link:visited,
.category-card-pro a:visited {
  color: #6a1b9a;
}

/* Posted time text */
.posted-time {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* ================= FULL WIDTH HERO ================= */

/* HERO PREMIUM */

.hero-premium{

background: linear-gradient(135deg,#020617,#0f172a,#1e3a8a);

padding:80px 20px;

color:white;

}

.hero-container{

max-width:1200px;

margin:auto;

display:flex;

gap:50px;

align-items:center;

justify-content:space-between;

flex-wrap:wrap;

}


/* LEFT */

.hero-content{

flex:1;

min-width:300px;

}

.hero-badge{

display:inline-block;

background:rgba(37,99,235,0.15);

border:1px solid rgba(37,99,235,0.3);

padding:6px 12px;

border-radius:20px;

font-size:13px;

margin-bottom:16px;

}

.hero-title{

font-size:40px;

font-weight:800;

line-height:1.3;

margin-bottom:16px;

}

.hero-description{

font-size:17px;

color:#cbd5e1;

margin-bottom:25px;

line-height:1.6;

}


/* BUTTONS */

.hero-actions{

display:flex;

gap:15px;

margin-bottom:25px;

flex-wrap:wrap;

}

.hero-btn{

padding:14px 24px;

border-radius:8px;

text-decoration:none;

font-weight:700;

transition:.25s;

}

.primary-btn{

background:#2563eb;

color:white;

}

.primary-btn:hover{

background:#1d4ed8;

transform:translateY(-2px);

}

.secondary-btn{

border:1px solid #60a5fa;

color:white;

}

.secondary-btn:hover{

background:#2563eb;

}


/* STATS */

.hero-stats{

display:flex;

gap:30px;

flex-wrap:wrap;

}

.stat-box strong{

display:block;

font-size:20px;

}

.stat-box span{

font-size:14px;

color:#94a3b8;

}


/* RIGHT SIDE */

.hero-updates{

flex:1;

min-width:280px;

display:flex;

flex-direction:column;

gap:15px;

}

.update-card{

background:rgba(255,255,255,0.06);

border:1px solid rgba(255,255,255,0.12);

padding:18px;

border-radius:12px;

transition:.25s;

}

.update-card:hover{

background:rgba(255,255,255,0.12);

transform:translateY(-3px);

}

.update-card a{

color:white;

text-decoration:none;

font-weight:600;

display:block;

margin-top:6px;

}


/* LABEL COLORS */

.update-label{

font-size:13px;

font-weight:700;

margin-bottom:5px;

}

.update-label.job{

color:#60a5fa;

}

.update-label.admit{

color:#34d399;

}

.update-label.result{

color:#fbbf24;

}


/* MOBILE */

@media(max-width:768px){

.hero-title{

font-size:28px;

}

.hero-container{

flex-direction:column;

}

.hero-stats{

gap:20px;

}

}

/* -----------------------------
     UNIVERSAL COLORS
------------------------------ */
:root {
  --primary: #0f172a; /* FIXED professional navbar color */
  --dark: #020617;
  --light: #ffffff;
  --accent: #2563eb;
  --bg: #f5f5f7;
  --card: #ffffff;
  --shadow: 0 4px 18px rgba(0,0,0,0.08);

  /* Footer variables */
  --sr-bg: #071a2a;
  --sr-dark: #04121a;
  --sr-accent: #2563eb;
  --sr-card: #071a2a;
  --sr-text: #e8eef6;
  --sr-muted: #b9c6d4;
  --sr-white: #ffffff;
}


/* -----------------------------
GLOBAL RESET (FIX)
------------------------------ */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  font-family: Arial, sans-serif;
}


/* FIX: Main wrapper to prevent overflow */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
  overflow-x: hidden;
}


/* -----------------------------
TOPBAR
------------------------------ */

.topbar-pro {
  background: var(--dark);
  color: var(--light);
  padding: 8px 0;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}


/* -----------------------------
HEADER (FIXED PROFESSIONAL COLOR)
------------------------------ */

.main-header {

  width:100%;
  background: var(--primary);

  color: #fff;

  position: sticky;

  top: 0;

  z-index: 999;

  box-shadow: var(--shadow);

}


/* FIX FULL WIDTH HEADER */

.header-wrap {

  max-width: 1200px;

  margin: auto;

  padding: 12px 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.logo-area {

  font-size: 22px;

  font-weight: 800;

  color: #fff;

  white-space: nowrap;

}


/* -----------------------------
DESKTOP MENU
------------------------------ */

.menu {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  flex-wrap: nowrap;

}


.menu a {

  color: #e2e8f0;

  text-decoration: none;

  padding: 6px 12px;

  font-weight: 600;

  font-size: 15px;

  transition: 0.3s;

}


.menu a:hover {

  color: #fff;

  background: #2563eb;

  border-radius: 6px;

}


/* -----------------------------
MOBILE MENU BUTTON
------------------------------ */

.menu-toggle {

  font-size: 28px;

  background: transparent;

  border: none;

  display: none;

  cursor: pointer;

  color: #fff;

}


/* -----------------------------
MOBILE MENU
------------------------------ */

.mobile-menu {

  display: none;

  flex-direction: column;

  background: var(--primary);

  border-top: 1px solid rgba(255,255,255,0.15);

  position: fixed;

  top: 56px;

  left: 0;

  right: 0;

  z-index: 300;

}


.mobile-menu a {

  padding: 14px 18px;

  text-decoration: none;

  color: #fff;

  border-bottom: 1px solid rgba(255,255,255,0.12);

  font-size: 16px;

  font-weight: 600;

}


.mobile-menu a:hover {

  background: rgba(255,255,255,0.12);

}


.show-menu {

  display: flex !important;

}


body.no-scroll {

  height: 100vh;

  overflow-y: hidden;

}


/* ================= FULL WIDTH HERO FINAL FIX ================= */

.hero-full {

  width: 100vw;

  margin-left: calc(-50vw + 50%);

  background: linear-gradient(135deg,#020617,#1e3a8a);

  padding: 80px 60px;

  color: white;

  box-sizing: border-box;

}


/* INNER HERO */

.hero-inner {

  max-width: 1200px;

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  flex-wrap: wrap;

}


/* HERO LEFT */

.hero-left {

  flex: 1;

}


.hero-left h1 {

  font-size: 40px;

  margin-bottom: 15px;

}


.hero-subtext {

  font-size: 18px;

  color: #cbd5e1;

  margin-bottom: 25px;

}


/* SEARCH */

.hero-search {

  display: flex;

  gap: 10px;

  margin-bottom: 20px;

}


.hero-search input {

  padding: 15px;

  width: 350px;

  border-radius: 6px;

  border: none;

}


.hero-search button {

  padding: 15px 25px;

  background: #2563eb;

  color: white;

  border: none;

  border-radius: 6px;

  cursor: pointer;

}


/* BUTTONS */

.btn-primary {

  background: #2563eb;

  color: white;

  padding: 12px 20px;

  border-radius: 6px;

  text-decoration: none;

  margin-right: 10px;

}


.btn-secondary {

  border: 1px solid #60a5fa;

  color: white;

  padding: 12px 20px;

  border-radius: 6px;

  text-decoration: none;

}


/* HERO RIGHT */

.hero-right {

  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 15px;

}


.hero-card {

  background: white;

  color: #111;

  padding: 18px;

  border-radius: 8px;

}


.hero-card span {

  font-size: 13px;

  color: #2563eb;

  font-weight: 600;

}


.hero-card a {

  display: block;

  font-weight: 600;

  text-decoration: none;

  color: #111;

  margin-top: 5px;

}


/* ================= RESPONSIVE HERO ================= */

@media(max-width:900px){

.hero-inner{

flex-direction:column;

}

.hero-search input{

width:100%;

}

.hero-left h1{

font-size:26px;

}

}


/* ================= KEEP YOUR REST CSS EXACT ================= */

/* KEEP ALL YOUR REMAINING CSS SAME — NOTHING REMOVED */


/* FINAL FIX: NEVER ALLOW SIDE SCROLL */

html, body {

  max-width: 100%;

  overflow-x: hidden;

}
/* =========================
   REMOVE SIDE SPACE FIX
========================= */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #f1f5f9;
}

/* =========================
   FULL WIDTH HEADER FIX
========================= */
.main-header {
  width: 100%;
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
/* ================= FULL WIDTH HERO BACKGROUND ================= */

.hero-full {
    width: 100vw;                 /* FULL screen width */
    margin-left: calc(-50vw + 50%);  /* BREAK out of container */
    background: linear-gradient(135deg, #0f2027, #2c5364);
    padding: 80px 0;
}

/* ================= INNER CONTENT CONTAINER ================= */

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;   /* LEFT RIGHT SPACE FIX */
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* ================= LEFT CONTENT ================= */

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
}

.hero-subtext {
    font-size: 17px;
    color: #d6e3ea;
    margin-bottom: 25px;
}

/* ================= SEARCH ================= */

.hero-search {
    display: flex;
    margin-bottom: 20px;
}

.hero-search input {
    padding: 14px;
    width: 320px;
    border-radius: 6px 0 0 6px;
    border: none;
}

.hero-search button {
    padding: 14px 24px;
    border: none;
    background: #ff9800;
    color: white;
    border-radius: 0 6px 6px 0;
}

/* ================= BUTTONS ================= */

.hero-buttons a {
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-primary {
    background: #ff9800;
    color: white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

/* ================= RIGHT CARDS ================= */

.hero-right {
    flex: 1;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.hero-card span {
    color: #ffcc80;
}

.hero-card a {
    color: white;
    text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

.hero-full {
    margin-left: 0;
    width: 100%;
}

.hero-inner {
    flex-direction: column;
    padding: 0 20px;
}

.hero-left h1 {
    font-size: 28px;
}

.hero-search {
    flex-direction: column;
}

.hero-search input {
    width: 100%;
    border-radius: 6px;
}

.hero-search button {
    margin-top: 10px;
    border-radius: 6px;
}

}
/* =========================
MODERN GOV CATEGORY SECTION
========================= */

.gov-categories-modern{
padding:70px 20px;
background:#f8fafc;
}

.gov-container{
max-width:1200px;
margin:auto;
}

.gov-heading{
font-size:34px;
font-weight:800;
color:#0f172a;
margin-bottom:10px;
}

.gov-subheading{
color:#64748b;
margin-bottom:35px;
font-size:16px;
}

.gov-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

/* CARD */

.gov-card{
display:flex;
align-items:center;
gap:18px;
padding:22px;
background:white;
border-radius:14px;
text-decoration:none;
border:1px solid #e2e8f0;
transition:all .25s ease;
position:relative;
}

/* Hover */

.gov-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
border-color:#2563eb;
}

/* Icon */

.gov-icon{
width:52px;
height:52px;
border-radius:12px;
background:linear-gradient(135deg,#2563eb,#1d4ed8);
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
flex-shrink:0;
}

/* Content */

.gov-content h3{
margin:0;
font-size:18px;
color:#0f172a;
font-weight:700;
}

.gov-content p{
margin:4px 0 0;
font-size:14px;
color:#64748b;
}

/* Arrow */

.gov-arrow{
margin-left:auto;
font-size:20px;
color:#2563eb;
opacity:.6;
}

.gov-card:hover .gov-arrow{
opacity:1;
transform:translateX(4px);
}

/* Mobile */

@media(max-width:768px){

.gov-heading{
font-size:26px;
}

.gov-card{
padding:18px;
}

}
.post-title{
font-size:32px;
font-weight:800;
line-height:1.35;
margin-bottom:12px;
background:linear-gradient(90deg,#1e3a8a,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* ===== MOBILE MENU FIX ===== */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* hide mobile menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1e3a8a;
  width: 100%;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

/* show toggle and hide desktop menu on mobile */
@media (max-width: 768px) {

  .menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.show {
    display: flex;
  }

}

/* ================================
   REMOVE TOPBAR COMPLETELY
================================ */

.topbar-pro {
  display: none;
}


/* ================================
   STICKY NAVBAR (NO TOPBAR OFFSET)
================================ */

.main-header {

  position: fixed;

  top: 0;   /* moved to top since no topbar */

  left: 0;
  width: 100%;

  height: 64px;

  background: #020617;

  z-index: 10000;

  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}


/* ================================
   HEADER INNER ALIGNMENT
================================ */

.header-wrap {

  height: 64px;

  max-width: 1200px;
  margin: auto;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ================================
   PREVENT CONTENT OVERLAP
================================ */

body {

  padding-top: 64px; /* only navbar height now */

}

/* ================= BREADCRUMB ================= */

.breadcrumb-modern {
  max-width: 1100px;
  margin: 20px auto 10px;
  padding: 0 20px;
  font-size: 14px;
  color: #6b7280;
}

.breadcrumb-modern a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-modern a:hover {
  text-decoration: underline;
}

.breadcrumb-modern .separator {
  margin: 0 6px;
  color: #9ca3af;
}

.breadcrumb-modern .current {
  color: #111827;
  font-weight: 600;
}


/* ================= HERO SECTION ================= */

.post-hero-modern {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-bottom: 1px solid #e5e7eb;
}

.hero-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px 35px;
}

.hero-content {
  max-width: 800px;
}


/* ================= BADGES ================= */

.hero-badges-modern {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.badge.primary {
  background: #2563eb;
  color: #fff;
}

.badge.outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.badge.soft {
  background: #eff6ff;
  color: #1d4ed8;
}


/* ================= TITLE ================= */

.post-title-modern {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 16px;
}

.post-title-modern .highlight {
  display: block;
  color: #2563eb;
  font-size: 24px;
  font-weight: 600;
}


/* ================= META ================= */

.meta-modern {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #6b7280;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  font-size: 15px;
}

.meta-divider {
  width: 1px;
  height: 16px;
  background: #d1d5db;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .post-title-modern {
    font-size: 24px;
  }

  .post-title-modern .highlight {
    font-size: 18px;
  }

  .meta-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .meta-divider {
    display: none;
  }

}

/* CARD STYLE */
.modern-card{
background:#ffffff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
}

/* HEADER */
.section-header{
margin-bottom:15px;
}

.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

/* TEXT */
.overview-text p{
margin-bottom:12px;
line-height:1.7;
color:#333;
}

/* ALERT BOX */
.info-alert{
background:#f0f7ff;
border-left:4px solid #0073e6;
padding:12px;
border-radius:6px;
font-weight:500;
margin-top:10px;
}

/* TABLE */
.modern-table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.modern-table th{
background:#f8fafc;
text-align:left;
padding:12px;
width:35%;
font-weight:600;
}

.modern-table td{
padding:12px;
}

.modern-table tr{
border-bottom:1px solid #eee;
}

/* BADGES */
.badge-count{
background:#e8f5e9;
color:#2e7d32;
padding:4px 10px;
border-radius:6px;
font-weight:600;
}

.badge-online{
background:#e3f2fd;
color:#1565c0;
padding:4px 10px;
border-radius:6px;
font-weight:600;
}

/* LINK */
.official-link{
color:#0073e6;
font-weight:600;
text-decoration:none;
}

.official-link:hover{
text-decoration:underline;
}

/* HIGHLIGHTS */
.highlight-primary{
color:#0073e6;
}

.highlight-number{
color:#2e7d32;
font-weight:700;
}

/* CARD */
.modern-card{
background:#fff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:16px;
color:#666;
font-weight:500;
}

/* TIMELINE */
.timeline{
margin-top:20px;
display:flex;
flex-direction:column;
gap:16px;
}

.timeline-item{
display:flex;
align-items:center;
gap:15px;
padding:14px;
border-radius:8px;
background:#f9fafb;
transition:0.2s;
}

.timeline-item:hover{
background:#f1f5f9;
}

/* ICON */
.timeline-icon{
font-size:20px;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#fff;
border-radius:50%;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

/* TEXT */
.timeline-label{
font-weight:600;
color:#333;
}

.timeline-date{
font-size:15px;
color:#555;
margin-top:3px;
}

/* HIGHLIGHTS */
.highlight-green{
color:#2e7d32;
font-weight:700;
}

.highlight-red{
color:#d32f2f;
font-weight:700;
}

/* BADGE */
.badge-pending{
background:#fff3cd;
color:#856404;
padding:3px 8px;
border-radius:6px;
font-weight:600;
}

/* MOBILE */
@media(max-width:600px){

.timeline-item{
padding:12px;
}

.timeline-icon{
width:32px;
height:32px;
font-size:16px;
}

}

/* CARD */
.modern-card{
background:#fff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
font-weight:500;
}

/* DESCRIPTION */
.section-description{
margin-top:10px;
margin-bottom:18px;
color:#444;
line-height:1.6;
}

/* TABLE */
.modern-table{
width:100%;
border-collapse:collapse;
}

.modern-table th{
background:#f8fafc;
padding:12px;
text-align:left;
font-weight:600;
}

.modern-table td{
padding:12px;
border-bottom:1px solid #eee;
}

/* FEE BADGE */
.fee-badge{
background:#e8f5e9;
color:#2e7d32;
padding:5px 12px;
border-radius:6px;
font-weight:700;
}

/* PAYMENT BOX */
.payment-box{
margin-top:20px;
padding:15px;
background:#f8fafc;
border-radius:8px;
}

.payment-title{
font-weight:600;
margin-bottom:10px;
}

/* PAYMENT BADGES */
.payment-badge{
display:inline-block;
background:#e3f2fd;
color:#1565c0;
padding:5px 10px;
border-radius:6px;
margin:4px;
font-size:14px;
font-weight:600;
}

/* NOTE */
.important-note{
margin-top:15px;
padding:12px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
font-size:14px;
}

/* MOBILE */
@media(max-width:600px){

.modern-card{
padding:18px;
}

}
/* CARD */
.modern-card{
background:#ffffff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
font-weight:500;
}

/* DESCRIPTION */
.section-description{
margin-top:12px;
margin-bottom:18px;
color:#444;
line-height:1.7;
}

/* TABLE */
.modern-table{
width:100%;
border-collapse:collapse;
}

.modern-table th{
background:#f8fafc;
padding:12px;
text-align:left;
width:35%;
font-weight:600;
}

.modern-table td{
padding:12px;
border-bottom:1px solid #eee;
}

/* NOTE */
.important-note{
margin-top:18px;
padding:14px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
font-size:14px;
}

/* HIGHLIGHT BOX */
.highlight-box{
margin-top:18px;
padding:15px;
background:#f0f7ff;
border-left:4px solid #0073e6;
border-radius:6px;
line-height:1.7;
}

/* MOBILE */
@media(max-width:600px){

.modern-card{
padding:18px;
}

.modern-table th,
.modern-table td{
padding:10px;
}

}
/* CARD */
.modern-card{
background:#ffffff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
font-weight:500;
}

/* DESCRIPTION */
.section-description{
margin-top:12px;
margin-bottom:18px;
line-height:1.7;
color:#444;
}

/* TABLE */
.modern-table{
width:100%;
border-collapse:collapse;
}

.modern-table th{
background:#f8fafc;
padding:12px;
text-align:left;
font-weight:600;
}

.modern-table td{
padding:12px;
border-bottom:1px solid #eee;
}

/* AGE BADGES */
.age-badge{
padding:5px 12px;
border-radius:6px;
font-weight:700;
}

.min-age{
background:#e8f5e9;
color:#2e7d32;
}

.max-age{
background:#ffebee;
color:#c62828;
}

/* RELAXATION BOX */
.relaxation-box{
margin-top:18px;
padding:15px;
background:#f0f7ff;
border-left:4px solid #0073e6;
border-radius:6px;
}

/* SUMMARY BOX */
.highlight-summary{
margin-top:18px;
background:#f8fafc;
padding:15px;
border-radius:8px;
}

.summary-item{
margin:6px 0;
}

/* NOTE */
.important-note{
margin-top:18px;
padding:14px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
font-size:14px;
}

/* MOBILE */
@media(max-width:600px){

.modern-card{
padding:18px;
}

.modern-table th,
.modern-table td{
padding:10px;
}

}

/* CARD */
.modern-card{
background:#fff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
font-weight:500;
}

/* DESCRIPTION */
.section-description{
margin-top:12px;
margin-bottom:18px;
line-height:1.7;
color:#444;
}

/* TABLE */
.modern-table{
width:100%;
border-collapse:collapse;
}

.modern-table th{
background:#f8fafc;
padding:12px;
text-align:left;
font-weight:600;
}

.modern-table td{
padding:12px;
border-bottom:1px solid #eee;
}

/* CATEGORY BADGES */
.category{
padding:4px 10px;
border-radius:6px;
font-weight:600;
}

.general{background:#e3f2fd;color:#1565c0;}
.ews{background:#fff3cd;color:#856404;}
.ebc{background:#ede7f6;color:#5e35b1;}
.obc{background:#e0f2f1;color:#00695c;}
.sc{background:#ffebee;color:#c62828;}
.st{background:#f1f8e9;color:#558b2f;}

/* POST BADGE */
.post-badge{
background:#e8f5e9;
color:#2e7d32;
padding:5px 12px;
border-radius:6px;
font-weight:700;
}

/* TOTAL */
.total-row{
background:#f1f8ff;
}

.total-badge{
background:#0073e6;
color:#fff;
padding:6px 12px;
border-radius:6px;
}

/* SUMMARY */
.highlight-summary{
margin-top:18px;
padding:15px;
background:#f8fafc;
border-radius:8px;
}

.summary-title{
font-weight:700;
margin-bottom:8px;
}

.summary-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:8px;
}

/* NOTE */
.important-note{
margin-top:18px;
padding:14px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
}

/* MOBILE */
@media(max-width:600px){
.modern-card{
padding:18px;
}
}

/* CARD */
.modern-card{
background:#ffffff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
}

/* DESCRIPTION */
.section-description{
margin-top:12px;
margin-bottom:20px;
line-height:1.7;
color:#444;
}

/* STEPS */
.selection-steps{
display:flex;
flex-direction:column;
gap:15px;
}

.step-card{
display:flex;
gap:15px;
padding:15px;
border-radius:10px;
background:#f8fafc;
border:1px solid #eee;
}

.step-number{
min-width:80px;
font-weight:700;
color:#0073e6;
}

.step-title{
font-weight:700;
margin-bottom:5px;
}

.step-description{
color:#555;
line-height:1.6;
}

/* SUMMARY */
.highlight-summary{
margin-top:18px;
padding:15px;
background:#f1f8ff;
border-radius:8px;
}

.summary-title{
font-weight:700;
margin-bottom:8px;
}

.summary-item{
margin:5px 0;
}

/* NOTE */
.important-note{
margin-top:18px;
padding:14px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
}

/* MOBILE */
@media(max-width:600px){

.modern-card{
padding:18px;
}

.step-card{
flex-direction:column;
}

}

/* CARD */
.modern-card{
background:#fff;
padding:28px;
border-radius:12px;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
border:1px solid #eee;
margin-top:25px;
}

/* HEADER */
.section-heading{
font-size:22px;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.heading-accent{
width:5px;
height:22px;
background:#0073e6;
border-radius:3px;
}

.heading-sub{
font-size:15px;
color:#666;
}

/* DESCRIPTION */
.section-description{
margin-top:12px;
margin-bottom:20px;
color:#444;
line-height:1.7;
}

/* GRID */
.links-grid{
display:grid;
gap:15px;
}

/* LINK CARD */
.link-card{
display:flex;
align-items:center;
gap:15px;
padding:18px;
border-radius:10px;
border:1px solid #eee;
background:#f8fafc;
transition:0.2s;
}

.link-card:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* ICON */
.link-icon{
font-size:24px;
}

/* CONTENT */
.link-content{
flex:1;
}

.link-title{
font-weight:700;
margin-bottom:4px;
}

.link-desc{
font-size:14px;
color:#666;
}

/* BUTTON */
.link-button{
padding:8px 14px;
border-radius:6px;
font-weight:600;
text-decoration:none;
}

/* BUTTON COLORS */
.apply{
background:#0073e6;
color:#fff;
}

.download{
background:#2e7d32;
color:#fff;
}

.visit{
background:#6a1b9a;
color:#fff;
}

.link-button:hover{
opacity:0.9;
}

/* NOTE */
.important-note{
margin-top:18px;
padding:14px;
background:#fff3cd;
border-left:4px solid #ffc107;
border-radius:6px;
}

/* MOBILE */
@media(max-width:600px){

.link-card{
flex-direction:column;
align-items:flex-start;
}

.link-button{
margin-top:8px;
}

}

/* SIDEBAR WIDTH */
.hero-right{
width:320px;
}

/* CARD */
.quick-info-card{
position:sticky;
top:20px;
background:#ffffff;
border-radius:12px;
box-shadow:0 6px 24px rgba(0,0,0,0.08);
border:1px solid #eee;
overflow:hidden;
}

/* HEADER */
.quick-info-header{
background:linear-gradient(135deg,#0073e6,#0052cc);
color:#fff;
padding:18px;
}

.quick-info-title{
font-size:18px;
font-weight:700;
}

.quick-info-sub{
font-size:13px;
opacity:0.9;
margin-top:4px;
}

/* BODY */
.quick-info-body{
padding:15px;
}

.info-row{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
border-bottom:1px solid #f0f0f0;
}

.info-row:last-child{
border-bottom:none;
}

.info-label{
font-size:14px;
color:#555;
}

.info-value{
font-weight:600;
color:#222;
}

/* HIGHLIGHTS */
.highlight{
color:#2e7d32;
}

.highlight-red{
color:#d32f2f;
}

.badge-online{
background:#e3f2fd;
color:#1565c0;
padding:3px 8px;
border-radius:6px;
font-size:13px;
}

/* FOOTER */
.quick-info-footer{
padding:15px;
border-top:1px solid #eee;
}

/* APPLY BUTTON */
.apply-now-btn{
display:block;
background:linear-gradient(135deg,#0073e6,#0052cc);
color:#fff;
text-align:center;
padding:12px;
border-radius:8px;
font-weight:700;
text-decoration:none;
margin-bottom:10px;
transition:0.2s;
}

.apply-now-btn:hover{
transform:translateY(-2px);
box-shadow:0 6px 18px rgba(0,115,230,0.3);
}

/* NOTIFICATION BUTTON */
.notification-btn{
display:block;
text-align:center;
padding:10px;
border-radius:8px;
border:1px solid #0073e6;
color:#0073e6;
font-weight:600;
text-decoration:none;
}

.notification-btn:hover{
background:#0073e6;
color:#fff;
}

/* MOBILE */
@media(max-width:900px){

.hero-right{
width:100%;
}

.quick-info-card{
position:relative;
}

}

/* ================= FAQ SECTION ================= */

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 15px;
}


/* FAQ Item */
.faq-item {
  border: 1px solid #e6e8eb;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.25s ease;
}


/* Hover effect */
.faq-item:hover {
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


/* Question */
.faq-question {
  font-weight: 600;
  font-size: 16px;
  padding: 16px 18px;
  cursor: pointer;
  position: relative;
  color: #0f172a;
  background: #f8fafc;
}


/* Plus icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 20px;
  font-weight: bold;
  color: #0d6efd;
  transition: transform 0.3s ease;
}


/* Answer */
.faq-answer {
  display: none;
  padding: 16px 18px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  border-top: 1px solid #eef1f4;
  background: #ffffff;
}


/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .faq-question {
    font-size: 15px;
    padding: 14px 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 14px 16px;
  }

}

.admit-card-hero .hero-description {
  font-size: 16px;
  color: #475569;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 700px;
}

.hero-highlights {
  display: flex;
  gap: 30px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.highlight-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 8px;
}

.highlight-label {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.highlight-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.status-live {
  color: #16a34a;
}

/* ============================= */
/* STATE GRID CONTAINER */
/* ============================= */

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}


/* ============================= */
/* STATE CARD */
/* ============================= */

.state-card {
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #e6eaf0;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}


/* Hover effect */
.state-card:hover {
  transform: translateY(-5px);
  border-color: #0b5cff;
  box-shadow: 0 8px 24px rgba(11, 92, 255, 0.15);
}


/* ============================= */
/* CARD HEADER */
/* ============================= */

.state-card-header {
  margin-bottom: 10px;
}


/* STATE NAME */

.state-name {
  font-size: 18px;
  font-weight: 600;
  color: #0b1b3f;
  margin-bottom: 5px;
}


/* BADGE */

.state-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #0b5cff;
  background: rgba(11, 92, 255, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}


/* ============================= */
/* DESCRIPTION */
/* ============================= */

.state-desc {
  font-size: 14px;
  color: #5b6b8a;
  line-height: 1.5;
  margin-top: 10px;
}


/* ============================= */
/* LINK */
/* ============================= */

.state-link {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0b5cff;
  transition: all 0.2s ease;
}


/* Arrow animation */

.state-card:hover .state-link {
  transform: translateX(5px);
}


/* ============================= */
/* MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

  .state-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .state-card {
    padding: 18px;
  }

  .state-name {
    font-size: 17px;
  }

}


/* ============================= */
/* DARK MODE SUPPORT (optional) */
/* ============================= */

@media (prefers-color-scheme: dark) {

  .state-card {
    background: #0f172a;
    border-color: #1e293b;
  }

  .state-name {
    color: #f1f5f9;
  }

  .state-desc {
    color: #94a3b8;
  }

}

/* ================= TELEGRAM LINK CARD ================= */

.link-card.telegram {
  background: linear-gradient(135deg, #0088cc, #00aced);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.link-card.telegram::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.link-card.telegram:hover::before {
  transform: scale(1.3);
}

.link-card.telegram:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,136,204,0.35);
}


/* ================= TELEGRAM ICON ================= */

.link-card.telegram .link-icon {
  font-size: 32px;
  background: rgba(255,255,255,0.15);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}


/* ================= TELEGRAM BUTTON ================= */

.link-button.telegram-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #e6f7ff);
  color: #0088cc;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.link-button.telegram-btn:hover {
  background: linear-gradient(135deg, #00aced, #0088cc);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,136,204,0.4);
}


/* ================= TELEGRAM TEXT ================= */

.link-card.telegram .link-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.link-card.telegram .link-desc {
  font-size: 14px;
  opacity: 0.95;
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

  .link-card.telegram {
    padding: 18px;
  }

  .link-card.telegram .link-title {
    font-size: 16px;
  }

  .link-button.telegram-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

}

/* ================= FLOATING TELEGRAM BUTTON ================= */

.telegram-float-btn {

  position: fixed;

  bottom: 20px;

  right: 20px;

  display: flex;

  align-items: center;

  gap: 10px;

  background: linear-gradient(135deg, #0088cc, #00aced);

  color: #fff;

  padding: 14px 20px;

  border-radius: 50px;

  font-weight: 600;

  text-decoration: none;

  font-size: 15px;

  box-shadow: 0 8px 25px rgba(0,136,204,0.4);

  z-index: 9999;

  transition: all 0.3s ease;

  animation: telegramPulse 2s infinite;

}


/* ICON */

.telegram-icon {

  font-size: 20px;

}


/* HOVER EFFECT */

.telegram-float-btn:hover {

  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 12px 35px rgba(0,136,204,0.6);

  background: linear-gradient(135deg, #00aced, #0088cc);

}


/* PULSE ANIMATION */

@keyframes telegramPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(0,136,204,0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0,136,204,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0,136,204,0);
  }

}


/* MOBILE VERSION */

@media (max-width: 768px) {

  .telegram-float-btn {

    bottom: 15px;

    right: 15px;

    padding: 12px 16px;

    font-size: 14px;

  }

  .telegram-text {

    display: none;

  }

  .telegram-icon {

    font-size: 22px;

  }

}

.latest-marquee {
display: flex;
align-items: center;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.06);
overflow: hidden;
margin-bottom: 20px;
border: 1px solid #eee;
}

.marquee-label {
background: linear-gradient(135deg,#ff3b3b,#ff0000);
color: #fff;
padding: 12px 18px;
font-weight: 600;
white-space: nowrap;
}

.marquee-wrapper {
overflow: hidden;
flex: 1;
}

.marquee-content {
display: inline-block;
white-space: nowrap;
padding-left: 100%;
animation: marquee-scroll 25s linear infinite;
}

.marquee-content a {
color: #111;
text-decoration: none;
font-weight: 500;
margin: 0 15px;
}

.marquee-content a:hover {
color: #0066ff;
text-decoration: underline;
}

.separator {
color: #999;
}

@keyframes marquee-scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}

/* pause on hover */
.latest-marquee:hover .marquee-content {
animation-play-state: paused;
}

/* mobile */
@media(max-width:768px){
.marquee-label{
padding:10px 12px;
font-size:14px;
}
.marquee-content a{
font-size:14px;
}
}

/* =========================================
   HERO FULL SCREEN FIX (NO SCROLL)
   ADD THIS AT END OF YOUR CSS
========================================= */

/* define heights */
:root{
  --header-height: 64px;
  --marquee-height: 48px;
}


/* fix marquee height */
.latest-marquee{
  height: var(--marquee-height);
  margin-bottom: 0;
}


/* make hero fit remaining screen */
.hero-premium{

  min-height: calc(100vh - var(--header-height) - var(--marquee-height));

  display: flex;
  align-items: center;

  padding-top: 10px;
  padding-bottom: 10px;

}


/* container full height */
.hero-container{

  height: 100%;
  align-items: center;

}


/* reduce spacing for perfect fit */
.hero-title{

  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 12px;

}


.hero-description{

  margin-bottom: 16px;

}


.hero-actions{

  margin-bottom: 16px;

}


.update-card{

  padding: 14px;
  margin-bottom: 10px;

}


/* fix mobile */
@media(max-height:800px){

.hero-title{
  font-size: 32px;
}

.update-card{
  padding: 12px;
}

}


/* mobile layout */
@media(max-width:768px){

.hero-premium{

  min-height: auto;
  padding: 20px;

}

}

.hero-stats{

display:flex;

gap:40px;

}

.stat-box strong{

font-size:26px;

color:white;

}

.stat-box span{

font-size:14px;

color:#94a3b8;

}

.hero-trust{

font-size:16px;

color:#e2e8f0;

margin-bottom:20px;

}

.badge{
font-size:11px;
font-weight:700;
padding:3px 8px;
margin-right:6px;
border-radius:4px;
color:#fff;
display:inline-block;
}

/* NEW */
.badge-new{
background:#e60023;
animation:blink 1s infinite;
}

/* RESULT */
.badge-result{
background:#1e7e34;
animation:blink 1.2s infinite;
}

/* LIVE */
.badge-live{
background:#ff0000;
box-shadow:0 0 6px red;
animation:livePulse 1.5s infinite;
}

/* UPDATED */
.badge-updated{
background:#ff9800;
}

@keyframes blink{
0%{opacity:1}
50%{opacity:.3}
100%{opacity:1}
}

@keyframes livePulse{
0%{box-shadow:0 0 4px red}
50%{box-shadow:0 0 12px red}
100%{box-shadow:0 0 4px red}
}
.hero-container{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.hero-social{
display:flex;
flex-direction:row;   /* horizontal icons */
gap:12px;
align-items:center;
}

.hero-social .social{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:18px;
text-decoration:none;
transition:all .3s ease;
}

.social.telegram{background:#0088cc;}
.social.whatsapp{background:#25D366;}
.social.facebook{background:#1877f2;}
.social.twitter{background:#000;}
.social.linkedin{background:#0a66c2;}

.hero-social .social:hover{
transform:scale(1.15);
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:700;
color:#ffffff;
}

/* LOGO */

.site-logo{
width:38px;
height:38px;
object-fit:contain;
}

/* TITLE */

.site-title{
letter-spacing:.5px;
}


/* ================= TOC PREMIUM DESIGN ================= */

.toc-premium {
  position: relative;
}

/* GRID STYLE */
.premium-toc {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

/* CARD STYLE */
.premium-toc li {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef2f7;
  transition: all 0.25s ease;
  overflow: hidden;
}

/* LINK FULL CARD */
.premium-toc li a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #071122;
  height: 100%;
}

/* TITLE */
.toc-title {
  display: block;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
  color: #0b1b2b;
}

/* DESCRIPTION */
.toc-desc {
  display: block;
  font-size: 13px;
  color: #5b6b7a;
  line-height: 1.4;
}

/* HOVER EFFECT */
.premium-toc li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
  border-color: #b30000;
}

/* LEFT ACCENT LINE */
.premium-toc li a {
  border-left: 4px solid transparent;
}

.premium-toc li:hover a {
  border-left: 4px solid #b30000;
}

/* ACTIVE (ON CLICK) */
.premium-toc li a:active {
  transform: scale(0.98);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .premium-toc {
    grid-template-columns: 1fr;
  }

  .premium-toc li a {
    padding: 12px;
  }

  .toc-title {
    font-size: 14px;
  }

  .toc-desc {
    font-size: 12px;
  }
}

/* ================= DARK MODE SUPPORT (OPTIONAL) ================= */

@media (prefers-color-scheme: dark) {
  .premium-toc li {
    background: #0f172a;
    border-color: #1e293b;
  }

  .toc-title {
    color: #e2e8f0;
  }

  .toc-desc {
    color: #94a3b8;
  }
}

/* ================= SMOOTH SCROLL ================= */

html {
  scroll-behavior: smooth;
}
/* ================= IMAGE BLOCK ================= */
.post-image {
  margin: 20px 0;
  text-align: center;
}

/* ================= IMAGE ================= */
.post-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 14px;
  border: 1px solid #e8eef5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* ================= HOVER EFFECT ================= */
.post-image img:hover {
  transform: scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ================= CAPTION ================= */
.img-caption {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #5b6b7a;
  font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .post-image img {
    border-radius: 10px;
  }

  .img-caption {
    font-size: 12px;
  }
}
/* PRO TIP BOX */

.pro-tip-box {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border-left: 6px solid #0d6efd;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 18px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  line-height: 1.7;
  color: #1b2b36;
}

.pro-tip-header {
  font-weight: 800;
  font-size: 16px;
  color: #0d6efd;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pro-tip-box strong {
  color: #071122;
}

.pro-tip-box p {
  margin: 8px 0;
}
/* HERO GRID */
.hero-grid {
padding: 20px;
background: #f5f5f5;
}

.hero-grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
max-width: 1200px;
margin: auto;
}

/* BOX */
.hero-box {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 18px;
font-weight: 600;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: 0.3s;
font-size: 16px;
}

.hero-box:hover {
transform: scale(1.03);
opacity: 0.95;
}

/* COLORS */
.green { background: #1b8f2f; }
.blue { background: #0d4a8b; }
.pink { background: #e6005c; }
.purple { background: linear-gradient(90deg,#7a00ff,#d400ff); }
.darkblue { background: #1f5f8b; }
.red { background: #c4001d; }
.violet { background: #5a5af5; }
.olive { background: #5c7f4f; }

/* NEW FEATURES COLORS */
.orange { background: #ff6a00; }
.teal { background: #00897b; }
.black { background: #222; }

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
.hero-grid-container {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 500px) {
.hero-grid-container {
grid-template-columns: 1fr;
}
.hero-box {
font-size: 14px;
padding: 14px;
}
}
/* TOOLS SECTION */
.tools-section {
background: #fff;
padding: 40px 20px;
text-align: center;
}

.tools-container {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}

.tool-item {
display: flex;
align-items: center;
gap: 15px;
background: #f8f9fa;
padding: 20px;
border-radius: 12px;
text-decoration: none;
color: #333;
width: 300px;
transition: 0.3s;
border: 1px solid #eee;
}

.tool-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tool-icon {
font-size: 28px;
background: #b41515;
color: #fff;
padding: 12px;
border-radius: 10px;
}

.tool-item h3 {
margin: 0;
font-size: 16px;
color: #b41515;
}

.tool-item p {
margin: 2px 0 0;
font-size: 13px;
color: #666;
}

/* MOBILE */
@media (max-width: 600px) {
.tool-item {
width: 100%;
}
}
/* TAG */
.hero-tag {
position: absolute;
top: 8px;
left: 8px;
background: rgba(0,0,0,0.3);
color: #fff;
font-size: 10px;
padding: 3px 6px;
border-radius: 4px;
}

/* BOX FIX */
.hero-box {
position: relative;
font-weight: 600;
line-height: 1.4;
}

/* HOVER PREMIUM */
.hero-box:hover {
transform: translateY(-4px) scale(1.02);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* SECTION */
.prep-hub {
padding: 50px 20px;
background: linear-gradient(180deg,#f9f9f9,#ffffff);
text-align: center;
}

.prep-header h2 {
font-size: 26px;
}

.prep-header p {
color: #666;
margin-top: 5px;
}

/* GRID */
.prep-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
gap: 20px;
margin-top: 30px;
}

/* CARD */
.prep-card {
background: #fff;
border-radius: 14px;
padding: 20px;
text-align: left;
text-decoration: none;
color: #333;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: 0.3s;
position: relative;
overflow: hidden;
}

.prep-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.prep-icon {
font-size: 22px;
background: #b41515;
color: #fff;
padding: 10px;
border-radius: 10px;
display: inline-block;
}

.prep-icon.blue { background: #007bff; }
.prep-icon.dark { background: #333; }

/* CONTENT */
.prep-content h3 {
margin: 10px 0 5px;
color: #b41515;
}

.prep-content p {
font-size: 13px;
color: #666;
}

/* META */
.prep-meta {
margin-top: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}

.badge {
font-size: 11px;
padding: 3px 6px;
border-radius: 4px;
}

.badge.green { background:#e6f4ea; color:#1e7e34; }
.badge.blue { background:#e7f1ff; color:#0d6efd; }
.badge.gray { background:#eee; color:#333; }

/* PROGRESS BAR (UNIQUE FEATURE) */
.progress-bar {
height: 5px;
background: #eee;
border-radius: 5px;
margin-top: 15px;
overflow: hidden;
}

.progress-bar div {
height: 100%;
background: linear-gradient(90deg,#b41515,#ff4d4d);
}
.prep-card {
background: linear-gradient(180deg,#ffffff,#fafafa);
border: 1px solid #eee;
}
.trust-strip {
background: linear-gradient(90deg, #fff3cd, #fff8e1);
border: 1px solid #ffeeba;
padding: 10px;
text-align: center;
font-size: 14px;
color: #856404;
border-radius: 6px;
margin: 10px auto;
max-width: 1200px;
}

.trust-strip span {
margin: 0 8px;
color: #999;
}

/* MOBILE */
@media (max-width: 600px) {
.trust-strip {
font-size: 12px;
padding: 8px;
}
}
/* HERO MODERN */
.hero-modern {
padding: 30px 20px;
background: linear-gradient(135deg,#f5f7fa,#ffffff);
}

.hero-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 20px;
max-width: 1200px;
margin: auto;
}

/* CARD */
.hero-card {
background: rgba(255,255,255,0.7);
backdrop-filter: blur(10px);
border-radius: 16px;
padding: 20px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transition: 0.3s;
position: relative;
}

.hero-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.hero-card h3 {
margin: 10px 0;
font-size: 18px;
}

.hero-card p {
font-size: 13px;
color: #666;
}

/* TAGS */
.tag {
position: absolute;
top: 10px;
right: 10px;
font-size: 11px;
padding: 4px 8px;
border-radius: 6px;
color: #fff;
}

.tag.new { background: #28a745; }
.tag.admit { background: #007bff; }
.tag.result { background: #ff5722; }

/* PREP MODERN */
.prep-modern {
padding: 40px 20px;
text-align: center;
}

.prep-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 20px;
margin-top: 25px;
}

/* BOX */
.prep-box {
background: #fff;
border-radius: 16px;
padding: 25px;
text-decoration: none;
color: #333;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: 0.3s;
}

.prep-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON */
.icon {
font-size: 24px;
background: #b41515;
color: #fff;
padding: 12px;
border-radius: 12px;
display: inline-block;
}

.icon.blue { background: #007bff; }
.icon.dark { background: #333; }

/* TEXT */
.prep-box h3 {
margin: 15px 0 5px;
}

.prep-box span {
font-size: 12px;
color: #888;
}
/* CONTAINER */
.updates-bar {
display: flex;
align-items: center;
gap: 15px;
background: #fff;
padding: 12px 15px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
margin: 15px;
overflow: hidden;
}

/* HEADER */
.updates-header {
font-weight: 600;
color: #b41515;
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}

/* PULSE DOT */
.pulse {
width: 10px;
height: 10px;
background: red;
border-radius: 50%;
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.5); opacity: 0.5; }
100% { transform: scale(1); opacity: 1; }
}

/* SLIDER */
.updates-slider {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
}

/* ITEM */
.update-item {
display: flex;
align-items: center;
gap: 8px;
background: #f9f9f9;
padding: 8px 12px;
border-radius: 8px;
white-space: nowrap;
transition: 0.3s;
}

.update-item:hover {
background: #f1f1f1;
}

/* LINKS */
.update-item a {
text-decoration: none;
color: #333;
font-size: 14px;
}

/* TAGS */
.tag {
font-size: 10px;
padding: 3px 6px;
border-radius: 4px;
color: #fff;
}

.tag.new { background: #28a745; }
.tag.admit { background: #007bff; }
.tag.result { background: #ff5722; }

/* MOBILE */
@media (max-width: 600px) {
.updates-bar {
flex-direction: column;
align-items: flex-start;
}
}
.prep-modern {
padding: 40px 20px;
text-align: center;
background: #f8f9fb;
}

.prep-subtitle {
color: #666;
margin-bottom: 25px;
}

/* GRID */
.prep-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 20px;
}

/* CARD */
.prep-box {
background: #fff;
border-radius: 16px;
padding: 25px;
text-decoration: none;
color: #333;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: 0.3s;
position: relative;
}

.prep-box:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ICON */
.icon {
font-size: 24px;
padding: 12px;
border-radius: 12px;
display: inline-block;
color: #fff;
}

.icon.red { background: #e53935; }
.icon.blue { background: #1e88e5; }
.icon.dark { background: #333; }

/* TEXT */
.prep-box h3 {
margin: 15px 0 5px;
font-size: 18px;
}

.prep-box p {
font-size: 14px;
color: #666;
}

/* STATS */
.prep-stats {
margin-top: 10px;
font-size: 13px;
color: #555;
display: flex;
flex-direction: column;
gap: 4px;
}

/* BUTTON */
.prep-btn {
margin-top: 15px;
padding: 8px 12px;
border: none;
background: #b41515;
color: #fff;
border-radius: 6px;
cursor: pointer;
font-size: 13px;
}

.prep-btn:hover {
background: #8f1010;
}
/* DROPDOWN */
.dropdown {
position: relative;
display: inline-block;
}

.dropdown-btn {
cursor: pointer;
}

/* DROPDOWN MENU */
.dropdown-content {
display: none;
position: absolute;
background: #fff;
min-width: 180px;
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
border-radius: 8px;
top: 100%;
left: 0;
z-index: 999;
overflow: hidden;
}

/* LINKS */
.dropdown-content a {
display: block;
padding: 10px 15px;
text-decoration: none;
color: #333;
font-size: 14px;
}

.dropdown-content a:hover {
background: #000;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-content {
display: block;
}
/* CONTAINER */
.marquee-container {
overflow: hidden;
flex: 1;
}

/* TRACK */
.marquee-track {
display: flex;
gap: 30px;
animation: scroll 20s linear infinite;
}

/* PAUSE ON HOVER */
.marquee-container:hover .marquee-track {
animation-play-state: paused;
}

/* ITEM */
.marquee-item {
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
text-decoration: none;
color: #333;
font-size: 14px;
}

/* ANIMATION */
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* SECTION */
.hero-modern {
padding: 30px 20px;
background: linear-gradient(135deg,#f8f9fb,#ffffff);
}

.hero-heading {
text-align: center;
margin-bottom: 20px;
font-size: 22px;
}

/* GRID */
.hero-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
gap: 20px;
max-width: 1200px;
margin: auto;
}

/* CARD */
.hero-card {
display: block;
background: #fff;
padding: 20px;
border-radius: 14px;
text-decoration: none;
color: #333;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: 0.3s;
position: relative;
border: 1px solid #eee;
}

.hero-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* TAG */
.tag {
position: absolute;
top: 10px;
right: 10px;
font-size: 10px;
padding: 4px 8px;
border-radius: 6px;
color: #fff;
}

.tag.new { background: #28a745; }
.tag.admit { background: #007bff; }
.tag.result { background: #ff5722; }
.tag.hot { background: #e53935; }

/* TEXT */
.hero-card h3 {
font-size: 16px;
margin: 10px 0;
line-height: 1.4;
}

.hero-card p {
font-size: 13px;
color: #666;
}

/* CTA */
.hero-cta {
display: inline-block;
margin-top: 10px;
font-size: 13px;
color: #b41515;
font-weight: 600;
}

/* HOVER CTA */
.hero-card:hover .hero-cta {
text-decoration: underline;
}
/* HEADER */
.hero-updates .updates-header {
font-weight: 600;
margin-bottom: 15px;
}

/* CARD STYLE */
.update-card.prep {
background: linear-gradient(135deg,#ffffff,#f8f9fb);
border: 1px solid #eee;
border-radius: 12px;
padding: 15px;
margin-bottom: 12px;
transition: 0.3s;
}

.update-card.prep:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* LABEL COLORS */
.update-label.mock {
background: #e53935;
}

.update-label.quiz {
background: #1e88e5;
}

.update-label.tools {
background: #333;
}

/* LINK */
.update-card.prep a {
display: block;
font-weight: 500;
margin: 5px 0;
color: #333;
text-decoration: none;
}

.update-card.prep a:hover {
color: #b41515;
}

/* TIME TEXT */
.update-card.prep .update-time {
font-size: 12px;
color: #777;
}
/* PANEL */
.hero-updates.pro {
background: #0f1c3f;
padding: 20px;
border-radius: 16px;
color: #fff;
}

/* TITLE */
.prep-title {
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
}

/* ITEM */
.prep-item {
display: flex;
align-items: center;
justify-content: space-between;
background: #ffffff;
border-radius: 12px;
padding: 12px;
margin-bottom: 12px;
text-decoration: none;
color: #333;
transition: 0.3s;
}

.prep-item:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* LEFT PART */
.prep-item {
gap: 12px;
}

/* ICON */
.prep-icon {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
color: #fff;
font-size: 18px;
flex-shrink: 0;
}

.prep-icon.red { background: linear-gradient(135deg,#ff4d4d,#e53935); }
.prep-icon.blue { background: linear-gradient(135deg,#42a5f5,#1e88e5); }
.prep-icon.dark { background: linear-gradient(135deg,#555,#222); }

/* TEXT */
.prep-text h4 {
margin: 0;
font-size: 15px;
}

.prep-text p {
margin: 2px 0;
font-size: 13px;
color: #666;
}

.prep-text span {
font-size: 12px;
color: #999;
}

/* ARROW */
.arrow {
font-size: 18px;
color: #bbb;
}

/* HOVER EFFECT */
.prep-item:hover .arrow {
color: #b41515;
}
/* MAIN BAR */
.updates-bar {
display: flex;
align-items: center;
gap: 15px;
background: #ffffff;
padding: 10px 15px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
margin: 15px;
overflow: hidden;
}

/* LABEL */
.updates-label {
display: flex;
align-items: center;
gap: 6px;
font-weight: 600;
color: #b41515;
white-space: nowrap;
}

/* LIVE DOT */
.live-dot {
width: 8px;
height: 8px;
background: red;
border-radius: 50%;
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.5); opacity: 0.5; }
100% { transform: scale(1); opacity: 1; }
}

/* SCROLL AREA */
.updates-scroll {
overflow: hidden;
flex: 1;
}

/* TRACK */
.updates-track {
display: flex;
gap: 25px;
animation: scroll 25s linear infinite;
}

/* PAUSE ON HOVER */
.updates-scroll:hover .updates-track {
animation-play-state: paused;
}

/* LINKS */
.updates-track a {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: #333;
font-size: 14px;
white-space: nowrap;
}

/* BADGES */
.badge {
font-size: 10px;
padding: 3px 6px;
border-radius: 4px;
color: #fff;
}

.badge.new { background: #28a745; }
.badge.admit { background: #007bff; }
.badge.result { background: #ff5722; }

/* ANIMATION */
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* BACKGROUND */
.hero-premium {
background: radial-gradient(circle at top,#0b1f4d,#050d1f);
padding: 10px 5px 20px;
color: #fff;
}

/* BADGE */
.hero-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 14px;
border-radius: 20px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.1);
font-size: 12px;
margin-bottom: 20px;
}

/* DOT */
.dot {
width: 8px;
height: 8px;
background: #ff4d4d;
border-radius: 50%;
}

/* TITLE */
.hero-title {
font-size: 34px;
font-weight: 700;
line-height: 1.3;
margin-bottom: 15px;
}

/* SUBTEXT */
.hero-description {
color: #b0b8c5;
font-size: 15px;
margin-bottom: 25px;
}

/* BUTTONS */
.hero-actions {
display: flex;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.btn {
padding: 12px 18px;
border-radius: 10px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: 0.3s;
}

/* PRIMARY */
.btn.primary {
background: linear-gradient(135deg,#ff4d4d,#b41515);
color: #fff;
}

.btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255,0,0,0.4);
}

/* SECONDARY */
.btn.secondary {
background: rgba(255,255,255,0.1);
color: #fff;
border: 1px solid rgba(255,255,255,0.2);
}

.btn.secondary:hover {
background: rgba(255,255,255,0.2);
}

/* TRUST */
.hero-trust {
display: flex;
gap: 15px;
font-size: 13px;
color: #c5cbd6;
margin-bottom: 25px;
flex-wrap: wrap;
}

/* STATS */
.hero-stats {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

/* STAT CARD */
.stat {
background: rgba(255,255,255,0.08);
padding: 15px;
border-radius: 12px;
text-align: center;
min-width: 110px;
border: 1px solid rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
}

.stat strong {
font-size: 18px;
display: block;
}

.stat span {
font-size: 12px;
color: #b0b8c5;
}
/* PANEL */
.hero-updates.modern {
background: linear-gradient(135deg,#0b1f4d,#08142e);
padding: 20px;
border-radius: 18px;
color: #fff;
}

/* TITLE */
.prep-title {
margin-bottom: 15px;
font-size: 18px;
font-weight: 600;
}

/* CARD */
.prep-card {
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(255,255,255,0.08);
border-radius: 14px;
padding: 12px;
margin-bottom: 12px;
text-decoration: none;
color: #fff;
transition: 0.3s;
backdrop-filter: blur(10px);
}

/* HOVER */
.prep-card:hover {
transform: translateY(-4px);
background: rgba(255,255,255,0.12);
box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* LEFT */
.prep-card .left {
display: flex;
align-items: center;
gap: 12px;
}

/* ICON */
.prep-icon {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
font-size: 18px;
color: #fff;
}

.prep-icon.red { background: linear-gradient(135deg,#ff4d4d,#e53935); }
.prep-icon.blue { background: linear-gradient(135deg,#42a5f5,#1e88e5); }
.prep-icon.dark { background: linear-gradient(135deg,#555,#222); }

/* TEXT */
.prep-text h4 {
margin: 0;
font-size: 15px;
}

.prep-text p {
margin: 2px 0;
font-size: 13px;
color: #cbd3e0;
}

/* META */
.meta {
display: flex;
gap: 8px;
font-size: 12px;
margin-top: 4px;
}

/* BADGES */
.badge {
padding: 2px 6px;
border-radius: 4px;
font-size: 10px;
font-weight: 600;
}

.badge.free { background: #28a745; }
.badge.new { background: #1e88e5; }
.badge.tools { background: #555; }

/* ARROW */
.right {
font-size: 18px;
color: #aaa;
transition: 0.3s;
}

.prep-card:hover .right {
color: #fff;
transform: translateX(3px);
}

/* STATUS BADGE */
.job-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
margin-right: 8px;
}

/* TYPES */
.status-active {
background: #e6f9ec;
color: #28a745;
}

.status-soon {
background: #fff3cd;
color: #ff9800;
}

.status-expired {
background: #fdecea;
color: #dc3545;
}

.status-new {
background: #e3f2fd;
color: #1e88e5;
}

/* META LINE */
.meta-line {
display: flex;
align-items: center;
gap: 6px;
margin-top: 5px;
}
.status-upcoming {
background: #e8f0fe;
color: #2962ff;
}
/* STATUS */
.admit-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

/* TYPES */
.status-coming {
background: #e8f0fe;
color: #2962ff;
}

.status-released {
background: #e6f9ec;
color: #28a745;
}

.status-expired {
background: #f1f1f1;
color: #777;
}
.result-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

/* COMING */
.status-coming {
background: #e8f0fe;
color: #2962ff;
}

/* DECLARED */
.status-declared {
background: #e6f9ec;
color: #28a745;
}
.status-updated {
background: #e8f5e9;
color: #2e7d32;
}

.status-new {
background: #e3f2fd;
color: #1565c0;
}

.status-revised {
background: #fff3e0;
color: #ef6c00;
}
.admission-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

/* TYPES */
.status-upcoming {
background: #e8f0fe;
color: #2962ff;
}

.status-open {
background: #e6f9ec;
color: #28a745;
}

.status-soon {
background: #fff3cd;
color: #ff9800;
}

.status-closed {
background: #f1f1f1;
color: #777;
}
.answer-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

.status-coming {
background: #e8f0fe;
color: #2962ff;
}

.status-provisional {
background: #fff3cd;
color: #ff9800;
}

.status-objection {
background: #ffe0b2;
color: #ef6c00;
}

.status-final {
background: #e6f9ec;
color: #28a745;
}
.scheme-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

.status-upcoming {
background: #e8f0fe;
color: #2962ff;
}

.status-new {
background: #e3f2fd;
color: #1565c0;
}

.status-updated {
background: #fff3cd;
color: #ff9800;
}

.status-active {
background: #e6f9ec;
color: #28a745;
}

.misc-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 20px;
font-weight: 600;
}

.status-new {
background: #e3f2fd;
color: #1565c0;
}

.status-updated {
background: #fff3cd;
color: #ff9800;
}

.status-notice {
background: #fdecea;
color: #d32f2f;
}

.status-info {
background: #f1f1f1;
color: #555;
}

/* mock tests */

       
        

        /* Hero */
        .hero {
            background: linear-gradient(120deg, #1565c0, #42a5f5);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Section */
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .card i {
            font-size: 30px;
            color: #1976d2;
            margin-bottom: 10px;
        }

        .card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .card p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #666;
        }

        .btn {
            display: inline-block;
            padding: 8px 14px;
            background: #1976d2;
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
        }

        .btn:hover {
            background: #0d47a1;
        }

        /* Table */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }

        table th, table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        table th {
            background: #1976d2;
            color: white;
        }

        table tr:hover {
            background: #f1f6ff;
        }

        /* Footer */
        footer {
            margin-top: 50px;
            background: #0d47a1;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 14px;
        }
.hero {
    background: linear-gradient(135deg, #0d47a1, #42a5f5);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-buttons {
    margin-bottom: 30px;
}

.btn-primary {
    background: #ff9800;
    padding: 12px 20px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
}

.btn-secondary {
    background: white;
    color: #1976d2;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary:hover {
    background: #e68900;
}

.btn-secondary:hover {
    background: #f1f1f1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.hero-stats div {
    text-align: center;
}

.hero-stats h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.hero-stats span {
    font-size: 13px;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* ================= PREMIUM EXAM SECTION ================= */

.exam-landing.premium {
    margin: 70px 0;
}

/* GRID */
.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.premium-card {
    background: linear-gradient(145deg, #ffffff, #f1f6ff);
    padding: 25px;
    border-radius: 14px;
    position: relative;
    transition: 0.3s ease;
    border: 1px solid #e3e8f0;
}

/* HOVER EFFECT */
.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.badge.new {
    background: #4caf50;
}

/* ICON */
.exam-icon {
    font-size: 28px;
    color: #1976d2;
    margin-bottom: 10px;
}

/* TITLE */
.premium-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* DESC */
.premium-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* STATS */
.exam-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
    color: #333;
}

/* BUTTON */
.btn-premium {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

/* SUBTITLE */
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 600px) {
    .premium-card {
        padding: 20px;
    }
}

/* ================= PREMIUM DAILY QUIZ ================= */

.daily-quiz {
    margin: 80px 0;
}

/* QUIZ CARD */
.quiz-box {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    padding: 30px;
    border-radius: 16px;
    max-width: 750px;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* TOP BORDER GLOW */
.quiz-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
}

/* HEADER */
.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* TIMER (MODERN) */
.timer {
    background: rgba(255,0,0,0.1);
    color: #d32f2f;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* PROGRESS BAR */
.progress-bar {
    height: 6px;
    background: #e0e7ff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    transition: width 0.3s ease;
}

/* QUESTION */
#question {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* OPTIONS */
.options label {
    display: block;
    padding: 12px 14px;
    border: 1px solid #ddd;
    margin: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
}

/* HOVER EFFECT */
.options label:hover {
    background: #f1f6ff;
    border-color: #1976d2;
    transform: translateX(5px);
}

/* SELECTED OPTION */
.options input:checked + span {
    font-weight: 600;
    color: #1976d2;
}

/* BUTTON */
.btn-premium {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25,118,210,0.3);
}

/* RESULT */
.quiz-result {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1976d2;
}

/* ================= LEADERBOARD ================= */

.leaderboard {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.leaderboard h3 {
    text-align: center;
    margin-bottom: 15px;
}

/* LEADERBOARD CARD */
.leaderboard ul {
    list-style: none;
    padding: 0;
}

.leaderboard li {
    background: #fff;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* TOP 3 HIGHLIGHT */
.leaderboard li:nth-child(1) { background: #fff8e1; }
.leaderboard li:nth-child(2) { background: #f1f8ff; }
.leaderboard li:nth-child(3) { background: #f9f9f9; }

/* MOBILE */
@media (max-width: 600px) {
    .quiz-box {
        padding: 20px;
    }

    #question {
        font-size: 17px;
    }
}
.start-screen {
    text-align: center;
}

.start-screen h3 {
    margin-bottom: 10px;
}
/* ================= TOPIC-WISE TESTS ================= */

.topic-tests {
    margin: 80px 0;
}

/* GRID */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.topic-card {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    padding: 25px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

/* HOVER */
.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.topic-icon {
    font-size: 26px;
    color: #1976d2;
    margin-bottom: 10px;
}

/* TITLE */
.topic-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* LIST */
.topic-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.topic-list li {
    font-size: 14px;
    padding: 4px 0;
    color: #555;
}

/* BUTTON */
.btn-topic {
    display: inline-block;
    background: #1976d2;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.btn-topic:hover {
    background: #0d47a1;
}

/* TOP BORDER EFFECT */
.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    border-radius: 10px 10px 0 0;
}
/* ================= ANALYTICS SECTION ================= */

.analytics-section {
    margin: 80px 0;
}

/* GRID */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.analytics-card {
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

/* HOVER */
.analytics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.analytics-icon {
    font-size: 26px;
    color: #1976d2;
    margin-bottom: 10px;
}

/* TITLE */
.analytics-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* TEXT */
.analytics-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

/* PROGRESS BAR */
.progress-mini {
    height: 6px;
    background: #e0e7ff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
}

/* TEXT */
.progress-text {
    font-size: 12px;
    color: #444;
}

/* WEAK TOPICS */
.weak-topics {
    list-style: none;
    padding: 0;
}

.weak-topics li {
    font-size: 13px;
    color: #d32f2f;
    margin: 3px 0;
}


.highlight .analytics-icon {
    color: #fff;
}

.rank-number {
    font-size: 32px;
    margin: 10px 0;
}

.rank-text {
    font-size: 13px;
    opacity: 0.9;
}

/* TOP BORDER */
.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    border-radius: 10px 10px 0 0;
}
/* ================= RANKERS SECTION ================= */

.rankers-section {
    margin: 80px 0;
}

/* GRID */
.rankers-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* CARD */
.ranker-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.ranker-card:hover {
    transform: translateY(-8px);
}

/* BADGE */
.rank-badge {
    font-size: 28px;
    margin-bottom: 10px;
}

/* COLORS */
.gold { border-top: 4px solid #ffc107; }
.silver { border-top: 4px solid #9e9e9e; }
.bronze { border-top: 4px solid #cd7f32; }

/* ================= TESTIMONIALS ================= */

.testimonial-slider {
    max-width: 700px;
    margin: auto;
    text-align: center;
    position: relative;
}

/* CARD */
.testimonial {
    display: none;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial.active {
    display: block;
}

/* TEXT */
.testimonial p {
    margin: 10px 0;
    font-size: 15px;
    color: #555;
}

/* NAME */
.testimonial h4 {
    margin-top: 10px;
    color: #1976d2;
}

/* MOBILE */
@media (max-width: 600px) {
    .rankers-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ================= FREE SECTION ================= */

.free-section {
    margin: 80px 0;
}

/* GRID */
.free-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* FEATURES */
.free-features {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.feature-item i {
    color: #4caf50;
    margin-right: 10px;
}

/* COMPARISON */
.comparison-box {
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.comparison-box h3 {
    margin-bottom: 15px;
}

/* TABLE */
.comparison-box table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-box th,
.comparison-box td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.comparison-box th {
    background: #1976d2;
    color: white;
}

/* CTA */
.free-cta {
    margin-top: 40px;
    text-align: center;
}

.free-cta h3 {
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .free-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= FAQ SECTION ================= */

.faq-section {
    margin: 80px 0;
}

/* SEO TEXT */
.seo-content {
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* FAQ BOX */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    border: none;
    background: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 0 15px 15px;
    font-size: 14px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active span {
    transform: rotate(45deg);
}

/* ================= MODERN HERO ================= */

.hero {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    padding: 90px 20px 70px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.hero-content {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.hero h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* SUBTEXT */
.hero p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #ff9800;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e68900;
    transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    margin: 0;
    font-size: 22px;
}

.hero-stats span {
    font-size: 13px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 600px) {

    .hero {
        padding: 70px 15px 50px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
    }
}
/* ================= PREMIUM EXAM SECTION ================= */

.exam-section {
    display: grid;
    gap: 25px;
}

/* ================= EXAM BOX ================= */

.exam-box {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid #e3e8f0;
    position: relative;
    transition: 0.3s ease;
}

/* TOP BORDER GRADIENT */
.exam-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    border-radius: 16px 16px 0 0;
}

.exam-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* ================= HEADER ================= */

.exam-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.exam-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* SUB INFO */
.exam-sub {
    font-size: 13px;
    color: #666;
}

/* ================= TEST LIST ================= */

.test-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ================= TEST ITEM ================= */

.test-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #edf1f7;
    transition: 0.25s ease;
    position: relative;
}

.test-item:hover {
    background: #f4f8ff;
    border-color: #1976d2;
    transform: translateX(4px);
}

/* LEFT SIDE */
.test-left h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.meta {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

/* RIGHT SIDE */
.test-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= LEVEL TAGS ================= */

.level {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.easy {
    background: #e8f5e9;
    color: #2e7d32;
}

.medium {
    background: #fff3e0;
    color: #ef6c00;
}

.hard {
    background: #ffebee;
    color: #c62828;
}

/* ================= ATTEMPT BUTTON ================= */

.btn-test {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-test:hover {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
}

/* ================= STATUS TAG ================= */

.status {
    font-size: 11px;
    color: #4caf50;
    font-weight: 500;
}

/* ================= BADGE ================= */

.badge {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
}

/* ================= PROGRESS BAR (OPTIONAL) ================= */

.progress-mini {
    height: 4px;
    background: #e3e8f0;
    border-radius: 10px;
    margin-top: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .test-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .test-right {
        width: 100%;
        justify-content: space-between;
    }

}
/* ================= TOPIC SECTION ================= */

.topic-section {
    margin: 80px 0;
}

/* GRID */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* BOX */
.topic-box {
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HOVER */
.topic-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* TITLE */
.topic-box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

/* LIST */
.topic-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEMS */
.topic-box li {
    margin: 6px 0;
}

/* LINKS */
.topic-box a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

/* HOVER */
.topic-box a:hover {
    background: #e3f2fd;
    color: #1976d2;
    padding-left: 12px;
}

/* MOBILE */
@media (max-width: 600px) {
    .topic-box h3 {
        font-size: 16px;
    }
}
/* ================= TESTIMONIAL ================= */

.testimonial-section {
    margin: 80px 0;
    text-align: center;
}

/* SLIDER */
.testimonial-slider {
    max-width: 700px;
    margin: auto;
    position: relative;
}

/* CARD */
.testimonial-card {
    display: none;
    background: linear-gradient(145deg, #ffffff, #f4f8ff);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testimonial-card.active {
    display: block;
}

/* USER */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* NAME */
.user-info h4 {
    margin: 0;
    font-size: 16px;
}

.user-info span {
    font-size: 12px;
    color: #666;
}

/* STARS */
.stars {
    margin: 10px 0;
    color: #ffc107;
    font-size: 16px;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 600px) {
    .testimonial-card {
        padding: 18px;
    }
}
/* ================= EXAM PATTERN ================= */

.exam-pattern {
    margin: 80px 0;
}

/* BOX */
.pattern-box {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.pattern-box h3 {
    margin-bottom: 12px;
}

/* TABLE */
.pattern-box table {
    width: 100%;
    border-collapse: collapse;
}

.pattern-box th,
.pattern-box td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pattern-box th {
    background: #1976d2;
    color: #fff;
}

/* NOTE */
.note {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

/* MOBILE */
@media (max-width: 600px) {
    .pattern-box th,
    .pattern-box td {
        font-size: 12px;
    }
}
/* ================= FAQ ================= */

.faq-section {
    margin: 80px 0;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.2s;
}

/* QUESTION */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px;
    border: none;
    background: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 0 16px 16px;
    font-size: 14px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active span {
    transform: rotate(45deg);
}

/* HOVER */
.faq-item:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {
    .faq-question {
        font-size: 14px;
    }
}
/* ================= CTA SECTION ================= */

.cta-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    text-align: center;
    color: white;
    border-radius: 16px;
}

/* CONTAINER */
.cta-container {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* TEXT */
.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON */
.cta-btn {
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* PRIMARY */
.cta-btn.primary {
    background: #ff9800;
    color: white;
}

.cta-btn.primary:hover {
    background: #e68900;
    transform: translateY(-2px);
}

/* SECONDARY */
.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* STATS */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-stats h3 {
    margin: 0;
    font-size: 22px;
}

.cta-stats span {
    font-size: 13px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 600px) {

    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-stats {
        gap: 20px;
    }
}
/* ================= HEADER ================= */
.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-weight: 600;
    color: #1976d2;
}

.test-title {
    font-weight: 500;
}

/* ================= LAYOUT ================= */
.instruction-container {
    display: flex;
    min-height: 90vh;
}

.instruction-left {
    flex: 1;
    padding: 30px;
}

.instruction-right {
    width: 300px;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= PROFILE ================= */
.profile {
    text-align: center;
}

.avatar {
    width: 90px;
    height: 90px;
    background: #1bb3c1;
    border-radius: 50%;
    margin: auto;
}

/* ================= TEXT ================= */
.instructions-list {
    padding-left: 18px;
}

.instructions-list li {
    margin-bottom: 12px;
}

/* ================= LEGEND ================= */
.legend div {
    margin: 5px 0;
}

.box {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 3px;
}

.not-visited { background: #ccc; }
.not-answered { background: #f44336; }
.answered { background: #4caf50; }
.review { background: #9c27b0; }

/* ================= LANGUAGE ================= */
.lang-select {
    margin-top: 20px;
}

/* ================= DECLARATION ================= */
.declaration {
    margin-top: 20px;
    font-size: 14px;
}

/* ================= BUTTON ================= */
.start-btn {
    margin-top: 20px;
    background: #26c6da;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.start-btn:hover {
    background: #00acc1;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .instruction-container {
        flex-direction: column;
    }

    .instruction-right {
        display: none;
    }

}
.test-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    height: calc(100vh - 60px);
    background: #f5f7fb;
}

/* LEFT */
.test-left {
    padding: 20px;
}

/* RIGHT PANEL */
.test-right {
    background: #fff;
    border-left: 1px solid #e0e0e0;
    padding: 15px;
}
.question-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 10px;
}

.question-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.option {
    display: block;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.25s;
    background: #fafafa;
}

.option:hover {
    background: #e3f2fd;
    border-color: #1976d2;
}

.option input {
    margin-right: 10px;
}

.option.selected {
    background: #1976d2;
    color: #fff;
    border-color: #1976d2;
}
.controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}
/* ================= MARK FOR REVIEW BUTTON ================= */

.btn.secondary {
    background: #8e24aa;   /* premium purple */
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* HOVER */
.btn.secondary:hover {
    background: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ACTIVE CLICK */
.btn.secondary:active {
    transform: scale(0.96);
}

/* FOCUS (ACCESSIBILITY) */
.btn.secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(142, 36, 170, 0.3);
}
/* COLORS */
.primary { background: #1976d2; color: #fff; }
.primary:hover { background: #0d47a1; }

.review { background: #8e24aa; color: #7a00ff; }
.clear { background: #e0e0e0; }
.submit { background: #f44336; color: #fff; }
.section-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 10px 16px;
    border-radius: 8px;
    background: #e3f2fd;
    cursor: pointer;
    font-weight: 500;
}

.tab.active {
    background: #1976d2;
    color: #fff;
}
/* ================= RIGHT PANEL ================= */

.test-right {
    width: 300px;
    background: #ffffff;
    border-left: 1px solid #e6e6e6;
    padding: 20px;
}

/* TITLE */
.test-right h3 {
    text-align: center;
    margin-bottom: 15px;
}

/* GRID */
.palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-items: center;
}

/* BOX */
.pal {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: #e0e0e0;
    transition: 0.2s;
}

/* STATES */
.pal.notvisited {
    background: #e0e0e0;
}

.pal.notanswered {
    background: #f44336;
    color: #fff;
}

.pal.answered {
    background: #4caf50;
    color: #fff;
}

.pal.review {
    background: #9c27b0;
    color: #fff;
}

.pal.active {
    border: 2px solid #1976d2;
}

/* HOVER */
.pal:hover {
    transform: scale(1.05);
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.header-right {
    color: #f44336;
    font-weight: 600;
    font-size: 16px;
}

.candidate-box {
    text-align: center;
    margin-bottom: 15px;
}

.avatar {
    width: 70px;
    height: 70px;
    background: #26c6da;
    border-radius: 50%;
    margin: auto;
}
.legend {
    margin-top: 15px;
    font-size: 13px;
}

.legend div {
    margin: 5px 0;
}

.box {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 3px;
}

.notvisited { background:#e0e0e0; }

/* ================= RIGHT PANEL ================= */

.test-right {
    width: 300px;
    background: #f8f9fc;
    border-left: 1px solid #e0e0e0;
    padding: 15px;
}

/* CARD */
.palette-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* TITLE CENTERED */
.palette-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* GRID PERFECT ALIGN */
.palette {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-items: center;
}

/* QUESTION BOX */
.pal {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    background: #e0e0e0;
    transition: 0.25s ease;
}

/* STATES */
.pal.notvisited {
    background: #e0e0e0;
}

.pal.notanswered {
    background: #f44336;
    color: #fff;
}

.pal.answered {
    background: #4caf50;
    color: #fff;
}

.pal.review {
    background: #9c27b0;
    color: #fff;
}

/* ACTIVE (CURRENT QUESTION) */
.pal.active {
    border: 2px solid #1976d2;
    transform: scale(1.08);
}

/* HOVER EFFECT */
.pal:hover {
    transform: scale(1.08);
}

/* ================= LEGEND ================= */

.legend {
    margin-top: 15px;
    font-size: 12px;
}

.legend div {
    margin: 5px 0;
}

.box {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 3px;
}

.notvisited { background:#e0e0e0; }
.answered { background:#4caf50; }
.notanswered { background:#f44336; }
.review { background:#9c27b0; }

.result-container {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.result-box {
    background: #f5f7fb;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.section-analysis {
    text-align: left;
    margin-top: 20px;
}

.section-analysis div {
    background: #fafafa;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
}
/* ================= RESULT ================= */

.result-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

/* TOP STATS */
.top-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* CHART */
.chart-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* SECTION */
.section-analysis div {
    background: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    text-align: left;
}

/* HERO SECTION */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle overlay effect */
.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 10%, transparent 10.01%);
  background-size: 20px 20px;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  from { transform: translate(0,0); }
  to { transform: translate(-50px,-50px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #1976d2;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.section-header p {
  color: #666;
  margin-top: 8px;
}

/* GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.tool-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON */
.tool-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

/* TITLE */
.tool-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

/* TEXT */
.tool-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

/* BUTTON */
.tool-card a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #1976d2;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.tool-card a:hover {
  background: #0d47a1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}
/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft animated background */
.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 10%, transparent 10.01%);
  background-size: 25px 25px;
  animation: moveBg 25s linear infinite;
}

@keyframes moveBg {
  from { transform: translate(0,0); }
  to { transform: translate(-60px,-60px); }
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
  margin-bottom: 25px;
}

.btn-primary {
  background: #fff;
  color: #1976d2;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1976d2;
}

/* FEATURES */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero {
    padding: 60px 15px 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-primary, .btn-secondary {
    display: block;
    margin: 10px auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

}
/* HERO */
.hero-new {
  background: linear-gradient(135deg, #1e293b, #1d4ed8);
  padding: 70px 20px;
  color: #fff;
}

/* CONTAINER */
.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #38bdf8;
}

.hero-text p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* FEATURES */
.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-points span {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.btn-primary {
  background: #22c55e;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 25px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats b {
  font-size: 1.2rem;
}

.hero-stats span {
  font-size: 12px;
  color: #cbd5e1;
}

/* RIGHT CARD */
.hero-card-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-card h3 {
  margin-bottom: 5px;
}

.hero-card p {
  font-size: 14px;
  color: #555;
}

/* PROGRESS */
.progress {
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  margin: 15px 0;
}

.progress-bar {
  width: 70%;
  height: 100%;
  background: #22c55e;
  border-radius: 10px;
}

/* BUTTON */
.hero-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #1d4ed8;
  color: #fff;
  border-radius: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-stats {
    justify-content: center;
  }
}
/* SECTION */
.mock-section {
  padding: 70px 20px;
  background: #f8fafc;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 0.95rem;
}

/* GRID */
.mock-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* CARD */
.mock-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s ease;
  border: 1px solid #eee;
  position: relative;
}

/* HOVER EFFECT */
.mock-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #1976d2;
}

/* ICON */
.icon-box {
  width: 50px;
  height: 50px;
  background: #e3f2fd;
  color: #1976d2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TITLE */
.mock-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* TEXT */
.mock-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

/* BUTTON */
.mock-btn {
  display: inline-block;
  color: #1976d2;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.mock-btn:hover {
  color: #0d47a1;
}

/* MOBILE */
@media (max-width: 768px) {

  .section-header h2 {
    font-size: 1.6rem;
  }

  .mock-card {
    padding: 20px;
  }

}
/* CARD BASE */
.mock-card {
  position: relative;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  z-index: 1;
  transition: 0.3s;
}

/* GRADIENT BORDER MAGIC */
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1976d2, #42a5f5, #22c55e);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* HOVER */
.mock-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TAG */
.tag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
}

/* TAG COLORS */
.tag-ssc {
  background: #1976d2;
}

.tag-bank {
  background: #22c55e;
}

.tag-railway {
  background: #f59e0b;
}

.tag-upsc {
  background: #9333ea;
}

/* ICON */
.icon-box {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  color: #1976d2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.mock-card h3 {
  margin-bottom: 10px;
}

.mock-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

/* BUTTON */
.mock-btn {
  font-weight: 600;
  color: #1976d2;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .mock-card {
    padding: 20px;
  }
}
/* WRAPPER */
.hero-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* CARD BASE */
.premium-card {
  width: 260px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  position: relative;
  border: 1px solid rgba(255,255,255,0.2);

  /* IMPORTANT */
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* SECOND CARD OFFSET */
.secondary-card {
  transform: translateX(30px);
}

/* HOVER (SSC CARD) */
.premium-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* HOVER (BANKING CARD FIX - NO JUMP) */
.secondary-card:hover {
  transform: translateX(30px) translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* BADGE */
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1976d2;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

.card-badge.bank {
  background: #22c55e;
}

/* TEXT */
.premium-card h3 {
  margin-bottom: 5px;
}

.premium-card p {
  font-size: 13px;
  color: #cbd5f5;
}

/* PROGRESS */
.progress {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  margin: 15px 0;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
}

.progress-bar.ssc {
  width: 70%;
  background: #1976d2;
}

.progress-bar.bank-bar {
  width: 60%;
  background: #22c55e;
}

/* BUTTON */
.card-btn {
  display: block;
  text-align: center;
  background: #1976d2;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.card-btn:hover {
  background: #0d47a1;
}

.secondary-btn {
  background: #22c55e;
}

.secondary-btn:hover {
  background: #15803d;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-card-wrap {
    flex-direction: column;
    gap: 15px;
  }

  /* REMOVE OFFSET ON MOBILE */
  .secondary-card {
    transform: none;
  }

  .secondary-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

}
/* SECTION */
.exam-landing {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
}

/* GRID */
.exam-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.exam-card {
  padding: 25px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
}

/* HOVER */
.exam-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */
.exam-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TITLE */
.exam-card h3 {
  margin-bottom: 8px;
}

/* TEXT */
.exam-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

/* STATS */
.exam-stats {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-premium {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-premium:hover {
  transform: scale(1.03);
}

.badge.new {
  background: #22c55e;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.7rem;
  }
}
/* BANKING SECTION BG */
.banking-section {
  background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
}

/* BANK ICON */
.bank-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* BUTTON */
.bank-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* BUTTON HOVER */
.bank-btn:hover {
  transform: scale(1.03);
}

/* BADGE */
.badge.bank {
  background: #22c55e;
}

/* OPTIONAL HOVER GLOW */
.banking-card:hover {
  box-shadow: 0 25px 60px rgba(34,197,94,0.15);
}
/* RAILWAY SECTION BG */
.railway-section {
  background: linear-gradient(180deg, #fffbeb, #fef3c7);
}

/* ICON */
.railway-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
}

/* BUTTON */
.railway-btn {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* BUTTON HOVER */
.railway-btn:hover {
  transform: scale(1.03);
}

/* BADGE */
.badge.railway {
  background: #f59e0b;
}

/* HOVER GLOW */
.railway-card:hover {
  box-shadow: 0 25px 60px rgba(245,158,11,0.2);
}
/* UPSC SECTION BG */
.upsc-section {
  background: linear-gradient(180deg, #f5f3ff, #ede9fe);
}

/* ICON */
.upsc-icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
}

/* BUTTON */
.upsc-btn {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

/* BUTTON HOVER */
.upsc-btn:hover {
  transform: scale(1.03);
}

/* BADGE */
.badge.upsc {
  background: #7c3aed;
}

/* HOVER GLOW */
.upsc-card:hover {
  box-shadow: 0 25px 60px rgba(124,58,237,0.2);
}



/* CARD */
.quiz-card {
  max-width: 600px;
  margin: auto;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}

/* START SCREEN */
.start-screen {
  text-align: center;
}

.quiz-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.quiz-info {
  margin: 15px 0;
  color: #555;
}

/* BUTTONS */
.btn-start {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25,118,210,0.3);
}

.btn-next {
  width: 100%;
  margin-top: 15px;
  background: #1976d2;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-next:hover {
  background: #0d47a1;
}

/* RETRY */
.btn-retry {
  margin-top: 12px;
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

/* HEADER (QUIZ) */
.quiz-header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 10px;
}

/* TIMER */
.timer {
  color: #ef4444;
  font-weight: 600;
}

/* PROGRESS */
.progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  border-radius: 10px;
  transition: width 0.3s ease;
}

/* QUESTION */
.quiz-body h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* OPTIONS */
.options {
  display: grid;
  gap: 10px;
}

.options button {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9fafb;
  cursor: pointer;
  transition: 0.25s;
  text-align: left;
}

.options button:hover {
  background: #e3f2fd;
  border-color: #1976d2;
}

/* CORRECT / WRONG */
.options button.correct {
  background: #22c55e;
  color: #fff;
  border: none;
}

.options button.wrong {
  background: #ef4444;
  color: #fff;
  border: none;
}

/* RESULT */
.quiz-result {
  margin-top: 20px;
  text-align: center;
  padding: 15px;
  background: #f1f5f9;
  border-radius: 10px;
  font-weight: 600;
}

/* ANIMATION */
.quiz-main {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {

  section {
    padding: 50px 15px;
  }

  .quiz-card {
    padding: 20px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

}

/* SECTION */
.topic-tests {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.section-header p {
  color: #666;
}

/* GRID */
.topic-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.topic-card {
  position: relative;
  padding: 25px;
  border-radius: 18px;
  background: #fff;
  transition: 0.3s;
}

/* GRADIENT BORDER */
.premium-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1976d2, #42a5f5, #22c55e);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER */
.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
}

.tag.quant { background: #1976d2; }
.tag.reasoning { background: #9333ea; }
.tag.english { background: #22c55e; }
.tag.gs { background: #f59e0b; }

/* ICON */
.topic-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TITLE */
.topic-card h3 {
  margin-bottom: 10px;
}

/* LIST */
.topic-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.topic-list li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* BUTTON */
.btn-topic {
  display: inline-block;
  font-weight: 600;
  color: #1976d2;
  text-decoration: none;
  transition: 0.3s;
}

.btn-topic:hover {
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .topic-tests {
    padding: 50px 15px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }
}

/* SECTION */
.trending-tests {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

/* GRID */
.trending-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.trend-card {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* HOVER */
.trend-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
}

/* COLORS */
.tag.ssc { background: #1976d2; }
.tag.bank { background: #22c55e; }
.tag.railway { background: #f59e0b; }
.tag.upsc { background: #9333ea; }

/* TEXT */
.trend-card h3 {
  margin-bottom: 8px;
}

.trend-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* META */
.trend-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-trend {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ff6b00, #ff8c42);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-trend:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .trending-tests {
    padding: 50px 15px;
  }
}

/* SECTION */
.latest-updates {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0f9ff, #e0f2fe);
}

/* GRID */
.updates-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.update-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* HOVER */
.update-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* ICON */
.update-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

/* ICON COLORS */
.update-icon.job {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.update-icon.admit {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.update-icon.result {
  background: linear-gradient(135deg, #9333ea, #a855f7);
}

/* TEXT */
.update-card h3 {
  margin-bottom: 10px;
}

.update-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* LIST */
.update-list {
  padding-left: 18px;
  margin-bottom: 15px;
}

.update-list li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

/* BUTTON */
.btn-update {
  display: inline-block;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-update:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .latest-updates {
    padding: 50px 15px;
  }
}

/* SECTION */
.study-notes {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f9fafb, #eef2ff);
}

/* GRID */
.notes-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.note-card {
  position: relative;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* HOVER */
.note-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
}

.tag.quant { background: #1976d2; }
.tag.reasoning { background: #9333ea; }
.tag.english { background: #22c55e; }
.tag.gs { background: #f59e0b; }

/* TEXT */
.note-card h3 {
  margin-bottom: 10px;
}

.note-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* LINKS */
.note-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* READ BUTTON */
.note-links a:first-child {
  color: #1976d2;
  font-weight: 600;
  text-decoration: none;
}

/* AFFILIATE BUTTON */
.note-links a:last-child {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
}

/* HOVER */
.note-links a:last-child:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .study-notes {
    padding: 50px 15px;
  }
}

/* SECTION */
.short-tricks {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0fdf4, #ecfdf5);
}

/* GRID */
.tricks-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.trick-card {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* HOVER */
.trick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
}

.tag.quant { background: #1976d2; }
.tag.reasoning { background: #9333ea; }
.tag.english { background: #22c55e; }
.tag.gs { background: #f59e0b; }

/* TEXT */
.trick-card h3 {
  margin-bottom: 8px;
}

.trick-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* LINK */
.trick-card a {
  color: #16a34a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.trick-card a:hover {
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .short-tricks {
    padding: 50px 15px;
  }
}
.study-plan {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0f9ff, #eef2ff);
}

.plan-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.plan-card {
  position: relative;
  padding: 25px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* TAGS */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
}

.tag.ssc { background: #1976d2; }
.tag.bank { background: #22c55e; }
.tag.railway { background: #f59e0b; }
.tag.upsc { background: #9333ea; }

/* LIST */
.plan-card ul {
  padding-left: 18px;
  margin: 15px 0;
}

.plan-card li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

/* BUTTON */
.btn-plan {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f9fafb, #eef2ff);
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.faq:hover {
  transform: translateY(-3px);
}

/* QUESTION */
.faq h3 {
  font-size: 16px;
  cursor: pointer;
}

/* ANSWER */
.faq p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  line-height: 1.6;
}

/* SECTION */
.free-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f0f9ff, #eef2ff);
}

/* GRID */
.free-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* FEATURES */
.free-features {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.free-features h3 {
  margin-bottom: 15px;
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.feature-item i {
  color: #22c55e;
  font-size: 18px;
  margin-top: 4px;
}

.feature-item strong {
  display: block;
  font-size: 15px;
}

.feature-item p {
  font-size: 13px;
  color: #666;
}

/* COMPARISON */
.comparison-box {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.comparison-box h3 {
  margin-bottom: 15px;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  background: #f1f5f9;
}



.good {
  color: #22c55e;
  font-weight: 600;
}

.bad {
  color: #ef4444;
}

/* CTA */
.free-cta {
  text-align: center;
  margin-top: 50px;
}

.free-cta h3 {
  margin-bottom: 10px;
}

.free-cta p {
  color: #555;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-premium {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25,118,210,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .free-grid {
    grid-template-columns: 1fr;
  }
}
/* CONTAINER */
#container{
  max-width:650px;
  margin:40px auto;
  padding:20px;
}

/* HEADING */
#container h2{
  text-align:center;
  margin-bottom:15px;
}

/* INPUT */
#username, #lang{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:10px;
  border:1px solid #ddd;
}

/* CARD */
#quiz-card{
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(10px);
  padding:25px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* HEADER */
#quiz-header{
  display:flex;
  justify-content:space-between;
  font-weight:600;
}

/* PROGRESS */
#progress-bar{
  height:6px;
  background:#e5e7eb;
  border-radius:10px;
  margin:12px 0;
  overflow:hidden;
}

#progress{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#1976d2,#42a5f5);
}

/* QUESTION */
#question{
  margin:15px 0;
  font-size:18px;
}

/* OPTIONS */
#options button{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:12px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  transition:0.3s;
}

#options button:hover{
  background:#e3f2fd;
}

/* CORRECT / WRONG */
.correct{
  background:#22c55e !important;
  color:#fff;
}

.wrong{
  background:#ef4444 !important;
  color:#fff;
}

/* BUTTON */
#nextBtn, #retryBtn{
  width:100%;
  padding:13px;
  background:linear-gradient(135deg,#1976d2,#42a5f5);
  color:#fff;
  border:none;
  border-radius:12px;
  margin-top:12px;
  cursor:pointer;
}

/* RESULT */
#result{
  display:none;
  text-align:center;
  margin-top:20px;
}

/* SCORE CIRCLE */
#score-circle{
  position:relative;
  width:120px;
  margin:auto;
}

#circle-bg{
  fill:none;
  stroke:#eee;
  stroke-width:10;
}

#circle-progress{
  fill:none;
  stroke:#1976d2;
  stroke-width:10;
  stroke-dasharray:314;
  stroke-dashoffset:314;
  transform:rotate(-90deg);
  transform-origin:50% 50%;
}

/* SCORE TEXT */
#scoreText{
  position:absolute;
  top:35px;
  left:0;
  right:0;
  font-weight:bold;
  font-size:18px;
}

/* LEADERBOARD */
#leaderboard{
  margin-top:20px;
  font-size:14px;
  color:#555;
}

/* META + EXPLANATION */
#meta{
  font-size:13px;
  color:#666;
}

#explanation{
  margin-top:10px;
  font-size:14px;
  color:#444;
}

/* RESPONSIVE */
@media(max-width:768px){
  #container{
    padding:12px;
  }
}

/* SECTION */
#seo-content{
  padding:60px 20px;
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  display:flex;
  justify-content:center;
  flex-direction:column;
  max-width:900px;
  margin:40px auto;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
#seo-heading{
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:20px;
  line-height:1.4;
  position:relative;
}

/* HEADING LINE */
#seo-heading::after{
  content:"";
  width:70px;
  height:4px;
  background:linear-gradient(90deg,#1976d2,#42a5f5);
  display:block;
  margin-top:10px;
  border-radius:5px;
}

/* PARAGRAPHS */
#seo-para1,
#seo-para2{
  font-size:16px;
  color:#475569;
  line-height:1.8;
  margin-bottom:15px;
}

/* LIST */
#seo-list{
  list-style:none;
  padding:0;
  margin:20px 0;
}

#seo-list li{
  background:#ffffff;
  padding:12px 16px;
  margin-bottom:10px;
  border-radius:10px;
  font-size:15px;
  color:#0f172a;
  box-shadow:0 5px 12px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* HOVER EFFECT */
#seo-list li:hover{
  transform:translateX(5px);
  background:#eef2ff;
}

/* HIGHLIGHT */
#seo-highlight{
  margin-top:20px;
  padding:14px;
  background:rgba(25,118,210,0.1);
  border-left:4px solid #1976d2;
  border-radius:10px;
  font-weight:600;
  color:#1976d2;
}

/* RESPONSIVE */
@media(max-width:768px){

  #seo-heading{
    font-size:22px;
  }

  #seo-para1,
  #seo-para2{
    font-size:14px;
  }

}

/* SECTION */
#topics-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  max-width:1100px;
  margin:40px auto;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
#topics-heading{
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:15px;
}

/* DESCRIPTION */
#topics-desc{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:16px;
  color:#475569;
  line-height:1.8;
}

/* GRID */
#topics-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* CARDS */
#topic1,
#topic2,
#topic3,
#topic4,
#topic5,
#topic6{
  background:#ffffff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

/* HOVER */
#topic1:hover,
#topic2:hover,
#topic3:hover,
#topic4:hover,
#topic5:hover,
#topic6:hover{
  transform:translateY(-6px);
  background:#eef2ff;
}

/* TITLE */
#topics-section h3{
  font-size:18px;
  margin-bottom:8px;
  color:#0f172a;
}

/* TEXT */
#topics-section p{
  font-size:14.5px;
  color:#64748b;
  line-height:1.6;
}

/* HIGHLIGHT */
#topics-highlight{
  margin-top:40px;
  text-align:center;
  font-size:16px;
  font-weight:600;
  color:#1976d2;
  background:rgba(25,118,210,0.1);
  padding:12px 18px;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  #topics-heading{
    font-size:24px;
  }

  #topics-desc{
    font-size:14px;
  }

}
/* SECTION */
#benefits-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  max-width:1100px;
  margin:40px auto;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
#benefits-heading{
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:15px;
}

/* DESCRIPTION */
#benefits-desc{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:16px;
  color:#475569;
  line-height:1.8;
}

/* GRID */
#benefits-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* CARDS */
#benefit1,
#benefit2,
#benefit3,
#benefit4,
#benefit5{
  background:#ffffff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

/* HOVER */
#benefit1:hover,
#benefit2:hover,
#benefit3:hover,
#benefit4:hover,
#benefit5:hover{
  transform:translateY(-6px);
  background:#eef2ff;
}

/* TITLE */
#benefits-section h3{
  font-size:18px;
  margin-bottom:8px;
  color:#0f172a;
}

/* TEXT */
#benefits-section p{
  font-size:14.5px;
  color:#64748b;
  line-height:1.6;
}

/* HIGHLIGHT */
#benefits-highlight{
  margin-top:40px;
  text-align:center;
  font-size:16px;
  font-weight:600;
  color:#1976d2;
  background:rgba(25,118,210,0.1);
  padding:12px 18px;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  #benefits-heading{
    font-size:24px;
  }

  #benefits-desc{
    font-size:14px;
  }

}
/* SECTION */
#links-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  max-width:1100px;
  margin:40px auto;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
#links-heading{
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:15px;
}

/* DESCRIPTION */
#links-desc{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
  font-size:16px;
  color:#475569;
  line-height:1.8;
}

/* GRID */
#links-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

/* CARDS */
#link1,
#link2,
#link3,
#link4{
  display:block;
  background:#ffffff;
  padding:22px;
  border-radius:14px;
  text-decoration:none;
  color:#0f172a;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

/* HOVER */
#link1:hover,
#link2:hover,
#link3:hover,
#link4:hover{
  transform:translateY(-6px);
  background:#eef2ff;
}

/* TITLE */
#links-section h3{
  font-size:18px;
  margin-bottom:8px;
}

/* TEXT */
#links-section p{
  font-size:14.5px;
  color:#64748b;
  margin-bottom:10px;
  line-height:1.6;
}

/* CTA */
#links-section span{
  font-size:14px;
  font-weight:600;
  color:#1976d2;
}

/* HIGHLIGHT */
#links-highlight{
  margin-top:40px;
  text-align:center;
  font-size:16px;
  font-weight:600;
  color:#1976d2;
  background:rgba(25,118,210,0.1);
  padding:12px 18px;
  border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  #links-heading{
    font-size:24px;
  }

  #links-desc{
    font-size:14px;
  }

}

/* SECTION */
#faq-section{
  padding:70px 20px;
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  max-width:900px;
  margin:40px auto;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
#faq-heading{
  text-align:center;
  font-size:30px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:10px;
}

/* DESCRIPTION */
#faq-desc{
  text-align:center;
  font-size:16px;
  color:#475569;
  margin-bottom:30px;
}

/* ITEMS */
#faq-item1,
#faq-item2,
#faq-item3,
#faq-item4{
  background:#ffffff;
  margin-bottom:12px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

/* QUESTIONS */
#faq-q1,
#faq-q2,
#faq-q3,
#faq-q4{
  width:100%;
  padding:16px;
  font-size:16px;
  font-weight:600;
  border:none;
  background:#f8fafc;
  cursor:pointer;
  text-align:left;
  position:relative;
}

/* PLUS ICON */
#faq-q1::after,
#faq-q2::after,
#faq-q3::after,
#faq-q4::after{
  content:"+";
  position:absolute;
  right:15px;
  font-size:18px;
}

/* ANSWERS */
#faq-a1,
#faq-a2,
#faq-a3,
#faq-a4{
  display:none;
  padding:15px;
  font-size:14.5px;
  color:#475569;
  line-height:1.7;
}

/* ACTIVE STATE */
#faq-item1.active #faq-a1,
#faq-item2.active #faq-a2,
#faq-item3.active #faq-a3,
#faq-item4.active #faq-a4{
  display:block;
}

/* MINUS ICON */
#faq-item1.active #faq-q1::after,
#faq-item2.active #faq-q2::after,
#faq-item3.active #faq-q3::after,
#faq-item4.active #faq-q4::after{
  content:"−";
}

/* HOVER */
#faq-q1:hover,
#faq-q2:hover,
#faq-q3:hover,
#faq-q4:hover{
  background:#eef2ff;
}

/* RESPONSIVE */
@media(max-width:768px){

  #faq-heading{
    font-size:24px;
  }

  #faq-desc{
    font-size:14px;
  }

}
/* ===== WRAPPER ===== */

.hero-updates.premium {
  margin-top: 30px;
}

.prep-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* ===== CARD ===== */

.prep-card.premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* glow effect */
.prep-card.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

.prep-card.premium:hover::before {
  opacity: 1;
}

/* hover lift */
.prep-card.premium:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,255,255,0.3);
}

/* ===== LEFT ===== */

.card-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ICON */

.icon {
  font-size: 26px;
  background: rgba(255,255,255,0.12);
  padding: 10px;
  border-radius: 12px;
}

/* TEXT */

.prep-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.prep-text p {
  font-size: 13px;
  color: #e5e7eb;
}

/* META */

.meta {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta span {
  font-size: 11px;
  background: rgba(255,255,255,0.12);
  padding: 4px 8px;
  border-radius: 6px;
}



.badge.free {
  background: #22c55e;
  color: #fff;
}

.badge.new {
  background: #f59e0b;
  color: #fff;
}

.badge.tools {
  background: #6366f1;
  color: #fff;
}

/* ===== RIGHT ARROW ===== */

.arrow {
  font-size: 20px;
  transition: 0.3s;
}

/* arrow animation */

.prep-card:hover .arrow {
  transform: translateX(6px);
}

/* ===== HIGHLIGHT CARD ===== */

.prep-card.highlight {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
}

.prep-card.highlight .meta span {
  background: rgba(255,255,255,0.2);
}

/* ===== MOBILE ===== */

@media (max-width: 600px) {

  .prep-card.premium {
    padding: 15px;
  }

  .prep-text h4 {
    font-size: 15px;
  }

}
/* ===== DROPDOWN ===== */

.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 10px;
  font-weight: 500;
}

/* dropdown menu */

.dropdown-content {
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 200px;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 10px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;
}

/* links */

.dropdown-content a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s;
}

/* hover */

.dropdown-content a:hover {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  transform: translateX(4px);
}

/* show dropdown */

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== MOBILE DROPDOWN ===== */

.mobile-dropdown button {
  width: 100%;
  padding: 12px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

/* submenu */

.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: #cbd5f5;
  font-size: 14px;
  text-decoration: none;
}

/* active */

.mobile-submenu.active {
  display: block;
}

/* ===============================
🔥 MOBILE PREMIUM UI FIX
================================= */
@media (max-width: 768px) {

  body {
    background: #f1f5f9;
    font-size: 15px;
  }

  /* HEADER */
  .main-header {
    padding: 10px 15px;
    background: #0f172a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  .site-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }

  /* HERO SECTION */
  .hero-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    border-radius: 10px;
  }

  /* CATEGORY SECTION */
  .category-section-pro {
    padding: 15px;
  }

  .section-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  /* CARD */
  .category-card-pro {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  /* ICON */
  .category-card-pro .icon {
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* JOB ITEM */
  .job-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #f8fafc;
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .job-item:hover {
    background: #e2e8f0;
  }

  /* JOB TEXT */
  .job-text h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #1e293b;
  }

  /* META LINE */
  .meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
    font-size: 12px;
  }

  .meta-line .date {
    color: #6366f1;
    font-weight: 500;
  }

  /* ARROW */
  .job-item .arrow {
    font-size: 16px;
    color: #64748b;
  }

  /* VIEW ALL BUTTON */
  .view-all-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 500;
  }

  /* GOV GRID */
  .gov-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gov-card {
    padding: 15px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  /* PREPARATION CARDS */
  .prep-card {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .prep-card h4 {
    font-size: 15px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-about {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

}
/* ===============================
🔥 FULL WIDTH MOBILE FIX
================================= */
@media (max-width: 768px) {

  /* REMOVE SIDE SPACE FROM MAIN CONTAINER */
  .wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  /* SECTION FULL WIDTH */
  .category-section-pro {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* CARD FULL WIDTH */
  .category-card-pro {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 14px;
  }

  /* JOB ITEM FULL WIDTH */
  .job-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* REMOVE EXTRA BODY SIDE GAP */
  body {
    margin: 0;
    padding: 0;
  }

}
/* ===============================
🔥 FIX HEADER OVERLAP
================================= */
@media (max-width: 768px) {

  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  body {
    padding-top: 70px; /* adjust based on header height */
  }

}

@media (max-width: 768px) {

  .updates-bar {
    margin-top: 10px;
    z-index: 1;
    position: relative;
  }

}

@media (max-width: 768px) {

  .hero-premium {
    margin-top: 10px;
    padding-top: 20px;
  }

}
/* Prevent right side overflow globally */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
/* ===============================
🔥 JUSTIFY TEXT FOR MOBILE
================================= */
@media (max-width: 768px) {

  p, 
  .content p,
  .post-content p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.7;
    font-size: 15px;
  }

}

@media (max-width: 768px) {

  p {
    word-spacing: 0.5px;
    letter-spacing: 0.2px;
  }

}

@media (max-width: 768px) {

  .post-content {
    padding: 0 12px;
  }

  .post-content p {
    margin-bottom: 14px;
    text-align: justify;
  }

}
/* ===============================
🔥 MOBILE ARTICLE UI IMPROVEMENT
================================= */
@media (max-width: 768px) {

  /* MAIN CONTENT WRAPPER */
  .post-content,
  .content,
  article {
    padding: 0 14px;
  }

  /* HEADINGS */
  h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 16px;
    margin-top: 14px;
  }

  /* PARAGRAPH TEXT */
  p {
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 14px;
    color: #1e293b;
  }

  /* IMPORTANT TEXT (BOLD) */
  strong {
    color: #0f172a;
    font-weight: 600;
  }

  /* LISTS */
  ul, ol {
    padding-left: 18px;
    margin-bottom: 14px;
  }

  li {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.6;
  }

  /* CARD STYLE FOR CONTENT BLOCKS */
  .post-content,
  article {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  }

  /* HIGHLIGHT BOX (for important info) */
  .highlight-box {
    background: #f1f5f9;
    border-left: 4px solid #3b82f6;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 14px;
  }

  /* TABLE (IMPORTANT FOR JOB DATA) */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
    font-size: 14px;
  }

  table th,
  table td {
    border: 1px solid #e2e8f0;
    padding: 8px;
    text-align: left;
  }

  table th {
    background: #f8fafc;
  }

  /* SCROLL TABLE ON MOBILE */
  .table-wrapper {
    overflow-x: auto;
  }

  /* BUTTONS (APPLY / DOWNLOAD) */
  .apply-btn,
  .download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    margin: 10px 0;
    font-weight: 600;
  }

  .apply-btn {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #fff;
  }

  .download-btn {
    background: #0ea5e9;
    color: #fff;
  }

  /* STICKY APPLY BUTTON (HIGH CTR 🔥) */
  .sticky-apply {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 999;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
  }

  /* IMAGE */
  img {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0;
  }

}
/* ===============================
🔥 TOC MOBILE DESIGN
================================= */
@media (max-width: 768px) {

  .toc-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .toc-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .toc-box ul {
    list-style: none;
    padding-left: 0;
  }

  .toc-box li {
    margin-bottom: 6px;
  }

  .toc-box a {
    text-decoration: none;
    font-size: 14px;
    color: #2563eb;
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: 0.2s;
  }

  .toc-box a:hover {
    background: #e2e8f0;
  }

}
html {
  scroll-behavior: smooth;
}
/* ===============================
🔥 COLLAPSIBLE TOC MOBILE
================================= */
@media (max-width: 768px) {

  .toc-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .toc-header h3 {
    font-size: 16px;
    margin: 0;
  }

  #toc-toggle-icon {
    font-size: 14px;
    color: #64748b;
  }

  .toc-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
  }

  .toc-list li {
    margin-bottom: 6px;
  }

  .toc-list a {
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
  }

  .toc-list a:hover {
    background: #e2e8f0;
  }

}


/* HEADER */
.main-header {
  width: 100%;
  background: #ffffff;
  position: fixed !important; /* 🔥 force fixed */
  top: 0;
  left: 0;
  z-index: 9999 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* WRAPPER */
.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible !important; /* 🔥 critical */
}

/* LOGO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 40px;
}

.logo-area span {
  font-size: 20px;
  font-weight: 600;
  color: #1a73e8;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

/* MENU HOVER FIX */
.menu a:hover,
.dropdown:hover .dropbtn {
  color: #1a73e8 !important; /* text stays visible */
}

/* IF BACKGROUND IS BLUE ANYWHERE */
.menu a:hover {
  background: transparent !important;
}

/* DROPDOWN ITEMS FIX */
.dropdown-content a:hover {
  background: #1a73e8 !important;
  color: #ffffff !important; /* 🔥 FIX TEXT VISIBILITY */
}
/* DROPDOWN */
.dropdown {
  position: relative;
}

/* improve hover area */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

/* BUTTON */
.dropbtn {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  padding: 10px 6px;
}

/* DROPDOWN MENU */
.dropdown-content {
  position: absolute;
  top: 100%; /* 🔥 removes gap */
  left: 0;
  margin-top: 0 !important;

  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 8px;

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.25s ease;

  z-index: 9999 !important;
}

/* SHOW DROPDOWN (NO FLICKER) */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  padding: 12px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f2f5ff;
}

/* CTA BUTTON */
.cta-btn {
  background: #1a73e8;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1557c0;
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 10px 20px;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}

/* MOBILE DROPDOWN */
.mobile-dropdown button {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding-left: 10px;
}

.mobile-submenu a {
  padding: 8px 0;
  font-size: 14px;
}

/* ACTIVE MOBILE DROPDOWN */
.mobile-submenu.active {
  display: block !important;
}

/* MOBILE CTA */
.mobile-cta {
  margin-top: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .menu {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .mobile-menu.active {
    display: flex !important;
  }
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #1a73e8 !important; /* 🔥 visible blue */
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: block !important;
    color: #1a73e8 !important; /* force visible */
  }
}
.mobile-cta {
  background: #1a73e8 !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

/* 🔥 MOBILE ONLY FIX */
@media (max-width: 900px){

  /* SHOW HAMBURGER */
  .menu-toggle{
    display: block !important;
    font-size: 26px;
    color: #1a73e8 !important;
  }

  /* HIDE DESKTOP MENU */
  .menu{
    display: none !important;
  }

  /* MOBILE MENU FIX */
  .mobile-menu{
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff !important;
    z-index: 9999 !important;
  }

  /* SHOW MENU */
  .mobile-menu.active{
    display: flex !important;
    flex-direction: column;
  }

  /* TEXT VISIBILITY */
  .mobile-menu a{
    color: #222 !important;
    padding: 12px 0;
  }

  /* 🔥 DROPDOWN FIX */
  .mobile-submenu{
    display: none;
    background: #f9fbff;
    padding-left: 10px;
  }

  .mobile-submenu.active{
    display: block !important;
  }

  /* BUTTON TEXT FIX */
  .mobile-dropdown button{
    color: #222 !important;
    width: 100%;
    text-align: left;
  }

}
/* ================= PREMIUM COLORED STICKY CTA ================= */

.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);

  width: calc(100% - 24px);
  max-width: 1100px;

  /* 🔥 SOFT COLORED BACKGROUND */
  background: linear-gradient(135deg, #f0f6ff, #ffffff);

  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 16px;

  border: 1px solid rgba(37,99,235,0.15);

  /* 🔥 PREMIUM SHADOW */
  box-shadow:
    0 12px 35px rgba(0,0,0,0.08),
    0 0 20px rgba(37,99,235,0.15);

  z-index: 999;
}

/* CONTENT */
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* TEXT */
.cta-text strong {
  font-size: 15px;
  display: block;
  color: #0f172a;
}

.cta-text span {
  font-size: 12px;
  color: #475569;
}

/* ================= BUTTON ================= */

.cta-button {
  position: relative;
  overflow: hidden;

  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  background: linear-gradient(135deg,#2563eb,#3b82f6);
  color: #fff;

  box-shadow:
    0 10px 25px rgba(37,99,235,0.35),
    0 0 0 0 rgba(37,99,235,0.4);

  transition: all 0.3s ease;
}

/* GLOW PULSE */
.cta-button {
  animation: ctaGlow 2.5s infinite;
}

@keyframes ctaGlow {
  0% {
    box-shadow:
      0 10px 25px rgba(37,99,235,0.35),
      0 0 0 0 rgba(37,99,235,0.4);
  }
  70% {
    box-shadow:
      0 10px 25px rgba(37,99,235,0.35),
      0 0 0 14px rgba(37,99,235,0);
  }
  100% {
    box-shadow:
      0 10px 25px rgba(37,99,235,0.35),
      0 0 0 0 rgba(37,99,235,0);
  }
}

/* SHINE */
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

/* HOVER */
.cta-button:hover {
  transform: translateY(-3px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .sticky-cta {
    bottom: 10px;
    padding: 12px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-button {
    width: 100%;
  }

}
/* ================= TELEGRAM ICON (PREMIUM GLOW) ================= */

.telegram-icon {
  position: fixed;
  right: 14px;
  top: 60%;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border-radius: 50%;

  /* 🔥 PREMIUM GLOW */
  box-shadow: 
    0 6px 18px rgba(0,0,0,0.12),
    0 0 0 0 rgba(34,158,217,0.4);

  z-index: 999;
  transition: all 0.3s ease;
}

/* ICON STYLE */
.telegram-icon i {
  font-size: 18px;
  color: #229ED9;
  transition: 0.3s;
}

/* 🔥 SOFT PULSE GLOW */
.telegram-icon {
  animation: tgGlow 2.5s infinite;
}

@keyframes tgGlow {
  0% {
    box-shadow: 
      0 6px 18px rgba(0,0,0,0.12),
      0 0 0 0 rgba(34,158,217,0.35);
  }
  70% {
    box-shadow: 
      0 6px 18px rgba(0,0,0,0.12),
      0 0 0 12px rgba(34,158,217,0);
  }
  100% {
    box-shadow: 
      0 6px 18px rgba(0,0,0,0.12),
      0 0 0 0 rgba(34,158,217,0);
  }
}

/* HOVER (MORE PREMIUM) */
.telegram-icon:hover {
  transform: scale(1.12);

  box-shadow: 
    0 10px 25px rgba(0,0,0,0.18),
    0 0 12px rgba(34,158,217,0.5);
}

.telegram-icon:hover i {
  transform: rotate(8deg);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .telegram-icon {
    right: 10px;
    top: 65%;
    width: 34px;
    height: 34px;
  }

  .telegram-icon i {
    font-size: 16px;
  }
}
.telegram-icon {
  text-decoration: none !important;
}

.telegram-icon:hover {
  text-decoration: none !important;
}
/* TOC Header Box */
.toc-custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.toc-custom-header:hover {
  background: #f9f9f9;
}

/* Title */
.toc-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Icon Box (Right side) */
.toc-icon-box {
  width: 45px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
}

/* TOC List */
#custom-toc {
  margin-top: 15px;
  padding-left: 20px;
}

/* ===== CLOSE BUTTON ===== */
.cta-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.cta-close:hover {
  background: rgba(255,255,255,0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .sticky-cta {
    padding: 14px;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .cta-text strong {
    font-size: 14px;
  }

  .cta-text span {
    font-size: 12px;
  }
}

/* ===== ROOT ===== */
:root {
  --primary: #0d6efd;
  --dark: #0b3c91;
  --text: #1e293b;
  --border: #e2e8f0;
}

/* ===== HEADER ===== */
.main-header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
}

/* ===== LOGO ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-area img {
  width: 36px;
}

.logo-area span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

/* ===== DESKTOP MENU ===== */
.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--primary);
}

/* CTA BUTTON */
.cta-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 20px;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
  z-index: 1001;
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  box-shadow: 5px 0 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

/* ===== MOBILE LINKS ===== */
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* MOBILE CTA */
.mobile-cta {
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  margin-top: 15px;
  border-radius: 25px;
  padding: 10px;
}

/* ===== MOBILE DROPDOWN ===== */
.mobile-dropdown button {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  color: var(--dark);
}

/* SUBMENU */
.mobile-submenu {
  display: none;
  padding-left: 10px;
}

.mobile-submenu a {
  font-size: 13px;
  color: #64748b;
  border: none;
}

.mobile-submenu.active {
  display: block;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  /* HIDE DESKTOP MENU */
  .menu {
    display: none;
  }

  /* SHOW HAMBURGER LEFT */
  .menu-toggle {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* CENTER LOGO */
  .logo-area {
    margin: auto;
  }
}
/* ===== DEFAULT (DESKTOP - KEEP ORIGINAL) ===== */
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between; /* keep original */
  position: relative;
  padding: 12px 20px;
}

/* ===== MOBILE ONLY FIX ===== */
@media (max-width: 768px) {

  /* HIDE DESKTOP MENU */
  .menu {
    display: none;
  }

  /* CENTER HEADER CONTENT */
  .header-wrap {
    justify-content: center;
  }

  /* HAMBURGER LEFT */
  .menu-toggle {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #0d6efd;
    z-index: 1001;
  }

  /* LOGO CENTER */
  .logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
  }

  /* LOGO IMAGE */
  .logo-area img {
    width: 32px;
    height: 32px;
  }

  /* TEXT */
  .logo-area span {
    font-size: 16px;
    font-weight: 600;
    color: #0b3c91;
    white-space: nowrap;
  }
}
/* SUBMENU DEFAULT */
.mobile-submenu {
  display: none;
  padding-left: 10px;
}

/* WHEN ACTIVE */
.mobile-submenu.active {
  display: block;
}

/* BUTTON STYLE (IMPORTANT FOR CLICK) */
.mobile-dropdown button {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}
.mobile-submenu {
  display: none;
  padding-left: 10px;
}

.mobile-submenu.active {
  display: block;
}
/* CLOSE BUTTON */
.menu-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #0d6efd;
  background: #f1f5ff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.menu-close:hover {
  background: #0d6efd;
  color: #fff;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #b41515;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  max-width: 500px;
  width: 90%;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text strong {
  display: block;
  font-size: 16px;
}

.cta-text span {
  font-size: 13px;
  opacity: 0.9;
}

.cta-button {
  background: #fff;
  color: #b41515;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ❌ Close Button Style */
.cta-close {
  position: absolute;
  top: 5px;
  right: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none; /* hidden initially */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(239,68,68,0.35);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Hover effect */
.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(239,68,68,0.45);
}

/* Mobile */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 15px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}


