  :root{
            --dark-navy: #142143;
            --yellow: #FFAF00;
            --blue: #1A5D94;
            --light-gray: #E4E4E4;
            --glass: rgba(255,255,255,0.12);
            --glass-strong: rgba(255,255,255,0.18);
            --stroke: rgba(255,175,0,0.35);
            --card-bg: rgba(255,255,255,0.92);
            --text-on-dark: rgba(255,255,255,0.95);
            --text-muted-dark: rgba(255,255,255,0.8);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
            position: relative;
            overflow: hidden;
             background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 20%, var(--glass-strong) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, var(--glass) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 50px;
            align-items: center;
            
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .highlight {
            color: var(--yellow);
            background: linear-gradient(45deg, var(--yellow), #FFC700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-muted-dark);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--yellow), #FFC700);
            color: var(--dark-navy);
            box-shadow: 0 10px 30px rgba(255, 175, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 175, 0, 0.4);
        }

        .btn-secondary {
            background: var(--glass);
            color: var(--text-on-dark);
            border: 1px solid var(--stroke);
            backdrop-filter: blur(20px);
        }

        .btn-secondary:hover {
            background: var(--glass-strong);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .stat-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--stroke);
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            width: 200px;
        }

        .stat-card:hover {
            transform: translateX(-10px);
            background: var(--glass-strong);
        }

        .stat-card i {
            font-size: 2rem;
            color: var(--yellow);
            margin-bottom: 10px;
        }

        .stat-card h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-on-dark);
            margin-bottom: 5px;
        }

        .stat-card p {
            color: var(--text-muted-dark);
            font-size: 0.9rem;
        }

        .hero-visual {
            position: absolute;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
        }

        .floating-elements {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .float-element {
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--stroke);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            animation-delay: var(--delay);
        }

        .float-element i {
            font-size: 2rem;
            color: var(--yellow);
        }

        .float-element:nth-child(1) { top: 0; left: 0; }
        .float-element:nth-child(2) { top: 0; right: 0; }
        .float-element:nth-child(3) { bottom: 0; left: 0; }
        .float-element:nth-child(4) { bottom: 0; right: 0; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--card-bg);
            border-radius: 50px 50px 0 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            padding: 40px 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .service-card.featured {
            border: 2px solid var(--yellow);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--yellow);
            color: var(--dark-navy);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--blue), var(--dark-navy));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 2rem;
            color: var(--yellow);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #666;
        }

        .service-features i {
            color: var(--blue);
            font-size: 0.8rem;
        }

        .service-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--yellow);
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }

        /* Process Section */
        .process {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--blue) 100%);
            position: relative;
        }

        .process .section-header h2,
        .process .section-header p {
            color: var(--text-on-dark);
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, fr));
            gap: 30px;
            margin-top: 60px;
        }

        .timeline-item {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--stroke);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-item:hover {
            transform: translateY(-5px);
            background: var(--glass-strong);
        }

        .timeline-number {
            width: 60px;
            height: 60px;
            background: var(--yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin: 0 auto 20px;
        }

        .timeline-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-on-dark);
            margin-bottom: 15px;
        }

        .timeline-content p {
            color: var(--text-muted-dark);
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--card-bg);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 25px;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .expertise {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .expertise-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .expertise-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--blue), var(--dark-navy));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yellow);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .expertise-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 5px;
        }

        .expertise-item p {
            color: #666;
            margin: 0;
        }

        .skill-bars {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .skill-bar {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .skill-info span:first-child {
            font-weight: 600;
            color: var(--dark-navy);
        }

        .skill-info span:last-child {
            font-weight: 700;
            color: var(--yellow);
        }

        .skill-progress {
            height: 8px;
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            background: linear-gradient(45deg, var(--blue), var(--yellow));
            border-radius: 10px;
            transition: width 2s ease;
            width: 0;
        }

       

       
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-visual {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

          
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .service-card,
            .contact-form {
                padding: 25px 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        } 