/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #ffffff;
}

/* Animated Background Shapes */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 1;
    animation: float 20s ease-in-out infinite;
    font-size: 18px;
    line-height: 1;
}

/* Plus Signs - Dark Green */
.shape-plus-1 { color: #14532d; top: 10%; left: 12%; animation-duration: 25s; font-size: 20px; font-weight: bold; }
.shape-plus-2 { color: #15803d; top: 55%; left: 8%; animation-duration: 28s; animation-delay: -5s; font-size: 18px; font-weight: bold; }
.shape-plus-3 { color: #166534; bottom: 30%; right: 10%; animation-duration: 30s; animation-delay: -10s; font-size: 22px; font-weight: bold; }
.shape-plus-4 { color: #0c4a6e; top: 35%; right: 25%; animation-duration: 27s; animation-delay: -8s; font-size: 16px; font-weight: bold; }
.shape-plus-5 { color: #047857; bottom: 15%; left: 30%; animation-duration: 26s; animation-delay: -12s; font-size: 20px; font-weight: bold; }
.shape-plus-6 { color: #134e4a; top: 68%; right: 35%; animation-duration: 29s; animation-delay: -6s; font-size: 18px; font-weight: bold; }

/* Rectangles - Dark Blue */
.shape-rect-1 { width: 20px; height: 8px; background: #1e3a8a; top: 18%; left: 20%; animation-duration: 28s; border-radius: 2px; }
.shape-rect-2 { width: 16px; height: 6px; background: #0c4a6e; top: 45%; right: 15%; animation-duration: 30s; animation-delay: -4s; border-radius: 2px; }
.shape-rect-3 { width: 18px; height: 7px; background: #1e40af; bottom: 35%; left: 15%; animation-duration: 27s; animation-delay: -9s; border-radius: 2px; }
.shape-rect-4 { width: 22px; height: 9px; background: #075985; top: 62%; left: 35%; animation-duration: 31s; animation-delay: -7s; border-radius: 2px; }
.shape-rect-5 { width: 14px; height: 6px; background: #1e3a8a; top: 25%; right: 30%; animation-duration: 26s; animation-delay: -11s; border-radius: 2px; }
.shape-rect-6 { width: 20px; height: 8px; background: #0e7490; bottom: 22%; right: 20%; animation-duration: 29s; animation-delay: -5s; border-radius: 2px; }
.shape-rect-7 { width: 16px; height: 7px; background: #0c4a6e; top: 42%; left: 40%; animation-duration: 28s; animation-delay: -13s; border-radius: 2px; }
.shape-rect-8 { width: 18px; height: 8px; background: #1e40af; bottom: 48%; right: 40%; animation-duration: 30s; animation-delay: -3s; border-radius: 2px; }

/* Small Circles - Dark Mixed Colors */
.shape-circle-1 { width: 12px; height: 12px; background: #14532d; border-radius: 50%; top: 15%; right: 18%; animation-duration: 27s; }
.shape-circle-2 { width: 10px; height: 10px; background: #1e3a8a; top: 50%; left: 25%; animation-duration: 29s; animation-delay: -6s; }
.shape-circle-3 { width: 14px; height: 14px; background: #0e7490; bottom: 25%; left: 45%; animation-duration: 28s; animation-delay: -10s; }
.shape-circle-4 { width: 11px; height: 11px; background: #15803d; top: 70%; right: 28%; animation-duration: 26s; animation-delay: -8s; }
.shape-circle-5 { width: 13px; height: 13px; background: #0c4a6e; bottom: 40%; right: 12%; animation-duration: 30s; animation-delay: -12s; }

/* X Marks - Dark Green/Blue */
.shape-x-1 { color: #166534; top: 22%; left: 32%; animation-duration: 28s; animation-delay: -4s; font-size: 18px; font-weight: bold; }
.shape-x-2 { color: #1e40af; top: 58%; right: 22%; animation-duration: 27s; animation-delay: -9s; font-size: 20px; font-weight: bold; }
.shape-x-3 { color: #075985; bottom: 28%; left: 22%; animation-duration: 29s; animation-delay: -7s; font-size: 16px; font-weight: bold; }
.shape-x-4 { color: #047857; top: 48%; left: 48%; animation-duration: 26s; animation-delay: -11s; font-size: 18px; font-weight: bold; }

/* Dots - Small Dark */
.shape-dot-1 { color: #14532d; top: 32%; right: 8%; animation-duration: 25s; font-size: 12px; font-weight: bold; }
.shape-dot-2 { color: #1e3a8a; bottom: 35%; left: 12%; animation-duration: 28s; animation-delay: -5s; font-size: 14px; font-weight: bold; }
.shape-dot-3 { color: #0e7490; top: 65%; left: 18%; animation-duration: 27s; animation-delay: -8s; font-size: 10px; font-weight: bold; }
.shape-dot-4 { color: #15803d; top: 38%; left: 28%; animation-duration: 29s; animation-delay: -10s; font-size: 12px; font-weight: bold; }
.shape-dot-5 { color: #0c4a6e; bottom: 45%; right: 35%; animation-duration: 30s; animation-delay: -6s; font-size: 14px; font-weight: bold; }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Logo Section - Video Animation */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.video-logo {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: visible;
    position: relative;
}

.logo-video {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    border-radius: 20px;
}

/* Shapes around video */
.video-shape {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    opacity: 1;
    animation: floatAround 15s ease-in-out infinite;
}

/* Top shapes */
.video-shape-1 {
    color: #14532d;
    top: -40px;
    left: 10%;
    font-size: 24px;
    animation-delay: 0s;
}

.video-shape-2 {
    width: 18px;
    height: 7px;
    background: #1e3a8a;
    border-radius: 2px;
    top: -35px;
    right: 15%;
    animation-delay: -2s;
}

.video-shape-3 {
    color: #1e40af;
    top: -45px;
    right: 8%;
    font-size: 22px;
    animation-delay: -4s;
}

/* Right side shapes */
.video-shape-4 {
    width: 12px;
    height: 12px;
    background: #15803d;
    border-radius: 50%;
    top: 20%;
    right: -40px;
    animation-delay: -1s;
}

.video-shape-5 {
    color: #0c4a6e;
    top: 50%;
    right: -50px;
    font-size: 20px;
    animation-delay: -3s;
}

.video-shape-6 {
    width: 16px;
    height: 6px;
    background: #0e7490;
    border-radius: 2px;
    bottom: 30%;
    right: -45px;
    animation-delay: -5s;
}

/* Bottom shapes */
.video-shape-7 {
    color: #047857;
    bottom: -40px;
    left: 12%;
    font-size: 18px;
    animation-delay: -2.5s;
}

.video-shape-8 {
    width: 14px;
    height: 14px;
    background: #1e3a8a;
    border-radius: 50%;
    bottom: -35px;
    left: 35%;
    animation-delay: -4.5s;
}

.video-shape-9 {
    color: #166534;
    bottom: -45px;
    right: 15%;
    font-size: 22px;
    animation-delay: -1.5s;
}

/* Left side shapes */
.video-shape-10 {
    width: 20px;
    height: 8px;
    background: #15803d;
    border-radius: 2px;
    top: 25%;
    left: -45px;
    animation-delay: -3.5s;
}

.video-shape-11 {
    color: #075985;
    top: 55%;
    left: -50px;
    font-size: 20px;
    animation-delay: -2.8s;
}

.video-shape-12 {
    color: #134e4a;
    bottom: 35%;
    left: -40px;
    font-size: 16px;
    animation-delay: -4.2s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(8px, -8px) scale(1.1);
    }
    50% {
        transform: translate(-5px, 5px) scale(0.95);
    }
    75% {
        transform: translate(6px, 4px) scale(1.05);
    }
}

/* Message Section */
.message-section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.main-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #14532d 0%, #15803d 25%, #0c4a6e 75%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(20, 83, 45, 0.15);
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #14532d, #0c4a6e);
    border-radius: 2px;
}

.tagline {
    font-size: 1.35rem;
    color: #475569;
    font-weight: 500;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 0 1rem;
    position: relative;
}

.tagline::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: #14532d;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.tagline::after {
    content: '"';
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 3rem;
    color: #0c4a6e;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Form Section */
.form-section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.email-form:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25);
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    background: transparent;
    color: #1e293b;
    font-weight: 500;
}

.email-input::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

.social-icon {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.social-icon:hover {
    color: #8b5cf6;
    transform: translateY(-3px);
}

.social-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    transition: width 0.3s ease;
}

.social-icon:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .video-bg {
        object-fit: cover;
        object-position: center;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.65);
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .logo-section {
        margin-bottom: 2.5rem;
    }
    
    .video-logo {
        max-width: 400px;
    }
    
    .main-heading {
        font-size: 2.75rem;
    }
    
    .tagline {
        font-size: 1.15rem;
        padding: 0 1rem;
    }
    
    .message-section {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .video-bg {
        object-fit: cover;
        object-position: center;
        min-height: 100vh;
        min-width: 100vw;
    }
    
    .video-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .container {
        padding: 1.5rem 1rem;
        min-height: 100vh;
    }
    
    .logo-section {
        margin-bottom: 2rem;
    }
    
    .video-logo {
        max-width: 320px;
    }
    
    .main-heading {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .video-logo {
        max-width: 280px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .video-logo {
        max-width: 260px;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
}
