:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #7c3aed;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: var(--gray-900);
    color: var(--gray-100);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dark-mode .site-header {
    background: var(--gray-800);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.875rem 16px;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem; /* Increased from 1rem to 3rem for more space */
}

@media (max-width: 768px) {
    .header-left {
        gap: 1rem;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    padding: 0.5rem;
}

.dark-mode .mobile-menu-toggle {
    color: white;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Logo Styles with Hover Effect */
.logo a {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo-text:hover {
    letter-spacing: 0.5px;
}

.main-nav {
    flex: 1;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: white;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .dark-mode .main-nav {
        background: var(--gray-800);
    }
    
    .main-nav.active {
        left: 0;
    }
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem; /* Reduced gap between menu items */
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

/* Menu Item Styles with Hover Effects */
.nav-item a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    display: inline-block;
}

.dark-mode .nav-item a {
    color: var(--gray-200);
}

/* Underline effect on hover */
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item a:hover::after {
    width: 80%;
}

/* Background color on hover */
.nav-item a:hover {
    background: var(--gray-100);
    color: var(--primary-color);
}

.dark-mode .nav-item a:hover {
    background: var(--gray-700);
    color: var(--primary-light);
}

/* Active menu item */
.nav-item.active a {
    color: var(--primary-color);
    background: var(--gray-100);
}

.dark-mode .nav-item.active a {
    background: var(--gray-700);
}

.nav-item.active a::after {
    width: 80%;
    background: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.dark-mode .lang-btn {
    background: var(--gray-700);
    border-color: var(--gray-600);
    color: white;
}

.lang-btn:hover {
    background: var(--gray-200);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.dark-mode .lang-dropdown-menu {
    background: var(--gray-700);
}

.language-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.dark-mode .lang-dropdown-menu a {
    color: white;
}

.lang-dropdown-menu a:hover {
    background: var(--gray-100);
}

.dark-mode .lang-dropdown-menu a:hover {
    background: var(--gray-600);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dark-mode .theme-toggle {
    background: var(--gray-700);
    border-color: var(--gray-600);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-700);
}

.dark-mode .theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: none;
}

.dark-mode .theme-toggle .moon-icon {
    display: block;
    color: white;
}
/* ══════════════════════════════════════════════════════════
   HERO SECTION — Clean Dynamic Design | bg: #2563EB
══════════════════════════════════════════════════════════ */

.hero-section {
  position: relative;
  background: #2563EB;
  overflow: hidden;
  isolation: isolate;
  padding: 50px 0
}

/* ── Animated diagonal light beam ── */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent            0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.05) 60%,
    transparent            100%
  );
  transform: skewX(-15deg);
  animation: beamSlide 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── Remove bottom shape — nothing here ── */

@keyframes beamSlide {
  0%   { left: -40%; opacity: 0; }
  20%  { opacity: 1;              }
  80%  { opacity: 1;              }
  100% { left:  90%; opacity: 0;  }
}

/* ── Container ── */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-image: radial-gradient(
    circle,
    rgba(255,255,255,0.09) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

/* ── Content ── */
.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── Pulsing glow behind text ── */
.hero-content::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(96,165,250,0.30) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(55px);
  pointer-events: none;
  animation: blobPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes blobPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);     opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.18);  opacity: 1;   }
}

/* ── Eyebrow badge ── */
.hero-content::after {
  content: '✦  Professional Digital Solutions  ✦';
  display: block;
  order: -1;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 7px 20px;
  backdrop-filter: blur(6px);
  animation: heroFadeUp 0.7s 0s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Title ── */
.hero-title {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #ffffff;
  animation: heroFadeUp 0.8s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Animated underline accent ── */
.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.15)
  );
  border-radius: 4px;
  margin: 14px auto 0;
  animation: lineGrow 0.8s 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes lineGrow {
  from { width: 0;    opacity: 0; }
  to   { width: 80px; opacity: 1; }
}

/* ── Description ── */
.hero-description {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  animation: heroFadeUp 0.8s 0.24s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Hide Buttons ── */
.hero-buttons {
  display: none;
}

/* ── Shared fade-up keyframe ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Decorative spinning circles ── */
.hero-deco-1,
.hero-deco-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-deco-1 {
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(255,255,255,0.10);
  top: -80px;
  right: -80px;
  animation: spinSlow 22s linear infinite;
}

.hero-deco-2 {
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(255,255,255,0.07);
  bottom: 30px;
  left: -50px;
  animation: spinSlow 15s linear infinite reverse;
}

@keyframes spinSlow {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-title       { letter-spacing: -1px; }
  .hero-description { font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-content::before { width: 280px; height: 280px; }
}

.ad-container {
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Sections */
.section {
    padding: 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dark-mode .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.dark-mode .tools-section {
    background: var(--gray-900);
}

.section-header {
    text-align: center;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-800);
    text-align: center;
    display: block;
    width: 100%;
    clear: both;
}

.dark-mode .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid - 5 cards per line */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 40px 0;
}

@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

/* Tool Card */
.tool-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dark-mode .tool-card {
    background: var(--gray-800);
}

/* Soft colors on corners - Top Right */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

/* Soft colors on corners - Bottom Left */
.tool-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    border-radius: 0 100% 0 0;
    pointer-events: none;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Tool Icon - Left side with background */
.tool-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tool-icon i {
    font-size: 1.55rem;
    color: white;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.tool-card:hover .tool-icon i {
    transform: rotate(5deg);
}

/* Double line below title */
.tool-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
    position: relative;
    display: inline-block;
}

.dark-mode .tool-title {
    color: white;
}

/* Double line effect */
.tool-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.tool-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.6;
}

/* Tool Description */
.tool-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 20px 0 0;
    min-height: 60px;
}

.dark-mode .tool-description {
    color: var(--gray-400);
}

/* Smaller Button */
.tool-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
    min-width: 100px;
}

.tool-card .btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.tool-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.tool-card .btn:hover {
    transform: translateY(-2px);
    gap: 10px;
}

.tool-card .btn svg {
    width: 12px;
    height: 12px;
}

.tool-card .btn-block {
    width: auto;
    display: inline-flex;
}

/* Ad Container */
.ad-container {
    margin: 20px auto;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-section {
        padding: 50px 0;
    }
    
    .tool-icon {
        width: 45px;
        height: 45px;
    }
    
    .tool-icon i {
        font-size: 1.25rem;
    }
    
    .tool-title {
        font-size: 1rem;
    }
    
    .tool-description {
        font-size: 0.8rem;
        min-height: auto;
    }
    
    .tool-card .btn {
        padding: 5px 12px;
        font-size: 0.7rem;
        min-width: 80px;
    }
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* How To Use Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.dark-mode .faq-item {
    border-color: var(--gray-700);
}

.faq-question {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.2s ease;
}

.dark-mode .faq-question {
    background: var(--gray-800);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

/* ============================================
   BLOG PAGE STYLES - COMPLETE
   ============================================ */

/* Blog Listing Page */
.blog-listing-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.dark-mode .blog-listing-section {
    background: var(--gray-900);
}


.dark-mode .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.dark-mode .blog-card {
    background: var(--gray-800);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

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

.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
}

.dark-mode .blog-title a {
    color: white;
}

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

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.dark-mode .blog-excerpt {
    color: var(--gray-400);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-prev,
.pagination-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.dark-mode .pagination-prev,
.dark-mode .pagination-next {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--gray-300);
}

.pagination-prev:hover,
.pagination-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s;
}

.dark-mode .pagination-number {
    background: var(--gray-800);
    border-color: var(--gray-700);
    color: var(--gray-300);
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 16px;
    color: var(--gray-500);
    font-size: 1.1rem;
}

.dark-mode .no-posts {
    background: var(--gray-800);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-listing-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

.blog-detail-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.dark-mode .blog-detail-section {
    background: var(--gray-900);
}

.blog-detail-header {
    max-width: 90%;
    margin: 0 auto 30px;
    text-align: center;
}

.blog-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.blog-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb span {
    margin: 0 8px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--gray-800);
}

.dark-mode .blog-detail-title {
    color: white;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.blog-detail-meta i {
    margin-right: 8px;
}

.blog-detail-image {
    max-width: 590px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border:2px dashed blue;
    padding:20px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    max-width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.dark-mode .blog-detail-content {
    background: var(--gray-800);
}

/* Blog Content Typography */
.blog-detail-content h1 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem;
    color: var(--gray-800);
}

.dark-mode .blog-detail-content h1 {
    color: white;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
    color: var(--gray-800);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.dark-mode .blog-detail-content h2 {
    color: white;
    border-bottom-color: var(--gray-700);
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--gray-800);
}

.dark-mode .blog-detail-content h3 {
    color: var(--gray-200);
}

.blog-detail-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.dark-mode .blog-detail-content p {
    color: var(--gray-300);
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin: 0.5rem 0;
    line-height: 1.7;
    color: var(--gray-600);
}

.dark-mode .blog-detail-content li {
    color: var(--gray-300);
}

.blog-detail-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--gray-600);
}

.dark-mode .blog-detail-content blockquote {
    background: var(--gray-700);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.blog-detail-content code {
    background: var(--gray-100);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.dark-mode .blog-detail-content code {
    background: var(--gray-700);
    color: #e5e7eb;
}

.blog-detail-content pre {
    background: var(--gray-800);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-detail-content pre code {
    background: none;
    padding: 0;
    color: white;
}

/* Related Posts */
.related-posts {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.dark-mode .related-posts {
    border-top-color: var(--gray-700);
}

.related-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gray-800);
}

.dark-mode .related-posts h3 {
    color: white;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.dark-mode .related-post-card {
    background: var(--gray-800);
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-post-card a {
    text-decoration: none;
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 15px;
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.dark-mode .related-post-card h4 {
    color: var(--gray-200);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-section {
        padding: 40px 0;
    }
    
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .blog-detail-content {
        padding: 25px;
    }
    
    .blog-detail-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-detail-content p {
        font-size: 1rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--gray-700);
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    color: white;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number,
.pagination-prev,
.pagination-next {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.dark-mode .pagination-number,
.dark-mode .pagination-prev,
.dark-mode .pagination-next {
    border-color: var(--gray-700);
    color: var(--gray-300);
}

.pagination-number.active,
.pagination-number:hover,
.pagination-prev:hover,
.pagination-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .tools-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   STATIC PAGES STYLES (About, Contact, Privacy, Terms, etc.)
   ============================================ */

/* Page Header */
.page-header {
    background: transparent;
    padding: 10px 0;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* Page Content */
.page-section {
    padding: 40px 0;
}

.page-content {
    max-width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dark-mode .page-content {
    background: #1f2937;
}

/* Typography */
.page-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.dark-mode .page-content h1 {
    color: white;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #1f2937;
}

.dark-mode .page-content h2 {
    color: #e5e7eb;
}

.page-content h3 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.75rem;
    color: #374151;
}

.dark-mode .page-content h3 {
    color: #d1d5db;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4b5563;
}

.dark-mode .page-content p {
    color: #9ca3af;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #4b5563;
}

.dark-mode .page-content li {
    color: #9ca3af;
}

/* Contact Page Specific */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info li i {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Services Page */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.dark-mode .service-item {
    background: #374151;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    margin: 15px 0 10px;
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}

 /* How To Use Section */
.howto-section {
    padding: 80px 0;
    
}

.dark-mode .howto-section {
    background: var(--gray-900);
}

.howto-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.howto-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-800);
    text-align: center;
}

.dark-mode .howto-section .section-title {
    color: white;
}

.howto-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Step Card */
.step-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.dark-mode .step-card {
    background: var(--gray-800);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Step Number Circle */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

/* Step Card Heading */
.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.dark-mode .step-card h3 {
    color: white;
}

/* Step Card Paragraph */
.step-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.dark-mode .step-card p {
    color: var(--gray-400);
}

/* Horizontal line connecting steps (desktop only) */
@media (min-width: 769px) {
    .steps-grid {
        position: relative;
    }
    
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
        opacity: 0.3;
        z-index: 0;
    }
    
    .step-card {
        position: relative;
        z-index: 1;
        background: white;
    }
    
    .dark-mode .step-card {
        background: var(--gray-800);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .howto-section {
        padding: 60px 0;
    }
    
    .howto-section .section-title {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-card h3 {
        font-size: 1.1rem;
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.dark-mode .intro-section {
    background: var(--gray-900);
}

.intro-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Intro Content */
.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Intro Heading */
.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gray-800);
    position: relative;
    display: inline-block;
}

.dark-mode .intro-content h2 {
    color: white;
}

/* Optional underline under heading */
.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Intro Paragraphs */
.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.dark-mode .intro-content p {
    color: var(--gray-400);
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Stats Row (optional) */
.intro-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.dark-mode .intro-stats {
    border-top-color: var(--gray-700);
}

.intro-stat {
    text-align: center;
}

.intro-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.dark-mode .intro-stat-number {
    color: var(--primary-light);
}

.intro-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }
}

  /* Why Choose Us Section */
.whychoose-section {
    padding: 80px 0;
    background: var(--gray-50);
    text-align: center;
}

.dark-mode .whychoose-section {
    background: var(--gray-900);
}

.whychoose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Centered Title */
.whychoose-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--gray-800);
    text-align: center;
}

.dark-mode .whychoose-section .section-title {
    color: white;
}

/* Badges Grid - Points in one row */
.whychoose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.whychoose-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.dark-mode .whychoose-list li {
    background: var(--gray-800);
    color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.whychoose-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whychoose-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Stats Row */
.whychoose-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.dark-mode .whychoose-stats {
    border-top-color: var(--gray-700);
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.dark-mode .stat-number {
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.dark-mode .stat-label {
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 768px) {
    .whychoose-section {
        padding: 60px 0;
    }
    
    .whychoose-section .section-title {
        font-size: 1.6rem;
    }
    
    .whychoose-list {
        gap: 12px;
    }
    
    .whychoose-list li {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .whychoose-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .whychoose-list li {
        width: 100%;
        justify-content: center;
    }
}
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.dark-mode .faq-section {
    background: var(--gray-900);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.dark-mode .faq-section .section-title {
    color: white;
}

.faq-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .faq-item {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Question */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

.dark-mode .faq-question {
    color: white;
}

.faq-question:hover {
    background: var(--gray-50);
}

.dark-mode .faq-question:hover {
    background: var(--gray-700);
}

/* Arrow SVG */
.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.dark-mode .faq-answer p {
    color: var(--gray-400);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.dark-mode .blog-section {
    background: var(--gray-900);
}

.blog-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.dark-mode .blog-section .section-title {
    color: white;
}

.blog-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.dark-mode .blog-card {
    background: var(--gray-800);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Blog Content */
.blog-content {
    padding: 20px;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.dark-mode .blog-meta {
    color: var(--gray-400);
}

.blog-meta i {
    margin-right: 5px;
}

/* Blog Title */
.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
}

.dark-mode .blog-title a {
    color: white;
}

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

/* Blog Excerpt */
.blog-excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.dark-mode .blog-excerpt {
    color: var(--gray-400);
}

/* Read More Button */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section .section-title {
        font-size: 1.8rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
    }
}

/* Hero Section Dark Mode */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #1e3a5f, #0f2b4d);
}

/* CTA Section Dark Mode */
.dark-mode .cta-section {
    background: linear-gradient(135deg, #1e3a5f, #0f2b4d);
}

/* If hero section uses different class */
.dark-mode .hero {
    background: linear-gradient(135deg, #1e3a5f, #0f2b4d);
}

/* If CTA uses different class */
.dark-mode .cta {
    background: linear-gradient(135deg, #1e3a5f, #0f2b4d);
}

/* Alternative darker colors for dark mode */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
}

.dark-mode .cta-section {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
}
