* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 25%, #2c3e50 50%, #34495e 75%, #2c5364 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Professional SVG Rockets */
.rocket-container {
    position: fixed;
    z-index: 10;
    width: 60px;
    height: 90px;
    transition: all 1.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: rocketFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.rocket-svg {
    width: 100%;
    height: 100%;
}

.rocket-left {
    left: 10px;
    bottom: 80px;
}

.rocket-right {
    right: 10px;
    bottom: 80px;
}

/* Flame animation */
.flame-group {
    animation: flameFlicker 0.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes flameFlicker {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 0.8;
    }
}

/* Floating animation */
@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Flying animation on scroll */
.rocket-container.fly {
    bottom: 120vh !important;
    opacity: 0;
    transform: scale(1.5);
}

.rocket-container.fly .flame-group {
    animation: flameBurst 0.1s ease-in-out infinite;
}

@keyframes flameBurst {
    0%, 100% {
        transform: scaleY(2);
    }
    50% {
        transform: scaleY(2.5);
    }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    perspective: 1000px;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Planes removed */

.cloud {
    position: absolute;
    display: flex;
    align-items: center;
    animation: floatCloud 40s linear infinite;
    filter: blur(1px);
}

.cloud-part {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
}

.cloud-part:nth-child(1) {
    width: 60px;
    height: 40px;
}

.cloud-part:nth-child(2) {
    width: 80px;
    height: 50px;
    margin-left: -20px;
    margin-top: -10px;
}

.cloud-part:nth-child(3) {
    width: 50px;
    height: 35px;
    margin-left: -15px;
}

.cloud-1 {
    top: 10%;
    animation-delay: 0s;
    animation-duration: 45s;
}

.cloud-2 {
    top: 25%;
    animation-delay: 10s;
    animation-duration: 50s;
}

.cloud-3 {
    top: 50%;
    animation-delay: 20s;
    animation-duration: 40s;
}

.cloud-4 {
    top: 70%;
    animation-delay: 30s;
    animation-duration: 55s;
}

.cloud-5 {
    top: 85%;
    animation-delay: 35s;
    animation-duration: 48s;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s ease-in-out infinite;
}

/* Removed balloons for cleaner look */

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Header */
.header {
    padding: 30px 20px;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    display: inline-block;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.logo i {
    font-size: 3rem;
    color: #00d4ff;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 10px #00d4ff);
    }
    50% {
        transform: scale(1.1) rotateY(180deg);
        filter: drop-shadow(0 0 20px #00d4ff);
    }
}

/* Professional Logo Text - Pure White Glassy Look */
.logo-text {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

/* Glassy shine effect */
.logo-text::before {
    content: '';
    position: absolute;
    left: -20%;
    top: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 100%
    );
    animation: glassShine 4s ease-in-out infinite;
    transform: skewX(-20deg);
    filter: blur(2px);
}

@keyframes glassShine {
    0% {
        left: -30%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    30% {
        left: 130%;
        opacity: 0;
    }
    100% {
        left: 130%;
        opacity: 0;
    }
}

.logo-container {
    position: relative;
    padding: 20px;
}

.tagline {
    color: #00d4ff;
    font-size: 1rem;
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 50px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    padding: 10px 25px;
    border-radius: 50px;
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.main-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.highlight {
    background: linear-gradient(90deg, #00d4ff, #7b2ff7, #f107a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out, gradientShift 3s ease infinite;
}

.subtitle {
    font-size: 1.3rem;
    color: #b0e0e6;
    margin-bottom: 50px;
    animation: fadeIn 2s ease-out;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.feature-card p {
    color: #b0e0e6;
    font-size: 1rem;
}

/* Countdown Section */
.countdown-section {
    margin: 50px 0;
    animation: fadeIn 2s ease-out;
}

.countdown-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 120px;
    animation: scaleIn 1s ease-out;
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: #b0e0e6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.form-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.form-header p {
    color: #b0e0e6;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 1.2rem;
    z-index: 1;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: #00d4ff;
    opacity: 0.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    line-height: 1.8;
    color: #b0e0e6;
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0e0e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    color: #0f2027;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0e0e6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Plane animations removed */

@keyframes floatCloud {
    0% {
        left: -15%;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 115%;
        opacity: 0;
    }
}

/* Removed balloon animation */

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2.5rem;
    }
}

/* Additional Visual Effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

/* Shooting Stars */
@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(300px) translateY(300px) rotate(-45deg);
        opacity: 0;
    }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8),
                0 0 20px 4px rgba(0, 212, 255, 0.6);
    animation: shootingStar 3s ease-out infinite;
}

/* Plane effects removed */

/* Glowing Effect for Feature Cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7, #f107a3, #00d4ff);
    background-size: 400%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s linear infinite;
}

.feature-card:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Ripple Effect on Button Click */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Remove floating animation from logo - keep it static */

/* Parallax Layers */
.hero-section {
    position: relative;
    transform-style: preserve-3d;
}

.feature-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Lens Flare Effect */
.lens-flare {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: screen;
    transition: all 0.1s ease;
}

