       :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #06b6d4;
            --dark: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --accent: #8b5cf6;
            --tech-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 40px 0;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title span {
            color: var(--secondary);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefits-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: var(--tech-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: white;
        }

        .benefit-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .benefit-description {
            color: #666;
            line-height: 1.6;
        }

        /* ===== Header Styles ===== */
        header {
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        }

        

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo .tech {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 1.5rem;
        }

    

        .cta-button {
            background: var(--tech-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        

        /* Digital Marketing Section */
        .digital-marketing-section {
            padding: 70px 0 60px;
            position: relative;
        }

        .digital-marketing-hero {
            text-align: center;
            max-width: 800px;
            margin: 20px auto 80px;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .benefit-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: transform 0.3s ease, box-shadow 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 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(37, 99, 235, 0.3);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .benefit-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Service Types Section */
        .service-types {
            margin-bottom: 50px;
        }

        .service-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-type-card {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--tech-gradient);
        }

        .service-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(37, 99, 235, 0.3);
        }

        .service-type-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .service-type-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-type-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Features Section */
        .features-section {
            margin-bottom: 50px;
        }

        .features-container {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        .features-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;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .feature-icon {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .feature-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Challenges Section */
        .challenges-section {
            margin-bottom: 50px;
        }

        .challenges-container {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            padding: 35px;
            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;
        }

    
        .what-we-bring-container {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        .what-we-bring-title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 50px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .what-we-bring-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .what-we-bring-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .what-we-bring-icon {
            color: var(--success);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .what-we-bring-text {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Process Section */
        .process-section {
            margin: 80px 0;
        }

        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .process-step {
            background: rgba(15, 23, 42, 0.6);
            border-radius: 15px;
            padding: 30px;
            width: 300px;
            text-align: center;
            border: 1px solid rgba(100, 116, 139, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(37, 99, 235, 0.3);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--tech-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .step-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .step-description {
            color: #94a3b8;
            line-height: 1.7;
        }

        /* Technology Stack Section */
        .tech-section {
            background: rgba(10, 10, 26, 0.7);
            border-radius: 10px;
            margin-top: 40px;
            padding: 40px;
            margin-bottom: 60px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .tech-category {
            text-align: center;
        }

        .tech-category h3 {
            color: var(--light);
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-family: 'Orbitron', sans-serif;
        }

        .tech-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .tech-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 15px;
            border-radius: 8px;
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--light);
            transform: translateY(-3px);
        }

        .cta-container {
            background: var(--tech-gradient);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            margin-bottom: 50px;
        }

        .cta-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-description {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .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;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            display: inline-block;
            text-decoration: none;
        }

        .cta-button-large:hover {
            transform: translateY(-3px);
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .faq-section {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(100, 116, 139, 0.2);
        }

        .faq-title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 50px;
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(100, 116, 139, 0.2);
            padding-bottom: 20px;
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            color: #94a3b8;
            line-height: 1.7;
            padding-right: 20px;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .footer {
            padding: 80px 0 30px;
            margin-top: 100px;
        }

        .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);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(37, 99, 235, 0.2);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--tech-gradient);
            transform: translateY(-5px);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid rgba(100, 116, 139, 0.3);
            background: rgba(15, 23, 42, 0.5);
            color: var(--light);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            background: var(--tech-gradient);
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        /* ===== 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 styles handled by allDropdown.css */

        .dropdown-scroll {
            max-height: 300px;
            overflow-y: auto;
            padding: 8px 0;
        }

        /* 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);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
        }

        @media (min-width: 768px) {
            .dropdown-scroll {
                max-height: 250px;
            }
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .services-overview {
                flex-direction: column;
            }

            .service-detail {
                flex-direction: column;
            }

            .process-step {
                min-width: 200px;
            }
        }

        @media (max-width: 768px) {
            .services-hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-section {
                padding: 40px 20px;
            }

            .detailed-services {
                padding: 30px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .cta-container {
                padding: 40px 20px;
            }

            .cta-title {
                font-size: 2rem;
            }

            .process-container,
            .faq-section,
            .challenges-container,
            .what-we-bring-container,
            .features-container {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .process-step {
                min-width: 100%;
            }

            .cta-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            
            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text p {
                font-size: 16px;
            }

            .hero-ai-face {
                display: none;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-button,
            .secondary-button {
                width: 100%;
                text-align: center;
            }

            .section-header h2 {
                font-size: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /*  Get Start Button    */
        .cta-buttons {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
            text-align: center;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .cta-buttons:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 24px rgba(63, 142, 252, 0.45);
            color: #fff !important;
        }

        .cta-buttons:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(100, 149, 255, 0.4);
        }

        .faq-toggle {
            font-size: 1.2rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        .footer-dropdown-content {
            display: none;
            margin-left: 15px;
        }

        .footer-dropdown.open .footer-dropdown-content {
            display: block;
        }

        .footer-dropdown-header {
            display: flex;
            color: var(--gray);
            justify-content: space-between;
            cursor: pointer;
            margin: 5px 0;
        }

        .footer-dropdown-header:hover {
            color: var(--secondary);
        }
