@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&family=Noto+Sans+Devanagari:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Vibrant Animated Background */
body {
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #1a1a2e, #2d1b4e);
    background-size: 400% 400%;
    animation: gradientAnimation 12s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Shapes for Visual Appeal */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shapes span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(102, 126, 234, 0.15);
    animation: float 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.floating-shapes span:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.floating-shapes span:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.floating-shapes span:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.floating-shapes span:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.floating-shapes span:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.floating-shapes span:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.floating-shapes span:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.floating-shapes span:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.floating-shapes span:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.floating-shapes span:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 50%; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.98), rgba(15, 25, 55, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(102, 126, 234, 0.25);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: logoGradient 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    letter-spacing: -0.5px;
}

/* Animated Tagline */
.tagline {
    font-size: 1.4rem;
    color: #667eea;
    font-weight: 600;
    margin: 20px 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline .cursor {
    font-size: 1.4rem;
    color: #667eea;
    animation: blink 0.8s infinite;
}

@keyframes logoGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #c0c8e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover {
    color: #fff;
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Main Content Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 25px 80px;
}

/* Glassmorphism Card */
.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 60px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(102, 126, 234, 0.1);
}

.hook {
    font-size: 1rem;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 45px 0;
    text-align: left;
}

.feature-item {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.06));
    padding: 28px;
    border-radius: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.12));
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #667eea;
    width: 42px;
    text-align: center;
    flex-shrink: 0;
}

.footer-text {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #d0d0d0;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 45px rgba(102, 126, 234, 0.6);
}

/* Pricing Plans */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 55px 0;
    align-items: stretch;
}

.plan-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.08));
}

.plan-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.plan-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #feca57 100%);
    color: #1a1a2e;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.7); }
}

.featured-plan {
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.12));
    transform: scale(1.06);
}

.featured-plan::before {
    height: 6px;
}

.featured-plan:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 35px 80px rgba(102, 126, 234, 0.4), 0 0 60px rgba(118, 75, 162, 0.25);
}

.plan-name {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #c9d8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #a1c4fd 50%, #c2e9fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.plan-price.small-text {
    font-size: 2.5rem;
    margin-top: 15px;
}

.plan-duration {
    color: #a8b2d1;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 14px 0;
    color: #c9d8ff;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.plan-features li:hover {
    color: #fff;
    padding-left: 5px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #667eea;
    font-size: 1.2rem;
}

.plan-cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85));
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.plan-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.plan-cta:hover::before {
    left: 100%;
}

.plan-cta:hover {
    transform: scale(1.08) translateY(-2px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.55);
}

.featured-plan .plan-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.45);
}

.featured-plan .plan-cta:hover {
    box-shadow: 0 18px 50px rgba(102, 126, 234, 0.65);
}

/* Services Section */
.services-section {
    padding-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.08));
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatIcon 3s ease-in-out infinite;
}

.service-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #c9d8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    color: #c0c8e0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Process Section */
.process-container {
    padding-top: 0;
}

.process-card {
    max-width: 1200px;
}

.section-title {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #fff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-subtitle {
    color: #d0d0d0;
    margin-bottom: 50px;
    font-size: 1.15rem;
}

/* ----- PROCESS WIRE ANIMATION STYLES ----- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* The central glowing backbone wire */
.process-wire {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    z-index: 0; 
}

.process-wire-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Animates via JS */
    background: linear-gradient(180deg, #00f2fe 0%, #4facfe 30%, #667eea 70%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.8), 0 0 30px rgba(79, 172, 254, 0.6);
    transition: height 2.5s ease-in-out;
}

/* Glowing spark at the bottom of the wire while drawing */
.process-wire-fill::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #4facfe, 0 0 45px #00f2fe;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.process-wire.animating .process-wire-fill::after {
    opacity: 1;
}

/* Wire pulse animation after it completes */
@keyframes wirePulse {
    0%, 100% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.8), 0 0 30px rgba(79, 172, 254, 0.6); }
    50% { box-shadow: 0 0 25px rgba(102, 126, 234, 1), 0 0 50px rgba(79, 172, 254, 0.8); }
}
.process-wire.completed .process-wire-fill {
    animation: wirePulse 3s ease-in-out infinite;
}

/* Step Card Initial Hidden State */
.step-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    padding: 35px 40px;
    border-radius: 24px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1; /* Above the central wire */
    
    /* Hidden Animation Properties */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Active State (Triggered when wire reaches them) */
.step-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-item:hover {
            transform: scale(1.02);
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.12));
            border-color: rgba(102, 126, 234, 0.4);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
        }
        
        /* Special styling for step 4 */
        #step4 {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 83, 0.15));
            border-color: rgba(255, 107, 107, 0.5);
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.25);
        }
        
        #step4:hover {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 142, 83, 0.25));
            border-color: rgba(255, 107, 107, 0.7);
            box-shadow: 0 25px 70px rgba(255, 107, 107, 0.4);
        }
        
        /* Hide the central process wire */
        .process-wire {
            display: none;
        }

.step-icon-wrapper {
    flex-shrink: 0;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

/* Make number glow when active */
.step-item.active .step-number {
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.8);
    transform: scale(1.1);
    color: #fff;
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.4s ease;
}

.step-item:hover .step-icon,
.step-item.active .step-icon {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-item:nth-child(even) .step-content {
    text-align: right;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-description {
    font-size: 1.05rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(102, 126, 234, 0.2);
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.4s ease;
}

/* Light up the arrow connection when active */
.step-item.active .step-arrow {
    color: #667eea;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Section */
.contact-container {
    padding-top: 0;
}

.contact-card {
    max-width: 1200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    transform: translateX(12px) scale(1.02);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.12));
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.contact-option.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.contact-option.call:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.contact-option.email:hover {
    border-color: #764ba2;
    box-shadow: 0 15px 40px rgba(118, 75, 162, 0.3);
}

.contact-icon {
    font-size: 2.8rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 18px;
    flex-shrink: 0;
}

.contact-option.whatsapp .contact-icon {
    color: #25D366;
}

.contact-option.call .contact-icon {
    color: #667eea;
}

.contact-option.email .contact-icon {
    color: #764ba2;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #c0c0c0;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #d0d0d0;
    font-size: 1.05rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: #fff;
    font-size: 1.05rem;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.3), 0 0 50px rgba(118, 75, 162, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    transform: translateY(-2px);
}

.form-submit {
    padding: 20px 50px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.form-submit::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: left 0.6s ease;
}

.form-submit:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.6);
}

.form-submit:hover::before {
    left: 100%;
}

/* Loader Styles */
.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
}
.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}
.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0px currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0px currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0px currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0px currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0px currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0px currentcolor;
    }
}

/* Typing Animation for Step 4 Text */
        .step-title.typing-text {
            display: inline-block;
            overflow: hidden;
            border-right: 3px solid #667eea;
            white-space: nowrap;
            animation: blink-caret 0.75s step-end infinite;
        }
        
        .step-description.typing-text {
            display: inline-block;
            overflow: hidden;
            border-right: 3px solid #667eea;
            animation: blink-caret 0.75s step-end infinite;
        }

        @media (max-width: 768px) {
            .step-description.typing-text {
                display: block;
                white-space: normal;
            }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #667eea; }
        }

        /* Container Snake Loading Animation */
        .container {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .container.snake-visible {
            opacity: 1;
            transform: translateX(0);
        }

/* Fully Responsive Design */
@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .featured-plan {
        transform: scale(1);
    }
    .featured-plan:hover {
        transform: translateY(-12px);
    }
    .step-item,
    .step-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    .step-content,
    .step-item:nth-child(even) .step-content {
        text-align: center;
    }
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: row;
    }
    
    .language-switcher {
        gap: 8px;
    }
    
    .lang-switcher-btn {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(20, 20, 40, 0.98), rgba(15, 25, 55, 0.98));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 100px 40px;
        flex-direction: column;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 2px solid rgba(102, 126, 234, 0.25);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    h1 { font-size: 2rem; }
    .card { padding: 30px 20px; }
    .features { grid-template-columns: 1fr; }
    .section-title { font-size: 1.7rem; }
    .pricing-plans {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    .container { padding-top: 130px; }
    .plan-price {
        font-size: 2.5rem;
    }
    .hook {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 20px;
    }
    
    .nav-menu {
        width: 85%;
        padding: 80px 25px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    h1 { font-size: 1.7rem; }
    .card { padding: 25px 15px; border-radius: 20px; }
    .feature-item {
        padding: 20px;
        gap: 12px;
    }
    .service-card {
        padding: 30px 20px;
    }
    .plan-card {
        padding: 35px 20px;
    }
    .form-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
    .step-title {
        font-size: 1.4rem;
    }
    .step-description {
        font-size: 1rem;
    }
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    background: #1ebea5;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

@media (max-width: 480px) {
    .whatsapp-sticky {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}
