.hero {
    position: relative;
    background: linear-gradient(to bottom, #fff 0%, #f5f5fa 50%, #f5f5fa 100%);
    padding: 80px 0 100px 0;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}



.hero__content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    transform: translateZ(20px);
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #333 0%, #333 25%, #4B0082 25%, #4B0082 50%, #2F4F4F 50%, #2F4F4F 75%, #E4302B 75%, #E4302B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight: normal;
    max-width: 970px;
}




/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) translateX(5px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-8px) translateX(3px) rotate(1deg);
    }
}

/* 3D Depth Layers */
.layer-1 { transform: translateZ(20px); }
.layer-2 { transform: translateZ(40px); }
.layer-3 { transform: translateZ(60px); }

/* Glow Effects */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(231, 76, 60, 0.08) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .icon {
        width: 30px;
        height: 30px;
    }
    
    .icon svg, .icon i {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .icon {
        width: 25px;
        height: 25px;
        opacity: 0.3;
    }
    
    .icon svg, .icon i {
        width: 25px;
        height: 25px;
    }
}

/* Additional 3D Effects */
.hero-content-3d {
    transform-style: preserve-3d;
    animation: subtle-float 8s ease-in-out infinite;
}

@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}
/* Search form styles */
.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 12;
    border: 1px solid #00008B;
    backdrop-filter: blur(10px);
}

.search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.search-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    background: transparent;
    color: #2c3e50;
}

.search-form input[type="text"]::placeholder {
    color: #7f8c8d;
}

.search-form button {
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
/* Mobile Responsive Styles for Hero Section */
@media (max-width: 768px) {
    .hero__content {
        padding: 60px 20px;
        transform: translateZ(10px);
    }

    .hero__title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: -0.3px;
        line-height: 1.2;
        background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .search-form {
        max-width: 100%;
        border-radius: 25px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid #00008B;
    }

    .search-form:focus-within {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .search-form input[type="text"] {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 25px 25px 0 0;
        text-align: center;
    }

    .search-form button {
        padding: 12px 20px;
        border-radius: 0 0 25px 25px;
        margin: 0;
        box-shadow: none;
    }

    .search-form button:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Small Mobile Devices (Phones) */
@media (max-width: 480px) {
    .hero__content {
        padding: 50px 15px;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.2px;
    }

    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .search-form {
        border-radius: 20px;
    }

    .search-form input[type="text"] {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 20px 20px 0 0;
    }

    .search-form button {
        padding: 14px 20px;
        border-radius: 0 0 20px 20px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__description {
        font-size: 0.85rem;
    }

    .search-form input[type="text"] {
        padding: 12px 14px;
    }

    .search-form button {
        padding: 12px 16px;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__content {
        max-width: 90%;
        padding: 0 30px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.1rem;
    }

    .search-form {
        max-width: 450px;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (max-width: 768px) {
    .hero__content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .search-form {
        max-width: 400px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero__title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .search-form {
        transition: none;
    }
    
    .search-form:focus-within {
        transform: none;
    }
    
    .search-form button:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hero__description {
        color: #bdc3c7;
    }
    
    .search-form {
        background: rgba(45, 45, 45, 0.9);
        border-color: #04AA6D;
    }
    
    .search-form input[type="text"] {
        color: #ecf0f1;
    }
    
    .search-form input[type="text"]::placeholder {
        color: #95a5a6;
    }
}

/* Print styles */
@media print {
    .hero__content {
        transform: none;
        text-align: left;
    }
    
    .hero__title {
        background: none;
        -webkit-text-fill-color: #00008B;
        color: #00008B;
        text-shadow: none;
    }
    
    .search-form {
        display: none;
    }
}




/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .file-icon {
        font-size: 1.5rem;
    }
    
    .search-form {
        margin: 0 20px;
    }
    
    .circle {
        display: none;
    }
}



.tools-section {
    text-align: center;
    background: linear-gradient(135deg, #f5f5fa 0%, #f5f5fa 100%);
    padding: 20px 40px;
    margin: 0px auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}



 /* 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;
  }

 
  /* 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: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    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: #fff;
    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: #fff;
    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: gold;
  }

  /* Active State */
  .faq-item.active .faq-question {
    color: #6366f1;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  /* Special Elements */
  .faq-note {
    background-color: #333;
    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;
    }
  }

.cta-section {
    position: relative;
   background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 60px 40px;
    margin:0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f5f5fa;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #f5f5fa;
    color: #333;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.cta-btn.primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255,107,107,0.4);
}

.cta-btn.secondary {
    background: #fff;
    color: #333;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 70%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  font-size: 22px;
  background-color: #E4312C;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: #005ec4;
  transform: scale(1.1);
}

  /* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: #fff;
}

.section__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 30px;
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.blog-card__excerpt {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-card__link:hover {
    color: #2980b9;
}

/* Section Actions */
.section__actions {
    text-align: center;
    margin-top: 40px;
}

.btnb {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: #E4312C;
    color: white;
}

.btn--primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-preview {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .grid--3 {
        grid-template-columns: 1fr;
    }
    
    .blog-card__content {
        padding: 20px;
    }
}

       
        .containerw {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding:80px;
            background: radial-gradient(ellipse 7% 30% at 7% 80%, #e2e8fd 45%, #A9BAFF00 350%), radial-gradient(ellipse 7% 30% at 95% 20%, #fae5ea 45%, #FFB3C200 350%), #f9fbfc;
    background-repeat: no-repeat;
    background-size: cover;
        }

        headerw {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .section-gradient {
            background: linear-gradient(90deg, #E4312C, #1E90FF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-description {
            opacity: 0.8;
            line-height: 1.6;
        }

      
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .shape {
                display: none;
            }
        }
        
            
    /* Heart Icon Styles */
.heart-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-header:hover .heart-icon {
    transform: scale(1.1);
}

/* If using Font Awesome */
.fa-heart {
    color: #E5322D;
    font-size: 28px;
}

/* Animation for heart icon */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.logo-header:hover .heart-icon {
    animation: heartbeat 0.8s ease-in-out;
}
    
    .gtranslate_wrapper {
        width: auto !important;
    }
    /* hide flags */
    .gtranslate_wrapper img {
        display: none !important;
    }
    /* GTranslate Container */
.gtranslate-container {
    display: flex;
    align-items: center;
}

/* Style the GTranslate dropdown */
.gtranslate_wrapper {
    display: flex;
    align-items: center;
}

.gtranslate_wrapper select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background:transparent;
}

.gtranslate_wrapper select:hover {
    border-color: #e5322d;
    color: #e5322d;
}

.gtranslate_wrapper select:focus {
    outline: none;
    border-color: #e5322d;
    box-shadow: 0 0 0 3px rgba(229, 50, 45, 0.1);
}
    
        /* Your existing CSS remains the same */
        .home-icon {
            border: 0px solid #E1E1E2;
            border-radius: 50px;
            padding: 2px;
            transition: all 0.3s ease;
            background: maroon;
        }

        .home-icon:hover {
            background-color: rgba(255, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .pdf-icon {
            border: 2px solid #E5322D;
            border-radius: 50px;
            padding: 2px;
            background-color: white;
            transition: all 0.3s ease;
        }

        .logo-header:hover .pdf-icon {
            background-color: #E5322D;
            transform: scale(1.05);
        }

        .logo-header:hover .pdf-icon path {
            stroke: white;
        }

        .alternative-pdf-icon {
            border: 2px solid #E5322D;
            border-radius: 8px;
            padding: 6px;
            background-color: white;
            transition: all 0.3s ease;
        }

        /* ===== Header Styles ===== */
        .header1 {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 4rem;
        }

        .logo-header {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.6rem;
            font-weight: 700;
            color: #333;
            transition: all 0.3s ease;
        }

        .logo-header:hover {
            color: #E5322D;
            transform: translateY(-1px);
        }

        .logo-header i {
            margin-right: 0.75rem;
            font-size: 1.7rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            z-index: 1002;
        }

        .mobile-menu-btn:hover {
            background-color: gray;
            color: #E5322D;
        }

        /* ===== Navigation Styles ===== */
        .nav-links {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0 1rem;
            height: 4rem;
            text-decoration: none;
            color: #444;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.1rem;
            font-family: "Work Sans", sans-serif;
        }

        .nav-link i {
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        .nav-link:hover {
            color: #E5322D;
        }

        .nav-link.active {
            color: #000;
            font-weight: 600;
        }

        /* Dropdown Styles */
        .dropdown-toggle {
            position: relative;
        }

        .dropdown-arrow {
            margin-left: 0.55rem;
            font-size: 0.55rem;
            transition: transform 0.2s;
            font-weight: bold;
        }

        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            min-width: 90%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            overflow: hidden;
            animation: fadeIn 0.2s ease-out;
            border:1px solid #ccc;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-0.5rem); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background-color: #f5f5fa;
            color: #E5322D;
            border-left-color: #F91A2D;
        }

        .dropdown-menu a i {
            width: 1.25rem;
            text-align: center;
            margin-right: 0.75rem;
            color: #F91A2D;
        }

        /* Mega Dropdown Menu */
        .mega-dropdown {
            position: static;
            background: white;
        }

        .mega-dropdown .dropdown-menu {
            width: 94%;
            left: 40px;
            right: 40px;
            padding: 1rem;
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            border-top: 1px solid #c3c8ce;
            border-radius: 15px;
        }

        .mega-dropdown:hover .dropdown-menu {
            display: grid;
        }

        .mega-dropdown-col h4 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .mega-dropdown-col h4 i {
            margin-right: 0.75rem;
            font-size: 1.1rem;
            color: #E5322D;
        }

        .mega-dropdown-col ul {
            list-style: none;
        }

        .mega-dropdown-col ul li {
            margin-bottom: 0.5rem;
        }

        .mega-dropdown-col ul li a {
            display: flex;
            align-items: center;
            padding: 0rem 0;
            color: #20323F;
            text-decoration: none;
            transition: var(--transition-fast);
            font-size: 0.9rem;
        }

        .mega-dropdown-col ul li a:hover {
            color: var(--primary);
            transform: translateX(3px);
        }

        .mega-dropdown-col ul li a i {
            margin-right: 0.75rem;
            width: 1.25rem;
            text-align: center;
            color: #E4312C;
            font-size: 0.9rem;
        }

        .mega-dropdown-featured {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 5px;
            grid-column: span 2;
        }

        .mega-dropdown-featured h4 {
            color: #333;
            margin-bottom: 1rem;
        }

        .featured-tool {
            display: flex;
            align-items: center;
            background: white;
            padding: 1rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            
        }

        

        .featured-tool i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 1rem;
            background: var(--primary-extra-light);
            padding: 0.75rem;
            border-radius: var(--rounded-full);
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-tool-content h5 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--darker);
        }

        .featured-tool-content p {
            font-size: 0.85rem;
            color: #0811FF;
        }

        /* CTA Buttons */
        .nav-cta {
            display: flex;
            align-items: center;
            margin-left: 1.5rem;
            gap: 0.75rem;
            padding: 15px 22px;
            color: white;
        }

       

        .btnz-primary {
            background-color: #fff;
            color: #333;
            border: 0px double #E4312C;
            box-shadow: var(--shadow-sm);
            border-radius:0px;
        }

        .btnz-primary:hover {
            background-color: #fff;
            border-color: var(--primary-dark);
            
        }

        
        /* Badges */
        .badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: var(--rounded-full);
            transition: var(--transition);
        }

        .badge-primary {
            color: #fff;
            background-color: #31AB6B;
            padding:6px;
            border-radius:50px;
        }

        .badge-success {
            color: #fff;
            background-color: #E4312C;
            padding:6px;
            border-radius:50px;
        }

        .badge-warning {
            color: #fff;
            background-color: #31AB6B;
            padding:6px;
            border-radius:50px;
        }

        /* ===== Mega Menu Sidebar Styles ===== */
        .mega-menu-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .mega-menu-sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mega-menu-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 90%;
            max-width: 400px;
            height: 100vh;
            background-color: var(--white);
            z-index: 1000;
            overflow-y: auto;
            transition: var(--transition);
            box-shadow: var(--shadow-xl);
        }

        .mega-menu-sidebar.active {
            left: 0;
        }

        .close-sidebar-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1001;
        }

        .mega-menu-sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mega-menu-sidebar .mega-menu-content {
            padding: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .mega-menu-sidebar .mega-menu-col {
            margin-bottom: 1.5rem;
        }

        .mega-menu-sidebar .mega-menu-col h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--secondary-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mega-menu-sidebar .mega-menu-col h4::after {
            content: '+';
            font-size: 1.2rem;
            color: var(--primary);
        }

        .mega-menu-sidebar .mega-menu-col.active h4::after {
            content: '-';
        }

        .mega-menu-sidebar .mega-menu-col ul {
            display: none;
            padding-left: 0.5rem;
            margin-top: 0.5rem;
            list-style: none;
        }

        .mega-menu-sidebar .mega-menu-col.active ul {
            display: block;
        }

        .mega-menu-sidebar .mega-menu-col ul li {
            margin-bottom: 0.5rem;
        }

        .mega-menu-sidebar .mega-menu-col ul li a {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .mega-menu-sidebar .mega-menu-col ul li a:hover {
            color: var(--primary);
        }

        .mega-menu-sidebar .mega-menu-col ul li a i {
            margin-right: 0.75rem;
            width: 1.25rem;
            text-align: center;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .mega-menu-sidebar .mega-menu-featured {
            margin-top: auto;
            padding: 1.5rem;
            background-color: var(--primary-extra-light);
            border-radius: var(--rounded-lg);
        }

        .mega-menu-sidebar .mega-menu-featured h4 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            border: none;
            padding: 0;
        }

        .mega-menu-sidebar .featured-tool {
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 1rem;
            border-radius: var(--rounded);
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .mega-menu-sidebar .featured-tool i {
            font-size: 1.25rem;
            color: var(--primary);
            margin-right: 1rem;
            background: var(--primary-extra-light);
            padding: 0.5rem;
            border-radius: var(--rounded-full);
        }

        .mega-menu-sidebar .featured-tool-content h5 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            color: var(--darker);
        }

        .mega-menu-sidebar .featured-tool-content p {
            font-size: 0.8rem;
            color: var(--secondary);
        }

        /* User Menu */
        .user-menu {
            position: relative;
            margin-left: 1rem;
        }

        .user-menu-btn {
            display: flex;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: var(--rounded-full);
            transition: var(--transition);
        }

        .user-menu-btn:hover {
            background-color: var(--gray-light);
        }

        .user-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--rounded-full);
            object-fit: cover;
            border: 2px solid var(--primary-light);
        }

        .user-menu-dropdown {
            position: absolute;
            right: 0;
            top: 100%;
            width: 200px;
            background: var(--white);
            border-radius: var(--rounded-md);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
            z-index: 1000;
            display: none;
            animation: fadeIn 0.2s ease-out;
        }

        .user-menu:hover .user-menu-dropdown {
            display: block;
        }

        .user-menu-dropdown a {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .user-menu-dropdown a:hover {
            background-color: var(--gray-light);
            color: var(--primary);
        }

        .user-menu-dropdown a i {
            margin-right: 0.75rem;
            width: 1rem;
            text-align: center;
            color: var(--primary);
        }

        .user-menu-dropdown .divider {
            height: 1px;
            background-color: var(--gray-light);
            margin: 0.5rem 0;
        }

        /* Notification Badge */
        .notification-badge {
            position: absolute;
            top: -0.25rem;
            right: -0.25rem;
            background-color: var(--danger);
            color: white;
            border-radius: var(--rounded-full);
            width: 1.25rem;
            height: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }

        /* NEW: Search Icon Styles */
        .search-icon-container {
            position: relative;
            margin-left: 1rem;
        }

        .search-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: none;
            font-size: 1.4rem;
            font-weight:bold;
            color: #4A6CF7;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            margin-right:15px;
        }

        .search-icon:hover {
            background-color: #f5f5fa;
            color: #E5322D;
        }

        /* NEW: Search Popup Styles */
        .search-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 90%;
            max-width: 600px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1101;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .search-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid #e1e1e2;
        }

        .search-popup-header h3 {
            margin: 0;
            color: #333;
            font-size: 1.2rem;
        }

        .close-search-popup {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-search-popup:hover {
            background-color: #f5f5fa;
            color: #E5322D;
        }

        .search-popup-form {
            padding: 1.5rem;
        }

        .search-popup-input-group {
            display: flex;
            width: 100%;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .search-popup-input {
            flex: 1;
            padding: 12px 20px;
            font-size: 16px;
            border: none;
            outline: none;
            background: #f9f9f9;
        }

        .search-popup-button {
            padding: 12px 25px;
            background: #E5322D;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .search-popup-button:hover {
            background: #c02925;
        }

        /* Responsive styles for search popup */
        @media (max-width: 768px) {
            .search-popup {
                width: 95%;
            }
            
            .search-popup-input {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .search-popup-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Responsive styles for the rest of the header */
        @media screen and (max-width: 1024px) {
            .header-container {
                padding: 0 1.5rem;
            }
            
            .nav-links {
                gap: 0.5rem;
            }
            
            .nav-link {
                padding: 0 0.75rem;
                font-size: 0.9rem;
            }
            
            .mega-dropdown .dropdown-menu {
                padding: 1.5rem;
                gap: 1.5rem;
                grid-template-columns: repeat(2, 1fr);
                background: white !important;
            }
            
            .mega-dropdown-featured {
                grid-column: span 2;
            }
            
            .mega-dropdown-col ul li a {
                font-size: 0.85rem;
                padding: 0.4rem 0;
            }
            
            .featured-tool {
                padding: 0.75rem;
            }
            
            .featured-tool i {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1.25rem;
            }
            
            .nav-cta {
                margin-left: 1rem;
                gap: 0.5rem;
            }
            
            .btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }

        @media screen and (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
                height: 3.5rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                display: none;
            }
            
            .logo-header {
                font-size: 1.25rem;
            }
            
            .logo-header svg {
                width: 28px;
                height: 28px;
            }
            
            /* Completely hide desktop mega dropdown on mobile */
            .mega-dropdown .dropdown-menu {
                display: none !important;
            }
            
            .mega-dropdown:hover .dropdown-menu {
                display: none !important;
            }
            
            /* Mega dropdown adjustments for mobile */
            .mega-dropdown .dropdown-toggle {
                pointer-events: none;
            }
            
            .mega-dropdown .dropdown-arrow {
                display: none;
            }
            
            /* Ensure sidebar has white background */
            .mega-menu-sidebar {
                background: white !important;
            }
            
            .mega-menu-content {
                background: white !important;
            }
            
            .mega-menu-col,
            .mega-menu-col h4,
            .mega-menu-col ul,
            .mega-menu-col ul li,
            .mega-menu-col ul li a {
                background: white !important;
            }
            
            .mega-menu-featured {
                background: #f8f9fa !important;
            }
        }

        @media screen and (max-width: 480px) {
            .header-container {
                padding: 0 0.75rem;
            }
            
            .logo-header span {
                font-size: 1.1rem;
            }
            
            .logo-header svg {
                width: 24px;
                height: 24px;
            }
            
            .mobile-menu-btn {
                padding: 0.5rem;
                font-size: 1.25rem;
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .mega-menu-sidebar {
                width: 85%;
                background: white !important;
            }
            
            .mega-menu-sidebar-header {
                padding: 1rem;
                background: white !important;
                border-bottom: 1px solid #e5e5e5;
            }
            
            .mega-menu-content {
                padding: 1rem;
                background: white !important;
            }
            
            .mega-menu-sidebar .mega-menu-col h4 {
                font-size: 1rem;
                padding: 0.75rem 0;
                background: white !important;
                color: #E5322D;
                margin: 0;
                border-bottom: 1px solid #e5e5e5;
            }
            
            .mega-menu-sidebar .mega-menu-col ul {
                background: white !important;
                padding: 0.5rem 0;
            }
            
            .mega-menu-sidebar .mega-menu-col ul li {
                background: white !important;
                margin: 0;
            }
            
            .mega-menu-sidebar .mega-menu-col ul li a {
                font-size: 0.9rem;
                padding: 0.75rem 0;
                background: white !important;
                color: #333;
                border-left: none;
            }
            
            .mega-menu-sidebar .mega-menu-col ul li a:hover {
                background: #f5f5f5 !important;
                color: #E5322D;
            }
            
            .mega-menu-sidebar .featured-tool {
                padding: 0.75rem;
                background: white !important;
                margin-bottom: 0.75rem;
            }
            
            .mega-menu-sidebar .featured-tool-content h5 {
                font-size: 0.9rem;
            }
            
            .mega-menu-sidebar .featured-tool-content p {
                font-size: 0.75rem;
            }
            
            .mega-menu-sidebar .mega-menu-featured {
                background: #f8f9fa !important;
                padding: 1rem;
                margin-top: 1rem;
            }
        }

        @media screen and (max-width: 768px) {
            .header1 {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
            }
            
            body {
                padding-top: 3.5rem;
                overflow-x: hidden;
            }
            
            .mega-menu-sidebar {
                transition: left 0.3s ease-in-out;
                z-index: 1001;
            }
            
            .mega-menu-sidebar-overlay {
                z-index: 1000;
            }
            
            .mega-menu-sidebar * {
                background: white !important;
            }
            
            .mega-menu-sidebar .mega-menu-featured * {
                background: transparent !important;
            }
            
            .mega-menu-sidebar .featured-tool {
                background: white !important;
            }
        }

        @media screen and (max-height: 500px) and (orientation: landscape) {
            .mega-menu-sidebar {
                overflow-y: auto;
            }
            
            .mega-menu-content {
                padding-bottom: 2rem;
            }
            
            .mega-menu-sidebar .mega-menu-col {
                margin-bottom: 1rem;
            }
            
            .mega-menu-sidebar .mega-menu-col ul li {
                margin-bottom: 0.25rem;
            }
        }

        @media screen and (max-width: 768px) and (min-resolution: 2dppx) {
            .logo-header svg {
                transform: scale(1.1);
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .nav-link {
                padding: 0.5rem 0.75rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            
            .dropdown-menu a {
                padding: 1rem;
                min-height: 44px;
            }
            
            .mega-dropdown-col ul li a {
                padding: 0.75rem 0;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            
            .mobile-menu-btn {
                min-width: 44px;
                min-height: 44px;
            }
            
            .mega-menu-sidebar .mega-menu-col h4 {
                min-height: 44px;
                display: flex;
                align-items: center;
                cursor: pointer;
            }
            
            .mega-menu-sidebar .mega-menu-col ul li a {
                min-height: 44px;
                display: flex;
                align-items: center;
            }
        }

        body.sidebar-open {
            overflow: hidden;
        }

 
 .btn, .btn-upload {
    display: inline-block;
    padding: 15px 25px;
    background: radial-gradient(circle at 30% 50%, #4A6CF7 0%, #FA8072 70%, #4169E1 100%);
    color: white;
    border: 4px solid white;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before, .btn-upload::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before, .btn-upload:hover::before {
    left: 100%;
}

.btn:hover, .btn-upload:hover {
    background: radial-gradient(circle at 70% 50%, #8B0000 0%, #1a1a2e 70%, #16213e 100%);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
}
            .btn i {
                margin-right: 8px;
            }
 

.popular-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6347, #4682B4);
    color: white;
    padding: 4px 16px;
    border-radius: 0 0 25px 25px;
    font-size: 10px;
    font-weight: normal;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge1 {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2E8B57, #4169E1);
    color: white;
    padding: 4px 16px;
    border-radius: 0 0 25px 25px;
    font-size: 10px;
    font-weight: normal;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    headert {
            text-align: center;
            margin-bottom: 20px;
            padding: 10px 0;
        }

        headert h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 0;
            font-weight: 700;
        }

        headert p {
            font-size: 1rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto;
            margin-bottom: 15px;
        }


.hints-section {
    padding: 0;
    margin: 5px 0;
}

.hints-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hint-icon {
    font-size: 18px;
    color: #22c55e;
    font-weight: bold;
}

.hint-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hints-grid {
        gap: 30px;
    }
    
    .hint-text {
        font-size: 13px;
    }
}


