body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #faf8f6;
    color: #2b1d22;
    letter-spacing: 0.01em;
}

/* ==== Navigation Bar ==== */
.l-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(140,29,64,0.06);
}
.nav__menu-wrapper { width: 100%; }
.nav__menu {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent;
    padding: 14px 0;
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__list {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__item { flex-shrink: 0; }
.nav__link {
    color: #8C1D40;
    padding: 9px 19px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.17s, color 0.17s, transform 0.16s;
    text-decoration: none;
    background: transparent;
}
.nav__link:focus,
.nav__link.active-link {
    background: #FFC627;
    color: #8C1D40;
    transform: scale(1.09);
    box-shadow: 0 2px 8px rgba(140,29,64,0.09);
}
.nav__link:hover {
    background: #8C1D40;
    color: #fff;
    transform: scale(1.07);
}
.nav__logo {
    color: #8C1D40;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    margin-right: 16px;
    letter-spacing: 0.07em;
}

/* ==== Hero ==== */
.home {
    background: linear-gradient(110deg, #faf8f6 0%, #fff4e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    flex-wrap: wrap;
    gap: 40px;
}
.home__title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #8C1D40;
    margin-bottom: 1rem;
    line-height: 1.16;
}
.home__title-color {
    color: #FFC627;
    font-weight: 900;
}
.button {
    background: linear-gradient(90deg, #8C1D40 20%, #FFC627 98%);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 25px;
    margin-top: 1.6rem;
    cursor: pointer;
    transition: background 0.18s, color 0.16s, box-shadow 0.18s;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(140,29,64,0.09);
}
.button:hover {
    background: #FFC627;
    color: #8C1D40;
    box-shadow: 0 8px 26px rgba(140,29,64,0.12);
}
.home__social {
    display: flex;
    margin-top: 1.3rem;
    gap: 18px;
}
.home__social-icon {
    font-size: 2.2rem;
    color: #8C1D40;
    transition: color 0.18s, transform 0.17s;
}
.home__social-icon:hover {
    color: #FFC627;
    transform: scale(1.15);
}

/* ==== Section Titles ==== */
.section-title {
    font-size: 2.2rem;
    color: #8C1D40;
    letter-spacing: 0.05em;
    margin-bottom: 36px;
    font-weight: 800;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 3px solid #FFC627;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* ==== About Section ==== */
.about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin: 32px 0;
    flex-wrap: wrap;
}
.about__img-group {
  display: flex;
  gap: 16px;               /* space between the two images */
  justify-content: center; /* center them in the container */
  flex-wrap: wrap;
}

.about__img-grad {
  max-width: 180px;          /* control size */
  height: auto;
  padding: 8px;              /* inner padding */
  border: 4px solid #8C1D40; /* ASU‐maroon border */
  border-radius: 8px;        /* soften the corners */
  background: #fff;          /* white backing to make the border pop */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about__img-large {
  display: flex;
  justify-content: center;
  margin: 32px 0;        /* vertical spacing */
}

.about__img-large-img {
  width: 320px;          /* larger than the grouped images */
  max-width: 90%;        /* so it shrinks on narrow screens */
  height: auto;
  padding: 12px;
  border: 4px solid #8C1D40;      /* ASU maroon border */
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about__subtitle {
    font-size: 1.6rem;
    color: #8C1D40;
    font-weight: 700;
    margin-bottom: 14px;
}
.about__text {
    font-size: 1.14rem;
    color: #4a3244;
    line-height: 1.8;
}

/* ==== Skills Section ==== */
/* ==== Skills Section Improved ==== */
.skills__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff6ec;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(140,29,64,0.08);
    padding: 38px 32px;
    margin-bottom: 40px;
}

.skills__subtitle {
    font-size: 1.23rem;
    color: #8C1D40;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 12px;
    text-shadow: 0 1px 0 #FFC62722;
}

.skills__subtitle:first-child {
    margin-top: 0;
}

.skills__text {
    color: #47232b;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    font-family: 'Poppins', Arial, sans-serif;
}

.skills__highlight {
    color: #FFC627;
    font-weight: 600;
}

.skills__img {
    max-width: 210px;
    border-radius: 16px;
    margin-top: 1.3rem;
    box-shadow: 0 6px 18px rgba(255,198,39,0.10);
    border: 2px solid #8C1D4011;
}

@media (max-width: 900px) {
    .skills__container {
        flex-direction: column;
        padding: 28px 12px;
    }
}


/* ==== Work & Academics ==== */
.work__container, .Academics.bd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 33px;
    margin: 40px 0;
}
.work__img {
    background: #fff;
    border-radius: 15px;
    padding: 26px 23px;
    border: 2px solid #fff4e5;
    box-shadow: 0 4px 22px rgba(140,29,64,0.09);
    transition: transform 0.16s, box-shadow 0.18s;
}
.work__img:hover {
    transform: translateY(-7px) scale(1.018);
    box-shadow: 0 11px 32px rgba(255,198,39,0.11);
}
.work__img strong a, .work__img strong {
    color: #8C1D40;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.14s;
}
.work__img strong a:hover {
    color: #FFC627;
    text-decoration: underline;
}
.work__img p {
    color: #4a3244;
    font-size: 1.07rem;
    margin-top: 12px;
    line-height: 1.68;
}
.work__img p:hover {
    color: #8C1D40;
}

/* ==== Contact Section ==== */
.contact__container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 24px;
    border-radius: 15px;
    background: #fff6ec;
    box-shadow: 0 6px 22px rgba(255,198,39,0.08);
    min-width: 320px;
}
.contact__input, .contact__button {
    font-family: inherit;
    font-size: 1.09rem;
    padding: 10px 15px;
    border: 2px solid #ffe4b3;
    border-radius: 8px;
    transition: border 0.18s, box-shadow 0.18s;
    outline: none;
}
.contact__input:focus {
    border: 2px solid #8C1D40;
    box-shadow: 0 3px 15px rgba(140,29,64,0.08);
}
.contact__button {
    background: linear-gradient(90deg, #8C1D40 20%, #FFC627 98%);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.contact__button:hover {
    background: #8C1D40;
    color: #FFC627;
}

/* ==== Footer ==== */
footer {
    background: #8C1D40;
    color: #FFC627;
    text-align: center;
    padding: 24px 10px 10px 10px;
    font-size: 1.07rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFC627;
}
.footer__icon {
    color: #FFC627;
    font-size: 2rem;
    margin: 0 12px;
    transition: color 0.14s, transform 0.13s;
}
.footer__icon:hover {
    color: #fff;
    transform: scale(1.13);
}
.footer__copy {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #ffffff;
}

/* ==== Responsive ==== */
@media (max-width: 980px) {
    .about__container,
    .skills__container {
        flex-direction: column;
        align-items: flex-start;
    }
    .about__img img,
    .skills__img {
        margin-left: 0;
    }
}
@media (max-width: 650px) {
    .home__title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.35rem;
    }
    .about__img img {
        max-width: 95px;
    }
    .skills__img {
        max-width: 120px;
    }
}



