/* Global Styles */
:root {
    --primary-color: #FF6B9D; /* Pink */
    --secondary-color: #2A0E37; /* Dark Purple */
    --text-color: #ffffff;
    --bg-color: #0a1a2f;/* Light Black */
    --accent-color: #7B52AB; /* Light Purple */
    --highlight-color: #FFB8D9; /* Light Pink */
    --glow-color: rgba(255, 107, 157, 0.6); /* Pink glow */
    --gradient-1: linear-gradient(135deg, #FF6B9D, #FFB8D9);
    --gradient-2: linear-gradient(135deg, #7B52AB, #3A1C52);
    --card-bg: rgba(123, 82, 171, 0.2); /* Semi-transparent purple */
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a1a2f; /* Light black */
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--glow-color);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px var(--glow-color), 0 4px 10px rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 2s infinite;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Explainer Animation Styles */
.explainer-animation {
    position: relative;
    width: 100%;
    height: 400px;
}

.animation-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Boost Traffic Element */
.boost-traffic {
    position: absolute;
    top: 15%;
    left: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
    animation: float 4s infinite alternate ease-in-out;
    z-index: 10;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--glow-color);
}

.icon-circle i {
    color: white;
    font-size: 18px;
}

.boost-text h4, .showcase-text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.boost-text p, .showcase-text p {
    font-size: 12px;
    opacity: 0.8;
}

/* Showcase Element */
.showcase {
    position: absolute;
    top: 15%;
    right: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
    animation: float 4s infinite alternate ease-in-out;
    animation-delay: 0.5s;
    z-index: 10;
}

/* Script Panel */
.script-panel {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 150px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 3s infinite alternate ease-in-out;
    animation-delay: 0.2s;
    z-index: 5;
}

.panel-header {
    background-color: #0a1a2f;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
}

.script-lines {
    padding: 10px;
}

.script-line {
    height: 8px;
    background-color: #333;
    margin-bottom: 8px;
    border-radius: 4px;
    opacity: 0.7;
}

/* Video Preview */
.video-preview {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 280px;
    background-color: #0a1a2f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    animation: float 5s infinite alternate ease-in-out;
    animation-delay: 0.7s;
    z-index: 8;
}

.preview-header {
    background-color: #0a1a2f;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background-color: #ff5f57; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #28ca41; }

.preview-content {
    padding: 15px;
}

.preview-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.preview-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.preview-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-controls i {
    font-size: 16px;
    color: #fff;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: #333;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 10px;
}

.progress {
    width: 60%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Stats Card */
.stats-card {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stats-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.stats-icon i {
    color: white;
    font-size: 18px;
}

.stats-text {
    flex: 1;
}

.stats-text h5 {
    font-size: 14px;
    color: #000;
    margin-bottom: 2px;
}

.stats-text p {
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 2px;
}

.stats-text small {
    font-size: 10px;
    color: #666;
}

.stats-arrow {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-arrow i {
    color: white;
    font-size: 14px;
}

/* Orbit Circles */
.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.orbit-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-color);
    z-index: 2;
}

.orbit-1 {
    top: 30%;
    left: 20%;
    animation: orbit 12s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
    background-size: cover;
    width: 30px;
    height: 30px;
}

.orbit-2 {
    top: 60%;
    right: 25%;
    width: 25px;
    height: 25px;
    animation: orbit 8s linear infinite reverse;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
    background-size: cover;
}

.orbit-3 {
    bottom: 20%;
    left: 40%;
    width: 35px;
    height: 35px;
    animation: orbit 15s linear infinite;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features h2::before, .features h2::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
}

.features h2::before {
    left: -30px;
    top: 0;
    animation: float 3s infinite alternate;
}

.features h2::after {
    right: -30px;
    bottom: 0;
    animation: float 4s infinite alternate-reverse;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--accent-color);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px var(--glow-color);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.feature-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* How It Works Section */
@keyframes backgroundShift {
    0% {
        background-position: 0% 0%, 0 0;
    }
    50% {
        background-position: 0% 0%, 20px 20px;
    }
    100% {
        background-position: 0% 0%, 0 0;
    }
}
.how-it-works {
    padding: 80px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Light black */
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-it-works h2::before, .how-it-works h2::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
}

.how-it-works h2::before {
    left: -30px;
    top: 0;
    animation: float 3s infinite alternate;
}

.how-it-works h2::after {
    right: -30px;
    bottom: 0;
    animation: float 4s infinite alternate-reverse;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.how-it-works-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.how-it-works-header h2:before,
.how-it-works-header h2:after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.how-it-works-header h2:before {
    left: -15px;
}

.how-it-works-header h2:after {
    right: -15px;
}

.cute-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.cute-icons i {
    font-size: 20px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

.cute-icons i:nth-child(2) {
    animation: spin 3s linear infinite;
    color: var(--secondary-color);
}

.cute-icons i:nth-child(3) {
    animation: pulse 2s infinite;
    color: #ff6b6b;
}

.steps-timeline {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    background: rgba(18, 18, 18, 0.5);
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 107, 157, 0.2);
    padding: 40px 20px;
    margin: 0 20px;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    width: 220px;
    max-width: 100%;
    transition: all 0.3s ease;
    transform-origin: center bottom;
}

.step:hover {
    transform: translateY(-10px) scale(1.05);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--glow-color);
    position: absolute;
    z-index: 2;
    flex-shrink: 0;
    bottom: -25px;
    right: -25px;
    border: 3px solid var(--secondary-color);
    animation: pulse-circle 2s infinite;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px var(--glow-color);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 25px var(--glow-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px var(--glow-color);
    }
}

.step-circle span {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.step-circle i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: spin-slow 6s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.step-content {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 25px 20px;
    width: 220px;
    height: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 15px var(--glow-color);
    border: 3px solid var(--primary-color);
    border-style: dashed;
    position: relative;
    margin-top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2), 0 0 20px var(--glow-color);
}

.step-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.step-content h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-light);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}



.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    opacity: 0.9;
}



/* CTA Section */
.cta {
    background: var(--gradient-2);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(123, 82, 171, 0.3);
}

.cta::before, .cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.cta::before {
    top: -100px;
    left: -100px;
}

.cta::after {
    bottom: -100px;
    right: -100px;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.cta h2::before, .cta h2::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
}

.cta h2::before {
    left: -40px;
    top: 0;
    animation: float 3s infinite alternate;
}

.cta h2::after {
    right: -40px;
    bottom: 0;
    animation: float 4s infinite alternate-reverse;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.cta .btn-primary {
    transform: scale(1.2);
    margin-top: 10px;
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta .btn-primary:hover {
    transform: scale(1.3);
    background: var(--secondary-color);
    color: white;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

@keyframes orbit {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -50px);
    }
    50% {
        transform: translate(0, -100px);
    }
    75% {
        transform: translate(-100px, -50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(58, 28, 82, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--accent-color);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.logo h1::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 16px;
    animation: float 3s infinite alternate;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav ul li a {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(255, 107, 157, 0.1);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after, .main-nav ul li a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-color);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-top: 4px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px 0 0 0;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-bottom: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    border-radius: 0 0 10px 0;
}

.hero-text {
    max-width: 800px;
    padding: 0;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.hero-text h1::before, .hero-text h1::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.hero-text h1::before {
    top: -15px;
    left: -15px;
    animation: float 3s infinite alternate;
}

.hero-text h1::after {
    bottom: -15px;
    right: -15px;
    animation: float 4s infinite alternate-reverse;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(123, 82, 171, 0.3);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px dashed var(--accent-color);
}

.hero-image {
    flex: 1;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .explainer-animation {
        height: 500px;
    }
    
    .video-preview {
        width: 240px;
        top: 40%;
        right: 10%;
    }
    
    .script-panel {
        top: 60%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .explainer-animation {
        height: 600px;
    }
    
    .boost-traffic, .showcase {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 20px;
    }
    
    .video-preview {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
    }
    
    .script-panel {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px auto;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--glow-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -100px;
    background-color: var(--bg-color);
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 5px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* For mobile responsiveness */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown-columns {
        flex-direction: column;
        gap: 15px;
    }
}

.dropdown-columns {
    display: flex;
    gap: 25px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.dropdown-column ul {
    display: block;
}

.dropdown-column ul li {
    margin: 10px 0;
    margin-left: 0;
}

.dropdown-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

/* Animation Container */
.animation-container {
    width: 100%;
    max-width: 800px;
    background-color: var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    background: #121212;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-button-overlay {
    opacity: 1;
}

/* 3D Robot Animation Styles */
.robot-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.robot {
    position: relative;
    width: 200px;
    height: 280px;
    transform-style: preserve-3d;
    animation: robotFloat 4s ease-in-out infinite;
}

/* Robot Head */
.robot-head {
    position: relative;
    width: 120px;
    height: 100px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 20px;
    margin: 0 auto;
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: headTilt 3s ease-in-out infinite;
}

.robot-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.robot-eyes {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin-bottom: 15px;
}

.robot-eye {
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-color);
    animation: blink 4s infinite;
}

.robot-mouth {
    width: 40px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--glow-color);
    animation: talk 2s infinite;
}

.robot-antenna {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 25px;
    background-color: #444;
    border-radius: 4px;
    z-index: -1;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color);
    animation: pulse 2s infinite;
}

/* Robot Body */
.robot-body {
    position: relative;
    width: 160px;
    height: 180px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    animation: robotFloat 3s ease-in-out infinite;
}

.robot-chest {
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.robot-screen {
    width: 100px;
    height: 80px;
    background-color: #111;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
}

.video-editing-icon {
    color: var(--primary-color);
    font-size: 40px;
    animation: pulse 3s infinite;
}

.robot-arms {
    position: absolute;
    width: 100%;
    top: 30px;
}

.robot-arm {
    position: absolute;
    width: 20px;
    height: 100px;
    background-color: #333;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.robot-arm.left {
    left: -30px;
    transform: rotate(15deg);
    transform-origin: top center;
    animation: leftArmMove 3s ease-in-out infinite alternate;
}

.robot-arm.right {
    right: -30px;
    transform: rotate(-15deg);
    transform-origin: top center;
    animation: rightArmMove 3s ease-in-out infinite alternate;
}



/* Speech Bubbles */
.speech-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.speech-bubble {
    position: absolute;
    width: 100px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    animation: bubbleAppear 0.5s forwards;
    border: 2px solid #00cc66;
}

.speech-bubble i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.speech-bubble span {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

#bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#bubble-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
}

#bubble-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

#bubble-4 {
    top: 5%;
    right: 30%;
    animation-delay: 1.5s;
    background-color: #9933ff;
    border: 2px solid #7700cc;
}

#bubble-5 {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
    background-color: #33cc33;
    border: 2px solid #009900;
}

#bubble-6 {
    bottom: 5%;
    left: 35%;
    animation-delay: 2.5s;
    background-color: #ffcc00;
    border: 2px solid #cc9900;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.video-controls-bar {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(to bottom, #222, #111);
    border-top: 1px solid #333;
}

.control-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.2s ease;
}

.control-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.control-button i {
    color: white;
    font-size: 14px;
}

.progress-container {
    flex: 1;
    margin: 0 15px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    height: 100%;
    width: 15%;
    background: var(--primary-color);
    border-radius: 3px;
}

.time-display {
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
}

.video-features {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: linear-gradient(to bottom, #222, #111);
    border-top: 1px solid #333;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.feature-text h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-text p {
    color: #aaa;
    font-size: 14px;
}

.animation-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 4s infinite;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Features */
.feature {
    position: absolute;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 25px var(--glow-color);
    z-index: 10;
    animation: float 4s infinite alternate ease-in-out;
    transition: all 0.5s ease;
    border: 1px solid var(--primary-color);
}

.feature:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px var(--glow-color);
    background-color: var(--highlight-color);
}

.feature-1 {
    top: 20%;
    left: 0;
    animation: float 4s infinite alternate ease-in-out, pulse 2s infinite;
    animation-delay: 0.2s;
}

.feature-2 {
    top: 0;
    right: 20%;
    animation: float 4.5s infinite alternate ease-in-out, glow 3s infinite;
    animation-delay: 0.5s;
}

.feature-3 {
    bottom: 30%;
    left: 10%;
    animation: float 5s infinite alternate ease-in-out, spin 8s infinite linear;
    animation-delay: 0.8s;
}

.feature-4 {
    bottom: 20%;
    right: 30%;
    animation: float 3.5s infinite alternate ease-in-out, bounce 2s infinite;
    animation-delay: 1s;
    animation-delay: 1.1s;
}

.feature-5 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.4s;
}

.feature .icon {
    font-size: 20px;
}

/* Screen */
.screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 180px;
    background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
    z-index: 5;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: scaleIn 1s ease-out, float 5s infinite alternate ease-in-out;
}

.video-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: linear-gradient(135deg, #3a3a6a, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.video-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite;
}

.preview-placeholder {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, #fff, #a0a0ff, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
    z-index: 1;
}

.screen:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--glow-color);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--wave-color-1), var(--wave-color-2));
    opacity: 0.8;
}

.wave-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 40px);
    animation: wave 15s linear infinite;
}

.app-icons {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    transform: translateY(-50%);
}

.app-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: var(--highlight-color);
}

.video-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}

.control {
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.progress {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    border-radius: 2px;
    animation: progress 2s infinite alternate;
}

/* Cards */
.cards {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 150px;
    height: 100px;
    perspective: 1000px;
    z-index: 6;
}

.card {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    animation: cardFloat 4s infinite alternate ease-in-out;
}

.card-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px;
}

.play-button {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.card-text {
    color: var(--secondary-color);
}

.card-text h3 {
    font-size: 14px;
    font-weight: 700;
}

.card-text p {
    font-size: 10px;
    opacity: 0.8;
}

/* Script Editor */
.script-editor {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 200px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
    z-index: 4;
    transition: all 0.5s ease;
    animation: slideIn 1s ease-out, float 4s infinite alternate ease-in-out 0.5s;
}

.script-editor:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 25px var(--glow-color);
}

.editor-header {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
}

.editor-lines {
    padding: 10px;
}

.line {
    height: 8px;
    background-color: var(--accent-color);
    margin-bottom: 8px;
    border-radius: 4px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.line:nth-child(1) {
    animation-delay: 0.1s;
}

.line:nth-child(2) {
    width: 70%;
    animation-delay: 0.2s;
}

.line:nth-child(3) {
    width: 85%;
    animation-delay: 0.3s;
}

.line:nth-child(4) {
    width: 60%;
    animation-delay: 0.4s;
}

.line:nth-child(5) {
    width: 75%;
    animation-delay: 0.5s;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 60%;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #121212; /* Light black */
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 157, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.how-it-works-header {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    padding: 0 20px;
}



.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.how-it-works h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 42px;
    background: linear-gradient(to right, var(--primary-color), var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Process Container Styles */
.process-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.process-wrapper::before,
.process-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 100px;
    background: linear-gradient(to right, rgba(255, 107, 157, 0.7), transparent);
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.process-wrapper::before {
    left: 20px;
}

.process-wrapper::after {
    right: 20px;
    background: linear-gradient(to left, rgba(255, 107, 157, 0.7), transparent);
}

.process-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0,0,0,0.1);
}

.process-container::-webkit-scrollbar {
    height: 8px;
}

.process-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.process-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.process-step {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-icon {
    position: relative;
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.icon-circle i {
    font-size: 32px;
    color: white;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.process-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    flex-shrink: 0;
}

.process-connector i {
    font-size: 24px;
    color: var(--primary-color);
}



.process-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-step {
        width: 200px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 28px;
    }
    
    .process-content h3 {
        font-size: 18px;
    }
    
    .process-content p {
        font-size: 14px;
    }
}

.process-cta .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.process-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.cute-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.cute-icons i {
    font-size: 24px;
    color: var(--primary-color);
}

.bounce {
    animation: bounce 2s infinite;
}

.spin {
    animation: spin 3s linear infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline {
    position: relative;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step:nth-child(odd) {
        flex-direction: column;
    }
    
    .step-circle {
        margin-bottom: 20px;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-content::before {
        display: none;
    }
}





.step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

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

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--glow-color);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 30px;
    border: 3px solid var(--secondary-color);
}



.step-circle::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: spin 10s linear infinite;
}

.step-circle span {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.step-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    width: calc(50% - 60px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
}









.dotted-line {
    position: relative;
    width: 100px;
    height: 3px;
    margin: 110px -50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-5px);
}





.bounce-horizontal {
    color: var(--primary-color);
    font-size: 20px;
    background-color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}



.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Order Now Button Styles */
.btn-order {
    background-color: var(--button-green);
    color: #000000;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-order:hover {
    background-color: #a8e55e; /* Lighter shade of button-green */
    transform: translateY(-3px);
}

.btn-order:active {
    animation: button-glow 0.5s;
    box-shadow: 0 0 20px rgba(193, 255, 114, 0.8);
}

@keyframes button-glow {
    0% { box-shadow: 0 0 5px rgba(193, 255, 114, 0.6); }
    50% { box-shadow: 0 0 25px rgba(193, 255, 114, 0.8); }
    100% { box-shadow: 0 0 5px rgba(193, 255, 114, 0.6); }
}



/* Footer */
footer {
    padding: 60px 0 20px;
    background: var(--gradient-2);
    color: white;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212; /* Light black */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 18px;
    animation: float 3s infinite alternate;
}

.footer-logo p {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    display: inline-block;
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-links h3::before, .footer-contact h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links ul li::before {
    content: '❤️';
    font-size: 10px;
    margin-right: 8px;
    opacity: 0.7;
}

.footer-links ul li a {
    opacity: 0.9;
    transition: all 0.3s ease;
    font-weight: 500;
    color: white;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::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: all 0.5s ease;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(10deg);
}

.social-icons a i {
    font-size: 20px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 14px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 25px var(--glow-color);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 30px var(--glow-color);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 25px var(--glow-color);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 5px 25px var(--glow-color);
    }
    50% {
        box-shadow: 0 5px 35px var(--glow-color), 0 0 40px var(--glow-color);
    }
    100% {
        box-shadow: 0 5px 25px var(--glow-color);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardFloat {
    0% {
        transform: rotateY(-15deg) rotateX(5deg) translateZ(0);
    }
    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateZ(10px);
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .animation-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .animation-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .features h2, .how-it-works h2, .cta h2 {
        font-size: 28px;
    }
    
    .animation-container {
        height: 300px;
    }
    
    .screen {
        width: 250px;
        height: 170px;
    }
    
    .feature {
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
        margin: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 2;
        border: 1px solid var(--primary-color);
        max-width: 200px;
    }
    
    .feature:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
    }
    
    .feature i {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: var(--primary-color);
    }
    
    .feature-1, .feature-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
    }
    
    .bottom-features .feature {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        margin: 5px;
    }
    
    .bottom-features .feature i {
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .bottom-features .feature h3 {
        margin-bottom: 0;
    }
    
    .feature .icon {
        font-size: 16px;
    }
}


