/* style.css - Modern CSS with Animations & Effects */

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */

        /* Add these styles for AI Chatbox and other existing components */
        /* ... (keep your existing AI chatbox, rating section, and other styles) ... */
        
        /* Update existing components */
        .btn-primary {
            background: var(--gradient);
            color: white;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--theme-shadow);
        }
        
        .tool-card {
            background: var(--bg-color);
            border: 2px solid rgba(var(--primary-color-rgb), 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--theme-shadow);
        }
        
        .text-gradient {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        /* ... (rest of your existing styles remain unchanged) ... */
    
    





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

:root {
    /* Color Variables */
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --secondary-dark: #5a0890;
    --accent: #f72585;
    --accent-light: #ff4da6;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #4cc9f0;
    --warning: #f8961e;
    --danger: #e63946;
    
    /* Gradient Variables */
    --gradient-primary: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    --gradient-secondary: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    --gradient-accent: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
    --gradient-dark: linear-gradient(135deg, #212529 0%, #343a40 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-rainbow: linear-gradient(90deg, 
        #4361ee, #3a0ca3, #7209b7, #560bad, #f72585, #b5179e, #4cc9f0);
    
    /* Shadow Variables */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.15);
    --shadow-xxl: 0 20px 40px rgba(0,0,0,0.2);
    --shadow-primary: 0 8px 24px rgba(67, 97, 238, 0.3);
    --shadow-accent: 0 8px 24px rgba(247, 37, 133, 0.3);
    
    /* Animation Variables */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-round: 50%;
    --radius-pill: 100px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    transition: var(--transition-normal);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

::selection {
    background-color: rgba(67, 97, 238, 0.3);
    color: var(--dark);
}
/* ============================================
   LOGO ANIMATION & DYNAMIC COLOR CHANGES
   ============================================ */

/* Logo Container Animation */
.logo-link {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 8px 15px;
  transition: all 0.5s ease;
}

.logo-text {
  position: relative;
  display: inline-block;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Logo Text Gradient Animation */
.logo-primary {
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #3b82f6 25%,
    #60a5fa 50%,
    #93c5fd 75%,
    #2563eb 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 8s ease infinite, colorChange 20s infinite;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  position: relative;
}

.logo-secondary {
  background: linear-gradient(
    90deg,
    #10b981 0%,
    #34d399 25%,
    #6ee7b7 50%,
    #a7f3d0 75%,
    #10b981 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlowReverse 8s ease infinite, colorChangeReverse 20s infinite;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  margin-left: 5px;
}

/* Gradient Flow Animations */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientFlowReverse {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Main Color Change Animation (20 seconds cycle) */
@keyframes colorChange {
  0% {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
  }
  20% {
    background: linear-gradient(90deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
  }
  40% {
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
  }
  60% {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
  }
  80% {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
  }
  100% {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

@keyframes colorChangeReverse {
  0% {
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
  }
  20% {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
  }
  40% {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
  }
  60% {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
  }
  80% {
    background: linear-gradient(90deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
  }
  100% {
    background: linear-gradient(90deg, #10b981, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

/* Glow Effect */
.logo-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: logoGlow 4s ease-in-out infinite alternate;
  border-radius: 20px;
  z-index: -1;
}

@keyframes logoGlow {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* Font Style Animation (changes every 20s) */
@keyframes fontStyleChange {
  0% {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  20% {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(239, 68, 68, 0.2);
  }
  40% {
    font-family: 'Courier New', monospace;
    font-style: normal;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
  }
  60% {
    font-family: 'Verdana', sans-serif;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: -2px -2px 4px rgba(139, 92, 246, 0.2);
  }
  80% {
    font-family: 'Trebuchet MS', sans-serif;
    font-style: italic;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(245, 158, 11, 0.3);
  }
  100% {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
}

/* Apply font animation to logo */
.logo-primary, .logo-secondary {
  animation: 
    gradientFlow 8s ease infinite,
    colorChange 20s infinite,
    fontStyleChange 20s infinite;
}

/* Tool Count Badge Animation */
.tool-count-badge {
  animation: 
    badgePulse 2s ease-in-out infinite,
    badgeColorChange 20s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badgeColorChange {
  0% { background: linear-gradient(135deg, #2563eb, #1e40af); }
  20% { background: linear-gradient(135deg, #ef4444, #dc2626); }
  40% { background: linear-gradient(135deg, #10b981, #059669); }
  60% { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
  80% { background: linear-gradient(135deg, #f59e0b, #d97706); }
  100% { background: linear-gradient(135deg, #2563eb, #1e40af); }
}

/* Hero Title Animation */
.blue, .green {
  display: inline-block;
  animation: titleColorChange 20s infinite;
}

@keyframes titleColorChange {
  0% {
    color: #2563eb;
    text-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
  }
  20% {
    color: #ef4444;
    text-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
  }
  40% {
    color: #10b981;
    text-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
  }
  60% {
    color: #8b5cf6;
    text-shadow: 0 4px 6px rgba(139, 92, 246, 0.3);
  }
  80% {
    color: #f59e0b;
    text-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
  }
  100% {
    color: #2563eb;
    text-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
  }
}

/* Background Animation for Logo Container */
.logo-link {
  background: linear-gradient(
    45deg,
    rgba(37, 99, 235, 0.1),
    rgba(16, 185, 129, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  background-size: 400% 400%;
  animation: backgroundShift 10s ease infinite;
  
  border-image: linear-gradient(
    45deg,
    #2563eb,
    #10b981,
    #8b5cf6
  ) 1;
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover Effects */
.logo-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.logo-link:hover .logo-primary {
  animation-play-state: paused;
}

.logo-link:hover .logo-secondary {
  animation-play-state: paused;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .logo-primary,
  .logo-secondary {
    font-size: 1.5rem;
    animation: 
      gradientFlow 12s ease infinite,
      colorChange 25s infinite,
      fontStyleChange 25s infinite;
  }
  
  .logo-link {
    padding: 6px 10px;
  }
}

/* Print Styles (disable animations for printing) */
@media print {
  .logo-primary,
  .logo-secondary,
  .tool-count-badge,
  .blue,
  .green {
    animation: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #000000 !important;
    background: none !important;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .logo-primary,
  .logo-secondary,
  .tool-count-badge,
  .logo-link,
  .blue,
  .green {
    animation: none !important;
    transition: none !important;
  }
  
  .logo-primary {
    color: #2563eb;
    background: none;
    -webkit-text-fill-color: #2563eb;
  }
  
  .logo-secondary {
    color: #10b981;
    background: none;
    -webkit-text-fill-color: #10b981;
  }
}

/* Footer Logo Animation */
.footer-logo {
  display: inline-flex;
  align-items: center;
  animation: footerLogoColor 20s infinite;
}

@keyframes footerLogoColor {
  0% { color: #2563eb; }
  20% { color: #ef4444; }
  40% { color: #10b981; }
  60% { color: #8b5cf6; }
  80% { color: #f59e0b; }
  100% { color: #2563eb; }
}

.footer-logo i {
  animation: iconSpin 10s linear infinite;
}

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

/* Enhanced Tool Card Colors (changes every 20s) */
.tool-card {
  transition: all 0.5s ease;
  animation: cardBorderColor 20s infinite;
}

@keyframes cardBorderColor {
  0% {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
  }
  20% {
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.1);
  }
  40% {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
  }
  60% {
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.1);
  }
  80% {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
  }
  100% {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
  }
}

/* Nav Menu Color Animation */
.nav-link.active {
  animation: navActiveColor 20s infinite;
}

@keyframes navActiveColor {
  0% {
    color: #2563eb;
    border-bottom-color: #2563eb;
  }
  20% {
    color: #ef4444;
    border-bottom-color: #ef4444;
  }
  40% {
    color: #10b981;
    border-bottom-color: #10b981;
  }
  60% {
    color: #8b5cf6;
    border-bottom-color: #8b5cf6;
  }
  80% {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
  }
  100% {
    color: #2563eb;
    border-bottom-color: #2563eb;
  }
}

/* ============================================
   TYPOGRAPHY & TEXT EFFECTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 3s ease-in-out infinite alternate;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
    animation: lineExpand 2s ease-in-out infinite alternate;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

.text-gradient {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300%;
    animation: gradientShift 5s ease infinite;
}

.highlight {
    background: linear-gradient(120deg, rgba(247, 37, 133, 0.2) 0%, rgba(247, 37, 133, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    transition: background-size var(--transition-normal);
    padding: 0 2px;
}

.highlight:hover {
    background-size: 100% 100%;
}

.ai-highlight {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 5px;
    animation: pulse 2s infinite;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    
    
    
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: var(--space-sm);
    transition: transform var(--transition-normal);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: rotate 20s linear infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-primary {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
}

.logo-secondary {
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: var(--space-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    transition: transform var(--transition-normal);
}

.btn:hover::before {
    transform: scale(1.1);
}

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

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

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-small {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
}

.btn-large {
    padding: var(--space-lg) var(--space-xxl);
    font-size: 1.1rem;
}

.btn-hero {
    animation: float 3s ease-in-out infinite;
}

.btn-premium {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e6d 100%);
    color: var(--dark);
    font-weight: 700;
}

.btn-premium:hover {
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 0 10px 20px rgba(255, 209, 102, 0.3);
}

/* ====== MOBILE SPECIFIC FIXES ====== */
@media (max-width: 768px) {
    /* Mobile User Info */
    .mobile-user-info {
        padding: 20px;
        background: var(--gradient);
        color: white;
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .mobile-user-avatar {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .mobile-user-details h4 {
        margin: 0 0 5px 0;
        font-size: 1.1rem;
    }
    
    .mobile-user-details p {
        margin: 0;
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    /* Mobile Logout Button */
    .mobile-nav-logout {
        color: #ef4444 !important;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }
    
    /* Dashboard Link */
    .dashboard-link {
        background: rgba(var(--primary-color-rgb), 0.1);
        color: var(--primary-color) !important;
    }
    
    /* Navbar में User Avatar */
    .mobile-nav-user-avatar {
        width: 35px;
        height: 35px;
        background: var(--gradient);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-right: 10px;
        display: none; /* Initially hidden */
    }
    
    /* Mobile nav में user info show होने पर */
    .mobile-nav-with-user .mobile-nav-user-avatar {
        display: flex;
    }
    
    .mobile-nav-with-user #mobileOpenAuthBtn {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mobile-user-details h4 {
        font-size: 1rem;
    }
}






/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 150px;
    padding-bottom: var(--space-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.05;
    animation: morphing 15s infinite linear;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.05;
    animation: morphing 20s infinite linear reverse;
    z-index: -1;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(67, 97, 238, 0.1);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(67, 97, 238, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    animation: spin 3s linear infinite;
}

.badge-text {
    font-weight: 600;
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xxl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.ai-trust i {
    color: var(--accent);
    animation: pulse 2s infinite;
}

.hero-visual {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xxl);
    animation: fadeInUp 1s ease-out 1s both;
}

.visual-card {
    width: 120px;
    height: 140px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: height var(--transition-normal);
}

.visual-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

.visual-card i {
    font-size: 2rem;
    z-index: 1;
    transition: all var(--transition-normal);
}

.visual-card span {
    font-weight: 600;
    z-index: 1;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.visual-card:hover i {
    transform: scale(1.2);
}

.card-1 i { color: var(--primary); }
.card-2 i { color: var(--accent); }
.card-3 i { color: var(--secondary); }

/* ============================================
   AI OPTIMIZATION SECTION
   ============================================ */
.ai-optimization-section {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xxl) 0;
    border-radius: var(--radius-xl);
    margin: var(--space-xxl) auto;
    position: relative;
    overflow: hidden;
}

.ai-optimization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.ai-optimization-section .section-header {
    position: relative;
    z-index: 2;
}

.ai-optimization-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.8s ease-out;
}

.ai-optimization-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.ai-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin: var(--space-xxl) auto;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ai-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    min-width: 150px;
}

.ai-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd166;
    display: block;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.ai-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xxl) auto;
    max-width: 1100px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.ai-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.ai-feature-card:hover::before {
    transform: translateX(100%);
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-feature-icon {
    font-size: 3rem;
    color: #ffd166;
    margin-bottom: var(--space-lg);
    display: inline-block;
    transition: transform var(--transition-normal);
}

.ai-feature-card:hover .ai-feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.ai-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: white;
}

.ai-feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ai-compatibility {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    border-left: 4px solid #4ECDC4;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.ai-compatibility h4 {
    color: white;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ai-compatibility h4 i {
    color: #4ECDC4;
}

.ai-compatibility p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.ai-keywords-section {
    margin-top: var(--space-xxl);
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.ai-keywords-section h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: white;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.keyword-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.keyword-tag:hover::before {
    width: 300px;
    height: 300px;
}

.keyword-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TOOLS SECTION
   ============================================ */
.tools-section {
    padding: var(--space-xxl) 0;
}

.category-section {
    margin-bottom: var(--space-xxl);
}

.category-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: var(--space-md);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
}

.category-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.tool-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(7) { animation-delay: 0.7s; }
.tool-card:nth-child(8) { animation-delay: 0.8s; }

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: height var(--transition-normal);
}

.tool-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.tool-card:hover .card-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.card-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.card-description {
    color: var(--gray);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.card-action i {
    transition: transform var(--transition-normal);
}

.tool-card:hover .card-action {
    color: var(--primary-dark);
    border-top-color: rgba(67, 97, 238, 0.2);
}

.tool-card:hover .card-action i {
    transform: translateX(5px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: var(--gradient-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xxl) 0;
    margin: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.05;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   AD SECTIONS
   ============================================ */
.ad-container {
    margin: var(--space-xxl) auto;
    text-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.ad-container:hover {
    transform: scale(1.01);
}

.ad-section {
    background: var(--gradient-dark);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xxl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.ad-content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--space-xl);
}

.ad-content {
    flex: 1;
}

.ad-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.ad-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.ad-visual {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.sidebar-ad {
    width: 100%;
    margin-top: var(--space-xl);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-xxl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(67, 97, 238, 0.05);
}

.faq-question i {
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    padding: 0 var(--space-xl);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
    max-height: 300px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   SSL SECTION
   ============================================ */
.ssl-section {
    background: var(--light);
    padding: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    margin: var(--space-xxl) 0;
    text-align: center;
}

.ssl-container h3 {
    margin-bottom: var(--space-lg);
}

.ssl-seals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.ssl-seals img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.ssl-seals img:hover {
    transform: scale(1.05);
}

.ssl-text {
    font-weight: 500;
    color: var(--gray);
    max-width: 400px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xxl) 0;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: white;
    padding: var(--space-xxl) 0 var(--space-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-rainbow);
    background-size: 300%;
    animation: gradientShift 5s ease infinite;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo i {
    color: var(--primary);
    font-size: 2rem;
}

.logo-accent {
    color: var(--accent);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    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 var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    flex: 2;
}

.link-column {
    flex: 1;
    min-width: 150px;
}

.link-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: white;
    position: relative;
    padding-bottom: var(--space-sm);
}

.link-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: var(--space-sm);
}

.link-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.link-list a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all var(--transition-normal);
    color: var(--accent);
}

.link-list a:hover {
    color: white;
    padding-left: 15px;
}

.link-list a:hover::before {
    opacity: 1;
    left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 34px;
    background: transparent;
    line-height: 3px;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.toggle-line {
    width: 100%;
    height: 3px;
    background: var(--dark);
    transition: var(--transition-normal);
    border-radius: var(--radius-pill);
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    padding-top: 100px;
    display: none;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: var(--space-lg);
    height: 100%;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-normal);
}

.mobile-nav-link i {
    margin-right: var(--space-md);
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding-left: var(--space-xl);
}

.mobile-nav-link.premium {
    background: linear-gradient(135deg, #ffd166 0%, #ff9e6d 100%);
    color: var(--dark);
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border: none;
}

.mobile-nav-link.premium:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--light-gray);
    margin: var(--space-md) 0;
}

/* ============================================
   AI BADGE (Floating)
   ============================================ */
.ai-badge {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--gradient-rainbow);
    background-size: 300%;
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite, gradientShift 5s ease infinite;
    border: 2px solid white;
}

.ai-badge:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-xxl);
    animation: none;
}

.ai-badge i {
    font-size: 18px;
    animation: spin 3s linear infinite;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes lineExpand {
    0%, 100% {
        width: 60px;
    }
    50% {
        width: 100px;
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        max-width: 400px;
    }
    
    .footer-links {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        flex-direction: column;
        align-items: center;
    }
    
    .visual-card {
        width: 200px;
    }
    
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-stat {
        min-width: 200px;
    }
    
    .ad-content-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .ssl-seals {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .keyword-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .ai-badge {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: var(--space-xs) !important; }
.mt-2 { margin-top: var(--space-sm) !important; }
.mt-3 { margin-top: var(--space-md) !important; }
.mt-4 { margin-top: var(--space-lg) !important; }
.mt-5 { margin-top: var(--space-xl) !important; }

.mb-1 { margin-bottom: var(--space-xs) !important; }
.mb-2 { margin-bottom: var(--space-sm) !important; }
.mb-3 { margin-bottom: var(--space-md) !important; }
.mb-4 { margin-bottom: var(--space-lg) !important; }
.mb-5 { margin-bottom: var(--space-xl) !important; }

.p-1 { padding: var(--space-xs) !important; }
.p-2 { padding: var(--space-sm) !important; }
.p-3 { padding: var(--space-md) !important; }
.p-4 { padding: var(--space-lg) !important; }
.p-5 { padding: var(--space-xl) !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.rounded { border-radius: var(--radius-md) !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: var(--radius-pill) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

/* ============================================
   LOADING & STATE ANIMATIONS
   ============================================ */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
    width: 0;
    transition: width 1s ease;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header, .footer, .ai-badge, .ad-container, .btn {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .tool-card, .ai-feature-card, .step-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .section-title::after, h2::after, .link-title::after {
        display: none;
    }
}



.home-btn-fixed {
  position: top;
  left: 20px; /* Left side se distance */
  bottom: 50%; /* Screen ke beech mein (aap top: 20px bhi kar sakte hain) */
  transform: translateY(50%);
  display: flex;
  align-items: center;
    width: 150px;
  gap: 8px;
  padding: 12px 18px;
  background-color: #007bff; /* Aapka brand color */
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  
  /* Blinking Effect (Pulsing) */
  animation: pulse-animation 1.5s infinite;
}

/* Hover par animation ruk jaye aur color change ho */
.home-btn-fixed:hover {
  background-color: #0056b3;
  animation: none; 
  transform: translateY(50%) scale(1.1);
}

/* Pulse Animation Keyframes */
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(0, 123, 255, 0);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .home-btn-fixed {
    left: 10px;
    padding: 10px;
  }
  .home-btn-fixed .text {
    display: ; /* Mobile par sirf icon dikhega */
  }
}




/* ========== BLOG SECTION STYLES ========== */
.blog-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.blog-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 95%;
    
    transition: transform 0.5s ease;
}

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

.blog-post-category {
    position: absolute;
    top:45px;
    right: 15px;
    background: #2563eb;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 0.85rem;
}

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

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-title a:hover {
    color: #2563eb;
}

.blog-post-excerpt {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-post-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.blog-post-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-post-link:hover {
    gap: 12px;
}

.blog-actions {
    text-align: center;
    margin-top: 40px;
}

/* All Posts Section */
.all-posts-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.all-posts-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 40px;
}

.all-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.load-more-container {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-post-card {
        margin-bottom: 20px;
    }
    
    .blog-post-image {
        height: 235px;
        
    }
    
    .blog-post-content {
        padding: 20px;
    }
}

/* Featured Post Highlight */
.blog-post-card:first-child {
    border-left: 4px solid #2563eb;
}

/* Reading Progress Indicator */
.reading-progress {
    height: 3px;
    background: #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.reading-progress-bar {
    height: 100%;
    background: #2563eb;
    width: 0%;
    transition: width 0.3s ease;
}

   /* ============================================
   ENHANCED GUIDE SECTIONS STYLING
   ============================================ */

/* Content Section Styling */
.content-section {
    margin: 40px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
    border-radius: 4px 4px 0 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    padding-left: 20px;
}

.content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

.content-block {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

.content-block h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #334155;
    margin: 25px 0 15px;
    position: relative;
    padding-left: 15px;
}

.content-block h4::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 0.9rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-block ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    line-height: 1.6;
    color: #475569;
}

.content-block ul li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    color: #10b981;
    font-weight: bold;
}

/* Feature List Styling */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.feature-list li {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.feature-list li strong {
    color: #1e40af;
}

/* Step Guide Enhancement */
.step-guide {
    margin: 40px 0;
    position: relative;
}

.step-guide::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #10b981);
    border-radius: 3px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    margin-right: 25px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #475569;
    line-height: 1.7;
}

/* Comparison Table Styling */
.comparison-table {
    margin: 30px 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table caption {
    caption-side: top;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    padding: 20px;
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.comparison-table th {
    padding: 18px 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tbody tr:nth-child(even):hover {
    background: #f1f5f9;
}

.comparison-table td {
    padding: 16px 20px;
    color: #475569;
    border-right: 1px solid #e2e8f0;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
}

.comparison-table td:last-child {
    border-right: none;
}

/* Related Tools Styling */
.related-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.related-tools li {
    background: #f0f9ff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.related-tools li:hover {
    background: #e0f2fe;
    transform: translateY(-3px);
    border-color: #7dd3fc;
}

.related-tools li a {
    color: #0369a1;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.related-tools li a::before {
    content: '→';
    margin-right: 10px;
    color: #3b82f6;
    font-weight: bold;
}

/* Content CTA Styling */
.content-cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.content-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.content-cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.content-cta h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.content-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.content-cta .btn {
    background: white;
    color: #1e40af;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.content-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
}

.cta-note {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Tool-specific Badges */
.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Statistics Cards */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid #0ea5e9;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box.warning {
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border-left-color: #f59e0b;
}

.info-box.success {
    background: linear-gradient(135deg, #d1fae5, #bbf7d0);
    border-left-color: #10b981;
}

/* Floating Action Button for Guide Navigation */
.guide-nav-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.guide-nav-fab .fab-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-nav-fab .fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.guide-nav-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 200px;
    display: none;
}

.guide-nav-menu.active {
    display: block;
}

.guide-nav-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.guide-nav-menu a:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-title {
        font-size: 2rem;
        padding-left: 15px;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .step-guide::before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-right: 20px;
    }
    
    .content-cta {
        padding: 30px 20px;
    }
    
    .content-cta h3 {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .feature-list,
    .related-tools {
        grid-template-columns: 1fr;
    }
    
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 1.7rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .content-cta .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .stat-cards {
        grid-template-columns: 1fr;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease forwards;
}

/* Tool-specific Icon Styling */
.tool-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    margin-right: 15px;
    color: white;
    font-size: 1.5rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive Elements */
.interactive-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.interactive-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interactive-card:hover::after {
    opacity: 1;
}

/* Print Styles */
@media print {
    .content-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .content-block {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .content-cta,
    .guide-nav-fab {
        display: none !important;
    }
}


