@charset "UTF-8";
.navbar {
  background-color: #1877F2;
  padding: 0.01rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo a {
  text-decoration: none;
}
.navbar .nav-logo h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
}
.navbar .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.navbar .nav-menu .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.navbar .nav-menu .nav-link:hover, .navbar .nav-menu .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.navbar .hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #1877F2;
    width: 96%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .navbar .nav-menu.active {
    left: 0;
  }
  .navbar .nav-menu .nav-item {
    margin: 1rem 0;
  }
  .navbar .hamburger {
    display: flex;
  }
  .navbar .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.footer {
  background-color: #3b5998;
  color: #ffffff;
  padding: 3rem 0 1rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer .footer-content .footer-section h3, .footer .footer-content .footer-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer .footer-content .footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer .footer-content .footer-section ul {
  list-style: none;
}
.footer .footer-content .footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-content .footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-section ul li a:hover {
  color: #ffffff;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* ========== Colors ========== */
/* ========== Global Styles ========== */
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #f8f9fa;
  color: #222831;
  line-height: 1.7;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* ========== Header ========== */
.site-header {
  background: linear-gradient(135deg, #1877F2 0%, #3b5998 100%);
  border-bottom: 1px solid #d9e0e7;
  margin-top: 90px;
}
.site-header .eyebrow {
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.5rem;
}
.site-header h2 {
  margin: 1em 0 1em 0;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.6rem, 2.2vw + 1.2rem, 2.6rem);
}
.site-header .lede {
  color: #ffffff;
  font-size: clamp(1rem, 0.3vw + 1rem, 1.125rem);
  max-width: 65ch;
  margin: 0;
}

/* Layout */
.content-area {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.content-area .content {
  flex: 3;
}
.content-area .sidebar {
  flex: 1;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Blog Content */
.blog-article {
  background: #fff;
  padding: 1.5rem;
  width: 60%;
  border: 1px solid #d9e0e7;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.blog-article h2 {
  color: #0095ff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-article p {
  margin-bottom: 1rem;
}

/* Checklist */
.checklist {
  padding-left: 1.2rem;
}
.checklist li {
  margin-bottom: 0.6rem;
}
.checklist li::marker {
  content: "✔ ";
  color: #0095ff;
}

/* CTA Box */
.cta-box {
  background: rgba(0, 149, 255, 0.1);
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid #0095ff;
  border-radius: 8px;
  text-align: center;
}
.cta-box h3 {
  margin-bottom: 0.5rem;
}
.cta-box .btn-primary {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #0095ff;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.3s ease;
}
.cta-box .btn-primary:hover {
  background: rgb(0, 119.2, 204);
  text-decoration: none;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  right: 0;
  width: 300px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar h3 {
  font-size: 1.4rem;
  color: #023e8a;
  margin-bottom: 10px;
  border-bottom: 2px solid #0077b6;
  padding-bottom: 5px;
}
.sidebar .related-blogs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar .related-blogs li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
}
.sidebar .related-blogs li a:hover {
  transform: translateY(-3px);
  background: #eaf5ff;
}
.sidebar .related-blogs li a img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
}
.sidebar .related-blogs li a span {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.3;
}
.sidebar .related-blogs li a span:hover {
  color: #0077b6;
}
.sidebar .cta-box {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.sidebar .cta-box h4 {
  color: #023e8a;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.sidebar .cta-box p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}
.sidebar .cta-box .cta-btn {
  display: inline-block;
  background-color: #ff6b35;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.sidebar .cta-box .cta-btn:hover {
  background-color: #e85a28;
}

/* Mobile & Tablet View */
@media (max-width: 768px) {
  .content-area {
    flex-direction: column; /* ✅ Stack vertically */
  }
  .blog-article {
    width: 100%;
  }
  .sidebar {
    position: relative; /* ✅ Disable sticky on mobile */
    top: 0;
    width: 100%;
    margin-top: 20px 0;
  }
}
/* Footer */
.site-footer {
  background: #222831;
  color: #fff;
  padding: 1rem 0;
  margin-top: 3rem;
  text-align: center;
}/*# sourceMappingURL=new.css.map */