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

body {
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #000;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background with industrial/welding theme */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Video background */
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

/* Video overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

/* Animated sparks effect */
.sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff6b35, 0 0 20px #ff6b35;
    animation: sparkAnimation 2s infinite;
}

.spark1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spark2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.spark3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}

.spark4 {
    bottom: 35%;
    right: 10%;
    animation-delay: 1.5s;
}

.spark5 {
    top: 50%;
    left: 50%;
    animation-delay: 0.3s;
}

@keyframes sparkAnimation {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Main content */
.content {
    text-align: center;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

/* Logo section */
.logo-section {
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }
}

.company-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ff6b35;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* Coming Soon Banner */
.coming-soon-banner {
    margin: 40px 0;
    position: relative;
}

.banner-text {
    display: inline-block;
    position: relative;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9558 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transform: perspective(500px) rotateX(10deg);
}

.banner-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ff6b35);
    border-radius: 10px;
    z-index: -1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.coming, .soon {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.coming {
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.soon {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Information */
.contact-info {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-container {
    margin-top: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .coming {
        font-size: 1.5rem;
    }
    
    .soon {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .banner-text {
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .coming {
        font-size: 1.2rem;
    }
    
    .soon {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}
