header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

/* header space */
body{
  padding-top: 120px !important;
}
footer{
  background: linear-gradient(180deg, #0b1220, #0f1b33) !important;
  color: #fff !important;
}

footer a{
  color: rgba(255,255,255,0.8) !important;
}
footer a:hover{
  color: #38bdf8 !important;
}
/* ===============================
   CHAITNYA LMS - PREMIUM THEME
   Glass Header + Dark Premium Footer
================================ */

:root{
  --navy: #0b1220;
  --navy2:#0f1b33;

  --primary:#2563eb;
  --accent:#38bdf8;

  --text:#0f172a;
  --muted:#64748b;

  --border: rgba(255,255,255,0.16);
  --glass: rgba(255,255,255,0.60);
  --glass2: rgba(255,255,255,0.40);
}

/* Smooth fonts */
body{
  background: #f8fafc;
}

/* Ensure top padding for fixed header */
.site-has-fixed-header{
  padding-top: 115px;
}

/* HEADER GLASS */
.site-header{
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header *{
  pointer-events: auto;
}

.header-shell{
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
}

.header-inner{
  border-radius: 0px;   /* ✅ top gap feel remove */
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 35px rgba(15,23,42,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 26px;
}


/* Inner */
.site-header .header-inner{
  padding: 18px 22px;
}

/* Nav link premium look */
.site-header .nav-link{
  position: relative;
  font-weight: 600;
  color: #0f172a;
  opacity: 0.85;
  transition: 0.25s;
}

.site-header .nav-link:hover{
  opacity: 1;
  color: var(--primary);
}

.site-header .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: 0.25s;
}

.site-header .nav-link:hover::after{
  width: 100%;
}

/* User dropdown button */
.site-header .user-btn{
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 10px 22px rgba(2,6,23,0.08);
}

/* Dropdown panel */
.site-header .user-dropdown{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: 0 18px 55px rgba(2,6,23,0.18);
}

/* Mobile menu */
.site-header .mobile-menu{
  margin-top: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: 0 18px 55px rgba(2,6,23,0.14);
  padding: 14px 18px;
}

/* ===============================
   FOOTER PREMIUM DARK
================================ */
.site-footer{
  background: radial-gradient(800px 300px at 10% 10%, rgba(56,189,248,0.20), transparent),
              radial-gradient(700px 260px at 90% 20%, rgba(37,99,235,0.18), transparent),
              linear-gradient(180deg, var(--navy), var(--navy2));
  color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.site-footer a{
  color: rgba(255,255,255,0.82);
  transition: 0.2s;
}

.site-footer a:hover{
  color: white;
  transform: translateX(2px);
}

.site-footer h3{
  color: white;
}

.site-footer .footer-card{
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 18px;
  backdrop-filter: blur(12px);
}

/* Social icons */
.site-footer .social img{
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer .social:hover img{
  opacity: 1;
}
/* ===========================
   HEADER + FOOTER THEME
=========================== */

.site-has-fixed-header{
  padding-top: 115px;
}

/* HEADER GLASS */
.site-header{
  pointer-events: none;
}
.site-header *{
  pointer-events: auto;
}

.header-shell{
  width: 100%;
}

.header-inner{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.65);
  box-shadow: 0 18px 50px rgba(15,23,42,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 18px 22px;
}

.nav-link{
  color: #0f172a;
  font-weight: 600;
  transition: 0.25s ease;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-link:hover{
  background: rgba(37,99,235,0.08);
  color: #2563eb;
}

.user-btn{
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}

.user-dropdown{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 18px 45px rgba(15,23,42,0.18);
}

.dropdown-link{
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: #0f172a;
}

.dropdown-link:hover{
  background: rgba(37,99,235,0.08);
  color: #2563eb;
}

.cta-btn{
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  color: #fff;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 800;
  transition: 0.25s ease;
}

.cta-btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Mobile menu */
.mobile-menu{
  border-top: 1px solid rgba(15,23,42,0.08);
  padding-top: 14px;
}

/* FOOTER PREMIUM DARK */
.site-footer{
  background: radial-gradient(1200px 500px at 20% -10%, rgba(56,189,248,0.22), transparent 60%),
              radial-gradient(900px 400px at 90% 10%, rgba(37,99,235,0.30), transparent 55%),
              #020617;
}

.footer-link{
  color: rgba(226,232,240,0.90);
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-link:hover{
  color: #38bdf8;
  transform: translateX(2px);
}

.social-link{
  display: flex;
  align-items: center;
  color: rgba(226,232,240,0.90);
  font-weight: 600;
  transition: 0.25s ease;
}

.social-link:hover{
  color: #38bdf8;
  transform: translateX(2px);
}
/* FOOTER TEXT COLORS FIX */
.site-footer h3{
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px;
}

.site-footer .left .text-2xl,
.site-footer .left div{
  color: #ffffff !important;
}

.site-footer p{
  color: rgba(226,232,240,0.92) !important;
}

.footer-link{
  color: rgba(226,232,240,0.88) !important;
}

.footer-link:hover{
  color: #38bdf8 !important;
}

.social-link{
  color: rgba(226,232,240,0.92) !important;
}

.social-link:hover{
  color: #38bdf8 !important;
}
footer, footer *{
  color: #ffffff !important;
}
