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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(
        45deg,
        #1a1a2e,    /* Color 1: Deep Navy */
        #16213e,    /* Color 2: Dark Blue */
        #0f3460,    /* Color 3: Deep Ocean Blue */
        #1f1f3d,    /* Color 4: Dark Purple-Blue */
        #1a1a2e     /* Color 5: Deep Navy (back to start) */
    );
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    color: #fff;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    padding: 0;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    max-width: 600px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-box {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #16213e, #0f3460);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-button .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 52, 96, 0.3);
}

.contact-button:hover .arrow {
    transform: translateX(5px);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 0%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-section, .right-section {
        padding: 2rem;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .contact-box {
        padding: 2rem;
    }

    .contact-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }
} 