/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    padding-top: 76px;
}

section {
    scroll-margin-top: 80px;
}


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

.navbar-brand {
    color: #0f172a;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #0f172a;
}

.brand-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0f172a;
    color: white;

    border-radius: 12px;

    font-size: 20px;
    font-weight: bold;
}

.nav-link {
    color: #334155 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #2563eb !important;
}


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

.hero-section {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ffffff
        );
}

.hero-section h2 {
    color: #0f172a;
}

.hero-section h3 {
    color: #475569;
}


/* =========================
   PROFILE IMAGE
========================= */

.profile-image {
    width: 300px;
    height: 300px;

    border-radius: 50%;

    overflow: hidden;

    background: #e2e8f0;

    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


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

.section-padding {
    padding: 90px 0;
}

.letter-spacing {
    letter-spacing: 2px;
}


/* =========================
   INFO CARD
========================= */

.info-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff6ff;

    border-radius: 12px;

    font-size: 22px;
}


/* =========================
   EDUCATION
========================= */

.education-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eff6ff;

    border-radius: 15px;

    font-size: 28px;
}


/* =========================
   TABLE
========================= */

.table th {
    white-space: nowrap;
}

.table td {
    font-size: 14px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 80px 0;

    background: #0f172a;

    color: white;
}


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

.footer {
    background: #020617;

    color: #94a3b8;

    padding: 25px 0;

    font-size: 13px;
}


/* =========================
   BUTTON
========================= */

.btn {
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 70px 0;
    }

    .hero-section h2 {
        font-size: 42px;
    }

    .profile-image {
        width: 240px;
        height: 240px;
    }

    .section-padding {
        padding: 65px 0;
    }

    .contact-section {
        padding: 65px 0;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-section h2 {
        font-size: 36px;
    }

    .profile-image {
        width: 210px;
        height: 210px;
    }

}