     /* Consolidated CSS */
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    :root {
        /* Light theme colors */
        --bg-color: #ffffff;
        --text-color: #333333;
        --nav-bg: #f8f9fa;
        --card-bg: #ffffff;
        --border-color: #e2e8f0;
        --primary-color: #4a6cf7;
        --primary-hover: #3a5ce4;
        --secondary-color: #6c757d;
        --shadow-color: rgba(0, 0, 0, 0.1);
    }

    /* Dark theme colors */
    [data-theme="dark"] {
        --bg-color: #121826;  /* Darker background for better contrast */
        --text-color: #f8fafc;  /* Brighter text color */
        --nav-bg: #1e293b;  /* Slightly lighter than background */
        --card-bg: #1f2937;  /* Dark gray for cards */
        --border-color: #374151;  /* Slightly lighter border */
        --primary-color: #6366f1;  /* Brighter primary color */
        --primary-hover: #4f46e5;  /* Slightly darker on hover */
        --secondary-color: #cbd5e1;  /* Lighter secondary text */
        --shadow-color: rgba(0, 0, 0, 0.4);  /* Darker shadow */
        --input-bg: #1f2937;  /* Match card background */
        --input-text: #f8fafc;  /* Bright text */
        --input-placeholder: #9ca3af;  /* Lighter placeholder */
        --input-border: #4b5563;  /* Slightly lighter border */
        --label-color: #e5e7eb;  /* Brighter labels */
    }
    
    /* Contact Section Dark Mode */
    [data-theme="dark"] .contact-section {
        background-color: #1a202c;
    }
    
    [data-theme="dark"] .contact-card {
        background-color: #2d3748;
        border: 1px solid #4a5568;
    }
    
    [data-theme="dark"] .contact-card h3,
    [data-theme="dark"] .contact-text h4,
    [data-theme="dark"] .contact-text p,
    [data-theme="dark"] .contact-text a {
        color: #f7fafc !important;
    }
    
    [data-theme="dark"] .contact-icon {
        background-color: rgba(74, 108, 247, 0.1);
        color: #5b7af8;
    }
    
    [data-theme="dark"] .form-control {
        background-color: var(--input-bg);
        color: var(--input-text);
        border-color: var(--input-border);
    }
    
    [data-theme="dark"] .form-control::placeholder {
        color: var(--input-placeholder);
    }
    
    [data-theme="dark"] .form-group label {
        color: var(--label-color);
    }
    
    [data-theme="dark"] .social-link {
        background-color: #2d3748;
        border: 1px solid #4a5568;
        color: #f7fafc;
    }
    
    [data-theme="dark"] .social-link:hover {
        background-color: #4a6cf7;
        color: white;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-color);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    /* Navigation Styles */
    nav {
        background: var(--nav-bg);
        padding: 0 2%;
        box-shadow: 0 2px 15px var(--shadow-color);
        position: sticky;
        top: 0;
        z-index: 100;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .navbar {
        display: flex;
        align-items: center;
        min-height: 70px;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        padding: 0 15px;
        transition: all 0.3s ease;
    }

    .navbar-content {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }
    
    .logo {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: transform 0.3s ease;
    }

    .logo:hover {
        transform: translateY(-2px);
    }

    .logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
        margin-right: 10px;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .nav-links li {
        position: relative;
        padding: 0;
    }
    
    .nav-links li a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border-radius: 6px;
    }
    
    .quote-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #4a6cf7 0%, #3b57d5 100%);
        color: #ffffff;
        border-radius: 25px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(74, 108, 247, 0.15);
    }
    
    .quote-btn:hover {
        background: linear-gradient(135deg, #3b57d5 0%, #2a42c0 100%);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 6px 20px rgba(74, 108, 247, 0.3);
    }
    
    .quote-btn i {
        font-size: 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: #ffffff;
    }
    
    .quote-btn:hover i {
        transform: translateX(4px);
    }
    
    .nav-links li a:hover {
        color: #4a6cf7; /* Brand color on hover */
        opacity: 1;
        transform: translateY(-2px) scale(1.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(74, 108, 247, 0.05); /* Light blue hover */
        border-radius: 8px;
    }
    
    .nav-links li a i {
        margin-left: 12px;
        font-size: 18px;
        color: #4a6cf7;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(74, 108, 247, 0.1);
    }
    
    .nav-links li a:hover i {
        transform: rotate(360deg);
        color: #3b57d5;
        background: rgba(59, 87, 213, 0.2);
    }
    
    /* Dropdown Menu */
    .dropdown-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: #ffffff; /* White background */
        width: 220px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Lighter shadow */
        list-style: none;
        padding: 15px 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu li a.tech-card {
        color: #000000;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.8;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        margin: 8px 15px;
        gap: 12px;
        background: #ffffff; /* White background */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        width: 100%;
    }
    
    .dropdown-menu li a.tech-card:hover {
        background: linear-gradient(135deg, #f1f3f5 0%, #f8f9fa 100%); /* Light gradient */
        color: #000000;
        opacity: 1;
        transform: translateX(5px) scale(1.02);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border-left: 3px solid #4a6cf7;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links li.dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* Desktop Hover for Dropdowns */
    @media (min-width: 993px) {
        .nav-links .dropdown:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Mobile Menu */
    .theme-toggle {
        background: transparent;
        border: 1px solid var(--primary-color);
        border-radius: 20px;
        padding: 8px 15px;
        font-size: 14px;
        color: var(--primary-color);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .theme-toggle:hover {
        background: var(--primary-color);
        color: white;
    }

    .theme-text {
        display: none;
    }

    @media (min-width: 992px) {
        .theme-text {
            display: inline;
        }
    }

    /* Theme Toggle Button */
    .theme-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: transparent;
        border: 1px solid var(--primary-color);
        border-radius: 30px;
        cursor: pointer;
        font-size: 14px;
        color: var(--primary-color);
        transition: all 0.3s ease;
        margin-left: 15px;
    }

    .theme-toggle:hover {
        background: var(--primary-color);
        color: white;
    }

    .theme-toggle i {
        font-size: 16px;
    }

    .theme-text {
        display: none;
    }

    @media (min-width: 992px) {
        .theme-text {
            display: inline;
        }
    }

    /* Mobile Theme Toggle - Hidden on Desktop */
    .mobile-theme-toggle {
        display: none;
        align-items: center;
        gap: 8px;
        padding: 15px 20px;
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .mobile-theme-toggle:hover {
        background: rgba(74, 108, 247, 0.1);
        color: var(--primary-color);
    }

    .mobile-theme-toggle i {
        font-size: 16px;
    }

    .mobile-menu-btn {
        display: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--text-color);
        padding: 10px;
        border: none;
        background: none;
    }

    .mobile-menu-btn:hover {
        color: var(--primary-color);
    }
    
    @media (max-width: 992px) {
        .mobile-menu-btn {
            display: block;
        }
        
        .nav-links {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 300px;
            height: calc(100vh - 70px);
            background: var(--nav-bg);
            flex-direction: column;
            align-items: flex-start;
            padding: 20px 0;
            transition: left 0.3s ease;
            z-index: 1000;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .nav-links.active {
            left: 0;
        }
        
        .nav-links li {
            width: 100%;
            margin: 0;
        }

        .nav-links li a {
            padding: 15px 20px;
            width: 100%;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
        }

        .nav-links li a:hover {
            background: rgba(74, 108, 247, 0.1);
            color: var(--primary-color);
        }

        /* Mobile Dropdown */
        .dropdown-menu {
            position: static;
            background: var(--nav-bg);
            width: 100%;
            box-shadow: none;
            padding: 0;
            margin: 0;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-menu li a {
            padding: 12px 40px;
            font-size: 14px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-menu li a:hover {
            background: rgba(74, 108, 247, 0.1);
            color: var(--primary-color);
        }

        /* Hide theme toggle in mobile menu */
        .theme-toggle {
            display: none;
        }

        /* Show mobile theme toggle inside mobile menu */
        .mobile-theme-toggle {
            display: flex;
        }

        /* Quote button in mobile */
        .quote-btn {
            margin: 25px 30px 20px;
            width: calc(100% - 60px);
            justify-content: center;
            background: linear-gradient(135deg, #4a6cf7 0%, #8a63d2 100%);
            box-shadow: 0 8px 25px rgba(74, 108, 247, 0.3);
            border-radius: 15px;
            padding: 15px 25px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .quote-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.5s ease;
        }

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

        .quote-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(74, 108, 247, 0.4);
        }

        /* Mobile Theme Toggle */
        .mobile-theme-toggle {
            margin: 15px 30px;
            padding: 12px 20px;
            background: rgba(74, 108, 247, 0.05);
            border: 1px solid rgba(74, 108, 247, 0.2);
            border-radius: 25px;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-theme-toggle:hover {
            background: linear-gradient(135deg, #4a6cf7, #8a63d2);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
        }
    }
    
    /* Mobile Menu Animations */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes shimmer {
        0% {
            background-position: -200px 0;
        }
        100% {
            background-position: calc(200px + 100%) 0;
        }
    }





             /* Footer Styles */
        .footer-section {
            background: #f8f9fa; /* Light gray background */
            color: #64748b; /* Gray text */
            position: relative;
            overflow: hidden;
            padding: 70px 0 0;
            border-top: 1px solid rgba(74, 108, 247, 0.1); /* Light border */
        }
        
        /* REMOVED: Footer background pattern */
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Light border */
        }
        
        .footer-column {
            margin-bottom: 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            width: auto;
        }
        
        .footer-logo span {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(90deg, #4a6cf7, #8a63d2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: #64748b; /* Gray text */
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(74, 108, 247, 0.1); /* Light blue */
            color: #4a6cf7; /* Brand color */
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, #4a6cf7 0%, #8a63d2 100%);
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.5rem;
            color: #314252; /* Dark text */
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #4a6cf7, #8a63d2);
            border-radius: 3px;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #64748b; /* Gray text */
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-links a i {
            color: #4a6cf7;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: #4a6cf7;
            transform: translateX(5px);
        }
        
        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .footer-contact i {
            color: #4a6cf7;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .footer-contact span {
            flex: 1;
            line-height: 1.7;
            color: #64748b; /* Gray text */
        }
        
        .footer-newsletter {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .newsletter-content h3 {
            font-size: 1.8rem;
            color: #314252; /* Dark text */
            margin-bottom: 10px;
        }
        
        .newsletter-content p {
            color: #64748b; /* Gray text */
            max-width: 400px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            width: 100%;
            background: #ffffff; /* White background */
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid rgba(74, 108, 247, 0.1); /* Light border */
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            background: transparent;
            border: none;
            color: #334155; /* Dark text */
            font-size: 1rem;
        }
        
        .newsletter-form input:focus {
            outline: none;
        }
        
        .newsletter-form input::placeholder {
            color: #94a3b8; /* Light gray */
        }
        
        .newsletter-form button {
            background: linear-gradient(135deg, #4a6cf7 0%, #8a63d2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

