:root{
  --blue:#0b2aa6;
  --blue2:#101F9D;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
  --card:#ffffff;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; color:var(--text); background:#fff; }
a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

.top-info{
  background:var(--blue);
  color:#fff;
  font-size:13px;
}
.top-info-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
}
.top-left{ display:flex; gap:14px; align-items:center; }
.top-left a{ color:#fff; opacity:.95; }
.sep{ opacity:.5; }
.top-right{ display:flex; gap:10px; }
.top-right a{
  width:22px; height:22px; display:grid; place-items:center;
  border-radius:6px; background:rgba(255,255,255,.12);
}

/* Navbar */
.nav{
  position:sticky; top:0; z-index:50;
  box-shadow:0 10px 30px rgba(17,24,39,.06);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:7px 15px;
  background-color: #fff;
  border-radius: 15px;
}
.logo > img {
  width: 60px;
  height:60px;
  place-items:center;
}
.menu{
  display:flex; gap:18px; align-items:center;
}
.menu a{ font-weight:600; color:#111827; }
.menu a.active{ color:var(--blue); }

.btn{
  background:var(--blue);
  color:#fff !important;
  padding:10px 16px;
  border-radius:10px;
  font-weight:800;
}

/* Dropdown */
.dropdown{ position:relative; }
.dropbtn{
  border:0; background:transparent; cursor:pointer;
  font-weight:700; color:#111827;
}
.dropmenu{
  position:absolute; top:40px; left:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 18px 40px rgba(17,24,39,.12);
  min-width:200px;
  display:none;
  overflow:hidden;
}
.dropmenu a{ display:block; padding:10px 12px; font-weight:600; }
.dropmenu a:hover{ background:#f4f6ff; color:var(--blue); }
.dropdown:hover .dropmenu{ display:block; }

/* Hamburger */
.hamburger{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px;
  background:#111827;
  margin:6px 10px;
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  padding:14px 20px;
  background:#fff;
}
.mobile-menu a{ display:block; padding:10px 0; font-weight:700; }
.mobile-menu .btn.full{ display:block; text-align:center; margin-top:10px; }

/* Hero */
.hero{
  position:relative;
  background:
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=60")
    center/cover no-repeat;
  min-height:240px;
}
.hero-overlay{
  position:absolute; inset:0;
  background:rgba(0,0,0,.45);
}
.hero-inner{
  position:relative;
  padding:46px 0 18px;
  color:#fff;
  text-align:center;
}
.hero h1{
  margin:50px 0 14px;
  font-size:38px;
  font-weight:900;
}
.search-box{
  width:min(520px, 100%);
  margin:0 auto 12px;
  display:flex;
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}
.search-box input{
  border:0; outline:0;
  padding:12px 14px;
  width:100%;
}
.search-box button{
  border:0;
  width:52px;
  background:#f3f4f6;
  cursor:pointer;
}

.tabs{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  padding-top:10px;
}
.tab{
  font-size:12px;
  font-weight: 600;
  color:#1C1632;
  padding:6px 0;
  border-bottom:2px solid transparent;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.tab.active{ opacity:1; border-bottom-color:#1C1632; }

/* Main sections */
.page{ padding:26px 0 40px; }
.section{
  margin-bottom:30px;
}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  font-weight:900;
}
.section-head a{
  color:var(--blue);
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
}

.section-grid{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:26px;
}
@media (max-width: 980px){
  .section-grid{ grid-template-columns:1fr; }
}

.feature{
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.feature img{
  width:100%;
  height:280px;
  object-fit:cover;
}
.feature .pad{ padding:14px; }
.meta{
  display:flex; gap:10px; align-items:center;
  font-size:12px; color:var(--muted);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid var(--border);
  padding:4px 10px;
  border-radius:999px;
  background:#fff;
  font-size:12px;
  color:#111827;
}
.feature h3{
  margin:10px 0 8px;
  font-size:22px;
  font-weight:900;
}
.feature p{ margin:0; color:var(--muted); font-size:13px; line-height:1.5; }

.list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.item{
  display:grid;
  grid-template-columns: 150px 1fr;
  gap:12px;
  align-items:start;
  border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
}
.item img{
  width:150px;
  height:92px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid var(--border);
}
.item .t1{
  color:var(--blue);
  font-weight:900;
  font-size:14px;
  margin:0 0 6px;
}
.item .t2{
  margin:0 0 6px;
  font-weight:900;
  font-size:14px;
}
.item .t3{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}

/* Recent slider */
.recent{ margin-top:10px; }
.recent-head{
  display:flex; align-items:center; justify-content:space-between;
  margin:6px 0 12px;
}
.recent-head h2{
  margin:0;
  font-size:28px;
  font-weight:900;
}
.arrows{ display:flex; gap:10px; }
.circle{
  width:34px; height:34px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size:18px;
}
.recent-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: 280px;
  gap:16px;
  overflow:hidden;
}
.recent-card{
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.recent-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}
.recent-card .pad{ padding:12px; }
.recent-card h4{ margin:8px 0 8px; font-weight:900; }
.recent-card p{ margin:0 0 10px; font-size:13px; color:var(--muted); line-height:1.5; }
.recent-card .learn{
  display:inline-block;
  border:1px solid var(--border);
  padding:9px 12px;
  border-radius:8px;
  font-weight:800;
}

/* Footer */
.footer{
  background:var(--blue);
  color:#fff;
  padding:26px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:22px;
  padding-bottom:18px;
}
.footer h3{ margin:0 0 10px; font-size:14px; letter-spacing:.3px; }
.footer a{ color:#fff; opacity:.9; display:block; padding:4px 0; font-size:13px; }
.footer p{ margin:0; opacity:.9; font-size:13px; line-height:1.5; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding:12px 0;
  text-align:center;
  font-size:12px;
  opacity:.85;
}

@media (max-width: 980px){
  .menu{ display:none; }
  .hamburger{ display:block; position: relative; }
  .hamburger i {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
  .footer-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:30px; }
}

.icon-link{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  opacity:.95;
}

.ico{
  width:16px;
  height:16px;
  object-fit:contain;
}

.soc{
  width:16px;
  height:16px;
  object-fit:contain;
  filter: brightness(0) invert(1); /* optional if icons are dark */
}

.ico-btn{
  width:18px;
  height:18px;
  object-fit:contain;
}

.search-results{ padding:18px 0 0; }
.search-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.search-head h2{ margin:0; font-size:22px; font-weight:900; }
.clear-btn{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:800;
}
.search-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){
  .search-grid{ grid-template-columns:1fr; }
}
.search-card{
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.search-card img{ width:100%; height:160px; object-fit:cover; display:block; }
.search-card .pad{ padding:12px; }
.search-card h4{ margin:8px 0 8px; font-weight:900; }
.search-card p{ margin:0; font-size:13px; color:var(--muted); line-height:1.5; }

.search-pager{ display:flex; align-items:center; justify-content:center; gap:12px; margin:14px 0 0; }
.btn-lite{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:800;
}

