/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1e3c72);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gear {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.gear1 {
    top: 10%;
    left: 10%;
    font-size: 80px;
    animation-duration: 15s;
}

.gear2 {
    top: 60%;
    right: 15%;
    font-size: 120px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.gear3 {
    bottom: 20%;
    left: 20%;
    font-size: 60px;
    animation-duration: 18s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main Content */
.content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo i {
    font-size: 60px;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #b8c6db;
    font-weight: 300;
    margin-top: 10px;
}

/* Main Message */
.main-message {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.main-message h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.main-message h2 i {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.main-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8eaf6;
}

/* Services Preview */
.services-preview {
    margin-bottom: 40px;
}

.services-preview h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    min-width: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details strong {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.contact-details span {
    color: #e8eaf6;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #b8c6db;
}

.footer p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 25px;
        margin: 10px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .logo i {
        font-size: 40px;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gear1, .gear2, .gear3 {
        opacity: 0.5;
    }
    
    .gear1 { font-size: 50px; }
    .gear2 { font-size: 70px; }
    .gear3 { font-size: 40px; }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-message {
        padding: 20px;
    }
    
    .main-message h2 {
        font-size: 1.5rem;
    }
    
    .services-preview h3,
    .contact-info h3 {
        font-size: 1.5rem;
    }
}