        :root {
            --primary: #0066ff;
            --primary-dark: #0044cc;
            --secondary: #00f2ff;
            --accent: #ff3366;
            --dark: #050511;
            --dark-light: #0a0a1a;
            --light: #f5f5f5;
            --gray: #94a3b8;
            --success: #27ae60;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.1);
            --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --accent-gradient: linear-gradient(135deg, var(--accent), #ff6b9c);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 40px 0;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section-title span {
            color: var(--secondary);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }


        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo .tech {
            color: var(--primary);
        }

      
        /* ===== Dropdown Styles ===== */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle i {
            transform: rotate(180deg);
        }

        /* .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(15px);
            min-width: 280px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(100, 116, 139, 0.3);
            z-index: 1000;
            padding: 8px 0;
            margin-top: 8px;
            overflow: hidden;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInUp 0.3s ease;
        } */

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border-left: 4px solid transparent;
            margin: 2px 8px;
            border-radius: 4px;
        }

        .dropdown-content a:hover {
            background: rgba(37, 99, 235, 0.15);
            color: var(--secondary);
            border-left: 4px solid var(--secondary);
            transform: translateX(5px);
        }

        .dropdown-scroll {
            max-height: 300px;
            /* Slightly less than parent to account for padding */
            overflow-y: auto;
            /* Enable vertical scrolling */
            padding: 8px 0;
            /* Add padding to scroll container */
        }

        /* Custom scrollbar styling */
        .dropdown-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-scroll::-webkit-scrollbar-track {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 3px;
        }

        .dropdown-scroll::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 3px;
        }

        .dropdown-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }



        .cta-button {
            background: var(--tech-gradient);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
        }

        /* Hero Section */
        .billing-hero {
            padding: 140px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .billing-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-title span {
            margin-top: 20px;
            background: var(--tech-gradient);
            padding: 4px;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .hero-visual {
            flex: 1;
            position: relative;
            height: 500px;
        }

        .invoice-preview {
            position: relative;
            width: 100%;
            height: 100%;
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--card-border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: transform 0.5s ease;
        }

        .invoice-preview:hover {
            transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
        }

        .invoice-header {
            background: var(--tech-gradient);
            padding: 20px;
            color: var(--dark);
            text-align: center;
        }

        .invoice-body {
            text-align: center;
            padding: 30px;
        }

        .invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;   /* centers vertically */
    margin-bottom: 5px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


        .invoice-total {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary);
        }

        .invoice-status {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--success);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Advantage Section */
        .advantage-content {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 50px;
            border: 1px solid var(--card-border);
            max-width: 1000px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .advantage-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .advantage-list li {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            font-size: 1.15rem;
            color: var(--light);
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .advantage-list li:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(10px);
            border-left-color: var(--primary);
        }

        .advantage-list i {
            color: var(--secondary);
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 242, 255, 0.1);
            border-radius: 50%;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .feature-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Features Section */
        .features-section {
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .feature-item {
            background: rgba(10, 10, 26, 0.7);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: var(--success);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(39, 174, 96, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--success);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .feature-content h3 {
            color: var(--light);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .feature-content p {
            color: var(--gray);
            margin: 0;
        }

        /* Challenges Section */
        .challenges-section {
            margin-bottom: 40px;
        }

        .challenges-container {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        .challenges-title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 30px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .challenges-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .challenge-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .challenge-icon {
            color: #ef4444;
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .challenge-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Process Section */
        .process-section {
            margin-bottom: 30px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 30px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            position: relative;
        }

        .step-title {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 10px;
        }

        .step-description {
            color: var(--gray);
            font-size: 0.95rem;
        }


        /* Technology Stack - Orbital Design */
        .tech-stack-section {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        .orbital-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 800px;
            margin: 30px auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
        }

        .center-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary);
            text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
        }

        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 2px solid rgba(0, 242, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 60s linear infinite;
        }

        .outer-orbit {
            width: 700px;
            height: 700px;
            animation-duration: 80s;
        }

        .middle-orbit {
            width: 500px;
            height: 500px;
            border-color: rgba(0, 102, 255, 0.3);
            animation-duration: 60s;
            animation-direction: reverse;
        }

        .inner-orbit {
            width: 300px;
            height: 300px;
            border-color: rgba(255, 51, 102, 0.2);
            animation-duration: 40s;
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .tech-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--card-border);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: counter-rotate 60s linear infinite;
            transform: translate(-50%, -50%);
        }

        .outer-orbit .tech-icon {
            animation-duration: 80s;
        }

        .middle-orbit .tech-icon {
            animation-duration: 60s;
            animation-direction: normal;
        }

        .inner-orbit .tech-icon {
            animation-duration: 40s;
        }

        @keyframes counter-rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(-360deg);
            }
        }

        /* Position icons on orbit */
        .outer-orbit .tech-icon:nth-child(1) {
            top: 0%;
            left: 50%;
        }

        .outer-orbit .tech-icon:nth-child(2) {
            top: 50%;
            left: 100%;
        }

        .outer-orbit .tech-icon:nth-child(3) {
            top: 100%;
            left: 50%;
        }

        .outer-orbit .tech-icon:nth-child(4) {
            top: 50%;
            left: 0%;
        }

        .middle-orbit .tech-icon:nth-child(1) {
            top: 6%;
            left: 30%;
        }

        .middle-orbit .tech-icon:nth-child(2) {
            top: 30%;
            left: 94%;
        }

        .middle-orbit .tech-icon:nth-child(3) {
            top: 94%;
            left: 70%;
        }

        .middle-orbit .tech-icon:nth-child(4) {
            top: 70%;
            left: 6%;
        }

        .inner-orbit .tech-icon:nth-child(1) {
            top: 0%;
            left: 50%;
        }

        .inner-orbit .tech-icon:nth-child(2) {
            top: 87%;
            left: 13%;
        }

        .inner-orbit .tech-icon:nth-child(3) {
            top: 87%;
            left: 87%;
        }

        .tech-icon i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .tech-label {
            font-size: 0.75rem;
            color: var(--light);
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
            position: absolute;
            bottom: -25px;
            white-space: nowrap;
            background: rgba(15, 23, 42, 0.9);
            padding: 5px 10px;
            border-radius: 5px;
            border: 1px solid var(--card-border);
        }

        .tech-icon:hover {
            transform: translate(-50%, -50%) scale(1.3) !important;
            border-color: var(--secondary);
            box-shadow: 0 8px 30px rgba(0, 242, 255, 0.4);
            z-index: 100;
        }

        .tech-icon:hover i {
            color: var(--primary);
            transform: scale(1.1);
        }

        .tech-icon:hover .tech-label {
            opacity: 1;
        }

        /* Responsive Design for Orbital */
        @media (max-width: 992px) {
            .orbital-container {
                max-width: 600px;
                height: 600px;
            }

            .outer-orbit {
                width: 550px;
                height: 550px;
            }

            .middle-orbit {
                width: 400px;
                height: 400px;
            }

            .inner-orbit {
                width: 250px;
                height: 250px;
            }

            .tech-icon {
                width: 70px;
                height: 70px;
            }

            .tech-icon i {
                font-size: 1.8rem;
            }

            .center-text h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .orbital-container {
                max-width: 450px;
                height: 450px;
            }

            .outer-orbit {
                width: 400px;
                height: 400px;
            }

            .middle-orbit {
                width: 280px;
                height: 280px;
            }

            .inner-orbit {
                width: 180px;
                height: 180px;
            }

            .tech-icon {
                width: 60px;
                height: 60px;
            }

            .tech-icon i {
                font-size: 1.5rem;
            }

            .center-text h3 {
                font-size: 1.1rem;
            }

            .tech-label {
                font-size: 0.7rem;
                padding: 4px 8px;
            }
        }

        @media (max-width: 576px) {
            .tech-stack-section {
                padding: 60px 0;
            }

            .orbital-container {
                max-width: 350px;
                height: 350px;
                margin: 40px auto;
            }

            .outer-orbit {
                width: 320px;
                height: 320px;
            }

            .middle-orbit {
                width: 220px;
                height: 220px;
            }

            .inner-orbit {
                width: 140px;
                height: 140px;
            }

            .tech-icon {
                width: 50px;
                height: 50px;
            }

            .tech-icon i {
                font-size: 1.3rem;
            }

            .center-text h3 {
                font-size: 0.9rem;
            }

            .tech-label {
                font-size: 0.65rem;
                padding: 3px 6px;
                bottom: -20px;
            }
        }

        /* Benefits Section */
        .benefits-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .benefit-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .benefit-description {
            color: var(--gray);
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 40px;
        }

        .faq-container {
            width: 100%;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid var(--card-border);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--light);
        }

        .faq-question i {
            color: var(--secondary);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--gray);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            background: var(--tech-gradient);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::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 1000 1000" opacity="0.1"><path fill="%23ffffff" d="M500,100 C700,100 900,200 900,500 C900,800 700,900 500,900 C300,900 100,800 100,500 C100,200 300,100 500,100 Z"/></svg>') no-repeat center center;
            background-size: 80%;
        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            color: var(--dark);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

         .cta-button-large {
            background: var(--dark);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer !important;
            pointer-events: auto !important;
            position: relative;
            z-index: 10;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: inline-block;
            text-decoration: none;
        }

        .cta-button-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        /* Footer */
        .footer {
            /* background: rgba(15, 23, 42, 0.9); */
            padding: 60px 0 30px;
            margin-top: 50px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
        }

    


        @media (max-width: 768px) {

            .dropdown-content {
                position: static;
                background: transparent;
                box-shadow: none;
                border: none;
                padding: 10px 0 10px 20px;
                display: block !important;
            }

            .dropdown-content a {
                margin: 5px 0;
                padding: 8px 15px;
                font-size: 0.9rem;
            }

            .billing-hero {
                padding: 120px 0 50px;
            }

            .hero-title {
                margin-top: 60;
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-visual {
                height: 350px;
            }

            .invoice-preview:hover {
                transform: none;
            }

            .cta-button {
                width: 100%;
                text-align: center;
                padding: 15px 25px;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 25px;
                margin-top: 30px;
            }

            .process-step {
                flex: 0 0 100%;
                max-width: 300px;
                padding: 0 15px;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }

            .step-title {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .step-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .features-grid,
            .benefits-section {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 20px;
            }

            .feature-card,
            .benefit-card {
                padding: 30px 20px;
                text-align: center;
            }

            .feature-icon,
            .benefit-icon {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            .feature-title,
            .benefit-title {
                font-size: 1.3rem;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .feature-description,
            .benefit-description {
                font-size: 0.95rem;
                line-height: 1.6;
                text-align: center;
            }

            .challenges-container {
                padding: 25px 20px;
            }

            .challenges-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .challenges-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .challenge-item {
                margin-bottom: 10px;
                align-items: flex-start;
            }

            .challenge-text {
                font-size: 0.95rem;
                line-height: 1.5;
                text-align: left;
            }

            .faq-section {
                margin-top: 30px;
            }

            .faq-question {
                padding: 20px;
                font-size: 1rem;
                line-height: 1.4;
            }

            .faq-answer {
                padding: 0 20px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }

            .faq-answer p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .cta-section {
                padding: 40px 20px;
                margin-top: 30px;
            }

            .cta-title {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .cta-subtitle {
                font-size: 1.1rem;
                line-height: 1.6;
            }

            .cta-button-large {
                width: 100%;
                text-align: center;
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .container {
                padding: 0 15px;
            }

            .section-padding {
                padding: 40px 0;
            }

            .section-title {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .cta-button,
            .cta-button-large,
           
    .cta-button,
    .cta-button-large,

            .faq-question {
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            /* Ensure proper text alignment */
            .hero-text,
            .feature-card,
            .benefit-card {
                text-align: center;
            }

            .challenge-text,
            .step-description,
            .faq-answer p {
                text-align: center;
            }

            .section-title {
                font-size: 2.5rem;
            }
   
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
   
    /* Ensure proper text alignment */
    .hero-text,
    .feature-card,
    .benefit-card {
        text-align: center;
    }
   
    .challenge-text,
    .step-description,
    .faq-answer p {
        text-align: center;
    }
     .section-title {

                font-size: 2.5rem;
            }

            .hero-title {
                font-size: 3rem;
            }

            .challenges-section {
                padding: 40px 20px;
            }

            .advantage-content {
                padding: 25px 20px;
            }

            .advantage-list {
                gap: 20px;
            }

            .advantage-list li {
                font-size: 1rem;
                padding: 15px;
                gap: 15px;
            }

            .advantage-list i {
                font-size: 1.3rem;
                width: 28px;
                height: 28px;
            }

            .cta-section {
                padding: 40px 20px;
            }

            .cta-title {
                font-size: 2.5rem;
            }
        }

        /* Hero Section Responsive Fixes */
        @media (max-width: 1200px) {
            .hero-content {
                gap: 40px;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-visual {
                height: 450px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .hero-text {
                order: 1;
            }

            .hero-visual {
                order: 2;
                height: 400px;
                width: 100%;
            }

            .hero-title {
                font-size: 3rem;
                line-height: 1.2;
                margin-top: 60px;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-description {
                font-size: 1.1rem;
                line-height: 1.7;
            }

            .invoice-preview {
                transform: none;
                max-width: 500px;
                margin: 0 auto;
            }
        }


        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-visual {
                height: 300px;
            }

            .advantage-content {
                padding: 25px 20px;
                border-radius: 15px;
            }

            .advantage-list {
                gap: 15px;
            }

            .advantage-list li {
                font-size: 0.95rem;
                padding: 12px 15px;
                flex-direction: row;
                align-items: flex-start;
            }

            .advantage-list i {
                font-size: 1.2rem;
                width: 26px;
                height: 26px;
            }

            .invoice-body {
                padding: 20px 15px;
            }

            .invoice-row {
                flex-direction: column;
                gap: 5px;
                text-align: left;
                padding-bottom: 10px;
                margin-bottom: 10px;
            }

            .invoice-row span:last-child {
                font-weight: 600;
            }

            .invoice-header {
                padding: 15px;
            }

            .invoice-header h3 {
                font-size: 1.3rem;
            }
        }

        /* Process Steps Responsive Fixes */
        @media (max-width: 1200px) {
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }

            .process-steps::before {
                display: none;
            }

            .process-step {
                flex: 0 0 calc(33.333% - 20px);
                margin-bottom: 30px;
                padding: 0 10px;
            }
        }

        @media (max-width: 992px) {
            .process-step {
                flex: 0 0 calc(50% - 20px);
            }
        }


        /* Technology Stack Responsive Fixes */
        @media (max-width: 1200px) {
            .tech-stack-section {
                padding: 80px 0;
            }
        }

        @media (max-width: 992px) {
            .tech-stack-section {
                padding: 0px 0;
            }
        }




        /* Footer Responsive */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer {
                padding: 40px 0 20px;
                margin-top: 30px;
            }

            .footer-col h3 {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .footer-links a {
                font-size: 0.9rem;
                padding: 5px 0;
            }
        }

        /* Text Alignment and Spacing Improvements */
        .feature-card,
        .benefit-card {
            text-align: center;
        }

        .feature-description,
        .benefit-description {
            line-height: 1.6;
        }

        .challenge-text {
            line-height: 1.6;
        }

        .step-description {
            line-height: 1.5;
        }

        /* Ensure images are responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Smooth transitions for all interactive elements */
        .feature-card,
        .benefit-card,
        .tech-item,
        .cta-button,
        .cta-button-large {
            transition: all 0.3s ease;
        }

       
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }

            .process-visual {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }

            .process-step::before {
                display: none;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 2rem;
            }

            .hero-title {
                margin-top: 60px;
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .challenges-grid {
                grid-template-columns: 1fr;
            }

            .benefits-section {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
