:root {
    --primary-color: #dc2626;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    --dark-bg: #111827;
    --darker-bg: #0f172a;
    --light-bg: #f9fafb;
    --lighter-bg: #ffffff;
    
    --text-dark: #1f2937;
    --text-darker: #111827;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    --border-color: #e5e7eb;
    
    --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);
    
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #818cf8;
    --primary-dark: #6366f1;
    --primary-light: #a5b4fc;
    
    --dark-bg: #1f2937;
    --darker-bg: #111827;
    --light-bg: #374151;
    --lighter-bg: #1f2937;
    
    --text-dark: #f9fafb;
    --text-darker: #f3f4f6;
    --text-light: #9ca3af;
    --text-lighter: #6b7280;
    
    --border-color: #374151;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--light-bg) !important;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Style Header */
.header { background: white; box-shadow: 0 2px 15px rgba(0,0,0,0.08); padding: 12px 10px; position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo a { font-size: 24px; font-weight: 800; text-decoration: none; background: linear-gradient(135deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
}

.logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.nav-menu { flex: 1; margin-left: 40px; }
.nav-list { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
}
.nav-list > li > a:hover { background: #f0f0ff; color: #667eea; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 15px;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 100;
    min-width: 500px;
}
.dropdown-menu.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #444;
    text-decoration: none;
    border-radius: 0;
    font-size: 14px;
}
.dropdown-menu a:hover {
    color: #dc2626;
    transform: translateX(5px);
    background: rgba(220, 38, 38, 0.05);
    border-radius:12px;
}
.dropdown-menu a i {
    width: 30px;
    height: 30px;
    color: #fff;
    background: #dc2626;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dropdown-menu a:hover i {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}
.auth-buttons { display: flex; gap: 12px; align-items: center; }
.btn-login, .btn-signup, .btn-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-login {
    color: #333;
    background: #F0F0FF;
}
.btn-login:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
}
.btn-signup, .btn-dashboard {
    background: linear-gradient(135deg, #dc2626, #DC143C);
    color: white;
    border: none;
}
.btn-signup:hover, .btn-dashboard:hover {
    transform: translateY(-2px);
    color:white;
}

.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 8px; }

@media (max-width: 1024px) {
    .mobile-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 75%;
        height: 100%;
        background: white;
        transition: left 0.3s ease;
        z-index: 999;
        padding: 20px;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .nav-menu.show { left: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-list > li > a { padding: 14px 15px; }
    .dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
        display: none;
        min-width: auto;
        background: transparent;
    }
    .dropdown-menu.two-columns { grid-template-columns: 1fr; }
    .dropdown.open .dropdown-menu { display: grid; }
    .dropdown-link i.fa-chevron-down { transition: transform 0.3s; }
    .dropdown.open .dropdown-link i.fa-chevron-down { transform: rotate(180deg); }
    .auth-buttons { margin-left: auto; }
}

/* Small Mobile Devices */
@media (max-width: 768px) {
    .header {
        padding: 10px 12px;
    }
    
    .navbar {
        gap: 10px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .logo img {
        max-height: 32px;
    }
    
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-login, .btn-signup, .btn-dashboard {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .btn-login span, .btn-signup span, .btn-dashboard span {
        display: none;
    }
    
    .btn-login i, .btn-signup i, .btn-dashboard i {
        margin: 0;
    }
    
    /* Show only icons on very small screens */
    .btn-login, .btn-signup, .btn-dashboard {
        padding: 8px 10px;
    }
    
    .nav-menu {
        width: 80%;
        max-width: 300px;
        top: 60px;
        height: calc(100% - 60px);
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .mobile-toggle {
        font-size: 20px;
        padding: 5px;
    }
    
    .auth-buttons {
        gap: 5px;
    }
    
    .btn-login, .btn-signup, .btn-dashboard {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .nav-menu {
        width: 85%;
        max-width: 280px;
    }
}


/*------------hero-style----------------------*/
  .sleek-hero {
    --hero-bg: #ffffff;
    --hero-red: #dc2626;
    --hero-red-dark: #b91c1c;
    --hero-redbg: #fef2f2;
    --hero-redbg2: #fee2e2;
    --hero-redborder: rgba(220,38,38,.25);
    --hero-ink: #0f0e0d;
    --hero-ink2: #2d2926;
    --hero-ink3: #6b6460;
    --hero-border: #e5ddd6;
    --hero-surface: #ffffff;
    --hero-radius: 16px;
    --hero-radius-lg: 24px;
    position: relative;
    padding: 80px 0;
    background: var(--hero-bg);
    overflow: hidden;
  }

  .sleek-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .sleek-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* Left Column - Content */
  .sleek-hero-left {
    max-width: 580px;
  }

  .sleek-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 40px;
    background: var(--hero-redbg);
    border: 1px solid var(--hero-redborder);
    color: var(--hero-red);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: normal;
    margin-bottom: 28px;
  }

 .sleek-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a2e 0%, #b91c1c 40%, #dc2626 70%, #ea580c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s ease;
}

/* Immediate color shift on hover - different gradient */
.sleek-title:hover {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 30%, #eab308 60%, #22c55e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

  

  .sleek-rotating-text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 700;
    color: #444;
  }

  .sleek-rotating-label {
    font-size: 28px;
    display: inline-block;
  }

  .sleek-rotating-wrapper {
    display: inline-block;
    height: 48px;
    overflow: hidden;
    vertical-align: middle;
  }

  .sleek-rotating-word {
    display: block;
    height: 48px;
    padding: 0 8px;
    background: linear-gradient(135deg, #dc2626, #8B008B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: sleekRotateWords 12s steps(7, end) infinite;
    white-space: nowrap;
  }

  @keyframes sleekRotateWords {
    0%, 14% { transform: translateY(0); }
    16%, 28% { transform: translateY(-48px); }
    30%, 42% { transform: translateY(-96px); }
    44%, 56% { transform: translateY(-144px); }
    58%, 70% { transform: translateY(-192px); }
    72%, 84% { transform: translateY(-240px); }
    86%, 100% { transform: translateY(-288px); }
  }

  /* Dynamic Description - uses PHP getSetting */
  .sleek-description {
    font-size: 17px;
    color: var(--hero-ink3);
    line-height: 1.65;
    margin-bottom: 32px;
  }

  /* Dynamic Button - uses PHP getSetting */
  .sleek-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #dc2626;
    background: #fff;
    color: #dc2626;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
  }

  .sleek-btn:hover {
    transform: translateY(-3px);
    color:white;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
    background: linear-gradient(135deg, #ef4444, #dc2626);
  }

  .sleek-btn i {
    transition: transform 0.3s;
  }

  .sleek-btn:hover i {
    transform: translateX(5px);
  }

  /* Right Column - 3D Card */
  .sleek-hero-right {
    position: relative;
  }

  .sleek-3d {
    position: relative;
  }

  .sleek-card-back, .sleek-card-mid {
    position: absolute;
    border-radius: var(--hero-radius-lg);
    border: 1px solid var(--hero-redborder);
  }

  .sleek-card-back {
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: var(--hero-redbg2);
  }

  .sleek-card-mid {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background: var(--hero-redbg);
  }

  .sleek-card-front {
    position: relative;
    background: var(--hero-surface);
    border-radius: var(--hero-radius-lg);
    border: 1px solid var(--hero-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 1;
  }

  .sleek-card-front-header {
    background: var(--hero-red);
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .sleek-card-front-header i {
    font-size: 13px;
  }

  .sleek-card-front-body {
    padding: 20px;
  }

  .sleek-feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--hero-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--hero-ink2);
  }

  .sleek-feature-row:last-child {
    border-bottom: none;
  }

  /* ALTERNATIVE FIX */
.sleek-ifr-icon {
    width: 32px;
    height: 32px;
    background: var(--hero-redbg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hero-red);
    flex-shrink: 0;
}

.sleek-ifr-icon i {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.sleek-ifr-icon i,
.sleek-ifr-icon svg {
    vertical-align: middle;
    margin: 0 auto;
    display: block;
}
  .sleek-feature-row i:last-child {
    margin-left: auto;
    color: var(--hero-red);
    font-size: 14px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .sleek-hero-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .sleek-hero-left {
      max-width: 100%;
      text-align: center;
    }
    
    .sleek-rotating-text {
      justify-content: center;
    }
    
    .sleek-description {
      margin-left: auto;
      margin-right: auto;
      max-width: 550px;
    }
    
    .sleek-hero-right {
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .sleek-hero {
      padding: 55px 0 70px;
    }
    
    .sleek-title {
      font-size: 38px;
    }
    
    .sleek-rotating-text {
      font-size: 18px;
    }
    
    .sleek-rotating-label {
      font-size: 22px;
    }
    
    .sleek-rotating-wrapper {
      height: 40px;
    }
    
    .sleek-rotating-word {
      height: 40px;
      font-size: 18px;
    }
    
    @keyframes sleekRotateWords {
      0%, 14% { transform: translateY(0); }
      16%, 28% { transform: translateY(-40px); }
      30%, 42% { transform: translateY(-80px); }
      44%, 56% { transform: translateY(-120px); }
      58%, 70% { transform: translateY(-160px); }
      72%, 84% { transform: translateY(-200px); }
      86%, 100% { transform: translateY(-240px); }
    }
    
    .sleek-description {
      font-size: 16px;
    }
    
    .sleek-btn {
      padding: 12px 30px;
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .sleek-title {
      font-size: 32px;
    }
    
    .sleek-rotating-text {
      font-size: 16px;
      flex-wrap: wrap;
    }
    
    .sleek-rotating-label {
      font-size: 18px;
    }
    
    .sleek-rotating-wrapper {
      height: 36px;
    }
    
    .sleek-rotating-word {
      height: 36px;
      font-size: 16px;
    }
    
    @keyframes sleekRotateWords {
      0%, 14% { transform: translateY(0); }
      16%, 28% { transform: translateY(-36px); }
      30%, 42% { transform: translateY(-72px); }
      44%, 56% { transform: translateY(-108px); }
      58%, 70% { transform: translateY(-144px); }
      72%, 84% { transform: translateY(-180px); }
      86%, 100% { transform: translateY(-216px); }
    }
  }

  /* Fade animations */
  .sleek-hero-left, .sleek-hero-right {
    animation: sleekFadeUp 0.6s ease forwards;
    opacity: 0;
  }

  .sleek-hero-left {
    animation-delay: 0.1s;
  }

  .sleek-hero-right {
    animation-delay: 0.2s;
  }

  @keyframes sleekFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }




/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
}



/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--lighter-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    background: var(--light-bg);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 40px;
    background: var(--light-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--lighter-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
}

.price .period {
    font-size: 0.875rem;
    color: var(--text-light);
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    width: 20px;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: var(--danger-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--lighter-bg);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-stat i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.faq-item {
    background: var(--lighter-bg);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--lighter-bg);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
}

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

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

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

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

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 40px;
    background: var(--lighter-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 0.25rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-view-all {
    text-align: center;
    margin-top: 3rem;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

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

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-about h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.social-links a i {
    color: white;
    font-size: 1.25rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    color: var(--text-dark);
    border-radius: 12px;
    outline: none;
}

.footer-newsletter input:focus {
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

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

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

.back-to-top i {
    color: white;
    font-size: 1.25rem;
}

/* Tool Page Styles */
.tool-container {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 2rem;
    background: var(--lighter-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.tool-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tool-header h1 {
    margin-bottom: 0.5rem;
}

.usage-info {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.tool-content {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.upload-area input {
    display: none;
}

.upload-label i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--lighter-bg);
        transition: left 0.3s ease;
        overflow-y: auto;
        margin: 0;
        padding: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list > li {
        width: 100%;
    }
    
    .nav-list > li > a {
        display: block;
        padding: 1rem;
    }
    
    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 2rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu,
    .mega-dropdown.active .mega-menu {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-newsletter .newsletter-group {
        flex-direction: column;
    }
    
    .tool-container {
        margin: 80px 20px 30px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 2rem auto;
}

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

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--info-color);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem;
    background: var(--dark-bg);
    color: white;
    font-size: 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Tools Section */
.tools-section {
    padding: 50px 10px;
    background: #F0F0FF;
}

/* Badge Style Header */
.section-badge-header {
    text-align: center;
    margin-bottom: 40px;
}

.tools-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff, #fff);
    padding: 10px 28px;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    margin-bottom: 16px;
}

.tools-badge i {
    font-size: 20px;
    color: #FFD700;
}

.tools-badge span {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.5px;
}

.badge-description {
    font-size: 16px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Search Bar Styles */
.tools-search-wrapper {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.tools-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tools-search-box:focus-within {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.12);
    border-color: #dc2626;
}

.tools-search-box i {
    color: #94a3b8;
    font-size: 18px;
}

.tools-search-box input {
    flex: 1;
    padding: 16px 16px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #1e293b;
}

.tools-search-box input::placeholder {
    color: #94a3b8;
}

.clear-search-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.clear-search-btn:hover {
    color: #dc2626;
    background: #fef2f2;
}

.search-results-count {
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
}

/* Tools Grid - 5 cards per row */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

/* Tool Card */
.tool-card {
    background: white;
    padding: 25px 20px 10px 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.09);
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
}

/* Light gradient on corners */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 0 0 100%;
}

.tool-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 100% 0 0;
}

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

/* Badge at Top Right Corner - Stylish */
.tool-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.badge-free {
    background: transparent;
    border-bottom:1px solid #499064;
    color: #499064;
}

.badge-starter {
   background: transparent;
    border-bottom:1px solid #2B81C3;
    color: #2B81C3;
}

.badge-pro {
    background: transparent;
    border-bottom:1px solid #dc2626;
    color: #dc2626;
}

/* Icon with rotating hover effect - Left Aligned */
.tool-icon-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
    margin-top: 5px;
}

.tool-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon-bg {
    transform: rotate(8deg) scale(1.05);
}

.tool-icon-bg i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

/* Card Title - Gradient Color, Left Align */
.tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e1b4b, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 8px;
}

/* Two lines below title in different colors */
.tool-title-line {
    margin-bottom: 12px;
}

.title-line-1 {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin-bottom: 5px;
    border-radius: 2px;
}

.title-line-2 {
    height: 2px;
    width: 25px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

/* Card Description - Left Align */
.tool-card p {
    font-size: 13px;
    color: #64748b;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Bottom Row - Social Icons Left, Arrow Right */
.tool-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.tool-arrow {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tool-arrow i {
    font-size: 16px;
    color: #667eea;
    transition: transform 0.3s ease;
}

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

.tool-card:hover .tool-arrow {
    opacity: 1;
}

/* Hide old usage badge */
.tool-usage-badge {
    display: none;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    margin-top: 30px;
}

.no-results-message i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 8px;
}

.no-results-message p {
    color: #64748b;
}

/* Hidden state for search filtering */
.tool-card.hidden-tool {
    display: none;
}

/* Responsive */
@media (max-width: 1400px) {
    .tools-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

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

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

@media (max-width: 500px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-card {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .tools-search-box input {
        font-size: 14px;
        padding: 12px 12px;
    }
    
    .tools-badge {
        padding: 8px 22px;
    }
    
    .tools-badge span {
        font-size: 18px;
    }
    
    .tools-badge i {
        font-size: 18px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .tools-section {
    background: #0f172a;
}

[data-theme="dark"] .tool-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .tool-card h3 {
    background: linear-gradient(135deg, #f1f5f9, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .tool-card p {
    color: #94a3b8;
}

[data-theme="dark"] .tool-bottom-row {
    border-top-color: #334155;
}

[data-theme="dark"] .social-icons a {
    color: #64748b;
}

[data-theme="dark"] .social-icons a:hover {
    color: #818cf8;
}

/*toolhero*/


 .tool-hero-section {
    --hero-bg: #fdfcfb;
    --hero-red: #dc2626;
    --hero-red2: #b91c1c;
    --hero-redbg: #fef2f2;
    --hero-redborder: rgba(220,38,38,.25);
    --hero-ink: #0f0e0d;
    --hero-ink3: #6b6460;
    --hero-ink4: #a09890;
    --hero-border: #e5ddd6;
    --hero-surface: #ffffff;
    --hero-shadow-red: 0 8px 32px rgba(220,38,38,.2);
    --hero-radius: 16px;
    --hero-radius-lg: 24px;
    --hero-transition: .22s cubic-bezier(.4,0,.2,1);
    position: relative;
    padding: 100px 0;
    background: var(--hero-bg);
    overflow: hidden;
  }
  .tool-hero-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
  
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px;
    border-radius: 20px; background: var(--hero-redbg); border: 1px solid var(--hero-redborder);
    color: var(--hero-red); font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; margin-bottom: 24px; animation: fadeHero .6s ease both;
  }
  @keyframes fadeHero { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:none} }
  .hero-h2 {font-weight: 700; font-size: clamp(40px,6vw,48px); line-height: 1.1; margin-bottom: 24px; animation: fadeHero .7s .1s ease both; }
  .hero-h2 .accent { color: var(--hero-red); display: block; }
  .hero-sub { font-size: 18px; color: var(--hero-ink3); line-height: 1.7; margin-bottom: 36px; max-width: 520px; animation: fadeHero .7s .2s ease both; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeHero .7s .3s ease both; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px;
    background: var(--hero-red); color: #fff; border: none; border-radius: var(--hero-radius);
    font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-decoration: none;
    transition: all var(--hero-transition); box-shadow: var(--hero-shadow-red);
  }
  
  .hero-right { display: flex; align-items: center; justify-content: center; animation: fadeHero .8s .2s ease both; }
  .hero-3d-wrap { position: relative; width: 100%; max-width: 500px; }
  .hero-3d-card {
    background: var(--hero-surface); border-radius: var(--hero-radius-lg); border: 1px solid var(--hero-border);
    box-shadow: 0 0 0 1px var(--hero-border), 0 4px 0 0 #d4cabf, 0 8px 0 0 rgba(0,0,0,.06), 0 32px 80px rgba(0,0,0,.12);
    overflow: hidden; animation: float3d 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  }
  @keyframes float3d { 0%,100% { transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) translateY(0); } 50% { transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(-14px); } }
  .hero-card-header { background: var(--hero-red); padding: 16px 20px; display: flex; align-items: center; gap: 10px; }
  .badge-text { color: rgba(255,255,255,.9); font-size:13px; font-weight:600; font-family:'JetBrains Mono',monospace; flex:1; text-align:center; }
  .hero-card-body { padding: 20px; }
  .tool-mock-list { display: flex; flex-direction: column; gap: 12px; }
  .mock-tool-item { display: flex; align-items: center; gap: 12px; padding: 10px; background: var(--hero-redbg); border-radius: 12px; border: 1px solid var(--hero-redborder); }
  .mock-tool-item i { width: 28px; color: var(--hero-red); font-size: 16px; text-align: center; }
  .mock-tool-item span { font-size: 13px; font-weight: 500; color: var(--hero-ink); }
  .float-badge {
    position: absolute; background: var(--hero-surface); border: 1px solid var(--hero-border);
    border-radius: 12px; padding: 8px 14px; box-shadow: 0 4px 16px rgba(0,0,0,.08);
    font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 8px;
    animation: floatBadge 4s ease infinite;
  }
  @keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  .fb-top { top: -20px; left: -20px; }
  .fb-bottom { bottom: -15px; right: -20px; }
  .fb-green { color: #16a34a; }
  @media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .hero-right { display: none; } }
  
  /*newtools*/
  .xtool-dashboard {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 1.5rem;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

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

  /* Section header styles */
  .xtool-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .xtool-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
  }

  .xtool-headline {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b, #2d3a5e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .xtool-description {
    font-size: 1.1rem;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* Tools grid - responsive, flexible */
  .xtool-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 3rem;
  }

  /* New card design: icon left (with colored background) + title right + description below title + arrow */
  .xtool-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1rem 1rem 1rem 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef3;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
  }

  .xtool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.08), 0 4px 8px -4px rgba(0, 0, 0, 0.02);
    border-color: #cbdde9;
    background: #fefefe;
  }

  /* Left side: icon with colored background */
  .xtool-card-left {
    flex-shrink: 0;
  }

  .xtool-icon-bg {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
  }

  .xtool-card:hover .xtool-icon-bg {
    transform: scale(1.02);
  }

  /* Right side: takes remaining space, holds title + description + arrow */
  .xtool-card-right {
    flex: 1;
    position: relative;
  }

  .xtool-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    padding-right: 1.6rem;
  }

  .xtool-card-desc {
    font-size: 0.65rem;
    color: #5b6e8c;
    line-height: 1.4;
    margin: 0;
    display: block;
  }

  .xtool-card-arrow {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.8rem;
    color: #cbd5e1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .xtool-card-arrow i {
    font-size: 0.75rem;
  }

  .xtool-card:hover .xtool-card-arrow {
    color: #2563eb;
    transform: translateX(3px);
  }

  /* Responsive breakpoints: 6 -> 4 -> 3 -> 2 */
  @media (max-width: 1350px) {
    .xtool-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 1.25rem;
    }
  }

  @media (max-width: 1100px) {
    .xtool-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
  }

  @media (max-width: 880px) {
    .xtool-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .xtool-headline {
      font-size: 2rem;
    }
  }

  @media (max-width: 640px) {
    .xtool-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .xtool-dashboard {
      padding: 2rem 1rem;
    }
    .xtool-card {
      padding: 0.85rem;
      gap: 0.75rem;
    }
    .xtool-icon-bg {
      width: 42px;
      height: 42px;
      font-size: 1.25rem;
      border-radius: 14px;
    }
    .xtool-card-title {
      font-size: 0.85rem;
      padding-right: 1.2rem;
    }
    .xtool-card-desc {
      font-size: 0.7rem;
    }
  }

  @media (max-width: 480px) {
    .xtool-grid {
      grid-template-columns: 1fr;
      gap: 0.9rem;
    }
    .xtool-card {
      max-width: 100%;
    }
  }

  /* micro-interactions */
  .xtool-card {
    will-change: transform;
  }
  
  /*workflow*/
  
   .toolinfo-section {
    --info-bg: #f5f0eb;
    --info-surface: #ffffff;
    --info-border: #e5ddd6;
    --info-red: #dc2626;
    --info-redbg: #fef2f2;
    --info-redbg2: #fee2e2;
    --info-redborder: rgba(220,38,38,.25);
    --info-ink: #0f0e0d;
    --info-ink2: #2d2926;
    --info-ink3: #6b6460;
    --info-radius-lg: 24px;
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--info-border);
    border-bottom: 1px solid var(--info-border);
  }
  .toolinfo-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
  .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .info-img-wrap { position: relative; }
  .info-3d { position: relative; }
  .info-card-back, .info-card-mid { position: absolute; border-radius: var(--info-radius-lg); border: 1px solid var(--info-redborder); }
  .info-card-back { top: 16px; left: 16px; right: -16px; bottom: -16px; background: var(--info-redbg2); }
  .info-card-mid { top: 8px; left: 8px; right: -8px; bottom: -8px; background: var(--info-redbg); }
  .info-card-front {
    position: relative; background: var(--info-surface); border-radius: var(--info-radius-lg);
    border: 1px solid var(--info-border); box-shadow: 0 20px 40px rgba(0,0,0,.1);
    overflow: hidden; z-index: 1;
  }
  .info-card-front-header { background: var(--info-red); padding: 14px 18px; display: flex; gap: 8px; color: rgba(255,255,255,.9); font-family: 'JetBrains Mono', monospace; font-size: 12px; }
  .info-card-front-body { padding: 20px; }
  .info-feature-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--info-border); font-size: 14px; }
  .info-feature-row:last-child { border-bottom: none; }
  .ifr-icon { width: 30px; height: 30px; background: var(--info-redbg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--info-red); flex-shrink: 0; }
  .info-right h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px,4vw,42px); margin-bottom: 18px; }
  .info-desc { font-size: 16px; color: var(--info-ink3); margin-bottom: 28px; line-height: 1.7; }
  .info-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
  .info-checklist li { display: flex; gap: 12px; align-items: flex-start; }
  .icl-icon { width: 22px; height: 22px; background: var(--info-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
  
  /* New CTA Button */
  .workflow-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--info-red);
    color: white;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220,38,38,0.3);
    border: none;
    cursor: pointer;
  }
  .workflow-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
  }
  .workflow-cta-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220,38,38,0.4);
  }
  .workflow-cta-btn:hover i {
    transform: translateX(4px);
  }
  
  @media (max-width: 900px) { 
    .info-grid { grid-template-columns: 1fr; } 
    .info-img-wrap { display: block; margin-bottom: 40px; }
    .info-right { text-align: center; }
    .info-checklist { align-items: center; }
    .info-checklist li { text-align: left; max-width: 360px; margin: 0 auto; }
  }
  @media (max-width: 480px) {
    .workflow-cta-btn { padding: 12px 24px; font-size: 0.9rem; }
  }
  
 /* Popular Tools Section */
.popular-tools {
    padding: 80px 10px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e8 100%);
    position: relative;
}

/* Popular Badge Header */
.popular-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff, #fff);
    padding: 10px 28px;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
    margin-bottom: 16px;
}

.popular-badge-header i {
    font-size: 20px;
    color: #f97316;
}

.popular-badge-header span {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

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

/* Popular Card */
.popular-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.09);
    cursor: pointer;
    overflow: hidden;
}

/* Light gradient on corners */
.popular-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 0 0 100%;
}

.popular-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 100% 0 0;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
}

/* Fire Badge Corner */
.popular-badge-corner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(135deg, #f97316, #ef4444);
    padding: 5px 12px 5px 10px;
    border-radius: 0 0 12px 0;
}

.popular-badge-corner i {
    font-size: 12px;
    color: white;
}


/* Icon Wrapper - Left Aligned */
.popular-icon-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
    margin-top: 5px;
}

.popular-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popular-card:hover .popular-icon-bg {
    transform: rotate(8deg) scale(1.05);
}

.popular-icon-bg i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-icon-bg i {
    transform: rotate(-8deg);
}

/* Card Title - Gradient */
.popular-card h3 {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e1b4b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    margin-bottom: 8px;
}

/* Two lines below title */
.popular-title-line {
    margin-bottom: 12px;
}

.popular-line-1 {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, #f97316, #ef4444);
    margin-bottom: 5px;
    border-radius: 2px;
}

.popular-line-2 {
    height: 2px;
    width: 25px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 2px;
}

/* Card Description - Left Align */
.popular-card p {
    font-size: 13px;
    color: #64748b;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Bottom Row */
.popular-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.popular-usage {
    font-size: 11px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.popular-usage i {
    font-size: 10px;
    color: #f97316;
}

.popular-arrow i {
    font-size: 14px;
    color: #f97316;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.popular-card:hover .popular-arrow i {
    transform: translateX(5px);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1400px) {
    .popular-tools-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

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

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

@media (max-width: 500px) {
    .popular-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-card {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .popular-badge-header {
        padding: 8px 22px;
    }
    
    .popular-badge-header span {
        font-size: 18px;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .popular-tools {
    background: linear-gradient(135deg, #1e1b4b 0%, #2d1b3e 100%);
}

[data-theme="dark"] .popular-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .popular-card h3 {
    background: linear-gradient(135deg, #f1f5f9, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .popular-card p {
    color: #94a3b8;
}

[data-theme="dark"] .popular-bottom-row {
    border-top-color: #334155;
}

[data-theme="dark"] .popular-usage {
    color: #94a3b8;
}
.pdfx-editor-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff 100%);
    padding: 80px 40px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
  }
  
  .pdfx-container {
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .pdfx-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Left content styles */
  .pdfx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    margin-bottom: 20px;
  }
  
  .pdfx-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
  }
  
  .pdfx-highlight {
    color: #dc2626;
  }
  
  .pdfx-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  .pdfx-features {
    list-style: none;
    margin-bottom: 32px;
  }
  
  .pdfx-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #334155;
  }
  
  .pdfx-features li i {
    color: #dc2626;
    font-size: 1rem;
    width: 20px;
  }
  
  .pdfx-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  
  .pdfx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc2626;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  }
  
  .pdfx-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  }
  
  .pdfx-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #475569;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #cbd5e1;
  }
  
  .pdfx-btn-secondary:hover {
    background: #f8fafc;
    border-color: #dc2626;
    color: #dc2626;
  }
  
  .pdfx-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    padding-top: 8px;
  }
  
  .pdfx-trust i {
    color: #10b981;
  }
  
  /* SVG Wrapper */
  .pdfx-svg-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .pdfx-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .pdfx-headline {
      font-size: 2rem;
    }
    .pdfx-svg-wrapper svg {
      max-width: 450px;
    }
  }
  
  @media (max-width: 640px) {
    .pdfx-editor-section {
      padding: 50px 1rem;
    }
    .pdfx-headline {
      font-size: 1.6rem;
    }
    .pdfx-buttons {
      flex-direction: column;
    }
    .pdfx-btn-primary, .pdfx-btn-secondary {
      text-align: center;
      justify-content: center;
    }
    .pdfx-svg-wrapper svg {
      max-width: 100%;
    }
  }
  
  .cta-section {
    --cta-red: #dc2626;
    --cta-white: #ffffff;
    padding: 100px 0;
    background: var(--cta-red);
    position: relative;
    overflow: hidden;
  }
  .cta-3d-blob {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.15), rgba(255,255,255,.02));
    bottom: -180px; left: -120px; filter: blur(40px); pointer-events: none;
  }
  .cta-3d-blob-right {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,0,0,.12), transparent);
    top: -150px; right: -80px; filter: blur(50px); pointer-events: none;
  }
  .cta-3d-circle {
    position: absolute; width: 280px; height: 280px; border-radius: 50%;
    border: 2px dashed rgba(255,255,255,.3); bottom: 10%; right: 5%;
    animation: spinSlow 30s linear infinite; pointer-events: none;
  }
  @keyframes spinSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
  .cta-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
  .cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
  .cta-inner h2 { font-family: 'Sora', sans-serif; font-size: clamp(28px,5vw,52px); color: #fff; margin-bottom: 20px; }
  .cta-inner p { color: rgba(255,255,255,.9); margin-bottom: 40px; font-size: 18px; }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 17px 36px;
    background: #fff; color: var(--cta-red); border-radius: 60px; font-weight: 800;
    text-decoration: none; transition: all .2s; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 32px rgba(0,0,0,.25); }
  
  /* Footer Styles */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 90px 50px 20px 50px;
    margin-top: 0;
}



/* Footer Top - Centered */
.footer-top {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

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

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

/* Footer Menu - Editable from Admin */
.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #667eea;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 10px;
}

.copyright p {
    font-size: 13px;
    margin: 0;
}

.powered-by p {
    font-size: 13px;
    margin: 0;
}

.powered-by a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* Back to Top Button - Hand Style */
.back-to-top {
    background: #dc2626;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-weight: 500;
}

.back-to-top i {
    font-size: 16px;
}

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

.back-to-top:hover {
    background: #5a67d8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-menu {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        padding: 0 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .back-to-top i {
        font-size: 14px;
    }
}

/*tools-css*/
.headert {
            background: #dc2626 !important;
            padding: 1.2rem 2rem !important;
            color: white !important;
        }

        .headert h1 {
            font-weight: 700 !important;
            font-size: 1.8rem !important;
            text-align: center !important;
            gap: 12px !important;
        }

        .headert p {
            color:white; !important;
            margin-top: 6px !important;
            font-size: 0.9rem !important;
            text-align: center !important;
        }

        .main-content {
            padding: 1rem 2rem;
        }
         .converter-container, .card {
            max-width: 90% !important;
            margin:10px auto 40px auto !important;
            width: 100% !important;
            padding:0 !important;
            background: white !important;
            border-radius: 2rem !important;
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15) !important;
            overflow: hidden !important;
        }
        .upload-area, .upload-section, .upload-zone {
    border: 2px dashed #dc2626 !important;
    border-radius: 2rem !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.25s !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    background: white !important;
    box-shadow: none !important;
}

.upload-area::before, .upload-section::before, .upload-zone::before {
    content: '' !important;
    position: absolute !important;
    inset: 4px !important;
    border: 2px dashed #1e3a8a !important;
    border-radius: 1.7rem !important;
    pointer-events: none !important;
}

.upload-area::after, .upload-section::after, .upload-zone::before {
    content: '' !important;
    position: absolute !important;
    inset: 10px !important;
    border: 2px dashed #f97316 !important;
    border-radius: 1.4rem !important;
    pointer-events: none !important;
}
.ben{
    margin:50px auto;
    padding:40px;
    max-width:90%;
    background:transparent;
    border:2px dashed #dc2626;
    border-radius:25px;
}
       /* Tool Content Section Styles */
.tool-content-section {
    max-width: 90%;
    margin: 50px auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.tool-content-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e7ff;
}

.tool-content-section h3 {
    color: #333;
    font-size: 20px;
    margin: 25px 0 15px;
}

.tool-content-section h4 {
    color: #555;
    font-size: 18px;
    margin: 20px 0 10px;
}

.tool-content-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tool-content-section ul,
.tool-content-section ol {
    margin: 15px 0 15px 25px;
    color: #555;
    line-height: 1.7;
}

.tool-content-section li {
    margin: 8px 0;
}

.tool-content-section strong {
    color: #667eea;
}

.tool-content-section a {
    color: #667eea;
    text-decoration: none;
}

.tool-content-section a:hover {
    text-decoration: underline;
}

.tool-content-section .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.tool-content-section .feature-list li {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.tool-content-section .feature-list li i {
    color: #10b981;
    font-size: 18px;
}

.tool-content-section .step-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.tool-content-section .step-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    counter-increment: step;
}

.tool-content-section .step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.tool-content-section .info-box {
    background: #e0e7ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.tool-content-section .warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.tool-content-section .success-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Dark mode support */
[data-theme="dark"] .tool-content-section {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .tool-content-section h2 {
    color: #818cf8;
    border-bottom-color: #334155;
}

[data-theme="dark"] .tool-content-section h3,
[data-theme="dark"] .tool-content-section h4,
[data-theme="dark"] .tool-content-section p,
[data-theme="dark"] .tool-content-section li {
    color: #cbd5e1;
}

[data-theme="dark"] .tool-content-section .feature-list li {
    background: #334155;
}

[data-theme="dark"] .tool-content-section .info-box {
    background: #1e3a8a;
}

[data-theme="dark"] .tool-content-section .warning-box {
    background: #78350f;
}

[data-theme="dark"] .tool-content-section .success-box {
    background: #064e3b;
}

/* Responsive */
@media (max-width: 768px) {
    .tool-content-section {
        margin: 30px 20px;
        padding: 25px;
    }
    
    .tool-content-section h2 {
        font-size: 24px;
    }
    
    .tool-content-section h3 {
        font-size: 18px;
    }
    
    .tool-content-section .feature-list {
        grid-template-columns: 1fr;
    }
}