/* General Header Styling */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 1.25rem;
    color: black;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: black; 
}

/* Get Started Button */
.btn-get-started {
    background-color: #0056ff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 1px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-get-started:hover {
    background-color: #5A55D6; /* Slightly darker purple */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hamburger Styling */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: black;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Show Hamburger on Small Screens */
@media (max-width: 768px) {
    .logo{
      font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .btn-get-started  img{
        width: 20px;
    }

    .btn-get-started {
        font-size: 1.1rem;
        padding: 1.1rem;
        gap: 0.7px;
    }

    .navbar {
        justify-content: space-between;
    }

    .nav-links {
        display: none; /* Initially hide the navigation */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex; 
    }

    .nav-links a {
        color: black;
        font-size: 1.5rem;
        padding: 10px 0;
        text-align: center;
    }
}

