 :root {
            --primary: #0a0e17;
            --primary-dark: #05080f;
            --primary-light: #131a2b;
            --secondary: #00b4d8;
            --secondary-dark: #0096c7;
            --secondary-light: #48cae4;
            --accent: #ffffff;
            --accent-dark: #e0e0e0;
            --text: #ffffff;
            --text-dark: #a0a0a0;
            --text-darker: #707070;
            --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
            --easing: cubic-bezier(0.76, 0, 0.24, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; background-color: var(--primary); color: var(--text); overflow-x: hidden; line-height: 1.6; font-weight: 400; }
        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
        p { margin-bottom: 1.5rem; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        
        header { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 5%; z-index: 1000; transition: var(--transition); background-color: rgba(10, 14, 23, 0.8); backdrop-filter: blur(10px); }
        .header-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.5rem; color: var(--text); }
        .logo-img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; background-color: #0a0e17; }
        
        .nav-links ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
        .nav-links a { color: var(--text); font-weight: 500; position: relative; padding: 0.5rem 0; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--secondary); transition: var(--transition); }
        .nav-links a:hover::after { width: 100%; }
        .cta-button { background-color: var(--secondary); color: var(--primary); padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; white-space: nowrap; }
        .nav-cta { padding: 0.75rem 1.75rem !important; }
        .cta-button:hover { background-color: var(--secondary-light); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3); }
        .secondary-button { border: 1px solid var(--secondary); color: var(--secondary); padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
        .secondary-button:hover { background-color: rgba(0, 180, 216, 0.1); transform: translateY(-3px); }
        .mobile-menu-btn { display: none; cursor: pointer; z-index: 1001; position: relative; width: 30px; height: 24px; }
        .menu-icon { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
        .menu-icon span { display: block; width: 100%; height: 3px; background-color: var(--text); transition: all 0.3s ease-in-out; border-radius: 2px; }
        .mobile-menu-btn.active .menu-icon span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
        .mobile-menu-btn.active .menu-icon span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active .menu-icon span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }
        
        /*  Hero Section */
        .hero-services {
            min-height: 80vh;
            padding: 150px 5% 80px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
        }
        
        .hero-services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.15) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.1) 0%, transparent 30%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }
        
        .hero-services h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(to right, var(--text) 0%, var(--secondary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-services p {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-size: 1.25rem;
            color: var(--text-dark);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-cta {
            animation: fadeInUp 1.2s ease-out;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            background: var(--secondary);
            animation: float 15s infinite linear;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 75%;
            animation-delay: 2s;
            animation-duration: 20s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 65%;
            animation-delay: 4s;
            animation-duration: 15s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 70%;
            left: 15%;
            animation-delay: 1s;
            animation-duration: 30s;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 40px) rotate(90deg);
            }
            50% {
                transform: translate(0, 80px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 40px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section { padding: 6rem 5%; position: relative; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-title { font-size: 3rem; margin-bottom: 1rem; color: var(--text); }
        .section-subtitle { font-size: 1.25rem; color: var(--text-dark); max-width: 700px; margin: 0 auto; }
        
        /* Intro Content */
        .intro-content { max-width: 1000px; margin: 0 auto; text-align: center; }
        .intro-content p { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 2rem; }
        
        /* New Services Layout - Premium Checkmark Style */
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            padding: 2rem;
            background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(0, 180, 216, 0.05) 100%);
            opacity: 0;
            transition: var(--transition);
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(0, 180, 216, 0.2);
        }
        
        .service-item:hover::before {
            opacity: 1;
        }
        
        .service-check {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
        }
        
        .service-check i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .service-content {
            flex: 1;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--text);
        }
        
        .service-content p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* CTA Section */
        .cta-section { 
            text-align: center; 
            padding: 6rem 5%; 
            background: radial-gradient(circle at center, var(--primary-light) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
            z-index: 1;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 { 
            font-size: 3rem; 
            margin-bottom: 1.5rem; 
            background: linear-gradient(to right, var(--text) 0%, var(--secondary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cta-section p { 
            max-width: 600px; 
            margin: 0 auto 2.5rem; 
            color: var(--text-dark); 
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer { background-color: var(--primary-dark); padding: 6rem 5% 3rem; }
        .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
        .footer-col h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--text); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a { color: var(--text-dark); transition: var(--transition); font-size: 0.875rem; }
        .footer-links a:hover { color: var(--secondary); padding-left: 0.5rem; }
        .social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
        .social-links a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background-color: rgba(255, 255, 255, 0.05); display: flex; justify-content: center; align-items: center; transition: var(--transition); }
        .social-links a:hover { background-color: var(--secondary); color: var(--primary); transform: translateY(-3px); }
        .footer-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-dark); font-size: 0.875rem; flex-wrap: wrap; gap: 1rem; }
        .footer-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .footer-badge { display: flex; align-items: center; gap: 0.5rem; }
        .footer-badge i { color: var(--secondary); }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-links { position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh; background-color: var(--primary-dark); flex-direction: column; justify-content: flex-start; align-items: flex-start; transition: right 0.5s var(--easing); z-index: 1000; padding: 100px 2rem 2rem; overflow-y: auto; }
            .nav-links.active { right: 0; }
            body.menu-open { overflow: hidden; }
            .nav-links ul { flex-direction: column; gap: 1rem; width: 100%; text-align: left; }
            .nav-links li { width: 100%; }
            .nav-links a { font-size: 1.25rem; padding: 1rem 0; display: block; width: 100%; }
            .nav-cta { margin-top: 2rem; width: 100%; text-align: center; }
            .mobile-menu-btn { display: flex; }
            
            .hero-services h1 { font-size: 2.8rem; }
            .services-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .hero-services { min-height: 70vh; padding: 120px 5% 60px; }
            .hero-services h1 { font-size: 2.5rem; }
            .hero-services p { font-size: 1.1rem; }
            .section-title { font-size: 2.2rem; }
            .section-subtitle { font-size: 1.1rem; }
            .service-item { padding: 1.5rem; }
            .service-check { width: 35px; height: 35px; margin-right: 1rem; }
            .service-check i { font-size: 1rem; }
            .service-content h3 { font-size: 1.3rem; }
            .cta-section h2 { font-size: 2.2rem; }
        }

        @media (max-width: 600px) {
            .services-grid { grid-template-columns: 1fr; }
            .service-item { flex-direction: column; text-align: center; }
            .service-check { margin-right: 0; margin-bottom: 1rem; align-self: center; }
        }

        @media (max-width: 480px) {
            .hero-services h1 { font-size: 2rem; }
            .cta-section h2 { font-size: 2rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-badges { justify-content: center; }
            .service-item { padding: 1.2rem; }
        }