/* Top bar */
.top-bar {
  background: #1f4ea3;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar .container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  padding-right: 10px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* IMPORTANT: this restores original spacing */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; /* 🔥 THIS WAS MISSING */
}

.container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
  padding-right: 5px;
}

/* Logo */
.logo img {
  height: 50px;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding-right: 5px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #1f4ea3;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: #f5f7fb;
  color: #1f4ea3;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Button */
.btn-start {
  background: #ff7a00;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.btn-start:hover {
  background: #e56700;
}

/* Mobile */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: 0.4s;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  font-size: 24px;
  align-self: flex-end;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding-left: 15px;
  flex-direction: column;
  gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .top-bar {
    display: none;
  }
}

/* Button RIGHT */
.btn-start {
  background: #ff7a00;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-left: auto; /* pushes button to right */
  text-decoration: none;
}

.btn-start:hover {
  background: #e96d00;
}

/* ================= HERO SECTION ================= */

.blog-hero {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 20px;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.blog-hero h1 {
  position: relative;
  font-size: 42px;
  font-weight: 700;
  max-width: 900px;
  z-index: 1;
}

/* ================= BLOG CONTENT ================= */

.blog-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.9;
  font-size: 17px;
  color: #333;
}

.blog-content h2 {
  margin-top: 35px;
  font-size: 24px;
  font-weight: 600;
  color: #111;
}

.blog-content ul {
  margin-left: 20px;
}

.blog-content li {
  margin-bottom: 8px;
}

/* ================= BACK BUTTON ================= */

.blog-back {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.blog-back:hover {
  background: #e68900;
}

/* ================= FOOTER FIX ================= */

.footer-bottom {
  text-align: center;
  padding: 15px 0;
}
