
        /* Base Styles with Enhanced Color Scheme */
        :root {
            --primary-color: #1a2c42;        /* Deep navy blue */
            --primary-dark: #0f1a29;
            --primary-light: #2d4a6d;
            --secondary-color: #e85a4f;      /* Coral accent */
            --secondary-dark: #c5423a;
            --secondary-light: #ff7b6e;
            --tertiary-color: #5d9c59;       /* Muted green */
            --accent-color: #ffc857;         /* Gold accent */
            --text-color: #2b2d42;
            --text-light: #6c757d;
            --light-text: #ffffff;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --card-bg: #ffffff;
            --border-color: #e0e0e0;
            --success-color: #5d9c59;
            --error-color: #e85a4f;
            --warning-color: #ffc857;
            --transition-speed: 0.3s;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all var(--transition-speed);
        }

        a:hover {
            color: var(--secondary-color);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 700px;
            margin: 20px auto 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }

        .btn:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--light-text);
            box-shadow: 0 4px 15px rgba(26, 44, 66, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 8px 25px rgba(26, 44, 66, 0.4);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: var(--light-text);
            box-shadow: 0 4px 15px rgba(232, 90, 79, 0.3);
        }

        .btn-secondary:hover {
            box-shadow: 0 8px 25px rgba(232, 90, 79, 0.4);
            transform: translateY(-3px);
        }

        .btn-light {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-light:hover {
            background: var(--light-text);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
        }

        /* Enhanced Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        header.scrolled .top-bar {
            height: 0;
            padding: 0;
            overflow: hidden;
        }

        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--light-text);
            padding: 10px 0;
            transition: all 0.4s ease;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 20px;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 8px;
            color: var(--accent-color);
        }

        .social-icons {
            display: flex;
        }

        .social-icons a {
            color: var(--light-text);
            margin-left: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-icons a:before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }

        .social-icons a:hover:before {
            width: 30px;
            height: 30px;
        }

        .main-nav {
            background-color: rgba(255, 255, 255, 0.95);
            transition: all 0.4s ease;
        }

        .main-nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo img {
            height: 60px;
            transition: all 0.3s ease;
        }

        header.scrolled .logo img {
            height: 50px;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            color: var(--secondary-color);
        }

        .nav-links {
            display: flex;
            font-size: 24px;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            color: var(--text-color);
            font-weight: 500;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--secondary-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 44, 66, 0.8), rgba(26, 44, 66, 0.8)), url('https://source.unsplash.com/random/1600x900/?technology') no-repeat center center/cover;
            color: var(--light-text);
            padding: 200px 0 150px;
            text-align: center;
            position: relative;
            margin-top: 0;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 200, 87, 0.1) 0%, rgba(26, 44, 66, 0) 70%);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1.2s ease;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Products Section Styles */
        .products-section {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
        }

        .products-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(93, 156, 89, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--hover-shadow);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: var(--light-text);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(232, 90, 79, 0.3);
        }

        .product-content {
            padding: 30px;
        }

        .product-content h3 {
            color: var(--primary-color);
            font-size: 22px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .product-card:hover .product-content h3 {
            color: var(--secondary-color);
        }

        .product-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .product-features {
            margin-bottom: 25px;
        }

        .product-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
        }

        .product-features li i {
            color: var(--tertiary-color);
            margin-right: 10px;
            margin-top: 5px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        /* Partners Section */
        .partners-section {
            padding: 100px 0;
            background-color: var(--card-bg);
            position: relative;
        }

        .partners-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at bottom left, rgba(232, 90, 79, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            align-items: center;
        }

        .partner-item {
            background-color: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .partner-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .partner-logo {
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .partner-item:hover .partner-logo img {
            filter: grayscale(0);
            opacity: 1;
        }

        .partner-item h3 {
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .partner-item:hover h3 {
            color: var(--secondary-color);
        }

        .partner-item p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
        }

        .testimonials-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(26, 44, 66, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
            pointer-events: none;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            text-align: center;
            position: relative;
            margin: 20px 0;
        }

        .testimonial-item:before {
            content: '\201C';
            font-family: Georgia, serif;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(232, 90, 79, 0.1);
            line-height: 1;
        }

        .testimonial-content {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-content p {
            color: var(--text-light);
            font-size: 18px;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 3px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .testimonial-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--light-text);
            border: none;
            font-size: 18px;
            cursor: pointer;
            margin: 0 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 44, 66, 0.2);
        }

        .testimonial-nav button:hover {
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(232, 90, 79, 0.3);
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--light-text);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiPgo8cmVjdCB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBmaWxsPSIjMWEyYzQyIj48L3JlY3Q+CjxwYXRoIGQ9Ik0yOCA2NkwwIDUwTDAgMTZMMjggMEw1NiAxNkw1NiA1MEwyOCA2NkwyOCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJkNGE2ZCIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+CjxwYXRoIGQ9Ik0yOCAwTDI4IDM0TDAgNTBMMCA4NEwyOCAxMDBMNTYgODRMNTYgNTBMMjggMzQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzJkNGE2ZCIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+Cjwvc3ZnPg==');
            opacity: 0.05;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cta .btn-light {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer-main {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-main:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--accent-color));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-about p {
            margin: 20px 0;
            color: #bbb;
            line-height: 1.8;
        }

        .footer-logo {
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .footer-about .social-icons {
            margin-top: 20px;
        }

        .footer-about .social-icons a {
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            margin-left: 0;
            transition: all 0.3s ease;
        }

        .footer-about .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        .footer-links h3,
        .footer-services h3,
        .footer-contact h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--light-text);
        }

        .footer-links h3:after,
        .footer-services h3:after,
        .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--secondary-color), var(--secondary-light));
            bottom: 0;
            left: 0;
        }

        .footer-links ul li,
        .footer-services ul li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .footer-links a,
        .footer-services a {
            color: #bbb;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:before,
        .footer-services a:before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover,
        .footer-services a:hover {
            color: var(--secondary-color);
            padding-left: 20px;
        }

        .footer-links a:hover:before,
        .footer-services a:hover:before {
            opacity: 1;
            left: 0;
        }

        .footer-contact ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .footer-contact ul li:hover {
            transform: translateX(5px);
        }

        .footer-contact ul li i {
            color: var(--secondary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        .footer-bottom {
            background-color: #0a0a0a;
            padding: 20px 0;
            text-align: center;
            position: relative;
        }

        .footer-bottom p {
            color: #bbb;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            opacity: 0;
        }

        .animate.fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .animate.fade-in-down {
            animation: fadeInDown 1s ease forwards;
        }

        .animate.fade-in-up {
            animation: fadeInUp 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: var(--light-text);
                flex-direction: column;
                padding: 80px 20px 20px;
                transition: right var(--transition-speed);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1001;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 20px 0;
            }
            
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 24px;
                cursor: pointer;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-header h2 {
                font-size: 30px;
            }
            
            .testimonial-item {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
            }
            
            .contact-info {
                margin-bottom: 10px;
            }
            
            .contact-info span {
                display: block;
                margin-bottom: 5px;
            }
            
            .partners-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 150px 0 100px;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            color: var(--light-text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 99;
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
