:root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #07f3bc;
            --accent-dark: #1e7f6e;
            --text: #060af5;
            --text-light: #343c55;
            --light: #f8f9fa;
            --dark: #020c1b;
            --gray: #495670;
            --card-bg: #112240;
            --nav-height: 80px;
            --section-padding: 120px;
        }

         

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                        color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section {
            padding: var(--section-padding) 0;
            position: relative;
        }

        /* Particles Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.15;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background-color: rgba(10, 25, 47, 0.9);
            box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
        }

        .dark-mode header {
            background-color: rgba(2, 12, 27, 0.9);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
        }

        .logo-img {
            width: 36px;
            height: 36px;
            background-color: var(--accent);
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") no-repeat center;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") no-repeat center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--accent);
        }

        .nav-links a.active::before {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--light);
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s, color 0.3s;
        }

        .theme-toggle:hover {
            color: var(--accent);
            transform: rotate(30deg);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: transparent;
            color: var(--accent);
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid var(--accent);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.3s;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--accent);
            z-index: -1;
            transition: width 0.3s;
        }

        .cta-button:hover {
            color: var(--primary);
        }

        .cta-button:hover::before {
            width: 100%;
        }

        .cta-button.secondary {
            background-color: var(--accent);
            color: var(--primary);
        }

        .cta-button.secondary:hover {
            background-color: transparent;
            color: var(--primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            padding-top: var(--nav-height);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(23, 42, 69, 0.9) 100%);
            z-index: -1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero-subtitle {
            color: var(--accent);
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-subtitle::before {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background-color: var(--accent);
        }

        .hero-title {
            font-size: clamp(36px, 5vw, 72px);
            margin-bottom: 24px;
            color: orangered;
            line-height: 1.1;
        }

        .hero-title span {
            color: var(--accent);
        }

        .hero-description {
            font-size: 18px;
            color: var(--light);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50%;
            max-width: 700px;
            z-index: -1;
            opacity: 0.8;
        }

        /* About Section */
        .about {
            background-color: var(--light);
            position: relative;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.2) 0%, rgba(100, 255, 218, 0.05) 100%);
            z-index: 1;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--accent);
            border-radius: 8px;
            z-index: -1;
            transition: all 0.5s ease;
        }

        .about-image:hover::after {
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
        }

        .about-content {
            position: relative;
        }

        .section-title {
            margin-bottom: 40px;
            position: relative;
        }

        .section-title .subtitle {
            color: var(--accent);
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
            display: inline-block;
        }

        .section-title h2 {
            font-size: clamp(28px, 4vw, 42px);
            color: var(--text);
            margin-bottom: 20px;
        }

        .section-title .title-accent {
            color: var(--accent);
        }

        .section-title .description {
            color: var(--light);
            max-width: 600px;
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: var(--card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text);
        }

        .feature-content p {
            color: var(--text-light);
            font-size: 15px;
        }

        /* Services Section */
        .services {
            background-color: var(--card-bg);
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, rgba(100, 255, 218, 0) 70%);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .services-header .section-title {
            margin-bottom: 0;
            flex: 1;
        }

        .services-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
        }

        .tab-button {
            padding: 10px 20px;
            background-color: transparent;
            border: 1px solid var(--gray);
            color: var(--text-light);
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .tab-button.active {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }

        .tab-button:hover:not(.active) {
            border-color: var(--accent);
            color: var(--accent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--secondary);
            border-radius: 10px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(100, 255, 218, 0) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px -10px rgba(2, 12, 27, 0.8);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background-color: var(--accent-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .service-card h3 {
            font-size: 22px;
            color: var(--text);
            margin-bottom: 5px;
        }

        .service-card .service-category {
            color: var(--accent);
            font-size: 14px;
            font-weight: 500;
        }

        .service-card p {
            color: var(--light);
            margin-bottom: 25px;
            font-size: 15px;
        }

        .service-card .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .service-link i {
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Stats Section */
        .stats {
            background-color: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, rgba(100, 255, 218, 0) 70%);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            position: relative;
            padding: 30px 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent);
            background: linear-gradient(to right, var(--accent), #4facfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item p {
            opacity: 0.9;
            font-size: 18px;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            background-color: var(--light);
            position: relative;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info h3 {
            font-size: 28px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--text-light);
        }

        .contact-details {
            margin-top: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 18px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--text);
        }

        .contact-text a, .contact-text span {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .contact-form {
            background-color: var(--card-bg);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--light);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--gray);
            border-radius: 5px;
            background-color: var(--secondary);
            color: var(--light);
            font-family: inherit;
            font-size: 16px;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 16px;
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-button:hover {
            background-color: transparent;
            color: var(--accent);
            box-shadow: inset 0 0 0 2px var(--accent);
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--text);
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-about p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-links ul li a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            border-radius: 50%;
            color: var(--text-light);
            font-size: 18px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.678);
            color: var(--light);
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .float {
            animation: float 6s ease-in-out infinite;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
        .delay-5 {
            animation-delay: 0.5s;
        }
        .delay-6 {
            animation-delay: 0.6s;
        }
        .delay-7 {
            animation-delay: 0.7s;
        }
        .delay-8 {
            animation-delay: 0.8s;
        }
        .delay-9 {
            animation-delay: 0.9s;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }
        }

        @media (max-width: 992px) {
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .hero-image {
                display: none;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-subtitle::before {
                display: none;
            }

            .hero-subtitle {
                justify-content: center;
            }

            .hero-actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: right 0.3s ease;
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .section {
                padding: 80px 0;
            }

            .services-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .services-tabs {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                min-height: 600px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-actions {
                flex-direction: column;
                gap: 15px;
            }

            .cta-button {
                width: 100%;
                text-align: center;
            }

            .contact-form {
                padding: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }