/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body and Full Page Layout */
body {
    height: 100%;
    width: 100%;
    background: #000; /* Fallback color */
    color: #fff;
      
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.logo p {
    font-size: 10px;
    color: #bbb;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f04e30;
}


/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('G:\ShreeProject\Images\images.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    color: #fff;
    background: #f00;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero .content h1 {
        font-size: 2rem;
    }
}
