:root {
    /* Add your brand colors here */
    --primary-color: #ff3333;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --overlay-color: rgba(0, 0, 0, 0.5);
    --accent-color: #FFE5E5;
    --gradient: linear-gradient(135deg, #ff3333 0%, #ff6666 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding-top: 80px;
}

.content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 32px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Glitch Text Effect */
.glitch-text {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.accent-text {
    color: var(--primary-color);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--primary-color);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: var(--accent-color);
    z-index: -2;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 48px;
    max-width: 600px;
    opacity: 0.9;
}

/* CTA Group */
.cta-group {
    display: flex;
    align-items: center;
    gap: 48px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-button:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.button-icon {
    transition: transform 0.3s ease;
}

.primary-button:hover .button-icon {
    transform: translateX(8px);
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    gap: 24px;
}

.badge {
    text-align: center;
}

.badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.badge .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 51, 51, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .glitch-text {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 48px;
    }

    .cta-group {
        flex-direction: column;
        gap: 32px;
    }

    .achievement-badges {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}

/* Updated Logo Styles */
.logo {
    position: relative;
    display: block;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-light, .logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-dark {
    opacity: 1;
}

.navbar.scrolled .logo img {
    height: 60px;
}

.navbar:not(.scrolled) .logo-light {
    opacity: 1;
}

.navbar:not(.scrolled) .logo-dark {
    opacity: 0;
}

.navbar.scrolled .logo-light {
    opacity: 0;
}

.navbar.scrolled .logo-dark {
    opacity: 1;
}

/* Updated Navbar Styles */
.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links a {
    color: var(--text-color);
}

/* Initial navbar state (transparent) */
.navbar:not(.scrolled) {
    background: transparent;
    box-shadow: none;
}

.navbar:not(.scrolled) .logo-light {
    opacity: 1;
}

.navbar:not(.scrolled) .logo-dark {
    opacity: 0;
}

.navbar:not(.scrolled) .nav-links a {
    color: white;
}

/* Add these styles */
.journey-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-overlay.active {
    opacity: 1;
    visibility: visible;
}

.journey-content {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    color: white;
    position: relative;
}

.journey-steps {
    position: relative;
    min-height: 400px;
}

.step {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.step h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.journey-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journey-form input,
.journey-form textarea {
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.journey-form input:focus,
.journey-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.journey-form textarea {
    min-height: 120px;
    resize: vertical;
}

.journey-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.2);
}

.journey-submit .button-icon {
    transition: transform 0.3s ease;
}

.journey-submit:hover .button-icon {
    transform: translateX(8px);
}

/* Add loading animation styles */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Add error message styles */
.error-message {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid var(--primary-color);
}

/* Add these styles for success message animation */
.success-message {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.6s ease forwards;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.success-message h3::after {
    content: '✓';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    animation: checkmark 0.5s ease forwards 0.3s;
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: translate(10px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
} 