
/* NAVBAR */
/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, #4b1fd6, #2575fc);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    height: 42px;
}

/* LINKS (DESKTOP) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* underline hover */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffd166;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* =========================
   MOBILE & TABLET
========================= */
@media (max-width: 992px) {

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #4b1fd6, #2575fc);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        animation: slideDown 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 90px 10%;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero p {
    max-width: 600px;
    opacity: 0.95;
    margin-top: 20px;
}

/* floating glow */
.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.2);
    filter: blur(100px);
    top: 10%;
    right: 10%;
}
/* ======================
   MEDICAL HERO SECTION
====================== */

.medical-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #4b1fd6, #2575fc);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* CONTENT */
.hero-content {
    margin: 0 auto;
    text-align: center;
    animation: fadeSlide 1.2s ease forwards;
}


/* BADGE */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

/* TITLE */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: #ffd166;
}

/* TEXT */
.hero-text {
    max-width: 600px;
    margin: 22px 0 34px;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* BUTTON */
.hero-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.hero-btn:hover i {
    transform: translateX(6px);
}

/* GLOW SHAPES */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.glow-1 {
    background: #ffffff;
    top: 15%;
    left: 10%;
}

.glow-2 {
    background: #ffd166;
    bottom: 10%;
    right: 15%;
}

/* ANIMATIONS */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    from { transform: translateY(0); }
    to { transform: translateY(-40px); }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .medical-hero {
        min-height: auto;
        padding: 80px 0;
    }
}
