
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1e293b;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .hero-animation {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .integration-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .integration-icon:hover {
            transform: translateY(-5px);
        }

        .btn-primary-custom {
            background: var(--accent-color);
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            color: white;
            transition: all 0.3s ease;
        }

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

        .trust-section {
            background: white;
            padding: 40px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            opacity: 0.7;
        }

        .trust-logos i {
            font-size: 40px;
            color: #64748b;
        }

        .testimonial-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid var(--accent-color);
            font-style: italic;
            margin-top: 20px;
        }

        .solutions-section {
            padding: 80px 0;
            background: white;
        }

        .solution-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e2e8f0;
        }

        .solution-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .solution-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .tech-badge {
            display: inline-block;
            background: var(--light-bg);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            margin: 4px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .process-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .process-step {
            position: relative;
            padding: 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            margin-bottom: 30px;
        }

        .process-number {
            position: absolute;
            top: -20px;
            left: 40px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }

        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }

        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 50px;
        }

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

        .floating {
            animation: float 3s ease-in-out infinite;
        }
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1e293b;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: #64748b;
            margin-bottom: 50px;
        }

        .pillar-section {
            padding: 80px 0;
        }

        .pillar-section:nth-child(even) {
            background: var(--light-bg);
        }

        .pillar-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
        }

        .pillar-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 42px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .benefit-item {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .benefit-item i {
            color: var(--accent-color);
            font-size: 24px;
            margin-right: 15px;
        }

        .tech-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 14px;
            margin: 5px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .btn-primary-custom {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--light-bg);
        }

        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }

        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .stats-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stats-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

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

        .floating {
            animation: float 3s ease-in-out infinite;
        }


        /* ===== MISSING CORE STYLES FOR INDEX PAGE ===== */

        /* Navigation Styles */
        .navbar-premium {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-premium.scrolled {
            background: rgba(15, 23, 42, 1);
            padding: 10px 0;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            color: white !important;
            transition: color 0.3s ease;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            padding: 8px 20px !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 60%;
        }

        .nav-link:hover {
            color: white !important;
        }

        .btn-cta-nav {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            padding: 10px 28px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
            color: white;
        }

        /* Hero Section Enhancements */
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 14px;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-subtitle {
            font-size: 20px;
            line-height: 1.7;
            opacity: 0.95;
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            border: none;
            padding: 16px 40px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-primary-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
            color: white;
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 16px 40px;
            font-weight: 700;
            border-radius: 10px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.85;
            font-weight: 500;
        }

        /* Hero Animation/Visual */
        .hero-visual {
            position: relative;
        }

        .hero-animation-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .integration-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .integration-node {
            background: white;
            color: var(--primary-color);
            padding: 25px 30px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            min-width: 120px;
        }

        .integration-node i {
            font-size: 36px;
        }

        .integration-node span {
            font-weight: 700;
            font-size: 14px;
        }

        .integration-arrow {
            color: white;
            font-size: 24px;
            opacity: 0.6;
        }

        .integration-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .badge-pill {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-divider {
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--light-bg));
        }

        /* Trust Section */
        .trust-section {
            padding: 80px 0;
            background: white;
        }

        .section-label {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-bg);
        }

        .trust-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .trust-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px;
            background: var(--light-bg);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .trust-logo-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .trust-logo-item i {
            font-size: 48px;
            color: var(--primary-color);
        }

        .trust-logo-item span {
            font-weight: 600;
            color: #64748b;
            font-size: 14px;
        }

        .testimonial-card {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 16px;
            border-left: 5px solid var(--accent-color);
            position: relative;
        }

        .testimonial-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: var(--accent-color);
            opacity: 0.15;
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: #334155;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 15px;
        }

        .testimonial-author strong {
            font-size: 18px;
            color: var(--dark-bg);
        }

        .testimonial-author span {
            font-size: 14px;
            color: #64748b;
        }

        .testimonial-meta {
            display: flex;
            gap: 15px;
        }

        .meta-badge {
            background: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-color);
        }

        /* Why Choose Us Section */
        .why-section {
            padding: 80px 0;
            background: white;
        }

        .benefit-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefit-list li {
            padding: 12px 0;
            font-size: 16px;
            color: #475569;
            display: flex;
            align-items: center;
        }

        /* Solutions Section */
        .solutions-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .problem-box {
            background: #fef2f2;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ef4444;
        }

        .problem-box strong {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .problem-box p {
            font-size: 15px;
            line-height: 1.6;
            color: #7f1d1d;
        }

        .solution-box {
            background: #f0fdf4;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #22c55e;
        }

        .solution-box strong {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .solution-box p {
            font-size: 15px;
            line-height: 1.6;
            color: #14532d;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* Tech Stack Section */
        .tech-section {
            padding: 80px 0;
            background: white;
        }

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

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 30px;
            background: var(--light-bg);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-8px);
            background: white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .tech-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .tech-name {
            font-weight: 600;
            color: var(--dark-bg);
            font-size: 15px;
            margin: 0;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .process-timeline {
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 50px;
            bottom: 50px;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
        }

        .process-content {
            margin-left: 30px;
        }

        .process-content h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-bg);
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .stats-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .stats-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }

        .stats-label {
            font-size: 16px;
            opacity: 0.9;
            font-weight: 500;
            margin: 0;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .cta-title {
            font-size: 42px;
            font-weight: 800;
        }

        .cta-subtitle {
            font-size: 20px;
            opacity: 0.95;
        }

        .btn-cta-primary {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 18px 45px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--light-bg);
            color: var(--primary-color);
        }

        .btn-cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 18px 45px;
            font-weight: 700;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .btn-cta-secondary:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

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

        .footer-brand h5 {
            font-size: 24px;
            font-weight: 700;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            color: white;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
        }

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

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.1);
            margin: 40px 0 30px;
        }

        .section-divider {
            height: 80px;
            background: linear-gradient(to bottom, transparent, transparent);
        }

        /* Animation */
        @keyframes floating {
            0%, 100% { 
                transform: translateY(0px); 
            }
            50% { 
                transform: translateY(-20px); 
            }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 38px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .integration-flow {
                flex-direction: column;
            }
            
            .integration-arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .cta-title {
                font-size: 32px;
            }
        }






        /* Copy all CSS from your home page here, then add these additional styles below: */
        
        /* ADDITIONAL CSS FOR CASE STUDIES PAGE */
        
        .case-hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 120px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .case-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .case-study-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s ease;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
        }

        .case-study-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .case-header {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            padding: 40px;
        }

        .case-header h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .case-meta {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .case-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .case-meta-item i {
            font-size: 20px;
            opacity: 0.9;
        }

        .case-body {
            padding: 40px;
        }

        .quick-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-box {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border-left: 4px solid var(--accent-color);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }

        .case-section {
            margin-bottom: 30px;
        }

        .case-section h5 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .case-section h5 i {
            color: var(--accent-color);
        }

        .tech-stack-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .result-item {
            background: #f0f9ff;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 3px solid var(--accent-color);
        }

        .result-item strong {
            color: var(--primary-color);
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .highlight-number {
            background: rgba(255, 255, 255, 0.2);
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 700;
        }


        /* ADDITIONAL CSS FOR ABOUT US PAGE - Add these to your existing styles.css */
        
        .about-hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .team-member-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .team-member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .team-member-card:hover::before {
            transform: scaleY(1);
        }

        .team-member-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .member-role-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        .member-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .value-prop-item {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .value-prop-item:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .value-prop-item i {
            color: var(--accent-color);
            font-size: 20px;
            margin-right: 12px;
        }

        .commitment-card {
            background: white;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e2e8f0;
        }

        .commitment-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .commitment-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .commitment-section {
            background: var(--light-bg);
            padding: 80px 0;
        }

        .team-section {
            padding: 80px 0;
            background: white;
        }

        .section-divider {
            height: 4px;
            width: 80px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            margin: 0 auto 30px;
            border-radius: 2px;
        }
        /* ===== BOOK A CALL PAGE - ADDITIONAL STYLES ===== */

.contact-hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-section {
    background: var(--light-bg);
}

.booking-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.booking-option-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.3);
}

.booking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.calendar-embed-placeholder {
    background: var(--light-bg);
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    min-height: 400px;
}

.code-snippet {
    background: #1e293b;
    color: #94a3b8;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: auto;
}

.expect-section {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    padding: 10px 0;
    color: #475569;
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form label {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.info-section {
    background: white;
}

.info-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}
/* Simple Social Float */
.social-float-simple {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.social-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    border: 3px solid white;
    position: relative;
}

.social-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp */
.whatsapp-btn {
    background-color: #25d366;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Upwork */
.upwork-btn {
    background-color: #14a800;
    animation: pulse 2s infinite 0.5s;
}

.upwork-btn:hover {
    background-color: #0d7c00;
}

/* LinkedIn */
.linkedin-btn {
    background-color: #0077b5;
    animation: pulse 2s infinite 1s;
}

.linkedin-btn:hover {
    background-color: #005582;
}

/* Upwork Icon Fix */
.fab.fa-upwork {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

.fab.fa-upwork:before {
    content: "Up";
    font-weight: 700;
}

/* Tooltip */
.social-float-btn .social-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-float-btn .social-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark-bg);
}

.social-float-btn:hover .social-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .social-float-simple {
        bottom: 30px;
        right: 20px;
    }
    
    .social-float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .social-float-simple {
        bottom: 20px;
        right: 15px;
    }
    
    .social-float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-width: 2px;
    }
    
    .social-tooltip {
        display: none;
    }
}

/* Active Navigation Styles */
.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 60% !important;
    background: var(--accent-color);
}

/* Hover effect for active link */
.nav-link.active:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    color: rgb(255 255 255);
    background-color: #1b6ae7;
}