/* GENERAL - Dark Mode */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove all title underlines */
.title::after,
.title::before,
#about h1::after,
#about h1::before,
#about .title::after,
#about .title::before {
    display: none !important;
    content: none !important;
}


body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

html, body, section {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

html::before, html::after, body::before, body::after, section::before, section::after {
  display: none !important;
  content: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

p {
  color: #000000;
}

/* TRANSITION */
a,
.btn {
  transition: all 300ms ease;
}

/* NAVIGATION - Dark Mode with Gradient */
nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  padding: 0 2rem;
  background: linear-gradient(90deg, #051650, #051650);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 8vh;
  width: 100%;
  position: relative;
  color: white;
}

#desktop-nav div:last-child {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-links-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: #FFFFFF !important;
  transition: color 0.3s ease;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.nav-links a:hover {
  color: white;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 2rem;
  color: #FFFFFF !important;
}

.logo:hover {
  cursor: default;
}

/* HAMBURGER MENU - Enhanced Dark Mode */
#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: #f0f0f0;
  transition: all 0.3s ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(30, 30, 30, 0.95);
  width: 200px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99;
}

.menu-links a {
  display: block;
  padding: 12px 20px;
  text-align: left;
  color: #90caf9;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-10px);
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
  padding: 10px 0;
}

.menu-links.open a {
  opacity: 1;
  transform: translateY(0);
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-links a:hover {
  background-color: rgba(144, 202, 249, 0.1);
  padding-left: 25px;
}

/* Add a subtle hover effect to the hamburger icon */
.hamburger-icon:hover span {
  background-color: #90caf9;
}

/* SECTIONS - Dark Mode with Gradient */
section {
  padding-top: 6vh;
  padding-bottom: 6vh;
  margin: 0 5rem;
  box-sizing: border-box;
  min-height: fit-content;
  margin-bottom: 3rem;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  position: relative;
  z-index: auto;
}

/* PROFILE SECTION - Dark Mode with Effects */
#profile {
  display: flex;
  justify-content: center;
  gap: 5rem;
  height: 80vh;
}

.section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

.section__pic-container img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #051650;
}

/* Keep sections clean */
section {
  padding-top: 6vh;
  padding-bottom: 6vh;
  margin: 0 5rem;
  box-sizing: border-box;
  min-height: fit-content;
  margin-bottom: 3rem;
}

.title::before,
.title::after {
    display: none;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
}

.section__text__p1 {
  text-align: center;
}

.title {
  font-size: 3rem;
  text-align: center;
  color: #000000;
}

/* Profile picture container - larger size, no animations */
#profile .section__pic-container {
  display: flex;
  height: 400px;
  width: 400px;
  margin: auto 0;
}

#profile .section__pic-container img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid #051650;
}

/* Remove hover effects */
#profile .section__pic-container:hover,
#profile .section__pic-container img:hover {
  transform: none;
  transition: none;
  cursor: default;
}

/* Button styling */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  font-weight: 600;
  padding: 1rem 2rem;
  width: auto;
  min-width: 160px;
  border-radius: 2rem;
  border: 1px solid rgb(53, 53, 53);
  background: none;
  font-size: 1rem;
}

.btn-color-2:hover {
  cursor: pointer;
  background: rgb(53, 53, 53);
  color: white;
}

@media screen and (max-width: 1024px) {
  #profile {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 5rem 5%;
  }

  #profile .btn-container {
    justify-content: center;
  }

  #profile #socials-container {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  #profile .title {
    font-size: 3rem;
  }

  #profile .section__text__p2 {
    font-size: 1.5rem;
  }

  #profile .btn-container {
    flex-direction: column;
    align-items: center;
  }

  #profile .btn {
    width: 80%;
    max-width: 300px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.section__pic-container {
  width: 275px;
  height: 275px;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.profile-pic {
  border: 4px solid #051650;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__pic-container:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

.section__pic-container:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .section__pic-container {
    height: 300px;
    width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .section__pic-container {
    height: 250px;
    width: 250px;
  }
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
}

.section__text__p1 {
  text-align: center;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  animation: slideIn 1.2s ease-in-out;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000000;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1.5rem;
}

/* ICONS - Hover Effects */
.icon {
  cursor: pointer;
  height: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.icon:hover {
  transform: scale(1.3);
  background-color: #90caf9;
  padding: 0.3rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* BUTTONS - Enhanced Effects */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 300ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-color-1 {
  background-color: #90caf9;
  color: #121212;
  border: none;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
}

.btn-color-2 {
  background: #000080;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-color-1:hover {
  background-color: #64b5f6;
}

.btn-color-2:hover {
  background: rgba(176, 226, 255, 0.1);
}

/* ABOUT SECTION - Enhanced UMBC Image */
#about {
  padding: 0 10rem;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#about .title::before,
#about .title::after {
    display: none;
}

/* Text container with cyan frame */
.text-container {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.text-container::before {
  display: none !important;
  content: none !important;
}

/* Education items with same frame effect */


.education-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.education-item {
  width: 40%;
}
.education-item {
  text-align: center;
}

.education-container h2 {
  text-align: center !important;
  width: 100% !important;
}

/* Create a wrapper for just the education boxes */
.education-items-wrapper {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 5rem !important;
  width: 100% !important;
}

.education-item {
  width: 45% !important;
  margin-left: 0 !important;
}

.education-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.education-item {
  background: #051650;
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  width: 45%;
  margin-left: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.education-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent,
    #000080,
    transparent
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hover effects */
.text-container:hover,
.education-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.section-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.section__pic-container {
  position: relative;
  height: auto;
  width: auto;
}

.about-pic {
  border-radius: 2rem;
}

.about-details-container {
  position: relative;
  flex-direction: column;
}

.text-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  margin-bottom: 2rem;
  width: 100%;
  transition: all 0.3s ease;
  border: none !important;
}

.text-container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

.education-section {
  margin-top: 2rem;
}

.education-details h3 {
  margin-bottom: 0.5rem;
}

.education-details p {
  margin-bottom: 0.25rem;
}

/* Remove any additional styling that might be causing the box */
#profile .section__pic-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.umbc-logo-container {
  position: relative;
}

.umbc-logo {
  width: auto;
  height: auto;
  max-width: 400px;  /* or whatever the original size was */
}

/* Profile picture styling */
.profile-pic-container {
  display: flex;
  height: 350px;
  width: 350px;
  margin: auto 0;
}

.profile-pic {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;  /* This will ensure the profile pic fills the circle nicely */
}

/* UMBC logo styling */
.about-pic-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #000000;
  padding: 1.5rem;
  border: 2px solid #FDB515;
}

/* Add hover effect for better interaction */
.about-pic:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  box-shadow: 0 0 25px rgba(253, 181, 21, 0.2);
}

.details-container {
  text-align: center;
}

.experience-details-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  max-width: 1000px;
}

.about-containers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.details-container {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(176, 226, 255, 0.1), rgba(176, 226, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(176, 226, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.details-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #4CA1AF, #2C3E50);
}

.details-container:nth-child(2)::before {
  background: linear-gradient(180deg, #FF8C00, #FF4500);
}

.details-container:nth-child(3)::before {
  background: linear-gradient(180deg, #00C9FF, #92FE9D);
}

.details-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(76, 161, 175, 0.3);
}

.details-container h3 {
  color: #4CA1AF;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.details-container:nth-child(2) h3 {
  color: #FF8C00;
}

.details-container:nth-child(3) h3 {
  color: #00C9FF;
}

.experience-sub-title {
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
  padding-left: 1rem;
}

.article-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
  padding-left: 1rem;
}

.article-container p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

.article-container p::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4CA1AF;
}

.details-container:nth-child(2) .article-container p::before {
  color: #FF8C00;
}

.details-container:nth-child(3) .article-container p::before {
  color: #00C9FF;
}

/* Add subtle animation on hover */
.details-container:hover .article-container p {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* Add a subtle background pattern */
.details-container {
  background-image: 
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70vh;
  background: transparent;
}

.contact-info-upper-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
}

.contact-info-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;  /* Remove default link underline */
  color: inherit;  /* Keep text color consistent */
}

.contact-info-container:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

.contact-info-container h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin: 0;
}

.contact-icons-top {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-icons-top .contact-icon-wrapper {
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #233a5e);
  border: 2px solid #e0e6f6;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.08);
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.contact-icons-top .contact-icon-wrapper:hover {
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.18);
  border-color: #3b5998;
  background: linear-gradient(135deg, #233a5e, #1a1a1a);
}

.contact-icons-top .contact-icon {
  width: 26px;
  height: 26px;
  filter: none;
  opacity: 1;
  background: none;
  border-radius: 0;
  transition: transform 0.3s;
}

.contact-icons-top .contact-icon:hover {
  transform: scale(1.13);
}

/* Remove special Tableau overrides for consistency */
.contact-icon-wrapper.tableau,
.contact-icon-wrapper.email,
.contact-icon-wrapper.linkedin {
  background: unset;
  border: unset;
}

.tableau .contact-icon {
  filter: none;
  opacity: 1;
  background: none;
  width: 26px;
  height: 26px;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.contact-details a:hover {
  color: #fff;
}

/* Animation for icons */
.contact-info-container:hover .contact-icon-wrapper {
  transform: rotate(360deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-container:hover .contact-icon {
  opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-info-upper-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .contact-info-container {
    width: 100%;
    max-width: 400px;
  }
}

/* Projects section styling */
#projects {
  position: relative;
  padding: 2rem 0;
}

.project-card {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(176, 226, 255, 0.1), rgba(176, 226, 255, 0.05));
  border: 1px solid rgba(176, 226, 255, 0.2);
  padding: 2rem;  /* Restored original padding */
}

.project-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Two equal columns */
    gap: 1.5rem;  /* Space between images */
    margin-bottom: 2rem;
    padding: 0.5rem;  /* Add some padding around the grid */
}

/* Base image styling */
.project-img {
    width: 100%;
    height: 250px;  /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.article-container img {
  border: 2px solid #ffffff;
}

.project-img-container img,
.article-container img,
.project-card img {
    border: 2px solid #ffffff;
}

/* Project image styling */
.project-img,
.project-card img,
#projects img {
    border: 2px solid #ffffff;
}
/* First image frame */
.project-img:nth-child(1) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 226, 255, 0.2);
  box-shadow: 0 0 15px rgba(176, 226, 255, 0.1);
}

/* Second image frame */
.project-img:nth-child(2) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 165, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.1);
}

/* Hover effects */
.project-img:hover {
  transform: translateY(-5px);
}

.project-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.project-description {
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-skills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.skill-tag {
  font-weight: 600;  /* Makes text bold */
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  color: #ffffff !important; 
  transition: all 0.3s ease;
  border: 1px solid rgba(176, 226, 255, 0.2);
}

.project-skills .skill-tag {
  color: #ffffff !important;
}

.skill-tag:hover {
  background: rgba(176, 226, 255, 0.15);
  transform: translateY(-3px);  /* Slight lift effect */
  box-shadow: 0 5px 15px rgba(176, 226, 255, 0.2);  /* Glow effect */
  border: 1px solid rgba(176, 226, 255, 0.2);  /* Brighter border on hover */
  color: #ffffff;  /* Brighter text on hover */
}

/* Optional: Add a subtle active state */
.skill-tag:active {
  transform: translateY(-1px);  /* Less lift when clicked */
  box-shadow: 0 2px 10px rgba(176, 226, 255, 0.1);  /* Reduced glow when clicked */
}

.btn-container {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.project-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.btn-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.github-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.github-cta p {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.github-cta .project-btn {
  padding: 0.8rem 1.5rem;
  min-width: 140px;
  font-size: 0.9rem;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.github-cta .btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Scrollbar styling */
.project-img-container::-webkit-scrollbar {
  height: 6px;
}

.project-img-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.project-img-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.copyright {
  text-align: center;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  width: 100%;
}

/* About section styling to match Experience section */
#about .section-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
  max-width: 1000px;
}

.text-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.text-container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

.education-item {
  background: linear-gradient(135deg, rgba(176, 226, 255, 0.1), rgba(176, 226, 255, 0.05));  /* Matching experience section */
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 4rem;  /* Increased space between boxes */
  width: 120%;  /* Increased from 100% */
  margin-left: -10%;  /* Centers the wider box */
  transition: all 0.3s ease;
  border: 1px solid rgba(176, 226, 255, 0.2);  /* Matching experience section border */
}

.education-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(176, 226, 255, 0.15), rgba(176, 226, 255, 0.1));
  box-shadow: 0 8px 20px rgba(176, 226, 255, 0.2);
  border: 1px solid rgba(176, 226, 255, 0.3);
}

.education-item h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.education-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

/* Education section title */
.education-container h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 1rem 0;
}

.education-container h2::after { display: none; }

/* Optional: Add an underline effect */
.education-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(176, 226, 255, 0.5), transparent);
}

/* Responsive padding for smaller screens */
@media (max-width: 1024px) {
  #about {
    padding: 0 5rem;
  }
  #about::before {
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  #about {
    padding: 0 2rem;
  }
  #about::before {
    left: 1rem;
  }
}

/* Experience section description text */
.article-container p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Keep the experience sub-title (company & date) slightly dimmer */
.experience-sub-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Keep headings unchanged */
.details-container h3 {
  color: #FFA500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Experience section container adjustments */
.details-container {
  padding-left: 3rem;  /* Add padding to move content away from blue line */
}

/* Article container with bullet points */
.article-container {
  position: relative;
  padding-left: 1.5rem;  /* Space for bullets */
}

/* Custom bullet points */
.article-container p {
  position: relative;
  color: rgba(255, 255, 255, 0.9);  /* Increased opacity for better visibility */
  font-size: 1.1rem;
  line-height: 1.8;  /* Increased line height */
  margin-bottom: 1.2rem;  /* More space between points */
  padding-left: 1rem;  /* Space for bullet point */
}

.article-container p::before {
  content: "•";
  position: absolute;
  left: -0.5rem;  /* Position bullet outside of text */
  color: rgba(176, 226, 255, 0.8);  /* Cyan color matching the line */
  font-size: 1.2rem;  /* Slightly larger bullets */
}

/* Keep the experience sub-title styling */
.experience-sub-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;  /* Align with text */
}

/* Keep headings unchanged */
.details-container h3 {
  color: #FFA500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;  /* Align with text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .project-card {
    max-height: 300px;  /* Smaller height on mobile */
  }
}

/* Project image grid */
.project-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Two equal columns */
    gap: 1.5rem;  /* Space between images */
    margin-bottom: 2rem;
    padding: 0.5rem;  /* Add some padding around the grid */
}

/* Base image styling */
.project-img {
    width: 100%;
    height: 250px;  /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

/* First image frame */
.project-img:nth-child(1) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(176, 226, 255, 0.2);
  box-shadow: 0 0 15px rgba(176, 226, 255, 0.1);
}

/* Second image frame */
.project-img:nth-child(2) {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 165, 0, 0.2);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.1);
}

/* Hover effects */
.project-img:hover {
    transform: translateY(-5px);
}

/* Responsive design */
@media (max-width: 768px) {
    .project-img-grid {
        grid-template-columns: 1fr;  /* Stack on mobile */
    }
    
    .project-img {
        height: 200px;  /* Slightly smaller on mobile */
    }
}

/* Education section container */
.education-container {
    display: flex;
    flex-direction: column;  /* Stack items vertically */
    align-items: center;  /* Center everything horizontally */
    gap: 2rem;  /* Space between title and boxes */
}

.education-container h2 {
    text-align: center;
    width: 100%;
}

/* Create a wrapper for just the education boxes */
.education-items-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5rem;
    width: 100%;
}

.education-item {
    width: 45%;
    margin-left: 0;
}

/* Education heading */
.education-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 1rem 0;
}

/* Optional: Add an underline effect */
.education-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(176, 226, 255, 0.5), transparent);
}

#about .title::after { display: none; }
.title::after {
  display: none;
}

/* Individual education item */
.education-item {
    background: linear-gradient(135deg, rgba(176, 226, 255, 0.1), rgba(176, 226, 255, 0.05));  /* Matching experience section */
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 226, 255, 0.2);  /* Matching experience section border */
}

/* Hover effect */
.education-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(176, 226, 255, 0.15), rgba(176, 226, 255, 0.1));
    box-shadow: 0 8px 20px rgba(176, 226, 255, 0.2);
    border: 1px solid rgba(176, 226, 255, 0.3);
}

/* Education item content */
.education-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.education-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .education-container {
        padding: 0 5rem;
    }
}

@media (max-width: 768px) {
    .education-container {
        grid-template-columns: 1fr;  /* Single column on mobile */
        padding: 0 2rem;
    }
}

/* Experience section containers */
.details-container {
    background: #051650 !important;
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/* Project section boxes */
.details-container.project-card {
    background: #051650 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Ensure hover states maintain the background */
.details-container:hover,
.details-container.project-card:hover {
    background: #051650 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Experience title styling */
.details-container h3 {
    color: #00ffff;  /* Cyan color for all titles */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Subtitle styling */
.experience-sub-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Section title */
.title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

/* Optional: Add underline effect to section title */
.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

/* Container hover effect for title */
.details-container:hover h3 {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Experience section layout */
.experience-details-container {
    padding: 0 2rem;
}

.about-containers {
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Remove any existing border or line styles */
.details-container::before,
.details-container::after {
    display: none;
}

/* About Me heading styling */
#about h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-bottom: 3rem;
}

/* Underline effect */
#about h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

/* Optional: Add hover effect */
#about h1:hover::after {
    width: 150px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Ensure proper spacing */
#about {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Experience heading styling */
#experience h1.title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-bottom: 3rem;
}

/* Underline effect */
#experience h1.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

/* Hover effect */
#experience h1.title:hover::after {
    width: 150px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Section spacing */
#experience {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Resume button styling */
.btn.btn-color-2 {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(176, 226, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover effects */
.btn.btn-color-2:hover {
    background: rgba(176, 226, 255, 0.1);
    border-color: rgba(176, 226, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(176, 226, 255, 0.2);
}

/* Active state */
.btn.btn-color-2:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(176, 226, 255, 0.1);
}

/* Optional: Add glow effect on hover */
.btn.btn-color-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(176, 226, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn.btn-color-2:hover::before {
    left: 100%;
}

/* Projects heading styling */
#projects h1.title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-bottom: 3rem;
}

/* Underline effect */
#projects h1.title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

/* Hover effect */
#projects h1.title:hover::after {
    width: 150px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Section spacing */
#projects {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* Text colors */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.nav-links a,
.title,
.section__text p,
.section__text__p1,
.section__text__p2,
.experience-sub-title,
.details-container h3,
.article-container p,
.education-item h3,
.education-item p,
.project-title,
.project-description,
.skill-tag {
    color: #000000 !important;
}

/* Update all button text colors */
.btn,
.btn-color-1,
.btn-color-2,
.project-btn,
.github-cta .project-btn,
.contact-info-container h3,
.contact-details h3,
.contact-details a {
    color: #000000 !important;
}

/* Ensure hover states don't override the black color */
.btn:hover,
.btn-color-1:hover,
.btn-color-2:hover,
.project-btn:hover,
.contact-info-container:hover h3,
.contact-details a:hover {
    color: #000000 !important;
}

/* All buttons including GitHub, Tableau, Resume */
.btn,
.btn-color-1,
.btn-color-2,
.project-btn {
    background: #051650 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* About section container */
.text-container {
    background: #051650 !important;
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    width: 100%;
    transition: all 0.3s ease;
    border: none !important;
}

/* Education items */
.education-item {
    background: #051650 !important;
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 4rem;  /* Increased space between boxes */
    width: 120%;  /* Increased from 100% */
    margin-left: -10%;  /* Centers the wider box */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Ensure hover states maintain the background */
.btn:hover,
.btn-color-1:hover,
.btn-color-2:hover,
.project-btn:hover {
    background: #051650 !important;
}

/* Text in navy blue buttons */
.btn,
.btn-color-1,
.btn-color-2,
.project-btn {
    color: #FFFFFF !important;
}

/* Text in navy blue containers */
.text-container p,
.education-item h3,
.education-item p,
.details-container h3,
.details-container p,
.project-card h2,
.project-card p,
.project-description,
.experience-sub-title {
    color: #FFFFFF !important;
}

/* Ensure hover states maintain white text */
.btn:hover,
.btn-color-1:hover,
.btn-color-2:hover,
.project-btn:hover {
    color: #FFFFFF !important;
}

#desktop-nav .logo,
#hamburger-nav .logo {
  color: white;
}

.nav-links li a,
.menu-links li a {
  color: white;
}

/* Navigation text colors */
#desktop-nav,
#hamburger-nav {
  color: white !important;
}

#desktop-nav .logo,
#hamburger-nav .logo {
  color: white !important;
}

.nav-links li a,
.menu-links li a {
  color: white !important;
}

.menu-links a {
  color: white !important;
}

/* Override any other styles that might affect nav text color */
.nav-links a,
.menu-links a {
  color: white !important;
}

/* GitHub button text color */
.btn-container .btn {
  color: white;
  text-decoration: none;
}

.btn-container .btn:hover {
  color: white;  /* Keeps text white even on hover */
}

/* Navigation text colors - with highest specificity */
nav#desktop-nav,
nav#hamburger-nav,
nav#desktop-nav .logo,
nav#hamburger-nav .logo,
nav#desktop-nav .nav-links li a,
nav#hamburger-nav .menu-links li a {
    color: white !important;
}

/* GitHub button specific styling */
.btn-container .btn,
.btn-container .btn:hover,
.project-btn,
.project-btn:hover {
    color: white !important;
}

/* Target all GitHub buttons with maximum specificity */
.github-cta a.btn.btn-color-2.project-btn,
.github-cta a.btn.btn-color-2.project-btn:hover,
.btn-container a.btn.btn-color-2.project-btn,
.btn-container a.btn.btn-color-2.project-btn:hover,
a[href*="github"].btn.btn-color-2.project-btn,
a[href*="github"].btn.btn-color-2.project-btn:hover {
    color: white !important;
    text-decoration: none !important;
}

.profile-pic {
    border: 4px solid #051650;
}

.education-container .education-item {
    width: 120%;
    margin-left: -10%;
    margin-bottom: 4rem;  /* More space between boxes */
    padding: 2.5rem;
    background: #051650;
    border-radius: 2rem;
}

.education-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}

.education-item {
    width: 45%;
    margin-left: 0;
}

h1.title {
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

h1.title::before,
h1.title::after {
    display: none !important;
    content: none !important;
}

/* Remove all possible borders and lines */
#about .title::after { display: none; }
.title::after { display: none; }
#about h1.title { border: none !important; }
h1.title { border: none !important; }
section#about { border-top: none !important; }

.section__pic-container {
    width: 275px;
    height: 275px;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.profile-pic {
    border: 4px solid #051650;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keep sections clean */
section {
    padding-top: 6vh;
    padding-bottom: 6vh;
    margin: 0 5rem;
    box-sizing: border-box;
    min-height: fit-content;
    margin-bottom: 3rem;
    border: none !important;
}

/* Remove ONLY the outer box, keep the navy blue info box */
.section-container {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Keep the navy blue text box styling */
.text-container {
    background-color: #051650;
    border-radius: 2rem;
    padding: 2.5rem;
}

/* style.css */

#about .section-container {
  border: none !important;
  box-shadow: none !important;
}


/* Make sure hidden-children class doesn't add any unwanted styling */
.hidden-children {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

#email-form-container, #success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 350px;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #b0e2ff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
  background: #f8faff;
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}

.form-actions .btn {
  min-width: 140px;
  max-width: 180px;
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 2rem;
  text-align: center;
}

#success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

#success-message p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #051650;
  text-align: center;
}

#success-message .btn {
  min-width: 140px;
  max-width: 180px;
  width: 100%;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 2rem;
  text-align: center;
  margin: 0 auto;
  display: block;
}
/* remove any box or outline on the About section */
#about,
#about .section-container,
#about .hidden-children {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

html, body, .container {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: #fff !important;
}
/* ======================================================================== */
/*                          YOUR ORIGINAL CSS HERE                          */
/*  (everything up to but *not* including the old "remove any box" block)   */
/* ======================================================================== */

/* … [your entire existing CSS from the top through your last rule before the overrides] … */

/* ======================================================================== */
/*                          ABOUT SECTION OVERRIDES                          */
/* ======================================================================== */

/* 1) Ensure the outer <section id="about"> has no border/shadow/radius */
#about {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 4rem 10rem 2rem !important;
  margin: 0 auto 3rem !important;
}

/* 2) Remove styling on the intermediate .section-container wrapper */
#about .section-container,
#about .section-container.hidden-children {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

/* 3) Keep only your inner .text-container styled as the navy box */
#about .text-container {
  background-color: #051650;    /* your navy background */
  border-radius: 2rem;          /* your rounded corners */
  padding: 2.5rem;              /* your desired inner padding */
  box-shadow: none !important;  /* no extra shadow */
  margin: 0 auto;               /* center it */
  max-width: 1000px;            /* optional width constraint */
}

/* ======================================================================== */
/*                          REST OF YOUR CSS BELOW                          */
/* ======================================================================== */

/* … [any rules you had after the old override block] … */


/* ============================================================================
   FORCE-REMOVE any outer box around the About section and its children
   ============================================================================ */
   #about,
   #about *,
   #about::before,
   #about::after,
   #about *::before,
   #about *::after {
     border: none    !important;
     box-shadow: none!important;
     outline: none   !important;
   }
   
   /* now re-apply only the navy box to your inner text-container */
   #about .text-container {
     background-color: #051650 !important;
     border-radius:     2rem    !important;
     padding:           2.5rem  !important;
     margin:            0 auto  !important;
     max-width:         1000px  !important;
   }
   
.education-boxes-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin: 2.5rem 0 2rem 0;
}

.education-box {
  background: #0a1a4f;
  color: #fff;
  border-radius: 48px;
  padding: 2.5rem 3.5rem;
  min-width: 400px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 24px rgba(10, 26, 79, 0.08);
}

.education-box h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.education-box p {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  margin: 0.2rem 0;
}

@media (max-width: 900px) {
  .education-boxes-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .education-box {
    min-width: 260px;
    max-width: 95vw;
    padding: 2rem 1.2rem;
  }
}

.education-box, .education-box h2, .education-box p {
  color: #fff !important;
}

.about-box-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.about-box-container .education-box {
  max-width: 1100px;
  min-width: 700px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .about-box-container .education-box {
    min-width: 90vw;
    max-width: 98vw;
    padding: 2rem 1rem;
  }
}

@media (max-width: 900px) {
  .about-box-container .education-box {
    min-width: 0;
    max-width: 98vw;
    padding: 2rem 1rem;
  }
}

.project-img-grid img {
  display: block;
  margin: 20px auto !important;
  border: 2.5px solid #fff !important;
  border-radius: 1.5rem;
  background: #fff;
  max-width: 95%;
  width: 500px;
  height: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 700px) {
  .project-img-grid img {
    width: 98vw;
    max-width: 100%;
    height: auto;
  }
}

.project-card .project-img-grid .project-img {
  max-height: 320px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
   