*{box-sizing:border-box}
:root{--bg:#0b0d14;--card:#111423;--text:#e9ecf3;--muted:#b2b7c5;--primary:#2ad4ff;--accent:#7cf58d}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#0b0d14;color:var(--text)}
a{color:var(--primary);text-decoration:none}
.container{width:min(1120px,92%);margin:0 auto}
.narrow{width:min(840px,92%);margin:2rem auto}
.site-header{position:sticky;top:0;background:#0b0d14d9;backdrop-filter:saturate(150%) blur(8px);z-index:1000;border-bottom:1px solid #1b2136}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0}
.brand{font-weight:800;font-size:1.2rem;color:#fff}
.brand span{color:var(--accent)}
.nav-toggle{display:none;background:none;border:0;cursor:pointer}
.nav-toggle .bar{display:block;width:24px;height:2px;background:#fff;margin:5px 0}
.nav ul{list-style:none;display:flex;gap:1rem;align-items:center;margin:0;padding:0}
.nav a{padding:.5rem .75rem;border-radius:.5rem;color:#dfe6ff}
.nav .cta a{background:var(--primary);color:#00131a;font-weight:700}
.has-dropdown{position:relative}
.dropdown{position:absolute;left:0;top:calc(100% + 8px);background:#0e1220;border:1px solid #1b2136;border-radius:.75rem;min-width:200px;display:none;flex-direction:column;overflow:hidden}
.has-dropdown:hover .dropdown{display:flex}
.dropdown a{padding:.75rem 1rem;display:block}
.hero{padding:64px 0 32px;background:radial-gradient(1200px 400px at 50% -10%, #1a2240 0%, transparent 60%)}
.hero h1{font-size:clamp(1.8rem,4vw,3rem);line-height:1.1;margin:0 0 1rem}
.hero p{color:var(--muted);max-width:60ch;margin:0 0 1.25rem}
.actions{display:flex;gap:.75rem;flex-wrap:wrap}
.btn{display:inline-block;padding:.85rem 1.1rem;border-radius:.8rem;border:1px solid #2a334f}
.btn.primary{background:var(--primary);border-color:var(--primary);color:#00131a;font-weight:800}
.btn.ghost{background:transparent;color:#c7d3ff}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.card{background:var(--card);border:1px solid #1b2136;padding:1rem;border-radius:1rem}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center;margin:2.5rem auto}
.video-embed{position:relative;padding-top:56.25%;border-radius:1rem;overflow:hidden;border:1px solid #1b2136}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%}
.checks{list-style:none;padding:0;margin:0 0 1rem}
.checks li{padding-left:1.6rem;margin:.4rem 0;position:relative}
.checks li::before{content:"✓";position:absolute;left:.4rem;color:var(--accent);font-weight:800}
.testimonials h2{margin-top:0}
blockquote{background:var(--card);margin:0;border-left:4px solid var(--accent);padding:1rem;border-radius:.75rem}
cite{display:block;margin-top:.5rem;color:var(--muted);font-style:normal}
.notice{padding:1rem;border-radius:.75rem;margin:1rem 0}
.notice.success{background:#0f2a1d;border:1px solid #1f7a43}
.notice.error{background:#2a1010;border:1px solid #7a1f1f}
.form label{display:block;margin:.8rem 0 .3rem}
.form input,.form textarea{width:100%;padding:.85rem;background:#0e1220;border:1px solid #2a334f;border-radius:.6rem;color:#fff}
.site-footer{border-top:1px solid #1b2136;margin-top:3rem}
.footer-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;padding:2rem 0}
.footer-links{list-style:none;margin:0;padding:0}
.footer-links li{margin:.4rem 0}
.muted{color:var(--muted)}

@media (max-width: 900px){
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .has-dropdown:hover .dropdown{display:none}
  .nav-toggle{display:block}
  .nav{position:fixed;inset:60px 0 auto 0;background:#0b0d14;transform:translateY(-120%);transition:transform .25s ease;border-bottom:1px solid #1b2136}
  .nav.open{transform:translateY(0)}
  .nav ul{flex-direction:column;align-items:flex-start;padding:1rem}
  .has-dropdown > a::after{content:"▾";margin-left:.4rem}
  .has-dropdown .dropdown{position:static;border:0;background:transparent;display:none}
  .has-dropdown.open .dropdown{display:flex}
}

/* Ensure dropdown layers and smooth feel */
.site-header { position: sticky; top: 0; z-index: 1000; }
.has-dropdown { position: relative; }
.dropdown { z-index: 1100; }

/* Desktop: hover works out-of-the-box via existing rule */
.has-dropdown:hover .dropdown { display: flex; }

/* Mobile behavior (<=900px) is class-based */
@media (max-width: 900px){
  .has-dropdown:hover .dropdown { display:none; } /* don’t fight mobile JS */
  .has-dropdown.open .dropdown { display: flex; }
}




/* --- nav/dropdown hardening --- */
.site-header { position: sticky; top: 0; z-index: 1000; }
.has-dropdown { position: relative; }
.dropdown { z-index: 1100; }

/* Desktop hover works already, but ensure visibility above hero/video */
.has-dropdown:hover .dropdown { display: flex; }

@media (max-width: 900px){
  /* Disable hover behavior on mobile; we use .open class via JS */
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: flex; }
}


.auth.has-dropdown .dropdown {
  right: 0;
  left: auto;
  min-width: 180px;
}
.auth.has-dropdown:hover .dropdown {
  display: flex;
}



.dropdown li a[href*="admin"] {
  font-weight: 600;
  color: #f39c12;
}
.dropdown li a[href*="admin"]:hover {
  background: #f39c12;
  color: #fff;
}



/* NAVIGATION FIX */
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav ul li { position: relative; }
.nav ul li a { text-decoration: none; padding: 0.6rem 1rem; display: block; }

.nav ul li.has-dropdown:hover .dropdown,
.nav ul li.has-dropdown.show-dropdown .dropdown {
  display: block;
}

.nav ul .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  min-width: 180px;
  z-index: 999;
}

.nav ul .dropdown li a {
  padding: 0.5rem 1rem;
  color: #ddd;
}

.nav ul .dropdown li a:hover {
  background: #00ff84;
  color: #000;
}

/* MOBILE NAVIGATION */
.icon { display: none; cursor: pointer; font-size: 22px; color: #fff; }

@media (max-width: 900px) {
  .icon { display: block; position: absolute; right: 20px; top: 20px; }
  .nav ul { 
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px; right: 0; left: 0;
    padding: 1rem 0;
  }
  .nav.open ul { display: flex; }
  .nav ul li { width: 100%; }
  .nav ul li a { padding: 0.8rem 1.5rem; }
  .nav ul .dropdown {
    position: relative;
    background: #111;
    box-shadow: none;
  }
}



/* Admin dashboard enhancements */
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
@media (max-width: 1000px){ .grid4{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 600px){ .grid4{grid-template-columns:1fr} }

.card.kpi{display:flex;flex-direction:column;gap:.25rem}
.kpi-label{color:var(--muted);font-size:.9rem}
.kpi-value{font-size:1.6rem;font-weight:800;letter-spacing:.2px}
.kpi-sub{color:var(--muted);font-size:.85rem}



/* ===== Admin Shell ===== */
.admin-shell { display: grid; grid-template-columns: 260px 1fr; grid-template-rows: 56px 1fr; min-height: 100vh; background:#0b0d14; color:#e9ecf3; }
.admin-aside {
  grid-row: 1 / span 2; grid-column: 1;
  background:#0e1220; border-right:1px solid #1b2136; position:relative;
  padding: .75rem .75rem 3rem;
}
.admin-aside .admin-aside-toggle{
  position:absolute; bottom:.75rem; left:.75rem; right:.75rem;
  width:calc(100% - 1.5rem); padding:.6rem; border:1px solid #2a334f;
  background:transparent; color:#c7d3ff; border-radius:.6rem; cursor:pointer;
}
.admin-aside.collapsed { width:68px; overflow:hidden; }
.admin-aside.collapsed .admin-link { text-indent:-9999px; }
.admin-aside.collapsed .admin-aside-toggle { text-indent:0; }
.admin-brand { font-size: 1.1rem; font-weight: 800; margin:.2rem .25rem 1rem; }
.admin-brand span { color:#7cf58d; }
.admin-menu { display:flex; flex-direction:column; gap:.25rem; }
.admin-link { display:block; padding:.65rem .75rem; border-radius:.6rem; color:#cfd6ff; border:1px solid transparent; }
.admin-link:hover { background:#111633; border-color:#1b2136; color:#fff; }
.admin-topbar {
  grid-column: 2; grid-row: 1;
  position: sticky; top: 0; z-index: 5;
  background:#0b0d14d9; border-bottom:1px solid #1b2136; backdrop-filter:saturate(150%) blur(8px);
}
.admin-topbar-inner { height:56px; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:0 1rem; }
.admin-topbar .title { font-size:1.25rem; font-weight:800; }
.badge { display:inline-block; padding:.25rem .5rem; border-radius:.5rem; background:#1e2b1e; color:#7cf58d; border:1px solid #264c26; font-size:.8rem; }
.admin-content { grid-column: 2; grid-row: 2; padding: 1rem; }
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
@media (max-width: 1100px){ .grid4{grid-template-columns:repeat(2,1fr)} .admin-shell{grid-template-columns: 200px 1fr;} }
@media (max-width: 800px){
  .admin-shell{ grid-template-columns: 1fr; grid-template-rows: 56px auto 1fr; }
  .admin-aside { grid-column: 1; grid-row: 2; display:block; }
  .admin-aside.collapsed { height: 56px; }
  .admin-content { grid-column: 1; grid-row: 3; }
}



.admin-link.active {
  background: #1b243a;
  color: #00ff84;
  border: 1px solid #00ff84;
  font-weight: 600;
}
.admin-link.active:hover {
  background: #00ff84;
  color: #000;
}

/* ---- Admin top actions + profile ---- */
.admin-top-actions{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.btn.small{padding:.45rem .7rem;border-radius:.5rem;font-size:.9rem}
.admin-profile{display:flex;align-items:center;gap:.5rem;margin-left:.25rem;padding:.25rem .5rem;border:1px solid #1b2136;border-radius:.6rem;background:#0e1220}
.admin-profile .avatar{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#1b243a;color:#7cf58d;font-weight:800}
.admin-profile .who{line-height:1}
.admin-profile .who .name{font-weight:700;font-size:.95rem}
.admin-profile .who .role{font-size:.8rem;color:var(--muted)}
.admin-link.active { background:#1b243a; color:#00ff84; border:1px solid #00ff84; font-weight:600 }
.admin-link.active:hover { background:#00ff84; color:#000 }




/* Profile card visuals */
.profile-cover{height:300px;background:#0e1220 center/cover no-repeat;border-bottom:1px solid #1b2136}
.profile-avatar{width:84px;height:84px;border-radius:50%;border:2px solid #1b2136;background:#111633}

/* 3-col grid helper already exists as .grid3 in your CSS; keep using it */

/* Admin profile mini-menu in topbar */
.admin-profile.has-menu{position:relative; cursor:pointer}
.admin-profile .profile-menu{
  display:none; position:absolute; right:0; top:120%;
  background:#0e1220; border:1px solid #1b2136; border-radius:.6rem;
  min-width:180px; padding:.25rem 0; z-index:999
}
.admin-profile:hover .profile-menu{display:block}
.profile-menu li{list-style:none}
.profile-menu a{display:block; padding:.5rem .75rem; color:#cfd6ff}
.profile-menu a:hover{background:#1b243a; color:#fff}



/* --- NAV / DROPDOWN STABLE RULES --- */
.site-header { position: sticky; top: 0; z-index: 1000; }
.nav { position: relative; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; align-items: center; }
.nav ul li { position: relative; }
.nav ul li a { display: block; padding: .6rem 1rem; text-decoration: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #0f1220;
  border: 1px solid #1b2136;
  border-radius: .5rem;
  min-width: 200px;
  padding: .25rem 0;
  z-index: 1100;
}
.dropdown li a { padding: .5rem .9rem; color: #cfd6ff; }
.dropdown li a:hover { background: #1b243a; color: #fff; }

/* Desktop: show dropdown on hover */
@media (min-width: 901px) {
  .has-dropdown:hover > .dropdown { display: block; }
}

/* Mobile nav */
.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 4px;
    width: 36px; height: 36px; align-items: center; justify-content: center;
    border: 1px solid #1b2136; border-radius: .5rem; background: transparent; color: #cfd6ff;
  }
  .nav-toggle .bar { width: 18px; height: 2px; background: currentColor; display: block; }

  .nav ul { 
    display: none; 
    position: absolute; left: 0; right: 0; top: 52px;
    flex-direction: column;
    background: #0b0d14; border-top: 1px solid #1b2136;
    padding: .5rem 0;
  }
  .nav.open ul { display: flex; }
  .nav ul li { width: 100%; }
  .nav ul li a { padding: .8rem 1rem; }

  /* Mobile dropdown opens via .open class from JS (not hover) */
  .has-dropdown:hover > .dropdown { display: none; }
  .has-dropdown.open > .dropdown { 
    display: block; 
    position: relative; top: 0; left: 0; 
    border: none; border-top: 1px solid #1b2136; border-radius: 0; 
  }
}

/* Optional: right-align account dropdown */
.auth.has-dropdown .dropdown { right: 0; left: auto; }



/* Topbar profile dropdown (click-to-toggle) */
.admin-topbar { position: sticky; top: 0; z-index: 20; }
.admin-profile.has-menu { position: relative; cursor: pointer; }
.admin-profile .profile-menu {
  display: none;
  position: absolute;
  right: 0; top: 120%;
  background:#0e1220; border:1px solid #1b2136; border-radius:.6rem;
  min-width: 200px; padding:.35rem 0; z-index: 50;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.admin-profile.has-menu.open .profile-menu { display: block; }
.profile-menu li { list-style: none; }
.profile-menu a { display:block; padding:.6rem .9rem; color:#cfd6ff; text-decoration:none; }
.profile-menu a:hover { background:#1b243a; color:#fff; }




.home-section-head{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:.5rem}
.expert-card{display:block;padding:.5rem}
.expert-photo{width:100%;height:220px;object-fit:cover;border-radius:.6rem;border:1px solid #1b2136}
.expert-meta{margin-top:.5rem}



.course-hero{
  background:#0e1220 center/cover no-repeat;
  padding: 4.5rem 0 3rem; border-bottom:1px solid #1b2136;
}
.course-hero .course-title{font-size:2rem;font-weight:800;margin:0 0 .25rem}
.course-price{font-size:1.25rem;margin:.25rem 0 1rem}
.course-thumb{width:100%;max-width:560px;height:auto;border-radius:.6rem;border:1px solid #1b2136}
.prose p{margin:0 0 .75rem}



.course-hero{
  background:#0e1220 center/cover no-repeat;
  padding: 4.5rem 0 3rem; border-bottom:1px solid #1b2136;
}
.course-hero .course-title{font-size:2rem;font-weight:800;margin:0 0 .25rem}
.course-price{font-size:1.25rem;margin:.25rem 0 1rem}
.course-thumb{width:100%;max-width:560px;height:auto;border-radius:.6rem;border:1px solid #1b2136}
.prose p{margin:0 0 .75rem}



.author-box{display:flex;gap:.75rem;align-items:flex-start;border:1px solid #1b2136;border-radius:.75rem;padding:.75rem;background:#0e1220;margin-top:1rem}
.author-box-photo{width:64px;height:64px;border-radius:50%;border:1px solid #1b2136;object-fit:cover}
.author-box-name{font-weight:800}
.author-box-title{font-size:.95rem;color:#cfd6ff}
.author-box-links a{margin-right:.5rem;font-size:.9rem}


.blog-hero{background:#0e1220 center/cover no-repeat;padding:3.5rem 0;border-bottom:1px solid #1b2136}
.post-thumb{width:100%;border-radius:.6rem;border:1px solid #1b2136;margin:.5rem 0 1rem}
.divider{border:0;border-top:1px solid #1b2136;margin:1.25rem 0}


.chips{display:flex;flex-wrap:wrap;gap:.5rem}
.chip{display:inline-block;padding:.25rem .6rem;border:1px solid #1b2136;border-radius:999px;font-size:.9rem;color:#cfd6ff;text-decoration:none}
.chip:hover{background:#1b243a;color:#fff}


.blog-hero .container {
  background: linear-gradient( to right, rgba(0,0,0,.55), rgba(0,0,0,.35) );
}


.submenu.right { right: 0; left: auto; }


.blog-hero {
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 60px 0 40px;
}
.blog-hero .container {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
}


/* Dropdowns */
.nav-item { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: #0e1320; border-radius: 12px;
  padding: 10px; box-shadow: 0 10px 25px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  pointer-events: none; z-index: 50;
}
.nav-item.open > .submenu,
.nav-item:focus-within > .submenu { 
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
  pointer-events: auto;
}

/* Desktop hover opens, mobile uses .open via JS */
@media (hover:hover) and (pointer:fine) {
  .nav-item:hover > .submenu { 
    opacity: 1; visibility: visible; transform: translateY(0);
    pointer-events: auto;
  }
}

/* Ensure menu buttons look clickable */
.nav-toggle { cursor: pointer; }












.nav-item { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #0e1320;
  border-radius: 12px; padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  pointer-events: none; z-index: 50;
}
.nav-item.open > .submenu { 
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto; transition: opacity .18s, transform .18s, visibility 0s;
}

/* legacy */
.has-dropdown { position: relative; }
.has-dropdown > .dropdown {
  position: absolute; top: 100%; left: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  pointer-events: none;
}
.has-dropdown.open > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}

/* Optional desktop hover for new pattern */
@media (hover:hover) and (pointer:fine) {
  .nav-item:hover > .submenu { 
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  }
}








.site-footer {
  background: #0b0d14;
  color: #e5e8ee;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #2cf028; /* matches your brand green */
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-col h4, .footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.3rem 0;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  padding: 0;
  margin: 0.8rem 0 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1b1f2e;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #2cf028;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: #2cf028;
  color: #0b0d14;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .site-footer {
    padding: 2rem 1rem;
  }
}






/* Fix for grid overflow on mobile */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: start;
  justify-items: center;
  overflow-x: hidden;
}

/* Expert cards */
.expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111423;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  max-width: 180px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.expert-photo {
  width: 100%;
  max-width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #0b0d14;
  border: 3px solid #2cf028;
  margin-bottom: .8rem;
}

.expert-meta strong {
  color: #fff;
  font-size: 1rem;
}

.expert-meta .muted {
  color: #aaa;
  font-size: 0.9rem;
}

/* Section header */
.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.home-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}

.home-section-head .btn.ghost {
  border: 1px solid #2cf028;
  color: #2cf028;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-section-head .btn.ghost:hover {
  background: #2cf028;
  color: #0b0d14;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .expert-photo {
    width: 120px;
    height: 120px;
  }
  .expert-card {
    max-width: 120px;
    padding: 0.8rem;
  }
  .grid3 {
    justify-items: center;
  }
  .home-section-head {
    text-align: center;
    flex-direction: column;
    gap: .5rem;
  }
}




@media (max-width: 480px) {
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}













.desktop-only { display:block; }
.mobile-only  { display:none; }

@media (max-width:900px){
  .desktop-only { display:none!important; }
  .mobile-only  { display:block!important; }
}






/* === Expert Profile Overrides === */
.expert-profile .profile-cover {
  height: 600px !important;   /* Force the new height */
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.expert-profile .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #2cf028;
  object-fit: cover;
}

@media (max-width: 768px) {
  .expert-profile .profile-cover {
    height: 220px !important; /* Smaller on mobile */
  }
  .expert-profile .profile-avatar {
    width: 100px;
    height: 100px;
  }
}













