/* Custom site-level styles that wrap the working downloader */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --ig1: #2563eb;
  --ig2: #1d4ed8;
  --ig3: #4f46e5;
  --ig4: #3b82f6;
  --ig5: #06b6d4;
  --ig6: #60a5fa;
  --ig7: #93c5fd;
  --text: #0F172A;
  --muted: #64748b;
  --bg: #ffffff;
  --light: #f8fafc;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
  --shadow-lg: 0 20px 40px rgba(16, 24, 40, 0.08);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.20);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: linear-gradient(180deg, #fff 0%, #fff 15%, #f5f9ff 75%, #fff 100%);
}

.section-title {
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Navbar */
.nav-glass {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar-dark .navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
}

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 4px;
  transition: var(--transition);
}

.navbar-dark .nav-link:hover {
  color: #fff;
  opacity: 1;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ig3), var(--ig2), var(--ig1));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* Hero */
.gradient-ig {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 80%, #06b6d4 100%);
  position: relative;
  overflow: hidden;
}

.gradient-ig::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(79, 70, 229, 0.08) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Grid Overlay Pattern */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  z-index: 1;
  pointer-events: none;
}

.hero {
  padding-top: 190px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

/* Floating Blobs Background */
.hero-blobs {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  animation: float 22s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--ig1), var(--ig2));
  top: -8%;
  left: 3%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--ig3), var(--ig4));
  bottom: -12%;
  right: 3%;
  animation-delay: -6s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -70px) scale(1.2);
  }
  100% {
    transform: translate(-40px, 50px) scale(0.85);
  }
}

.badge-ig {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Gradient Text Effect */
.text-gradient-ig {
  background: linear-gradient(45deg, #3b82f6, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.download-card {
  position: relative;
  z-index: 3;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius);
  padding: 45px 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 800px;
  transition: var(--transition);
}

.download-card:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Form layout styling */
.download-form {
  margin: 0 auto;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.input-wrapper i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 12px;
}

.form-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 18px 0;
  font-size: 15px;
  color: #ffffff;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

/* Clear and Paste buttons inside wrapper */
.clear-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: 6px;
  outline: none !important;
}

.clear-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.paste-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  white-space: nowrap;
  outline: none !important;
}

.paste-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.paste-btn:active {
  transform: translateY(0);
}

.paste-btn i {
  font-size: 12px;
  margin: 0 !important;
  color: #ffffff !important;
}

/* Autocomplete/Autofill Overrides */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1e293b inset !important;
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Helper text override for readability */
.helper-text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem;
  margin-top: 18px;
}

/* Premium Loader styles */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.premium-loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #2563eb;
  border-bottom-color: #4f46e5;
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.loading-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Glassmorphic result container styles */
.story-container {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 25px;
  color: #ffffff;
}

.form-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ig1), var(--ig2), var(--ig3));
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
  z-index: 1;
}

.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: -1;
}

.form-btn:hover::before {
  left: 150%;
  transition: 0.75s;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
  filter: brightness(1.1);
}

.helper-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-top: 18px;
}

/* Features & Steps Cards */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius);
  padding: 35px 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #e2e8f0;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.feature-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  border: 1px solid #f1f5f9;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

/* Glassmorphic feature items when inside a gradient section */
.gradient-ig .feature-item {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}

.gradient-ig .feature-item:hover {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.gradient-ig .feature-item h6 {
  color: #fff;
  font-weight: 600;
}

.gradient-ig .feature-item .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.gradient-ig .section-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.gradient-ig .section-title {
  color: #fff;
}

/* FAQ Accordion */
.faq-card {
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.02);
  transition: var(--transition);
}

.faq-card:hover {
  border-color: #cbd5e1;
}

.faq-card .card-header {
  background: #fff;
  padding: 20px 24px;
  border: 0;
}

.faq-card .btn-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  text-align: left;
}

.faq-card .btn-link::after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-size: 18px;
  color: #94a3b8;
  transition: transform 0.2s;
}

.faq-card .btn-link:not(.collapsed)::after {
  transform: rotate(180deg);
  color: var(--ig1);
}

.faq-card .card-body {
  padding: 0 24px 24px;
  color: #64748b;
  font-size: 0.95rem;
}

/* SEO content block styling */
#seo .card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

#seo h2 {
  font-weight: 700;
  color: var(--text);
  margin-top: 30px;
}

#seo h2.h2 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--ig3), var(--ig1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
}

#seo h2.h3 {
  font-size: 1.4rem;
  border-left: 4px solid var(--ig1);
  padding-left: 14px;
}

#seo p {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.7;
}

#seo ul, #seo ol {
  font-size: 0.98rem;
  color: #475569;
  padding-left: 20px;
  margin-bottom: 25px;
}

#seo li {
  margin-bottom: 8px;
}

#seo table {
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e2e8f0;
  margin: 25px 0;
}

#seo th {
  background-color: #f8fafc;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
}

#seo td {
  border-bottom: 1px solid #f1f5f9;
}

/* Download box adjustments */
.story-container {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  margin-top: 25px;
}

.col-md-8 .image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  background: #000;
}

.col-md-8 .image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.col-md-8 .btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--ig1), var(--ig2));
  color: #fff !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: 0;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}

.col-md-8 .btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
}

/* Blog Front-end Layout */
.blog-card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: var(--transition);
  border: 1px solid #f1f5f9;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #e2e8f0;
}

.blog-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 25px;
}

.blog-card-meta {
  font-size: 0.825rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
}

.blog-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--ig1);
}

.blog-card-text {
  color: #64748b;
  font-size: 0.925rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-weight: 600;
  color: var(--ig1);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--ig3);
  text-decoration: none;
  padding-left: 4px;
}

/* Blog Single View */
.blog-post-header {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, #1e1b4b, #312e81, #0f172a);
  color: #fff;
  position: relative;
}

.blog-post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 80%);
  pointer-events: none;
}

.blog-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.blog-meta-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-post-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.blog-featured-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.blog-content h2 {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-content h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 25px;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-sidebar-card {
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 25px;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.sidebar-post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.sidebar-post-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-post-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-post-item-title a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-post-item-title a:hover {
  color: var(--ig1);
}

.sidebar-post-item-date {
  font-size: 0.775rem;
  color: var(--muted);
}

/* Footer */
.gradient-footer {
  background: linear-gradient(135deg, #0b1220, #0f172a);
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.security-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 30px;
}

.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 50px;
  padding-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  .blog-post-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 70px 0;
  }
  .display-4 {
    font-size: 2rem;
  }
  .form-group {
    flex-direction: column;
  }
  .form-btn, .input-wrapper {
    width: 100%;
  }
}

/* Blog Content Images styling */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px auto;
    display: block;
}
.blog-content a.ql-link-image {
    display: block;
    text-align: center;
    text-decoration: none;
    border: none;
}
.blog-content a.ql-link-image img {
    display: inline-block;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.blog-content a.ql-link-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
