:root {
            --primary: #000000;
            --primary-dark: #515352;
            --primary-light: rgba(173, 173, 173, 0.65);
            --secondary: #515352;
            --secondary-light: #adadad;
            --accent: #f0f8ff;
            --dark: #0F172A;
            --dark-light: #1E293B;
            --light: #F8FAFC;
            --gray: #64748B;
            --gray-light: #CBD5E1;
            --success: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
            --radius: 16px;
            --radius-lg: 24px;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

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

        .img-fluid {
            max-width: 100%;
            height: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: white;
            padding: 16px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            gap: 8px;
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
        }

        .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: left 0.7s;
        }

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

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Fixed ripple effect */
        .btn-ripple {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

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

        .btn-secondary:hover {
            background: var(--primary-light);
        }

        .btn-large {
            padding: 18px 36px;
            font-size: 18px;
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #DB2777;
        }

        .section {
            padding: 120px 0;
        }

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

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.2rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-container a {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .header-container a img {
            height: 100%;
            width: 160px;
        }


        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--dark);
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            z-index: 1001;
            min-height: 44px;
            min-width: 44px;
        }

        /* Hero Section */
        .hero {
            padding: 200px 0 120px;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" fill="%23adadad" opacity="0.15"><polygon points="1000,0 1000,1000 0,1000"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .trust-strip {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: var(--gray);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .trust-strip::before {
            content: '';
            height: 1px;
            width: 40px;
            background: var(--gray-light);
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .floating-card {
            width: 300px;
            height: 200px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 24px;
            position: absolute;
            animation: float 6s ease-in-out infinite;
            display: grid;
            align-items: center;
            align-content: center;
        }


        .floating-card p {
            font-size: 18px;
            margin-bottom: 0;
        }

        .floating-card:nth-child(1) {
            top: 20%;
            right: 20%;
            animation-delay: 0s;
            background: white;
        }

        .floating-card:nth-child(2) {
            top: 37%;
            right: 50%;
            animation-delay: 1s;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-light) 100%);
            color: white;
        }

        .floating-card:nth-child(2) h3 {
            color: #fff;
        }

        .floating-card:nth-child(2) p {
            color: #fff;
        }

        .floating-card:nth-child(3) {
            bottom: 16%;
            right: 25%;
            animation-delay: 2s;
            background: white;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Lead Magnet Section */
        .lead-magnet {
            padding: 100px 0;
            background: var(--light);
        }

        .lead-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .lead-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lead-text p {
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .lead-form {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
            width: 100%;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        h3 {
            color: var(--primary);
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: var(--radius);
            background: aliceblue;
            color: var(--dark);
            font-size: 1rem;
            box-shadow: 2px 3px 6px 0px #00000030;
            border-right: 4px solid transparent;
        }

        .form-control:focus {
            outline: none;
            border-color: #00000000;
            box-shadow: 0 0 0 3px rgba(3, 35, 73, 0.1);
            border: none;
        }

        .privacy-note {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 20px;
            text-align: center;
        }

        /* Features Section */
        .features {
            padding: 120px 0;
            background: white;
        }

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

        .feature-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--gray);
        }

        /* Services Section - Fixed with Proper Card Structure */
        .services-section {
            padding: 120px 0;
            background: var(--light);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 30px auto 0;
            line-height: 1.8;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 14px 32px;
            background: white;
            border: 2px solid var(--gray-light);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            min-height: 44px;
        }

        .filter-btn:hover {
            background-color: var(--primary-light);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .filter-btn.active {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-color: var(--primary);
            color: white;
            box-shadow: 0 6px 12px rgba(26, 54, 93, 0.2);
        }

        .slider-container {
            position: relative;
            margin: 0 auto 60px;
            width: 100%;
            max-width: 1100px;
            overflow: hidden;
        }

        .cards-slider {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 0 20px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            width: 340px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            min-height: 480px;
            height: auto;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card-header {
            padding: 25px 25px 15px;
            border-bottom: 1px solid var(--gray-light);
            background: linear-gradient(to right, #f8fafc, #c8ccd1);
            flex-shrink: 0;
        }

        .card-category {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .business-dev {
            background-color: #ffff;
            color: #000;
        }

        .functional-support {
            background-color: #ffff;
            color: #000;
        }

        .card-header h3 {
            font-size: 1.52rem;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .card-body {
            padding: 20px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .card-body p {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.5;
            overflow: hidden;
        }

        .service-features {
            list-style-type: none;
            margin-top: 15px;
            flex-grow: 1;
            overflow-y: auto;
            max-height: 150px;
            padding-right: 5px;
        }

        .service-features li {
            padding: 8px 0;
            color: var(--gray);
            position: relative;
            padding-left: 24px;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .service-features li:before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .card-footer {
            padding: 20px 25px;
            border-top: 1px solid var(--gray-light);
            flex-shrink: 0;
            margin-top: auto;
        }

        .learn-more {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }

        .learn-more:hover {
            border-bottom: 2px solid var(--primary);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            color: var(--primary);
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            min-width: 44px;
        }

        .slider-nav:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .customization-note {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            font-style: italic;
            color: var(--gray);
            border-left: 5px solid var(--primary);
            font-size: 1.1rem;
            line-height: 1.7;
                margin-top: 35px;
        }

        .card-counter {
            text-align: center;
            margin-top: 20px;
            color: var(--gray);
            font-weight: 500;
        }

        .card-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .card-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--gray-light);
            cursor: pointer;
            transition: var(--transition);
        }

        .card-indicator.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }

        /* Process Section */
        .process {
            padding: 120px 0;
            background: white;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 0;
        }

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

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

        .process-step.active .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgb(3 35 73 / 51%);
        }

        .step-content {
            max-width: 200px;
            margin: 0 auto;
        }

        .step-content h4 {
            margin-bottom: 10px;
            font-weight: 600;
        }

        .step-content p {
            color: var(--gray);
            font-size: 0.9rem;
        }

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

        .cta::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" fill="%23ffffff" opacity="0.05"><circle cx="200" cy="200" r="5"/><circle cx="600" cy="400" r="8"/><circle cx="800" cy="150" r="6"/><circle cx="300" cy="600" r="7"/><circle cx="900" cy="700" r="5"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

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

        .cta .btn:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .cta .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 130px;
            margin-bottom: 40px;
        }

        .footer-about .logo {
            color: white;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .footer-about a img {
            height: 84px;
        }

        .footer-about .logo span {
            color: white;
        }

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

        .footer-links h3 {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #fff;
        }

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

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

        .footer-links ul li a {
            color: var(--gray-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: white;
            padding-left: 5px;
        }

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

        .footer-social a i {
            color: #fff;

            font-size: 21px;

            margin-left: 10px;

            border: 7px solid #ffffff63;

            border-radius: 4px;



        }

        /* About Founder */
        .about-founder {
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .founder-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .founder-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .founder-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        /*.founder-image:hover img {
            transform: scale(1.05);
        }*/

        .founder-info {
            flex: 1;
        }

        .founder-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .founder-info .title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .founder-info p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .experience-highlights {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .highlight {
            text-align: center;
            padding: 20px;
            background-color: var(--light);
            border-radius: 5px;
            flex: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .highlight i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .highlight h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .paragraph p {
            text-align: justify;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Particle background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-light);
            animation: float-particle 15s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */

        /* Large Desktop */
        @media (max-width: 1200px) {
            .container {
                max-width: 1140px;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .footer-content {
                gap: 80px;
            }
        }

        /* Desktop */
        @media (max-width: 1024px) {
            .container {
                max-width: 960px;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .hero-image {
                display: none;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .service-card {
                width: 300px;
            }

            .founder-container {
                gap: 40px;
            }
        }

        /* Tablet */
        @media (max-width: 992px) {
            .container {
                max-width: 720px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .section-title h2 {
                font-size: 2.5rem;
            }

            .lead-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .process-steps {
                flex-direction: column;
                gap: 40px;
            }

            .process-steps::before {
                display: none;
            }

            .step-number {
                margin-bottom: 15px;
            }

            .founder-container {
                flex-direction: column;
            }

            .founder-image,
            .founder-info {
                flex: none;
                width: 100%;
            }

            .experience-highlights {
                flex-wrap: wrap;
            }

            .highlight {
                flex: 1 1 calc(50% - 20px);
                min-width: 200px;
            }
        }

        /* Mobile Large */
        @media (max-width: 768px) {
            .container {
                max-width: 540px;
                padding: 0 15px;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .hero-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .section {
                padding: 80px 0;
            }

            .section-title {
                margin-bottom: 50px;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .lead-form {
                padding: 30px 25px;
            }

            .cta h2 {
                font-size: 2.5rem;
            }

            .cta p {
                font-size: 1.1rem;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-actions .btn {
                width: 100%;
                max-width: 300px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            /* Mobile Navigation */
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 999;
            }

            nav ul.active {
                right: 0;
            }

            nav ul li {
                margin: 0 0 20px 0;
                width: 100%;
            }

            nav ul li a {
                display: block;
                padding: 10px 0;
                font-size: 1.1rem;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                display: block;
            }

            .header-actions {
                display: none;
            }

            /* Services Section Mobile */
            .section-header h1 {
                font-size: 2.2rem;
            }

            .filter-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .filter-btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .service-card {
                width: 280px;
                min-height: 420px;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .customization-note {
                padding: 20px;
                font-size: 1rem;
            }

            /* Process Section Mobile */
            .process-step {
                padding: 0 15px;
            }

            .step-content {
                max-width: none;
            }

            .text-center-mobile {
                text-align: center;
            }

            .hide-mobile {
                display: none !important;
            }
        }

        /* Mobile Small */
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 130px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .lead-form {
                padding: 25px 20px;
            }

            .form-control {
                padding: 12px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 15px;
            }

            .btn-large {
                padding: 16px 28px;
                font-size: 16px;
            }

            .cta {
                padding: 80px 0;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .cta p {
                font-size: 1rem;
            }

            footer {
                padding: 60px 0 20px;
            }

            /* Services Section Small Mobile */
            .section-header h1 {
                font-size: 1.8rem;
            }

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

            .service-card {
                width: 260px;
                min-height: 400px;
            }

            .card-header {
                padding: 20px 20px 15px;
            }

            .card-body {
                padding: 15px 20px;
            }

            .card-footer {
                padding: 15px 20px;
            }

            .service-features {
                max-height: 120px;
            }

            /* Founder Section Small Mobile */
            .founder-info h3 {
                font-size: 1.5rem;
            }

            .experience-highlights {
                flex-direction: column;
            }

            .highlight {
                flex: none;
                width: 100%;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 1.6rem;
            }

            .service-card {
                width: 240px;
                min-height: 380px;
            }

            .floating-card {
                width: 250px;
                height: 160px;
                padding: 20px;
            }

            .floating-card p {
                font-size: 16px;
            }
        }

        /* Desktop Only */
        @media (min-width: 769px) {
            .hide-desktop {
                display: none !important;
            }
        }

        /* Grid Fallbacks */
        @supports not (display: grid) {
            .features-grid {
                display: flex;
                flex-wrap: wrap;
            }

            .feature-card {
                flex: 1 1 300px;
                margin: 15px;
            }

            .footer-content {
                display: flex;
                flex-wrap: wrap;
            }

            .footer-about {
                flex: 2;
                min-width: 300px;
            }

            .footer-links {
                flex: 1;
                min-width: 200px;
            }
        }

@media (max-width: 768px){
    .float{
    top: 80%!important;
    z-index: 999!important;
  }
}
  #new_service .tag      
{
    background: #f1f1f1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 7px 1px 12px 0px #0000001c;
    border: 1px solid #00000047;
}

.new_service_sec{
    padding: 100px 0;
}
#new_service .tag .bottom-sec ul{
    list-style: none;
}
#new_service .tag .top-sec{
    padding: 25px;
} 
#new_service .item{
    padding: 12px;
}
#new_service .tag .top-sec{
        background: linear-gradient(to right, #f8fafc, #c8ccd1);
            border-radius: 12px 12px 0 0;
}
#new_service .tag .top-sec h3 {
    font-size: 1.58rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#new_service .tag .bottom-sec {
    padding: 25px;
}
#new_service .tag .bottom-sec p{
    color: #64748b;
    margin-bottom: 20px;
    height: 100px;
}
#new_service .tag .bottom-sec ul{
    position: relative;
}
#new_service .tag .bottom-sec ul li{
    position: relative;
    color: #64748b;
    font-size: 15px;
    line-height: 35px;
    padding-left: 25px;

}
#new_service .tag .bottom-sec ul li::before
{   
    position: absolute;
    clear: both;
    content: "✓";
    left: 0;
    top: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;

}

#new_service .tag .top-sec p {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: #fff;
}

#new_service .owl-nav .owl-prev{
    border: none;
    background: #000;
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
#new_service .owl-nav .owl-next{
    border: none;
    background: #000;
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
#new_service .owl-nav span{
    font-size: 30px;
    line-height: 20px;
}
/*#services{
    display: none;
}*/
.founder-linkedin
{
    text-align: center;
    background: #000;
    padding: 20px;
}
.founder-linkedin a
{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
/*.owl-item.cloned {
  visibility: hidden;
  display: none !important;
  aria-hidden: true;
}*/