/* --------------------
 Global Styling
---------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
  line-height: 1.5;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

/* --------------------
 Header
---------------------*/
header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand h1 {
  font-size: 22px;
  font-weight: 700;
  color: #0b5ed7;
}

.brand span {
  font-size: 12px;
  color: #555;
}

/* Logo Placeholder */
.logo {
  width: 40px;
  height: 40px;
  background: #0b5ed7;
  border-radius: 50%;
}

/* --------------------
 Navigation Menu
---------------------*/
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  padding: 6px 0;
}

.menu a:hover {
  color: #0b5ed7;
}

/* Call-to-action button */
.menu .cta {
  background: #0b5ed7;
  color: #fff !important;
  padding: 7px 14px;
  border-radius: 6px;
  position: relative;
}

.dot {
  width: 8px;
  height: 8px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

/* Social icons */
.social a {
  margin-left: 10px;
  text-decoration: none;
  font-size: 20px;
}

/* --------------------
 Mobile Menu (CSS Only)
---------------------*/
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

#nav-toggle {
  display: none;
}

#nav-toggle:checked ~ .menu {
  max-height: 500px;
  opacity: 1;
}

@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hamburger {
    display: flex;
  }
}

/* --------------------
 Hero Section
---------------------*/
.hero {
  background: linear-gradient(120deg, #0b5ed7, #4cb2ff);
  color: white;
  padding: 70px 0;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
}

/* --------------------
 Sections
---------------------*/
.section-title {
  margin-bottom: 25px;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #0b5ed7;
}

.note {
  color: #777;
  font-size: 15px;
}

/* --------------------
 Cards + Grid
---------------------*/
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Lists */
.list li {
  margin-bottom: 6px;
}

/* Sub text */
.sub {
  font-size: 14px;
  color: #666;
}

/* --------------------
 YouTube Section
---------------------*/
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.video iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

/* --------------------
 Footer
---------------------*/
footer {
  background: #0b5ed7;
  color: white;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a,
.footer-social a {
  margin-left: 10px;
  text-decoration: none;
  color: white;
  font-size: 14px;
}


ul.HMH-follow-buttons a:hover{color:#03c9a9}.HMH-follow-buttons.b-title li{text-align:center;background-color:#fff;width:31.5%;border:1px solid #eee}.HMH-follow-buttons.b-title a{text-transform:uppercase;text-decoration:none;margin:20px auto 0;font-size:10px}.HMH-follow-buttons li{display:inline-block;padding:0 0 7px;margin-bottom:3px!important}.HMH-follow-buttons li:last-child{border-bottom:1px solid #eee!important;padding-bottom:7px!important}.HMH-follow-buttons.b-title i{margin:0 auto 10px;display:block}.HMH-follow-buttons.style-1 i{height:32px;width:32px;line-height:32px;font-size:20px;margin:10px auto 0;text-align:center;color:#333}
