/* Global Reset */
/*  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
} */

/* Body styling */
/*         body {
    background-color: #2c003e; 
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
} */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header Styling */
header {
    /* background-color: #4b006e; */
    padding: 5px 30px;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo_head {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 280px;
}
.logo_head img{
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 25px;
}

.nav-buttons a {
    color: #fff;
    text-decoration: none;
    background-color: #ffb300;
    /* Yellow */
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}



.nav-buttons a:hover {
    background-color: #ff7f00;
    /* Darker Yellow */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.6);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #4b006e, #2c003e, #6a1e9c, #ffb300);
    text-align: center;
    color: #fff;
    padding: 50px 20px;
    margin-top: 80px;
    /* Space for the sticky header */
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    padding: 15px 40px;
    background-color: #ffb300;
    color: #2c003e;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff7f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.5);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* About Us Section */
.about-us {
    padding: 80px 20px;
    /* background-color: #1f1f1f; */
    background-color: linear-gradient(40deg, #4b006e, #2c003e, #6a1e9c, #ffb300);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-us h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #ccc;
}

/* Contact Us Section */
.contact-us {
    padding: 80px 20px;
    /* background-color: #333; */
    background-color: linear-gradient(40deg, #4b006e, #2c003e, #6a1e9c, #ffb300);
    text-align: center;
}

.contact-us h2 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-us p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us input,
.contact-us textarea {
    width: 400px;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.contact-us input:focus,
.contact-us textarea:focus {
    border-color: #ffb300;
    outline: none;
}

.contact-us button {
    padding: 12px 40px;
    background-color: #ffb300;
    color: #2c003e;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-us button:hover {
    background-color: #ff7f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.5);
}

/* Footer Section */
footer {
    background-color: #1f1f1f;
    padding: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

footer a {
    color: #ffb300;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: row-reverse;
        align-items: center;
        gap: 15px;
    }

    .nav-buttons a {
        padding: 5px 15px;
        border-radius: 25px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 10px;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 35px;
        font-size: 16px;
    }

    .about-us h2,
    .contact-us h2 {
        font-size: 30px;
    }

    .contact-us input,
    .contact-us textarea {
        width: 80%;
    }

    .contact-us form {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .contact-us input,
    .contact-us textarea {
        width: 90%;
    }

    .contact-us form {
        width: 100%;
    }
}