/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* ===== HEADER BANNER ===== */
.header-banner {
  min-height: 120px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #f0f8ff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 10px 0;
}
.header-banner h1, .header-banner p { color: #f0f8ff; }
.header-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.header-logo:hover { transform: scale(1.1); }

/* ===== SOCIAL BUTTONS ===== */
.social-btn {
  border-radius: 25px;
  padding: 6px 14px;
  font-weight: 500;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.25s ease;
}
.youtube-btn .social-icon { width: 100px; height: 40px; }
.social-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }
.social-icon:hover { transform: scale(1.2); filter: brightness(1.2); }

/* ===== NAVBAR ===== */
.navbar {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem; /* reduced font size */
  font-weight: 500;
  background: linear-gradient(90deg, #0b5ed7, #1d4ed8);
  border-bottom: 3px solid #0b5ed720;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.navbar .navbar-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f8ff !important;
}
.navbar .nav-link {
  font-size: 0.65rem;
  font-weight: 500;
  color: #f1f1f1 !important;
  padding: 5px 10px;
  position: relative;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover { color: #fff !important; }
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after { width: 80%; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler:focus { box-shadow: none; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .navbar .nav-link { font-size: 0.62rem; text-align: center; }
  .header-banner h1 { font-size: 1.3rem; }
  .social-follow { justify-content: center !important; margin-top: 10px; width: 100%; }
}
@media (max-width: 576px) {
  .navbar .nav-link { font-size: 0.6rem; }
  .header-banner h1 { font-size: 1.1rem; }
  .social-follow { flex-direction: column; gap: 5px; }
  .youtube-btn .social-icon { width: 80px; height: 35px; }
}
