/* ===========================
   HEADER (ENTERPRISE NAVBAR)
=========================== */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(6, 6, 6, 0.949);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(20, 20, 20, 0.262);
    z-index: 1000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #bdbaba;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: #ff6b9a;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #47acef;
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Button */
.btn-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #ff8eb5, #ff6b9a);
    color: rgb(50, 50, 50);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255, 107, 154, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ff6b9a;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px; /* Adjust as needed */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        color: #ff6b9a;

    }

    .navbar {
        position: absolute;
        top: 95px;
        left: 0;
        width: 100%;
        background:rgba(26, 26, 26, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        display: none;
    }

    .navbar.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .btn-primary {
        margin-top: 10px;
    }
    .logo img {
        height: 80px;
    }
}
