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

:root {
    --kenya-black: #000000;
    --kenya-red: #BB0000;
    --kenya-green: #006600;
    --kenya-white: #FFFFFF;
    --gold: #FFD700;
    --dark-bg: #0a0e27;
    --card-bg: #E0F7FF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: var(--dark-bg);
    min-height: 100vh;
    cursor: none;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-glow::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

body:hover .cursor-glow {
    background: rgba(255, 215, 0, 0.2);
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(187, 0, 0, 0.1), transparent 50%);
    z-index: 0;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

/* Split Container */
.split-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

/* Left Panel - Image Card */
.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.image-card {
    width: 650px;
    height: 650px;
    background: transparent;
    border-radius: 30px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.image-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(255, 215, 0, 0.5);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover .card-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Kenya Flag on Right Panel */
.flag-container {
    width: 200px;
    margin: 0 auto 30px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.flag-container:hover {
    transform: rotateY(10deg) scale(1.05);
}

.kenya-flag-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.kenya-flag-img:hover {
    filter: drop-shadow(0 10px 25px rgba(255, 215, 0, 0.5));
}

/* Company Title */
.company-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-medical {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-ventures {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.title-partners {
    font-size: 32px;
    font-weight: 900;
    color: var(--kenya-red);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(187, 0, 0, 0.5);
}

/* Right Panel - Interactive Content */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
}

/* Main Title (Coming Soon) */
.main-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.title-line {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: titleFloat 3s ease-in-out infinite;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

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


/* Description */
.description {
    margin-bottom: 40px;
}

.desc-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.desc-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Notify Section */
.notify-section {
    margin-bottom: 40px;
}

.notify-title {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.notify-form {
    width: 100%;
}

.input-wrapper {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    padding: 8px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.email-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 16px;
    color: white;
}

.email-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-btn {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.notify-btn:hover .btn-arrow {
    transform: translateX(5px);
}


/* Floating Particles on Right Panel */
.particles-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 70%;
    animation-delay: 4.5s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
}

/* Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(135deg, #6BCF7F, #4CAF50);
    color: white;
    padding: 30px 60px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
}

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

    .left-panel,
    .right-panel {
        padding: 40px;
    }

    .image-card {
        width: 500px;
        height: 500px;
    }

    .main-title {
        font-size: 56px;
    }

    .title-medical {
        font-size: 40px;
    }

    .title-ventures {
        font-size: 30px;
    }

    .title-partners {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .left-panel {
        padding: 30px 20px;
    }

    .right-panel {
        padding: 40px 20px;
    }

    .image-card {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1;
    }

    .main-logo {
        border-radius: 20px;
    }

    .flag-container {
        width: 150px;
    }

    .title-medical {
        font-size: 32px;
    }

    .title-ventures {
        font-size: 24px;
    }

    .title-partners {
        font-size: 22px;
    }

    .main-title {
        font-size: 48px;
    }

    .desc-highlight {
        font-size: 20px;
    }

    .desc-text {
        font-size: 14px;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .notify-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-card {
        max-width: 350px;
    }

    .title-medical {
        font-size: 26px;
    }

    .title-ventures {
        font-size: 20px;
    }

    .title-partners {
        font-size: 18px;
    }

    .main-title {
        font-size: 36px;
    }

    .flag-container {
        width: 120px;
    }
}
