* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f6f8fb;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #3a7bd5;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    margin: 20px;
    padding: 30px 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf1ff, #f8fbff);
    box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #1a1a2e;
    letter-spacing: 2px;
    line-height: 1;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: black;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   DOCTOR SECTION
   ============================================= */

.doctor-section {
    margin: 20px;
    padding: 50px 50px 50px 30px;
    border-radius: 14px;
    background: white;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.doctor-photo {
    flex-shrink: 0;
    width: 220px;
}

.doctor-photo img {
    width: 220px;
    height: 390px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: block;
}

.doctor-info {
    flex: 1;
    padding-top: 10px;
}

.doctor-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4f7cff;
    margin-bottom: 8px;
}

.doctor-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.doctor-degrees {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.doctor-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6fa9ff, #4f7cff);
    border-radius: 2px;
    margin-bottom: 16px;
}

.doctor-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
}

.doctor-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f5ff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #3a5fbf;
}

.highlight-item i {
    font-size: 16px;
    color: #4f7cff;
}

/* =============================================
   DEGREES
   ============================================= */

.degrees-section {
    margin: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef5ff, #f7fbff);
    box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
}

.degree-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 200px;
    transition: 0.3s;
}

.degree-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

/* =============================================
   ABOUT CLINIC
   ============================================= */

.about-clinic {
    display: flex;
    gap: 40px;
    margin: 20px;
    padding: 40px;
    border-radius: 14px;
    background: white;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.1);
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 40%;
}

.img-box {
    background: #e2e2e2;
    height: 160px;
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-box:hover {
    transform: scale(1.05);
}

.about-text {
    width: 60%;
}

.about-text h2 {
    margin-bottom: 10px;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
    background: #1d1d1d;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #6fa9ff;
}

/* =============================================
   TABLET — max 768px
   ============================================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        margin: 10px;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    /* HERO */
    .hero {
        margin: 10px;
        padding: 24px 20px;
    }

    .hero-name {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    /* DOCTOR */
    .doctor-section {
        flex-direction: column;
        align-items: center;
        margin: 10px;
        padding: 30px 20px;
        gap: 24px;
    }

    .doctor-photo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .doctor-photo img {
        width: 180px;
        height: 320px;
    }

    .doctor-info {
        padding-top: 0;
        text-align: center;
    }

    .doctor-divider {
        margin: 0 auto 16px auto;
    }

    .doctor-highlights {
        justify-content: center;
    }

    /* DEGREES */
    .degrees-section {
        margin: 10px;
        padding: 24px 16px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .degree-card {
        width: calc(50% - 8px);
        padding: 20px;
    }

    /* ABOUT CLINIC */
    .about-clinic {
        flex-direction: column;
        margin: 10px;
        padding: 24px 16px;
        gap: 20px;
    }

    .image-grid {
        width: 100%;
    }

    .about-text {
        width: 100%;
    }

    .img-box {
        height: 130px;
    }

}

/* =============================================
   MOBILE — max 480px
   ============================================= */

@media (max-width: 480px) {

    /* NAVBAR */
    .navbar {
        margin: 8px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .logo {
        width: 38px;
        height: 38px;
    }

    /* HERO */
    .hero {
        margin: 8px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    .hero-brand {
        gap: 14px;
    }

    .hero-logo {
        width: 58px;
        height: 58px;
    }

    .hero-name {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    /* DOCTOR */
    .doctor-section {
        margin: 8px;
        padding: 24px 14px;
        border-radius: 12px;
    }

    .doctor-photo img {
        width: 150px;
        height: 266px;
    }

    .doctor-name {
        font-size: 20px;
    }

    .doctor-desc {
        font-size: 14px;
    }

    .highlight-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* DEGREES */
    .degrees-section {
        margin: 8px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    .degree-card {
        width: 100%;
        padding: 16px;
    }

    /* ABOUT CLINIC */
    .about-clinic {
        margin: 8px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    .img-box {
        height: 110px;
    }

    .about-text h2 {
        font-size: 18px;
    }

    .about-text p {
        font-size: 14px;
    }

    /* FOOTER */
    footer {
        padding: 20px 14px;
        font-size: 13px;
    }

}
