
    :root {
    --primary: #4361ee;
    --primary-light: #4895ef;
    --secondary: #3f37c9;
    --light: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --dark: #212529;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family: "Roboto", sans-serif;

            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
        position: relative;
        background: linear-gradient(135deg, #fff 0%, #fff 100%);
        padding: 40px 0 90px;
        overflow: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #707070;
        line-height: 1.2;
        font-family: "Exo 2", sans-serif;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .gradient-text {
        background: linear-gradient(90deg, #4361EE 0%, #3A0CA3 50%, #2CC2D5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .subtitle {
        font-size: 1.25rem;
        color: #4a5568;
        max-width: 600px;
        margin: 1.5rem auto;
        line-height: 1.6;
    }
    
    .title-underline {
        height: 4px;
        width: 100px;
        background: linear-gradient(90deg, #4361EE 0%, #3A0CA3 50%, #2CC2D5 100%);
        margin: 0 auto 1.5rem;
        border-radius: 2px;
        position: relative;
    }
    
    .title-underline::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: rgba(67, 97, 238, 0.5);
        border-radius: 1px;
    }
    
    .subtitle-underline {
        height: 2px;
        width: 60px;
        background: linear-gradient(90deg, rgba(67, 97, 238, 0.5) 0%, rgba(44, 194, 213, 0.5) 100%);
        margin: 1.5rem auto 3rem;
        border-radius: 1px;
    }
    
    .corner-effect {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background: linear-gradient(45deg, rgba(44, 194, 213, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
        filter: blur(60px);
        z-index: 1;
    }
    
    .top-right {
        top: -100px;
        right: -100px;
        transform: rotate(45deg);
    }
    
    .bottom-left {
        bottom: -100px;
        left: -100px;
        transform: rotate(-45deg);
    }
    
    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero {
            padding: 60px 0 100px;
        }
        
        h1 {
            font-size: 2rem;
        }
        
        .subtitle {
            font-size: 1rem;
        }
        
        .title-underline {
            width: 80px;
            height: 3px;
        }
        
        .subtitle-underline {
            width: 50px;
        }
    }
    
    
       .tools-section {
  position: relative;
  padding: 3rem 2rem;
  margin: -100px auto 50px auto;
  max-width:94%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* 3D effect background */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(135deg, rgba(100, 200, 255, 0.1) 0%, transparent 50%),
      linear-gradient(315deg, rgba(255, 150, 200, 0.1) 0%, transparent 50%);
    z-index: -1;
    transform: translateZ(-1px);
  }
  
  /* Corner accents */
  &::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
    opacity: 0.8;
  }
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 15px 35px rgba(0, 0, 0, 0.15),
      0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

.tools-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tools-section .section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
}

.tools-section .section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 100%;
  position: relative;
  padding-bottom: 1.5rem;
}

.tools-section .section-description::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0.3) 50%, transparent 100%);
}

/* Bottom left corner accent */
.tools-section .corner-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 70px;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  z-index: -1;
  opacity: 0.7;
}

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.5rem;
        }

        .tool-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.1);
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .badge--new {
            background: #8FBC5D;
        }

        .tool-card h3 {
            font-size: 1.25rem;
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .tool-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .tool-card strong {
            color: var(--dark);
            font-weight: 600;
        }

        .feature-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .tool-card:hover .feature-wave {
            transform: scaleX(1);
        }

        /* Features Section */
       
           .features-section {
        padding: 80px 0;
        background-color: #f8fafc;
    }
    
    .containerfet {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 1rem;
        font-family: "Inter", sans-serif;
    }
    
    .gradient-text {
        background: linear-gradient(90deg, #4361EE 0%, #3A0CA3 50%, #7209B7 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #4a5568;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-underline {
        height: 4px;
        width: 80px;
        background: linear-gradient(90deg, #4361EE 0%, #3A0CA3 50%, #7209B7 100%);
        margin: 1.5rem auto 0;
        border-radius: 2px;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        color: #4a5568;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
       
       
       
       
       
       
       
       
       
.tool-icon svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Expand effect on hover */
.tool-icon:hover {
    transform: scale(1.05);
}

.tool-icon:hover svg {
    transform: scale(1.2);
}

/* Optional: Add a subtle pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* For better performance, consider these optimizations */
.tool-icon {
    will-change: transform;
    backface-visibility: hidden;
}

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            position: relative;
        }

        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
            }
        }
/* Tool Cards Enhancements */
.tool-card-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.tool-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.tool-card-link:hover .tool-cta {
    transform: translateY(0);
    opacity: 1;
}

.tool-cta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.tool-card-link:hover .feature-wave {
    transform: translateX(0);
}

.feature-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

/* Features Section Enhancements */
.feature-item {
    position: relative;
    padding: 25px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

/* Security Badge Enhancement */
.security-badge {
    margin-top: 30px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .tool-card-link:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}


 /* Base Styles */
  .content-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
  }

  /* 3D Background Elements */
  .content-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
    animation: content-float 15s ease-in-out infinite;
  }
  
  .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #6366f1, #a855f7);
    top: -150px;
    right: -150px;
  }
  
  .shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #ec4899, #f59e0b);
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
  }
  
  @keyframes content-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
  }

  /* Container */
  .content-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 1;
  }

  /* Header */
  .content-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .content-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
  }

  .content-gradient-text {
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .content-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Content Blocks */
  .content-block {
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .primary-block {
    background-color: white;
    border-left: 5px solid #6366f1;
  }

  .secondary-block {
    background-color: #f8fafc;
    border-left: 5px solid #ec4899;
  }

  .accent-block {
    background-color: white;
    border-left: 5px solid #f59e0b;
  }

  /* Typography */
  .content-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
  }

  .content-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #1e293b;
  }

  .content-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #334155;
  }

  /* Lists */
  .content-list, .content-numbered-list {
    margin: 25px 0;
    padding-left: 20px;
  }

  .content-list-item, .content-numbered-item {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
  }

  .content-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 2px;
    background-color: #6366f1;
  }

  .content-numbered-list {
    counter-reset: item;
    list-style-type: none;
  }

  .content-numbered-item::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #ec4899;
    font-weight: 700;
  }

  /* Special Elements */
  .content-highlight-box {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
  }

  .highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #1e40af;
    margin: 0;
  }

  /* Columns */
  .content-columns {
    display: flex;
    gap: 40px;
    margin: 30px 0;
  }

  .content-column {
    flex: 1;
  }

  .content-sublist {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
  }

  .content-sublist li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }

  .content-sublist li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f59e0b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .content-section {
      padding: 60px 0;
    }
    
    .content-main-title {
      font-size: 2rem;
    }
    
    .content-subtitle {
      font-size: 1.1rem;
    }
    
    .content-block {
      padding: 30px;
    }
    
    .content-columns {
      flex-direction: column;
      gap: 20px;
    }
    
    .content-bg-shape {
      display: none;
    }
  }
  
  
  
   /* Base Styles */
  .modern-features-3d {
    position: relative;
    padding: 100px 0;
    background-color: white;
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
  }

  /* 3D Background Elements */
  .feature-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    z-index: 0;
  }

  .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    top: -150px;
    right: -150px;
    animation: feature-float 15s ease-in-out infinite;
  }

  .shape-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #ec4899, #f59e0b);
    bottom: -200px;
    left: -200px;
    animation: feature-float 18s ease-in-out infinite reverse;
  }

  @keyframes feature-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
  }

  /* Container */
  .feature-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
  }

  /* Header */
  .feature-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .feature-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .feature-gradient {
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .feature-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .feature-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    margin: 20px auto 0;
    border-radius: 2px;
  }

  /* Tabs */
  .feature-tabs-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    overflow: hidden;
  }

  .feature-tab-buttons {
    display: flex;
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
    margin: 10px;
  }

  .feature-tab-btn {
    flex: 1;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .feature-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: -1;
    border-radius: 8px;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .feature-tab-btn.active::before {
    opacity: 1;
    transform: scale(1);
  }

  .tab-btn-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748b;
    transition: all 0.3s ease;
  }

  .feature-tab-btn.active .tab-btn-content {
    color: #6366f1;
  }

  .feature-tab-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
  }

  /* Tab Content */
  .feature-tab-content {
    display: none;
    padding: 30px;
  }

  .feature-tab-content.active {
    display: block;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
  }

  /* Feature Cards */
  .feature-card {
    position: relative;
    perspective: 1000px;border:2px dashed blue;
  }

  .feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: white;
    border-radius: 12px;
border:2px dashed blue; 
transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    z-index: 2;
  }

  .feature-card:hover .feature-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .feature-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #475569;
  }

  .feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: #6366f1;
    border-radius: 1px;
  }

  .feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .feature-card:hover .feature-card-bg {
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .modern-features-3d {
      padding: 60px 0;
    }
    
    .feature-main-title {
      font-size: 2.25rem;
    }
    
    .feature-subtitle {
      font-size: 1.1rem;
    }
    
    .feature-tab-buttons {
      flex-wrap: wrap;
    }
    
    .feature-tab-btn {
      min-width: calc(50% - 4px);
      margin-bottom: 8px;
    }
    
    .feature-tab-content {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .feature-main-title {
      font-size: 2rem;
    }
    
    .feature-tab-btn {
      min-width: 100%;
    }
    
    .feature-card-inner {
      padding: 25px;
    }
  }
  
  
    /* Base Styles */
  .modern-faq {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
  }

  /* Decorative Shapes */
  .faq-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 0;
  }

  .faq-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    top: -100px;
    right: -100px;
    animation: faq-float 12s ease-in-out infinite;
  }

  .faq-shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #ec4899, #f59e0b);
    bottom: -150px;
    left: -150px;
    animation: faq-float 15s ease-in-out infinite reverse;
  }

  @keyframes faq-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
  }

  /* Container */
  .faq-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
  }

  /* Header */
  .faq-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .faq-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .faq-gradient {
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .faq-subtitle {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .faq-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    margin: 20px auto 0;
    border-radius: 2px;
  }

  /* Accordion */
  .faq-accordion {
    border-radius: 12px;
    overflow: hidden;
  }

  .faq-item {
    margin-bottom: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .faq-question {
    width: 100%;
    padding: 22px 25px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.2s ease;
  }

  .faq-question:hover {
    color: #6366f1;
  }

  .faq-question span {
    flex: 1;
    margin-right: 15px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-answer-content {
    padding: 0 25px 25px;
  }

  .faq-answer p, .faq-answer li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    margin: 15px 0;
  }

  .faq-answer li {
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .faq-answer li::marker {
    color: #6366f1;
  }

  /* Active State */
  .faq-item.active .faq-question {
    color: #6366f1;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  /* Special Elements */
  .faq-note {
    background-color: #f0f9ff;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #0ea5e9;
    font-size: 0.95rem;
  }

  .faq-formats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
  }

  .faq-format {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: #f8fafc;
  }

  .format-icon {
    font-size: 1.2rem;
  }

  .faq-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0;
  }

  .faq-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
  }

  .faq-feature svg {
    color: #10b981;
    flex-shrink: 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .modern-faq {
      padding: 60px 0;
    }
    
    .faq-title {
      font-size: 2rem;
    }
    
    .faq-subtitle {
      font-size: 1rem;
    }
    
    .faq-question {
      padding: 18px 20px;
      font-size: 1rem;
    }
    
    .faq-answer-content {
      padding: 0 20px 20px;
    }
    
    .faq-formats, .faq-feature-grid {
      grid-template-columns: 1fr;
    }
    
    .faq-shape {
      display: none;
    }
  }