  /* Heading styles */
  .blog-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;               /* bold but crisp */
    font-size: 3rem;                /* slightly bigger */
    line-height: 1.15;              /* tighter for impact */
    letter-spacing: -0.25px;        /* smooth, clean look */
    color: #111;
    margin: 0 50px 18px;            /* breathing space */
    text-align: left;

    /* Crisp font rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    margin-top: 5rem;
  }

  /* Description styles */
  .blog-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;             /* slightly bigger */
    line-height: 1.7;               /* improved readability */
    letter-spacing: 0.25px;
    color: #555;
    margin: 0 50px;
    max-width: 700px;
    text-align: left;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 3rem;
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .blog-heading { font-size: 2.6rem; margin: 0 25px 16px; margin-top: 3rem }
    .blog-description { font-size: 1.15rem; margin: 0 25px; max-width: 90%; }
  }

  @media (max-width: 768px) {
    .blog-heading { font-size: 2.2rem; margin: 0 20px 14px; margin-top: 3rem; }
    .blog-description { font-size: 1.1rem; margin: 0 20px; max-width: 95%; }
  }

  @media (max-width: 480px) {
    .blog-heading { font-size: 1.8rem; margin: 0 15px 12px; margin-top: 2.5rem; }
    .blog-description { font-size: 1rem; margin: 0 15px; line-height: 1.5; }
  }
   .hero-image {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 50px auto;             /* spacing around image */
    border-radius: 30px;           /* more rounded corners */
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15); /* soft, deep shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem;
  }

  /* Optional pseudo overlay for subtle gloss effect */
  .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(0,0,0,0));
    pointer-events: none;
  }

  .hero-image:hover {
    transform: scale(1.03) rotateZ(0.3deg);  /* slight 3D hover tilt */
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
  }

  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .hero-image { border-radius: 25px; margin: 40px auto; }
    .hero-image { 
    border-radius: 15px; 
    width: calc(100% - 30px); /* 15px space on each side */
    margin: 20px auto;
  }
  }

  @media (max-width: 768px) {
    .hero-image { border-radius: 20px; margin: 30px auto; }
    .hero-image { 
    border-radius: 15px; 
    width: calc(100% - 30px); /* 15px space on each side */
    margin: 20px auto;
  }
  }

  @media (max-width: 480px) {
    .hero-image { border-radius: 15px; margin: 20px auto; }
    .hero-image { 
    border-radius: 15px; 
    width: calc(100% - 30px); /* 15px space on each side */
    margin: 20px auto;
  }
  }
  @media (max-width: 480px) {
  .hero-image { 
    border-radius: 15px; 
    width: calc(100% - 30px); /* 15px space on each side */
    margin: 20px auto;
  }
}
/* ===================== Wrapper ===================== */
.blog-sidebar-wrapper {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

/* ===================== Desktop Sidebar ===================== */
.blog-sidebar {
  flex: 1;
  max-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  top: 40px;
  height: fit-content;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-sidebar h2 {
  margin-top: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 500; /* softer heading */
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #111;
}

.blog-sidebar a {
  display: block;
  margin-bottom: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400; /* softer links */
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.2s ease;
}

.blog-sidebar a:hover {
  color: #0077ff;
  transform: translateX(4px); /* subtle hover effect */
}

/* ===================== Mobile Sidebar ===================== */
.blog-mobile-btn {
  display: none;
}

.blog-sidebar.mobile-overlay {
  display: none; /* hide on desktop */
}

/* ===================== Responsive: Mobile ===================== */
@media (max-width: 768px) {

  .blog-sidebar-wrapper {
    flex-direction: column;
  }

  .blog-sidebar {
    display: none;
  }

  /* Mobile Button */
  .blog-mobile-btn {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0077ff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .blog-mobile-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  }

  .blog-mobile-btn img {
    width: 28px;
    height: 28px;
  }

  /* Mobile Overlay Menu */
  /* Mobile Overlay Menu */
.blog-sidebar.mobile-overlay {
    display: block;
    position: fixed !important;
    bottom: 100px !important;  /* anchor to bottom */
    right: 25px !important;   /* anchor to right */
    width: 250px;
    max-height: 320px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px); /* slide from below */
    transition: transform 0.3s ease, opacity 0.3s ease;
    top: auto !important;        /* remove any top */
}


  .blog-sidebar.mobile-overlay.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile Sidebar Links */
  .blog-sidebar.mobile-overlay h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .blog-sidebar.mobile-overlay a {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

}

/* ===================== Responsive: Tablet ===================== */
@media (max-width: 1024px) {
  .blog-sidebar {
    margin-left: 1rem;
  }
  .blog-content {
    margin-right: 1rem;
  }
}

/* ===================== Smooth Scrollbar for Mobile Overlay ===================== */
.blog-sidebar.mobile-overlay::-webkit-scrollbar {
  width: 6px;
}

.blog-sidebar.mobile-overlay::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

.blog-sidebar.mobile-overlay::-webkit-scrollbar-track {
  background: transparent;
}
.section-with-image {
  display: flex;
  align-items: center;     /* vertical center of image and text */
  gap: 30px;
  margin: 50px 0;
  flex-wrap: wrap;         /* responsive stacking on small screens */
}

.text-content {
  flex: 2 1 60%;
}

.text-content h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #222;
}

.text-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.image-content {
  flex: 1 1 35%;
  display: flex;
  justify-content: center; /* horizontal centering inside image container */
  align-items: center;     /* vertical centering */
}

.image-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .section-with-image {
    flex-direction: column;
    text-align: center;
  }

  .text-content, .image-content {
    flex: 1 1 100%;
  }

  .image-content {
    margin-top: 20px;
  }
}
/* ===== IMPORT MODERN & SMOOTH FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

/* ===== BASE TYPOGRAPHY ===== */
.blog-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  font-family: 'Lexend', 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;       /* comfortable for long reads */
  color: #111;
  letter-spacing: 0.25px;  /* soft spacing */
  font-weight: 400;
}

/* ===== SECTIONS ===== */
.blog-content section {
  margin-bottom: 28px;    /* slightly more breathing room */
}

/* ===== HEADINGS ===== */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  font-family: 'Inter', 'Lexend', sans-serif;
  font-weight: 400;       /* light, soft headings */
  color: #111;
  line-height: 1.3;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
}

.blog-content h1 { font-size: 2.6rem; }
.blog-content h2 { font-size: 2.2rem; }
.blog-content h3 { font-size: 1.8rem; }
.blog-content h4 { font-size: 1.5rem; }
.blog-content h5 { font-size: 1.3rem; }
.blog-content h6 { font-size: 1.1rem; }

/* ===== PARAGRAPHS ===== */
.blog-content p {
  font-size: 1rem;
  margin: 0 0 16px 0;
  color: #222;
  font-weight: 300;        /* soft, readable text */
}

/* ===== LINKS ===== */
.blog-content a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}

.blog-content a:hover {
  color: #004a80;
  text-decoration: underline;
}

/* ===== QUOTES / ACCENTS ===== */
.blog-content blockquote {
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #333;
  margin: 16px 0;
  padding-left: 14px;
  border-left: 3px solid #0077cc;
  font-style: italic;
}

/* ===== LISTS ===== */
.blog-content ul,
.blog-content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.blog-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== STRONG / EMPHASIS ===== */
.blog-content strong {
  font-weight: 500;   /* subtle emphasis */
}

.blog-content em {
  font-style: italic;
}

/* ===== HORIZONTAL RULE ===== */
.blog-content hr {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 1024px) {
  .blog-content h1 { font-size: 2.3rem; }
  .blog-content h2 { font-size: 2rem; }
  .blog-content h3 { font-size: 1.7rem; }
  .blog-content p  { font-size: 0.98rem; line-height: 1.7; }
}

@media (max-width: 768px) {
  .blog-content h1 { font-size: 2rem; }
  .blog-content h2 { font-size: 1.8rem; }
  .blog-content h3 { font-size: 1.5rem; }
  .blog-content p  { font-size: 0.95rem; line-height: 1.65; }
}

@media (max-width: 480px) {
  .blog-content h1 { font-size: 1.8rem; }
  .blog-content h2 { font-size: 1.6rem; }
  .blog-content h3 { font-size: 1.3rem; }
  .blog-content p  { font-size: 0.9rem; line-height: 1.55; }
}
.video-section {
  text-align: center;
  padding: 3rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

.video-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #666;
  font-weight: 600;
  font-size: 1.1rem;
}
.video-divider::before,
.video-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 0 1rem;
}
.video-divider .icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.7;
}

.video-title {
  font-size: 1.8rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 🌐 Responsive Design */
@media (max-width: 1024px) {
  .video-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .video-section {
    padding: 2.5rem 1rem;
  }
  .video-title {
    font-size: 1.4rem;
  }
  .video-wrapper {
    width: 95%;
  }
}
@media (max-width: 480px) {
  .video-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .video-divider {
    font-size: 1rem;
  }
  .video-wrapper {
    width: 100%;
  }
}
