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


/* Color Palette */
:root {
  --background: #f9fafb;
  --accent: #ffe4ed;
  --primary: #008080;

}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  background-color: var(--accent);
  color: var(--primary);
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

header {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--accent);
}

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

.navbar {
  background-color: #f9fafb;
  height: 110px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.container {
  width: 100%;
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  gap: 100px;
}

.logo {
  padding: 0;
  margin: 0;
  height: 100%;
  display: block;
  align-items: center;
}

.logo img {
  height: 250px;
  width: 300px;
  display: block;
  padding-left: 40px;
}

.navlinks {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-left: auto;
}

.navlinks a {
  text-decoration: underline;
  color: #008080;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  padding-bottom: 4px;
}

.navlinks a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffe4ed;
  transition: width 0.3s ease;
}

.navlinks a:hover {
  color: #000;
}

.navlinks a:hover::after {
  width: 100%;
}

/*Dropdown for some nav */
/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* below the parent link */
  left: 0;
  background-color: #f9fafb;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 500;
  color: #008080;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #ffe4ed;
  color: #000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger menu */
.hamburger {
  display: none;
  /* hidden on desktop */
  cursor: pointer;
}

.hamburger img {
  width: 40px;
  /* adjust size */
  height: 40px;
}

.slideshow-container {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* or try 'cover' for cropping effect */
  border-radius: 12px;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.name {
  text-align: center;
  margin-top: 0;
  color: var(--primary);
  font-family: 'Times New Roman', Times, serif;
}

.name h1 {
  font-size: 2rem;
  font-weight: bold;
}

.name p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 5px;
}

.about-section {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #008080;
  color: #ffe4ed;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
  margin: 60px 0;
}


.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-left: 30px;
  padding-right: 35px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-text {
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.about-text h3 {
  font-size: 50px;
  margin-bottom: 10px;
  padding-left: 10px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
  text-align: justify;
}

.about-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  border-radius: 50%;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 4px solid #ffe4ed;
}

.about-text p.quote {
  font-size: 20px;
  font-style: italic;
  text-decoration: underline;
  margin-bottom: 20px;
  line-height: 1.1;
}

.projects-section {
  margin: 0 auto 80px auto;
  padding: 0 20px;
  color: #ffe4ed;
  font-family: 'Times New Roman', Times, serif;
}

.projects-section h2 {
  font-size: 30px;
  text-decoration: underline;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.projects-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: stretch;
}

.project-card {
  background-color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.8);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.project-info {
  padding: 15px 20px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-info p {
  flex-grow: 1;
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffe4ed;
}

.tech-used {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tech-used span {
  background-color: #f9fafb;
  color: #008080;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.read-more-btn {
  align-self: flex-start;
  background-color: #004d4d;
  color: #f9f9f9;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: #006666;
}

.github-icon-box {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-left: 10px;
  /* spacing from Read More button */
  background-color: #004d4d;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  transition: transform 0.3s;
}

.github-icon-box img {
  width: 24px;
  height: 24px;
  margin-top: 5px;
  /* center the icon vertically */
}

.github-icon-box:hover {
  transform: scale(1.1);
}


.project-details {
  padding: 0 20px 20px 20px;
  color: #004d4d;
  font-style: italic;
  font-size: 15px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  background-color: #ffe4ed;
  color: #008080;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  color: #008080;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.modal-gallery img {
  width: 48%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* BOX: VIEW IMAGES */
.view-gallery-box {
  background-color: #008080;
  color: #f9fafb;
  text-align: center;
  font-size: 18px;
  text-decoration: wavy;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  /* stronger shadow for depth */
  border-radius: 15px;
  /* smooth rounded corners */
  padding: 10px;
  /* add some breathing room */
  max-width: 500px;
  /* constrain width */
  margin: 10px auto;
  /* center horizontally with spacing */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  /* if clickable */
}

.view-gallery-box:hover {
  transform: scale(1.05);
  /* subtle zoom on hover */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* View Images: Gallery */
.image-gallery-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.image-gallery-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1002;
}

.gallery-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-content img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

/* Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  padding: 16px;
  margin-top: -50px;
  color: #f9fafb;
  font-weight: bold;
  transition: 0.3s;
  user-select: none;
  z-index: 1002;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

#education {
  padding: 20px 20px;
  background-color: #ffe4ed;
}

#education h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: underline;
}

.education-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.education-card {
  background: #f9f9f9;
  border-left: 6px solid #008080;
  padding: 20px;
  border-radius: 8px;
  width: 420px;
  /* fixed width for uniform size */
  height: 100%;
  /* ensures full stretch */
  box-sizing: border-box;
  /* ensures padding doesn't affect width */
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  justify-content: space-between;
}

.education-card h3 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}

.education-card .degree {
  font-weight: bold;
  margin-top: 5px;
}

.education-card .date,
.education-card .grade {
  font-style: italic;
  color: #666;
  margin-bottom: 10px;
}

.education-card ul {
  margin: 0;
  padding-left: 20px;
  color: #444;
}

/* Work Experience Timeline */
.timeline-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Times New Roman', Times, serif;
}

.timeline-container h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.timeline {
  position: relative;
  padding: 1rem 0;
}

/* The vertical center line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #008080;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Common styles for timeline items */
.timeline-item {
  position: relative;
  width: 70%;
  padding: 1rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/* Content boxes */
.timeline-item .content {
  background-color: #008080;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  color: #f9f9f9;
  flex: 1;
  border-bottom: 5px solid #f9fafb;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* small gap between heading and label */
}

.timeline-item .content .internship {
  background-color: #ffe4ed;
  color: #008080;
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  font-weight: bold;
  font-size: 0.8rem;
  white-space: nowrap;
  margin: 0;
}

.timeline-item .content h3 {
  text-decoration: underline;
}


/* Logo circles on the timeline */
.logo-circle {
  position: absolute;
  top: 1.6rem;
  width: 92px;
  height: 92px;
  background-color: white;
  border: 4px solid #008080;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

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

/* Left side items */
.timeline-item.left {
  left: -220px;
  text-align: left;
  margin-bottom: 0.5rem;
  flex-direction: row-reverse;
}

.timeline-item.left .logo-circle {
  right: -90px;
}

/* Right side items */
.timeline-item.right {
  left: 55%;
  margin-bottom: 0.5rem;
  text-align: left;
  flex-direction: row;
}

.timeline-item.right .logo-circle {
  left: -90px;
}

/* Triangle for LEFT side content */
.timeline-item.left .content::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: 20px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #008080;
  /* same as box background */
}

/* Triangle for RIGHT side content */
.timeline-item.right .content::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 20px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #008080;
  /* same as box background */
}


/* Headings */
.timeline-item h3 {
  margin: 0 0 0.25rem 0;
  color: #ffe4ed;
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-item h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: #f9f9f9;
  font-size: 1rem;
}

.date-opposite {
  position: absolute;
  top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #000;
  background-color: #f9fafb;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 3;
  white-space: nowrap;
}

/* For LEFT-side cards → date goes on the RIGHT of center line */
.timeline-item.left .date-opposite {
  left: calc(100% + 100px);
  /* adjust to move further right if needed */
  text-align: left;
  margin-top: 50px;
}

/* For RIGHT-side cards → date goes on the LEFT of center line */
.timeline-item.right .date-opposite {
  right: calc(100% + 100px);
  text-align: right;
  margin-top: 50px;
}

.timeline-item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}


/* Volunteer */
.volunteer h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.volunteer h3 {
  background-color: #ffe4ed;
  color: #008080;
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
  margin: 0;
}

.volunteer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: center;
  max-width: 1500px;
  margin-right: 50px;
  margin-bottom: 60px;
}

.flip-card {
  background-color: transparent;
  width: 190px;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 120%;
  height: 120%;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 2px solid #008080;
}

.flip-card-front {
  background-color: #f9fafb;
}

.flip-card-front img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.flip-card-back {
  background-color: #008080;
  color: #ffe4ed;
  transform: rotateY(180deg);
  font-size: 1rem;
}


/* Image horizontal scrolling */
.image-scroller-section {
  text-align: center;
}

.image-scroller-heading {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 100px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
  background-color: transparent;
  display: inline-block;
  padding: 0;
}

.image-scroller {
  overflow: hidden;
  width: 100%;
  background: #008080;
  /* teal background behind images */
  padding: 20px 0;
  height: auto;
}

.scroller-track {
  display: flex;
  flex-wrap: nowrap;
  /* prevent vertical wrap */
  gap: 20px;
  animation: scroll-left 100s linear infinite;
  /* slower for desktop */
  width: max-content;
}


.image-item {
  position: relative;
  flex-shrink: 0;
  /* prevent shrinking */
  border-radius: 12px;
  overflow: hidden;
  width: 500px;
  height: 400px;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #f9fafb;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.image-item:hover .image-label {
  opacity: 1;
  transform: translateY(0);
}

/* Animation scroll left */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* scroll exactly half the track (the first set of images) */
  }
}


/* Skills Section */
.skills-section {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.skills-section h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  gap: 40px;
  padding: 10px 0;
}

.skill-item {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #008080;
  color: #008080;
}

.skill-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.skill-item p {
  font-size: 14px;
  margin: 0;
}


/* Certifications */
.certifications {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'Times New Roman', Times, serif;
}

.certifications h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.certificates-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: stretch;
}

.certificate-card {
  flex: 1 1 280px;
  background-color: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  padding: 1.25rem 1rem;
  width: 280px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  border: 2px solid #008080;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
}

.certificate-card h3 {
  font-size: 16px;
  color: #008080;
  word-wrap: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.4;
  max-height: 4.2em;
  /* 3 lines max */
  overflow: hidden;
}

.certificate-card p {
  font-size: 14px;
  color: #000;
  margin-bottom: 1rem;
}

.verify-link {
  text-decoration: none;
  color: #ffe4ed;
  background-color: #008080;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.verify-link:hover {
  background-color: #000;
}

#loadMoreBtn {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffe4ed;
  background-color: #008080;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: #000;
}

/* Badges */
/* Section background & title */
.badges-section {
  text-align: center;
}

.badges-section h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 60px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background-color: #008080;
  width: 100vw;
  padding: 40px 20px;
  box-sizing: border-box;
}

.badge {
  background: #f9fafb;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffe4ed;
}

.badge .badge-text {
  background-color: #ffe4ed;
  color: #008080;
  border-radius: 5px;
}

.badge img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #008080;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  transition: transform 0.4s ease;
  transform-origin: top center;
}

.badge p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  margin: 1px auto;
}


/* Awards */
.awards-section {
  text-align: center;
}

.awards-section h2 {
  font-size: 36px;
  text-decoration: underline;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.trophy-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.trophy-card {
  position: relative;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.trophy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Sparkle overlay */
.trophy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('sparkle.png');
  /* a small transparent sparkle PNG */
  background-size: cover;
  pointer-events: none;
  animation: sparkle 2s linear infinite;
}

/* Hover overlay text */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: gold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.trophy-card:hover img {
  transform: scale(1.05);
}

.trophy-card:hover {
  box-shadow: 0 0 20px gold, 0 0 40px rgba(255, 215, 0, 0.5);
}

.trophy-card:hover .overlay {
  opacity: 1;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Sparkle animation */
@keyframes sparkle {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200% 200%;
  }
}

.trophy-card {
  position: relative;
  width: 200px;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 2px solid #008080;
  box-shadow: 0 0 20px gold, 0 0 40px rgba(255, 215, 0, 0.5);
}

.trophy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #ffe4ed;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.trophy-card:hover {
  box-shadow: 0 0 20px gold, 0 0 40px rgba(255, 215, 0, 0.5);
}

.trophy-card:hover .overlay {
  opacity: 1;
}



/* Optional floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

.trophy-card {
  animation: float 3s ease-in-out infinite;
}

/* Recommendations */
.testimonial-section {
  position: relative;
  min-height: 600px;
  height: 600px;
  background-image: url('images/theend.png');
  /* Replace with your 1920x600 image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  margin-top: 80px;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 128, 128, 0.7);
  z-index: 1;
}

.testimonial-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.testimonial-wrapper {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-card {
  position: absolute;
  background: #f9fafb;
  border-radius: 15px;
  padding: 45px 25px 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: 140px;
  border: 5px solid #ffe4ed;
}

.testimonial-card.center {
  width: 500px;
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.testimonial-card.left {
  width: 450px;
  z-index: 1;
  transform: translateX(-280px) scale(0.9);
  opacity: 0.6;
}

.testimonial-card.right {
  width: 450px;
  z-index: 1;
  transform: translateX(280px) scale(0.9);
  opacity: 0.6;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card.center:hover {
  transform: translateX(0) translateY(-10px) scale(1.02);
}

.testimonial-card.left:hover {
  transform: translateX(-280px) translateY(-10px) scale(0.92);
}

.testimonial-card.right:hover {
  transform: translateX(280px) translateY(-10px) scale(0.92);
}

.quote-icon {
  font-size: 36px;
  color: #008080;
  margin-bottom: 15px;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 16px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 15px;
}

.author-avatar {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #ffe4ed;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.author-info h4 {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.author-info p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 160px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}


/*contact us */
/* Contact Section */
.contact-section {
  text-align: center;
  padding-left: 80px;
  padding-right: 80px;
  margin-bottom: 80px;
}

.contact-title {
  font-size: 36px;
  margin-top: 80px;
  margin-bottom: 35px;
  text-align: center;
  color: #008080;
}

.contact-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, #008080, #38bdf8, #f9fafb);
  margin: 10px auto 0;
  border-radius: 5px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Info + Form boxes */
.contact-info {
  background: #008080;
  padding: 30px;
  border-radius: 12px;
  min-width: 300px;
  text-align: left;
  color: #f9fafb;
}

.contact-form {
  background: #008080;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: #f9fafb;
  /* text inside teal box */
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 18px;
  font-size: 25px;
  text-decoration: underline;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.info-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 3px;
}

.info-item strong {
  display: block;
  font-size: 16px;
}

.info-item a {
  color: #f9fafb;
  text-decoration: none;
  transition: 0.3s;
}

.info-item a:hover {
  color: #000;
}

.contact-info .current-status::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #d1d5db;
  border-radius: 5px;
  margin-top: 90px;
  margin-bottom: 20px;
}

.contact-info .current-status h4 {
  margin-bottom: 18px;
  font-size: 20px;
}

.label {
  font-size: 14px;
  /* smaller */
  color: #d1d5db;
  /* light gray (subtle) */
  font-weight: 400;
}

.value {
  font-size: 16px;
  /* larger than label */
  font-weight: 500;
  /* bold */
  color: #f9fafb;
  /* bright white for contrast */
}

.value a,
.value {
  text-decoration: none;
  color: #f9fafb;
  transition: 0.3s;
}

.value a:hover {
  color: #000;
  /* hover effect */
}



/* Green dot */
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
  /* soft gray instead of white */
  font-size: 12px;
  font-style: italic;
}

.contact-form input,
.contact-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #f9fafb;
  color: #008080;
  /* teal text */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f9fafb;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background: #f9fafb;
  border: none;
  border-radius: 8px;
  color: #008080;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffe4ed;
  color: #008080;
}

/* Floating Social Icons */
.social-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: #008080;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.social-icons a img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  /* make icons white */
}

.social-icons a:hover {
  background: #000;
  transform: scale(1.1);
}

.social-icons a:hover img {
  filter: none;
}


/*FOOTER */
.footer {
  background-color: #008080;
  color: #ffe4ed;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section h2,
.footer-section h3 {
  margin-bottom: 10px;
  color: #f9fafb;
}

.footer-icon {
  width: 20px;
  /* smaller size */
  height: 20px;
  /* maintain square */
  vertical-align: middle;
  /* align with text */
  margin-right: 8px;
  /* spacing between icon and text */
}

.footer-section p,
.footer-section ul,
.footer-section li {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffe4ed;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  /* left and right side */
  align-items: center;
  font-size: 0.9em;
  color: #ccc;
  flex-wrap: wrap;
  /* for small screens */
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-right a:hover {
  color: #fff;
}

.resume-download {
  margin-top: 15px;
}

.download-btn {
  padding: 10px 25px;
  background-color: #f9fafb;
  color: #008080;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #000;
}


/* Scroll to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  /* distance from bottom */
  right: 20px;
  /* distance from right */
  display: none;
  /* hidden by default */
  background-color: #008080;
  color: #f9fafb;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  z-index: 1000;
}

#scrollToTopBtn img {
  width: 30px;
  /* adjust size as needed */
  height: 30px;
}

#scrollToTopBtn:hover {
  background-color: #000;
}

/* Hide by default (desktop) */
.resume-btn-mobile {
  display: none;
}

.form-status {
  display: none;
  /* hidden by default */
  margin-top: 15px;
  padding: 15px;
  background-color: #008080;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
}






/* Responsive */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  img,
  .container,
  section,
  .slideshow-container {
    max-width: 100%;
    box-sizing: border-box;
    /* Include padding/borders in width */
  }

  .navbar {
    height: 60px;
  }

  .container {
    gap: 10px;
    justify-content: space-between;
  }

  .navlinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    /* hidden by default */
    flex-direction: column;
    width: 100%;
    position: absolute;
    /* allows it to overlay */
    top: 70px;
    /* below navbar */
    left: 0;
    z-index: 999;
    top: 60px;
    padding-top: 20px;
    /* below navbar */
    right: 0;
    background-color: #f9fafb;
    flex-direction: column;
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.9s ease;
    align-items: stretch;
  }

  .navlinks a {
    text-decoration: none;
    font-size: 16px;
    color: #008080;
    border-bottom: 1px solid #ddd;
    display: block;
  }


  .navlinks.nav-active {
    display: flex;
    transform: translateY(0);
    /* Slides down into view */
  }

  .navlinks a:hover {
    color: #000;
    border-bottom: 1px solid #008080;
    /* darker line */
  }

  /* --- dropdown menu default state --- */
  .dropdown-menu {
    max-height: 0;
    position: static;
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f9f9f9;
  }

  /* submenu items */
  .dropdown-menu li a {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  /* --- when expanded --- */
  .dropdown-menu.show-dropdown {
    max-height: 500px;
    /* large enough for contents */
  }


  .hamburger {
    display: block;
    cursor: pointer;
    margin-left: 90px;
  }

  .hamburger img {
    width: 50px;
    height: 30px;
  }

  /* logo */
  .logo img {
    margin: 0;
    height: 130px;
    width: 135px;
    padding: 0;
  }

  .slideshow-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .name p {
    font-size: 16px;
  }

  .about-section {
    margin: 40px 0;
  }

  .about-content {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    gap: 20px;
  }

  .about-image {
    max-width: 150px;
    min-width: 200px;
  }

  .about-text h3 {
    text-align: center;
    font-size: 20px;
  }

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

  .about-text p {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .projects-section {
    margin: 20px;
  }

  .projects-container {
    flex-direction: column;
    /* vertical stack */
    flex-wrap: wrap;
    overflow-x: hidden;
    /* no horizontal scroll */
    gap: 40px;
  }

  .project-card {
    flex: 1 1 100%;
    /* full width of container */
    height: auto;
    /* let height adjust to content */
  }

  .projects-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .project-card img {
    height: 180px;
  }

  .project-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .project-info p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .tech-used {
    margin-bottom: 10px;
  }

  .tech-used span {
    padding: 4px 10px;
    font-size: 12px;
  }

  .read-more-btn {
    font-size: 12px;
    padding: 6px 14px;
  }



  #education {
    padding: 20px 20px 0px;
  }

  #education h2 {
    font-size: 20px;
  }

  .education-card {
    padding: 10px;
  }

  .education-card h3 {
    font-size: 16px;
  }

  .education-card p {
    font-size: 14px;
  }

  .education-card ul {
    padding-left: 15px;
    font-size: 14px;
  }


  /* Work Experience */
  .timeline-container h2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  /* Move vertical line to left */
  .timeline::before {
    left: 30px;
  }

  .timeline-item .content h3 {
    font-size: 16px;
  }

  .timeline-item h4 {
    font-size: 14px;
  }

  .timeline-item content {
    font-size: 14px;
  }

  /* Stack items */
  .timeline-item {
    width: 100%;
    margin: 2rem 0;
    padding-left: 90px;
    /* leave space for logo + line */
    flex-direction: column;
    align-items: flex-start;
    position: relative !important;
    left: 0 !important;
  }

  /* Reset left/right styles */
  .timeline-item.left,
  .timeline-item.right {
    left: 0 !important;
    right: 0 !important;
    text-align: left !important;
    flex-direction: column !important;
  }

  /* Logo stays aligned on the vertical line */
  .timeline-item .logo-circle {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 60px;
    height: 60px;
  }

  /* Content goes below logo */
  .timeline-item .content {
    width: 100%;
    margin-top: 1rem;
  }

  /* Dates go under content instead of floating */
  .timeline-item .date-opposite {
    order: -1;
    font-size: 14px;
    margin: 0 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: inline-block;
  }


  .timeline-item .content .internship {
    font-size: 12px;
    padding: 2px;
  }

  /* Remove arrows */
  .timeline-item .content::before {
    display: none !important;
  }

  /*Volunteer Experience */
  .volunteer {
    margin: 10px;
  }

  .volunteer h2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .volunteer-container {
    max-width: 800px;
    gap: 50px;
    margin: 10px;
  }

  .flip-card {
    width: 130px;
    height: 180px;
  }

  .flip-card-front img {
    max-width: 70px;
    max-height: 70px;
  }

  .volunteer h3 {
    font-size: 14px;
  }

  .volunteer p {
    font-size: 14px;
  }


  /*Memorable Moments */
  .image-scroller-heading {
    font-size: 20px;
    text-decoration: underline;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .image-scroller {
    min-height: 220px;
    overflow: hidden;
  }

  .scroller-track {
    animation: none;
  }

  .image-item {
    width: 300px;
    height: 200px;
  }

  /*Skills section */
  .skills-section h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .skills-grid {
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }

  .skill-item img {
    width: 30px;
    height: 30px;
    margin: 5px;
  }

  /*Certificates */
  .certifications h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .certificate-card {
    flex: 1 1 100px;
    width: 280px;
    height: 200px;
  }

  .certificate-card h3 {
    font-size: 14px;
  }

  .certificate-card p {
    font-size: 12px;
  }

  .verify-link {
    font-size: 14px;
  }

  #loadMoreBtn {
    margin: 0.5rem auto;
    padding: 0.50rem 2rem;
    font-size: 14px;
  }

  /* Badge Section */
  .badges-section h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .badge {
    width: 170px;
    height: 170px;
    padding: 30px;
  }

  .badges-container {
    gap: 20px;
    padding: 20px 10px;
  }

  .badge img {
    width: 70px;
    height: 70px;
    margin: 10px 10px;
  }

  .badge .badge-text {
    font-size: 12px;
  }

  .badge p {
    font-size: 10px;
  }

  /*Awards */
  .awards-section h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .trophy-wall {
    gap: 30px;
  }

  .trophy-card {
    width: 150px;
    height: 150px;
    box-shadow: 0 0 10px gold, 0 0 20px rgba(255, 215, 0, 0.5);
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #ffe4ed;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    opacity: 0;
    /* hidden by default */
    transition: opacity 0.3s ease;
  }

  /* Desktop hover */
  @media (hover: hover) {
    .trophy-card:hover .overlay {
      opacity: 1;
    }

    .trophy-card:hover img {
      transform: scale(1);
    }
  }

  /* Mobile tap */
  .trophy-card.active .overlay {
    opacity: 1;
  }


  /*Recommendations */
  .testimonial-section {
    background-image: url('images/theendmobile.png');
    min-height: 400px;
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .testimonial-wrapper {
    height: 250px;
    margin-bottom: 80px;
    margin-top: 40px;
  }

  .testimonial-card {
    padding: 20px 20px 20px 20px;
    margin-top: 100px;
  }

  .testimonial-card.left {
    width: 300px;
    height: 380px;
  }

  .testimonial-card.center {
    width: 300px;
    height: 380px;
  }

  .testimonial-card.right {
    width: 300px;
    height: 380px;
  }


  .dots-container {
    margin-top: 140px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-author {
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .author-info h4 {
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .quote-icon {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .author-info p {
    font-size: 12px;
  }

  .testimonial-text {
    font-size: 12px;
  }

  /*Contact */
  .contact-title {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .contact-title::after {
    width: 90px;
    height: 4px;
    margin: 8px auto 0;
  }

  .contact-section {
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
  }

  .contact-container {
    gap: 30px;
    margin-top: 10px;
  }

  .contact-info h3,
  .contact-form h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .info-item img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .value {
    font-size: 12px;
  }

  .contact-info .current-status h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .contact-info .current-status::before {
    height: 0.5px;
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }

  .contact-info .current-status p {
    font-size: 12px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form label {
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 10px;
  }

  .contact-form button {
    font-size: 14px;
  }

  /*Footer */
  .footer {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-section h2,
  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul,
  .footer-section li {
    font-size: 12px;
  }

  .resume-download {
    margin-top: 10px;
  }

  .download-btn {
    padding: 10px 10px;
    font-size: 12px;
  }

  #scrollToTopBtn {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  #scrollToTopBtn img {
    display: none !important;
  }

  #scrollToTopBtn:hover {
    display: none;
  }

  .social-icons {
    display: none;
  }

  .footer-right a {
    margin: 0;
  }

  /*Modal read more in projects */
  .project-buttons {
    flex-direction: row;
    /* stack vertically */
    align-items: flex-start;
    /* align left (or use center if preferred) */
    gap: 8px;
  }

  .github-icon-circle {
    margin-top: 5px;
  }

  .github-icon-box{
    width: 25px;
    height: 25px;
  }

  .github-icon-box img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

  .modal-content {
    width: 95%;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    max-height: 800px;
    overflow-y: auto;
    font-size: 14px;
    margin-top: 40px;

  }

  .modal-content h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .modal-content h4 {
    font-size: 14px;
  }

  .modal-content ul {
    font-size: 12px;
  }

  .modal-content p {
    font-size: 12px;
  }

  .view-gallery-box {
    font-size: 12px;
    padding: 8px;
    max-width: 300px
  }

  .gallery-content {
    top: 30%;
  }

  .gallery-content img {
    max-width: 70%;
    max-height: 50vh;
  }

  .prev {
    left: 10px;
  }

  .prev,
  .next {
    font-size: 20px;
  }

  .next {
    right: 10px;
  }

  .image-gallery-modal .close {
    top: 30px;
    right: 10px;
    font-size: 20px;
  }

  .resume-btn-container {
    text-align: center;
    /* centers everything inside */
    margin-top: 10px;
    /* space from headline */
  }

  .resume-btn-mobile {
    display: inline-block;
    /* allows padding */
    padding: 5px 10px;
    background-color: #008080;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }

  .resume-btn-mobile:hover {
    background-color: #000;
  }

  .form-status {
    font-size: 12px;
  }

}