
        @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap');
        
        :root {
            --primary: #f43f5e;
            --primary-dark: #e11d48;
            --dark: #0f172a;
            --light: #f8fafc;
        }
        
        
        .hero {
            height: 50vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        /* Video Background */
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: brightness(0.7);
        }
        
        /* Overlay Gradient */
        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
            z-index: 1;
        }
        
        /* Floating Particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            background-color: var(--primary);
            filter: blur(1px);
            animation: floatParticle linear infinite;
            z-index: 1;
        }
        
        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 8%;
            max-width: 1200px;
            margin: 0 auto;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s ease;
        }
        
        .hero-content.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .tagline {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 3px;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .hero-content.animate .tagline {
            transform: translateX(0);
            opacity: 1;
        }
        
        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.5s;
        }
        
        .hero-content.animate h1 {
            transform: translateY(0);
            opacity: 1;
        }
        
        h1 .highlight {
            color: var(--primary);
        }
        
        .lead-text {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 2.5rem;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.7s;
        }
        
        .hero-content.animate p {
            transform: translateY(0);
            opacity: 1;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 16px 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease 0.9s;
        }
        
        .hero-content.animate .cta-button {
            transform: translateY(0);
            opacity: 1;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .cta-button::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: 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .scroll-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transition: all 0.8s ease 1.1s;
        }
        
        .hero-content.animate .scroll-hint {
            opacity: 1;
        }
        
        .scroll-hint span {
            font-size: 0.9rem;
            margin-bottom: 5px;
            letter-spacing: 2px;
        }
        
        .scroll-hint i {
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }
        
        /* Animations */
        @keyframes floatParticle {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                padding: 0 5%;
                text-align: center;
            }
            
            p {
                font-size: 1.1rem;
            }
            
            .cta-button {
                padding: 14px 30px;
            }
        }
        

        /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f8fafc;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            color: white;
            padding: 20px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        /* Main Content */
        .main {
            padding: 40px 0;
        }
        
        /* Registration Steps */
        .registration-steps {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: #e2e8f0;
            color: #64748b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 10px;
            z-index: 2;
        }
        
        .step.active .step-number {
            background-color: #2563eb;
            color: white;
        }
        
        .step.completed .step-number {
            background-color: #10b981;
            color: white;
        }
        
        .step-label {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .step.active .step-label {
            color: #2563eb;
            font-weight: 600;
        }
        
        .step.completed .step-label {
            color: #10b981;
        }
        
        .step-connector {
            position: absolute;
            top: 20px;
            left: -50%;
            width: 100%;
            height: 2px;
            background-color: #e2e8f0;
            z-index: 1;
        }
        
        .step:first-child .step-connector {
            display: none;
        }
        
        /* Registration Form */
        .registration-form {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-section {
            display: none;
        }
        
        .form-section.active {
            display: block;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1e293b;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e293b;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        /* Domain Summary */
        .domain-summary {
            background: #f1f5f9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .domain-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 10px;
        }
        
        .domain-price {
            font-size: 1.1rem;
            color: #1e293b;
        }
        
        /* Addons */
        .addon-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .addon-info {
            flex: 1;
        }
        
        .addon-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .addon-desc {
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .addon-price {
            font-weight: 600;
            margin-left: 20px;
        }
        
        .form-check {
            display: flex;
            align-items: center;
        }
        
        .form-check-input {
            margin-right: 10px;
        }
        
        /* Navigation Buttons */
        .form-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #2563eb;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #1d4ed8;
        }
        
        .btn-outline {
            background: none;
            border: 1px solid #e2e8f0;
            color: #64748b;
        }
        
        .btn-outline:hover {
            background-color: #f1f5f9;
        }
        
        .btn-success {
            background-color: #10b981;
            color: white;
        }
        
        .btn-success:hover {
            background-color: #0d9c6e;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .registration-steps {
                flex-wrap: wrap;
            }
            
            .step {
                padding: 10px;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
        }
        
        /* Accessibility Improvements */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        a:focus, button:focus, input:focus, select:focus, textarea:focus {
            outline: 2px solid #2563eb;
            outline-offset: 2px;
        }
        
 
    .cta-button {
    display: inline-block;
    padding: 12px 24px;
   background: linear-gradient(to right, #3498db, #2ecc71); /* Gradient background */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0069d9; /* Darker blue on hover */
    color: white;
}

