/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #fff;
}

/* Header Styles */
.hero-header {
    background-color: #111;
    padding: 115px 0;
    text-align: center;
    border-bottom: 4px solid #E63946;
}

.header-container {
    max-width: 1850px;
    margin: 0 auto;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 150px;  /* Adjust as needed */
    height: auto;
}

/* Title & Subtitle Styling */
h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    animation: slideIn 1.5s ease-in-out;
}

p1 {
    color: #E63946;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    animation: slideIn 1.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        padding: 85px 0;
    }

    .logo {
        width: 90px; /* Smaller Logo for Mobile */
    }

    h1 {
        font-size: 2.4rem;
    }

    p1 {
        font-size: 1.4rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


