@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ScrollBar  */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4c6eb5, #3b5998);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 15px;
    margin-left: 100px;
}

nav a {
    text-decoration: none;
    color: var(--deep-navy);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-blue);
}

.active2 {
    font-weight: bold;
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 8px;
    margin-left: 8px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--deep-navy);
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(11, 79, 138, 0.2);
}


/* ---------------- Mobile Menu ---------------- */

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 11rem
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 1024px) {

    header {
        padding: 1rem 5%;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        z-index: 1100;
    }

    /* Hide menu initially */
    .nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.8rem;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.4s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    /* Open state */
    .nav-wrapper.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
        margin: 0;
    }

    .header-actions {
        flex-direction: column;
        gap: 1rem;
        margin: 0;
    }
    .hero{
        margin-top: -1rem;
    }
}