      /* 🧹 CSS Reset */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      /* 🎨 CSS Variables for Theming */
      :root {
        --primary: #6c63ff;
        --primary-light: #8a84ff;
        --primary-dark: #554fd8;
        --secondary: #ff6584;
        --accent: #36d1dc;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --text: #1a202c; /* Deep Navy/Black for max contrast */
        --text-light: #64748b; /* Slate Gray for subtle elements */
        --bg: #ffffff; /* Pure White for Primary Nav */
        --bg-secondary: #f5f7fa; /* Cooler Off-White for Secondary Nav */
        --bg-tertiary: #e9ecef;
        --border: #dee2e6;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        --radius: 12px;
        --transition: all 0.3s ease;
        --header-height: 80px;

        /* 🆕 Additional theme variables for enhanced customization */
        --transition-speed: 0.3s;
        --border-radius: 12px;
        --spacing-unit: 1rem;
        --secondary-bar-height: 55px;
        --header-height: 80px;
        --total-header-height: calc(
          var(--header-height) + var(--secondary-bar-height)
        );
      }

      /* 🌙 Dark Mode Variables */
      [data-theme="dark"] {
        --primary: #8a84ff;
        --primary-light: #a8a4ff;
        --primary-dark: #6c63ff;
        --secondary: #ff8fa3;
        --accent: #4dd0e1;
        --text: #e2e8f0; /* Soft White for readability */
        --text-light: #94a3b8; /* Lighter Blue-Gray */
        --bg: #1a1a2e; /* Deep Dark Purple-Blue for Primary Nav */
        --bg-secondary: #2c2c43; /* Slightly lighter Dark Blue-Gray for Secondary Nav */
        --bg-tertiary: #3e4a6e;
        --border: #404040;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      }

      /* 🏗️ Base Styles */
      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", "Segoe UI", sans-serif;
        line-height: 1.6;
        color: var(--text);
        background-color: transparent;
        transition: var(--transition);
        overflow-x: hidden;
      }

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

      section {
        padding: 100px 0;
      }

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

      h1 {
        font-size: 3.5rem;
      }

      h2 {
        font-size: 2.5rem;
      }

      h3 {
        font-size: 1.8rem;
      }

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

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

      .btn {
        display: inline-block;
        padding: 14px 32px;
        background-color: var(--primary);
        color: white;
        border-radius: var(--radius);
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
        width: 150px;
      }

      .btn::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: var(--transition);
      }

      .btn:hover::before {
        left: 100%;
      }

      .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
      }

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

      .btn-secondary:hover {
        background-color: #e05574;
        box-shadow: 0 10px 20px rgba(255, 101, 132, 0.3);
      }

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

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

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-title h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
      }

      .section-title h2::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
      }

      .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }

      /* ⏳ Progress Bar */
      #progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        z-index: 1000;
        transition: width 0.3s ease;
      }

      /* 🦸 Hero Section */
      .hero {
        padding: 180px 0 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(108, 99, 255, 0.05)"/></svg>');
        background-size: cover;
      }

      .hero h1 {
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
      }

      .hero h1 span {
        color: var(--primary);
        position: relative;
      }

      .hero h1 span::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 8px;
        background-color: rgba(108, 99, 255, 0.2);
        bottom: 5px;
        left: 0;
        z-index: -1;
        border-radius: 4px;
      }

      .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 40px;
        color: var(--text-light);
        animation: fadeInUp 1s ease 0.2s both;
      }

      .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        animation: fadeInUp 1s ease 0.4s both;
      }

      .hero-animation {
        margin-top: 80px;
        height: 300px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><path fill="%236c63ff" fill-opacity="0.1" d="M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,186.7C672,192,768,192,864,181.3C960,171,1056,149,1152,133.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
        animation: wave 10s ease-in-out infinite;
      }

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

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

      /* ✨ Features Section */
      .features {
        background-color: var(--bg);
      }

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

      .feature-card {
        background: linear-gradient(145deg, var(--bg), var(--bg-secondary));
        border-radius: 24px;
        padding: 60px 40px 50px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(108, 99, 255, 0.1),
          0 10px 20px rgba(0, 0, 0, 0.05),
          inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(108, 99, 255, 0.1);
        backdrop-filter: blur(10px);
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg at 50% 50%,
          transparent,
          var(--primary),
          var(--accent),
          transparent
        );
        opacity: 0;
        transition: all 0.6s ease;
        animation: rotate 10s linear infinite;
      }

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

      .feature-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 50%,
          rgba(108, 99, 255, 0.05) 100%
        );
        border-radius: 24px;
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .feature-card:hover {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
        box-shadow: 0 40px 80px rgba(108, 99, 255, 0.2),
          0 20px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: var(--primary);
      }

      .feature-card:hover::before {
        opacity: 0.3;
      }

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

      .feature-card:hover .feature-icon {
        transform: translateY(-10px) scale(1.2) rotate(10deg);
        box-shadow: 0 20px 40px rgba(108, 99, 255, 0.4);
      }

      .feature-card:hover h3 {
        color: var(--primary);
        transform: translateY(-5px);
      }

      .feature-card > * {
        position: relative;
        z-index: 2;
      }

      .feature-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 30px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 15px 30px rgba(108, 99, 255, 0.25),
          0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
      }

      .feature-icon::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(
          45deg,
          var(--primary),
          var(--accent),
          var(--secondary)
        );
        border-radius: 30px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .feature-card:hover .feature-icon::before {
        opacity: 1;
      }

      .feature-card h3 {
        margin-bottom: 20px;
        font-size: 1.8rem;
        font-weight: 700;
        transition: all 0.3s ease;
      }

      .feature-card p {
        font-size: 1rem;
        line-height: 1.7;
        opacity: 0.8;
        transition: all 0.3s ease;
      }

      .feature-card:hover p {
        opacity: 1;
      }

      /* 🖼️ Templates Showcase */
      .templates-showcase {
        background-color: var(--bg-secondary);
      }

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

      .template-card {
        background: var(--bg);
        border-radius: var(--radius);
        overflow: hidden;
        transition: var(--transition);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .template-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .template-preview {
        height: 200px;
        background: linear-gradient(45deg, #ff9a9e, #fad0c4);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
      }

      .template-info {
        padding: 20px;
      }

      .template-info h3 {
        margin-bottom: 10px;
        color: var(--text);
      }

      .template-info p {
        color: var(--text-light);
        margin-bottom: 15px;
      }

      /* 🔄 How It Works */
      .how-it-works {
        background-color: var(--bg-secondary);
      }

      .steps {
        display: flex;
        justify-content: space-between;
        position: relative;
        max-width: 900px;
        margin: 0 auto;
      }

      .steps::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--border);
        z-index: 1;
      }

      .step {
        text-align: center;
        position: relative;
        z-index: 2;
        flex: 1;
      }

      .step-number {
        width: 80px;
        height: 80px;
        background: var(--bg);
        border: 2px solid var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin: 0 auto 20px;
        position: relative;
      }

      .step-content {
        padding: 0 15px;
      }

      /* ❓ FAQ Section */
      .faq-section {
        background-color: var(--bg);
      }

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

      .faq-item {
        margin-bottom: 15px;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
      }

      .faq-question {
        padding: 20px;
        background-color: var(--bg-secondary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        transition: var(--transition);
      }

      .faq-question:hover {
        background-color: var(--bg-tertiary);
      }

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

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

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

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

      /* 👥 Testimonials */
      .testimonials {
        background-color: var(--bg-secondary);
      }

      .testimonial-slider {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        padding: 0 80px;
        overflow: hidden;
      }

      .testimonial-carousel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: transform 0.6s ease;
      }

      .testimonial-card {
        background: var(--bg);
        border-radius: var(--radius);
        padding: 30px;
        box-shadow: var(--shadow);
        text-align: center;
        border: 1px solid var(--border);
        width: 350px;
        flex-shrink: 0;
        transition: all 0.6s ease;
        opacity: 0.6;
        transform: scale(0.9);
      }

      .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15), var(--shadow);
        border-color: var(--primary);
        z-index: 2;
      }

      .testimonial-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg);
        border: 2px solid var(--primary);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        z-index: 10;
        color: var(--primary);
        font-size: 1.2rem;
      }

      .testimonial-arrows:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
      }

      .arrow-left {
        left: 20px;
      }

      .arrow-right {
        right: 20px;
      }

      .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        overflow: hidden;
        border: 3px solid var(--primary);
        transition: all 0.3s ease;
      }

      .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.6;
      }

      .testimonial-author {
        font-weight: 600;
        color: var(--primary);
        font-size: 1.1rem;
      }

      .testimonial-role {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-top: 5px;
      }

      .testimonial-nav {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
      }

      .testimonial-nav button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background-color: var(--border);
        cursor: pointer;
        transition: var(--transition);
      }

      .testimonial-nav button.active {
        background-color: var(--primary);
      }

      /* 📣 CTA Section */
      .cta-section {
        background-color: var(--bg);
        text-align: center;
        padding: 100px 0;
        border-top: 1px solid var(--border);
      }

      .cta-section h2 {
        margin-bottom: 20px;
        color: var(--text);
      }

      .cta-section p {
        max-width: 700px;
        margin: 0 auto 40px;
        color: var(--text-light);
      }

      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
      }

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

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

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

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

      /* 🦶 Footer */
      .footer {
        background-color: var(--bg-secondary);
        color: var(--text);
        padding: 80px 0 30px;
        position: relative;
        border-top: 1px solid var(--border);
      }

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

      .footer-about {
        display: flex;
        flex-direction: column;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
      }

      .footer-logo img {
        height: 40px;
        margin-right: 10px;
      }

      .footer-logo span {
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(to right, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .footer-about p {
        color: var(--text-light);
        margin-bottom: 20px;
      }

      .footer-links h3,
      .footer-social h3 {
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-links h3::after,
      .footer-social h3::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
        bottom: 0;
        left: 0;
      }

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

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: var(--text-light);
        transition: var(--transition);
        display: flex;
        align-items: center;
      }

      .footer-links a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
      }

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

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

      .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--bg-tertiary);
        border-radius: 50%;
        color: var(--text);
        transition: var(--transition);
      }

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

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--border);
        color: var(--text-light);
        font-size: 0.9rem;
      }

      .footer-bottom .highlight {
        color: var(--primary);
        font-weight: 600;
      }

      .newsletter {
        background: var(--bg-tertiary);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 20px;
        border: 1px solid var(--border);
        text-align: center;
      }

      .newsletter h4 {
        margin-bottom: 15px;
        font-size: 1.2rem;
      }

      .newsletter-pill-form {
        display: flex;
        gap: 0;
        background: var(--bg);
        border: 3px solid var(--border);
        border-radius: 50px;
        overflow: hidden;
        transition: var(--transition);
      }

      .newsletter-pill-form:focus-within {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
      }

      .newsletter-pill-form input {
        flex-grow: 1;
        padding: 15px 20px;
        border: none;
        outline: none;
        background: transparent;
        font-size: 1.3rem;
        color: var(--text);
      }

      .newsletter-pill-form input::placeholder {
        color: var(--text-light);
        opacity: 0.8;
        font-size: 1.3rem;
      }

      .newsletter-pill-form .newsletter-submit-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 0 11px;
        font-size: 1.3rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 0 50px 50px 0;
      }

      .newsletter-pill-form .newsletter-submit-btn:hover {
        background: var(--primary-dark);
        transform: scale(1.05);
      }

      .newsletter-submit-btn i {
        font-size: 1.3rem;
        line-height: 1;
      }

      /* ⬆️ Scroll to Top Button */
      #scrollBtn {
        display: none;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: var(--primary);
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        font-size: 18px;
        width: 50px;
        height: 50px;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }

      #scrollBtn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
      }

      /* Fluid Background Styles */
      .fluid-background-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: -1;
        background-color: var(--bg);
      }

      .fluid-blob {
        position: absolute;
        border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
        filter: blur(70px);
        opacity: 0.4;
        transition: all 0.5s ease;
        animation: blob-move 20s infinite alternate ease-in-out;
        will-change: transform, opacity;
      }

      @keyframes blob-move {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        33% {
          transform: translate(25vw, -15vh) scale(1.1);
        }
        66% {
          transform: translate(-10vw, 10vh) scale(0.95);
        }
      }

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

      .blob-1 {
        width: 350px;
        height: 350px;
        top: 10%;
        left: 5%;
        background: var(--primary);
        animation-duration: 24s;
        animation-delay: -5s;
      }

      .blob-2 {
        width: 250px;
        height: 250px;
        bottom: 15%;
        right: 10%;
        background: var(--secondary);
        animation-duration: 20s;
        animation-delay: -10s;
      }

      .blob-3 {
        width: 450px;
        height: 450px;
        top: 50%;
        left: 40%;
        background: var(--accent);
        animation-duration: 22s;
        animation-delay: -15s;
      }

      .blob-4 {
        width: 180px;
        height: 180px;
        bottom: 5%;
        left: 60%;
        background: var(--primary-light);
        animation-duration: 28s;
        animation-delay: -8s;
      }
      
      /* 📱 Responsive Design */
      @media (max-width: 1200px) {
        .container {
          max-width: 960px;
        }
      }

      @media (max-width: 992px) {
        h1 {
          font-size: 2.8rem;
        }
        h2 {
          font-size: 2.2rem;
        }
        .steps {
          flex-direction: column;
          gap: 40px;
        }
        .steps::before {
          display: none;
        }
        .step-number {
          margin-bottom: 15px;
        }
        .feature-card {
          padding: 40px 30px;
        }
        .feature-icon {
          width: 80px;
          height: 80px;
          font-size: 2rem;
        }
      }

      @media (max-width: 768px) {
        .testimonial-slider {
          padding: 0 60px;
        }
        .testimonial-card {
          width: 280px;
          padding: 20px;
        }
        .testimonial-arrows {
          width: 40px;
          height: 40px;
          font-size: 1rem;
        }
        .arrow-left {
            left: 10px;
        }
        .arrow-right {
            right: 10px;
        }
        .hero-buttons,
        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        .hero-buttons .btn,
        .cta-buttons .btn {
          width: 100%;
          max-width: 300px;
        }
        .newsletter-form {
          flex-direction: column;
        }
        .feature-card {
          padding: 30px 20px;
        }
        .feature-icon {
          width: 70px;
          height: 70px;
          font-size: 1.8rem;
        }
        .templates-grid {
          grid-template-columns: 1fr;
        }
        .footer-content {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .footer-links h3::after,
        .footer-social h3::after {
          left: 50%;
          transform: translateX(-50%);
        }
        .fluid-blob {
           transform: scale(0.6); 
          opacity: 0.3; 
          filter: blur(60px); 
        }
       .blob-3 {
          display: none;
       }
      }

      @media (max-width: 600px) {
        .templates-showcase .template-info {
          text-align: center;
        }
        .template-info a.btn {
          margin: 0 auto;
        }
      }

      @media (max-width: 576px) {
        .testimonial-slider {
          padding: 0 50px;
        }
        .testimonial-card {
          width: 250px;
          padding: 15px;
        }
        .testimonial-text {
          font-size: 0.9rem;
        }
        .testimonial-avatar {
          width: 60px;
          height: 60px;
        }
        h1 {
          font-size: 2.2rem;
        }
        h2 {
          font-size: 1.8rem;
        }
        section {
          padding: 60px 0;
        }
        .hero {
          padding: 150px 0 80px;
        }
        .hero-animation {
          height: 200px;
          margin-top: 50px;
        }
        .step-number {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
        }
        .template-preview {
          height: 150px;
          font-size: 2rem;
        }
        .testimonial-card {
          padding: 20px;
        }
        .cta-section {
          padding: 60px 0;
        }
        .footer {
          padding: 60px 0 20px;
        }
        .feature-card {
          padding: 25px 15px;
        }
        .feature-icon {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
          margin-bottom: 20px;
        }
        .newsletter-pill-form {
            flex-direction: column;
            border-radius: var(--radius);
            border: none;
        }
        .newsletter-pill-form input {
            border: 3px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 10px;
        }
        .newsletter-pill-form .newsletter-submit-btn {
            width: 100%;
            padding: 12px;
            border-radius: var(--radius);
            justify-content: center;
            transform: none;
        }
      }

      @media (max-width: 400px) {
        h1 {
          font-size: 1.8rem;
        }
        h2 {
          font-size: 1.5rem;
        }
        .btn {
          padding: 12px 24px;
          font-size: 0.9rem;
        }
        .feature-card h3 {
          font-size: 1.5rem;
        }
        .section-title h2 {
          font-size: 1.8rem;
        }
        .hero p {
          font-size: 1rem;
        }
      }
 


      