:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-purple: #bc13fe;
    --dark-bg: #005e5e;
}

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

body {
    background-color: var(--dark-bg);
    min-height: 200vh;
    font-family: 'Arial', sans-serif;
}

.splash-container {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

.text-section {
    flex: 1;
    padding-left: 10vw;
    padding-top: 15vh;
}

h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    color: white;
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 40px var(--neon-blue);
    white-space: nowrap;
}

.accent {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 40px var(--neon-blue);
}

.graphics-section {
    flex: 1;
    height: 100%;
    padding-top: 15vh;
}

/* Update the keyframes to use a smaller scale range */
@keyframes circlePulse {
    0% { transform: scale(var(--base-scale)); }
    50% { transform: scale(calc(var(--base-scale) + 0.02)); }
    100% { transform: scale(var(--base-scale)); }
}

.circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    border: 2px solid;
    background: transparent !important;
    filter: none;
    --base-scale: 0.4;
    animation: circlePulse 4s ease-in-out infinite;
}

/* Update individual circle timings to be slower */
.circle-1 {
    width: 20vmin;
    height: 20vmin;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue),
                inset 0 0 15px var(--neon-blue);
    top: 12%;
    right: 25%;
    animation-duration: 4.2s;
}

.circle-2 {
    width: 35vmin;
    height: 35vmin;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue),
                inset 0 0 15px var(--neon-blue);
    top: 5%;
    right: 55%;
    animation-duration: 4.8s;
}

.circle-3 {
    width: 45vmin;
    height: 45vmin;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue),
                inset 0 0 15px var(--neon-blue);
    top: 0%;
    right: 15%;
    animation-duration: 4.5s;
}

@media (max-width: 768px) {
    .splash-container {
        flex-direction: column;
    }
    
    .text-section {
        padding-left: 5vw;
        padding-top: 0;
    }
    .content-container {
        margin-top: 5vh;
    } 
    .graphics-section {
    }
}

/* Line styles */
.line-container {
    position: absolute;
    z-index: -1;
}

.upper-right {
    top: 0;
    right: 0;
}

.lower-left {
    bottom: 5vh;
    left: 0;
}

/* Add these keyframe definitions */
@keyframes pulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
}

.line {
    background: var(--neon-blue);
    position: absolute;
    box-shadow: 0 0 10px var(--neon-blue);
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

/* Give each line a different animation timing */
.line-1 {
    width: 150px;
    height: 2px;
    right: 0;
    top: 20px;
    animation-duration: 1.8s;
}

.line-2 {
    width: 200px;
    height: 2px;
    right: 0;
    top: 28px;
    animation-duration: 2.2s;
}

.line-3 {
    width: 200px;
    height: 2px;
    left: 0;
    bottom: 28px;
    animation-duration: 2.4s;
}

.line-4 {
    width: 300px;
    height: 2px;
    left: 0;
    bottom: 20px;
    animation-duration: 1.6s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    color: inherit;
}

.service-card:hover,
.service-card.animate-hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 0 20px var(--neon-blue),
                inset 0 0 20px var(--neon-blue);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before,
.service-card.animate-hover::before {
    transform: translateX(100%);
}

.service-card h2 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-align: center;

    text-shadow: 0 0 5px var(--neon-blue),
                 0 0 10px var(--neon-blue);
    will-change: text-shadow;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    }

.service-card p {
    color: var(--neon-blue);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
    opacity: 0.7;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    display: flex;
    justify-content: center;
    opacity: 0.7;
}

.service-icon i {
    color: var(--neon-blue);
}

/* Update mobile styles */
@media (max-width: 768px) {
    .content-container {
        padding: 0.5rem 5vw;
        top: 45%;
        height: 70vh;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .service-card {
        padding: 0.75rem;
    }

    .service-card h2 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .lower-left {
        top: calc(45% + 35vh);
    }
}

/* Add copyright notice styles */
.copyright {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-blue);
    font-size: 0.8rem;
    opacity: 0.7;


}

.email-capture {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.email-box {
    /* background: rgba(0, 94, 94, 0.9); */
    border-radius: 10px;
    padding: 2rem;
   /* box-shadow: 0 0 15px var(--neon-blue); */
    text-align: center;
}

.email-box h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    /* text-shadow: 0 0 10px var(--neon-blue); */
}

.email-box p {
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

#email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#email-form input {
    padding: 0.8rem;
    border: 1px solid var(--neon-blue);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

#email-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#email-form button {
    padding: 0.8rem;
    background: var(--neon-blue);
    border: none;
    border-radius: 5px;
    color: var(--dark-bg);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#email-form button:hover {
    background: white;
    box-shadow: 0 0 15px var(--neon-blue);
}

@media (max-width: 768px) {
    .email-box {
        padding: 1.5rem;
    }
    
    .email-box h2 {
        font-size: 1.4rem;
    }
}

.drop-zone {
    padding: 2rem;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-zone.dragover {
    background: rgba(255, 255, 255, 0.1);
}

.drop-zone i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    opacity: 0.8;
}

.drop-zone p {
    margin: 0.5rem 0;
}

.upload-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--neon-blue);
    border-radius: 5px;
    color: var(--dark-bg);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0.8;
}

.upload-button:hover {
    background: white;
    opacity: 1;
    box-shadow: 0 0 15px var(--neon-blue);
}

.upload-status {
    margin-top: 1rem;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.upload-status.success {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    border: 1px solid var(--neon-blue);
    background: rgba(0, 255, 255, 0.1);
}

.upload-status.error {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    border: 1px solid var(--neon-pink);
    background: rgba(255, 0, 255, 0.1);
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--neon-blue) 0%,
        rgba(0, 255, 255, 0.5) 50%,
        var(--neon-blue) 100%
    );
    background-size: 200% 100%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: progress-animation 2s linear infinite;
}

@keyframes progress-animation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Chat Window Styles */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--dark-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    padding-top: 50px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-container {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--neon-blue);
    background: rgba(0, 0, 0, 0.3);
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.chat-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-button {
    background: var(--neon-blue);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: white;
    box-shadow: 0 0 15px var(--neon-blue);
}

.message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background: var(--neon-blue);
    color: var(--dark-bg);
    margin-left: auto;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.bot-message {
    background: rgba(0, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--neon-blue);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.close-button:hover {
    background: rgba(0, 255, 255, 0.1);
    color: white;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Customize scrollbar for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.8);
}

.reopen-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-blue);
    border: none;
    color: var(--dark-bg);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 2000;
}

.reopen-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.reopen-chat-button.visible {
    display: flex;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-bottom: 15px;
    max-width: 80%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: typing-animation 1.4s infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-animation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;

    }
} 