@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --main-color: rgb(23, 194, 137);
  --dark-blue: rgb(0, 0, 32);
  --white: #ffffff;
  --cyan-light: #131e51de;
  --sky-blue: #39b0ff;
  --white-alpha-25: rgba(255, 255, 255, 0.25);
  --white-alpha-40: rgba(255, 255, 255, 0.4);
  --backdrop-filter-blur: blur(5px);
}

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

::before,
::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(
    to bottom right,
    var(--dark-blue),
    var(--cyan-light)
  );
  background-attachment: fixed;
  font-size: 18px;
  font-family: "poppins", sans-serif;
  font-weight: 300;
  color: var(--white);
  line-height: 2;
  letter-spacing: 1px;
  word-spacing: 5px;
  padding: 35px 15px;
  overflow-x: hidden;
  -webkit-top-highlight-color: transparent;
}
/* body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--sky-blue);
  z-index: -1;
  opacity: 0.12;
} */
body.hide-scrolling {
  overflow-y: hidden;
}
section {
  /* background-color: var(--white-alpha-25);
    border: 1px solid var(--white-alpha-40); */
  min-height: calc(100vh - 70px);
  border-radius: 30px;
  /* backdrop-filter: var(--backdrop-filter-blur); */
  display: none;
}
section.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out forwards;
}
section.fade-out {
  animation: fadeOut 0.4s ease-in-out forwards;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
h1,
h2 {
  font-weight: 600;
}
h3,
h4,
h5,
h6 {
  font-weight: 500;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: "ubuntu", sans-serif;
  user-select: none;
  border: none;
}

.main {
  max-width: 1200px;
  margin: auto;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.main.fade-out {
  opacity: 0;
}
.container {
  padding: 0 40px;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.section-title {
  padding: 0 15px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
.section-title span {
  color: var(--main-color);
}
.section-title h2 {
  font-size: 50px;
  text-transform: capitalize;
}
.hidden {
  display: none !important;
}
.flex-end {
  justify-content: flex-end;
}
.btn {
  line-height: 1.5;
  padding: 10px 25px;
  background-color: var(--white-alpha-25);
  display: inline-block;
  border-radius: 30px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
  font-family: "ubuntu", sans-serif;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.btn:hover {
  background-color: var(--cyan-light);
  box-shadow: 0 0 10px var(--main-color);
  color: var(--main-color);
  transition: 0.3s ease;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

.home-section {
  align-items: center;
  padding: 120px 0;
}
.home-section.active {
  display: flex;
}
.home-text,
.home-img {
  width: 50%;
}
.home-text p {
  font-size: 20px;
}
.home-text h1 {
  font-size: 68px;
  text-transform: capitalize;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
.home-text h2 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 30px;
  color: var(--main-color);
}
.home-text a {
  margin: 0 3px 0;
}
.home-img {
  max-width: 300px;
  /* background-color: var(--white-alpha-25);*/
  /* position: relative; */
  /* border: 8px dotted var(--main-color); */
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite;
  margin: auto;
}
/* .home-img::before {
  content: "";
  position: absolute;
  inset: 0;

} */
.home-img .img-box img {
  width: 100%;
  border-radius: 50%;
}

.social-item .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--white-alpha-25);
  color: var(--white);
  border-radius: 50%;
  margin: 20px 10px 0 0;
  transition: all 0.3s ease;
}

.header {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 20px 0 0;
}
.header.active {
  position: fixed;
  top: 35px;
  padding: 20px 15px;
}
.header.active .container {
  max-width: 1200px;
  margin: auto;
}
.header .nav-toggler {
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--white-alpha-25);
  display: flex;
  margin: 0 15px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
.header .nav-toggler:hover {
  background-color: var(--cyan-light);
  box-shadow: 0 0 10px var(--main-color);
}
.header .nav-toggler.hide {
  opacity: 0;
  transition: none;
}
.header .nav-toggler span {
  background-color: var(--main-color);
  width: 24px;
  height: 2px;
  position: relative;
  transition: background-color 0.4s ease;
}
.header.active .nav-toggler span {
  background-color: transparent;
}
.header .nav-toggler span::before,
.header .nav-toggler span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  transition: all 0.4s ease;
}
.header .nav-toggler span::before {
  left: 0;
  transform: translateY(-8px);
}
.header.active .nav-toggler span::before {
  transform: rotate(45deg);
}
.header .nav-toggler span::after {
  right: 0;
  transform: translateY(8px);
}
.header.active .nav-toggler span::after {
  transform: rotate(-45deg);
}
.header:not(.active) .nav-toggler:hover span::before,
.header:not(.active) .nav-toggler:hover span::after {
  width: 50%;
}
.nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 35px 15px;
  overflow-y: auto;
  visibility: hidden;
}
.header.active .nav {
  visibility: visible;
}
.nav-links {
  max-width: 1200px;
  min-height: calc(100vh - 70px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-alpha-25);
  backdrop-filter: var(--backdrop-filter-blur);
  border-radius: 30px;
  padding: 50px 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.header.active .nav-links {
  opacity: 1;
}
.nav-links ul li {
  text-align: center;
}
.nav-links ul li a {
  font-size: 40px;
  text-transform: capitalize;
  color: var(--white);
  display: block;
  position: relative;
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.4s ease;
}
.nav-links ul li a:hover {
  color: var(--main-color);
}
.nav-links ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: var(--main-color);
  z-index: -1;
  transition: width 0.5s ease;
}
.nav-links ul li a:hover::before {
  width: 100%;
}

.about-section {
  padding: 80px 0;
}
/* .about-img{
    width: 40%;
    padding: 0 15px;
} */
.about-text {
  /* width: 60%; */
  padding: 0 10px;
  font-weight: 200;
}
/* .about-img .img-box{
    max-width: 380px;
    background-color: var(--white-alpha-25);
    border: 1px solid var(--white-alpha-40);
    border-radius: 10px;
    margin: auto;
}
.about-img .img-box img{
    width: 100%;
    border-radius: 10px;
} */
.about-text h3 {
  text-transform: capitalize;
  font-size: 20px;
  margin: 30px 0;
  color: var(--main-color);
}
.about-text p span {
  color: var(--main-color);
}
.about-text .skills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
}

.about-text .skill-item {
  background-color: var(--cyan-light);
  box-shadow: 0 0 5px var(--main-color);
  padding: 5px 15px;
  text-transform: capitalize;
  border-radius: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.about-text .skill-item:hover {
  box-shadow: 0 0 15px var(--main-color);
}
.about-text .skill-item i {
  transition: transform 0.3s ease;
}

.about-text .skill-item:hover i {
  transform: rotate(10deg) scale(1.2);
  color: var(--main-color);
}

.skill-item:nth-child(1) {
  animation-delay: 0.1s;
}
.skill-item:nth-child(2) {
  animation-delay: 0.2s;
}
.skill-item:nth-child(3) {
  animation-delay: 0.3s;
}
.skill-item:nth-child(4) {
  animation-delay: 0.4s;
}
.skill-item:nth-child(5) {
  animation-delay: 0.5s;
}
.skill-item:nth-child(6) {
  animation-delay: 0.6s;
}
.skill-item:nth-child(7) {
  animation-delay: 0.7s;
}
.skill-item:nth-child(8) {
  animation-delay: 0.8s;
}
.skill-item:nth-child(9) {
  animation-delay: 0.9s;
}
.skill-item:nth-child(10) {
  animation-delay: 1s;
}
.skill-item:nth-child(11) {
  animation-delay: 1.1s;
}
.skill-item:nth-child(12) {
  animation-delay: 1.2s;
}
.skill-item:nth-child(13) {
  animation-delay: 1.3s;
}
.about-tabs {
  margin-top: 20px;
}
.about-tabs .tab-item {
  padding: 2px 0;
  background-color: transparent;
  border: none;
  text-transform: capitalize;
  display: inline-block;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  font-weight: 500;
  margin: 30px 30px 0 0;
  position: relative;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.about-tabs .tab-item:last-child {
  margin: 0;
}
.about-tabs .tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--dark-blue);
  transition: width 0.3s ease;
}
.about-tabs .tab-item:hover::before {
  width: 100%;
  background-color: var(--white);
}
.about-tabs .tab-item.active::before {
  width: 100%;
  background-color: var(--main-color);
}
.about-tabs .tab-item.active {
  color: var(--main-color);
  opacity: 1;
  cursor: pointer;
}
.about-text .tab-content {
  padding: 20px 0;
  display: none;
}
.about-text .tab-content.active {
  display: block;
  transition: all 0.5s ease;
}

/* Horizontal container */
.timeline-wrapper {
  position: relative;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--main-color);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
  left: -30px;
}

.nav-btn.next {
  right: -30px;
}

.about-text .timeline {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.about-text .timeline::-webkit-scrollbar {
  display: none !important;
}

/* Timeline cards */
.about-text .timeline-item {
  flex: 0 0 auto;
  width: auto;
  max-width: min(720px, 85vw);
  min-width: 280px;
  text-transform: capitalize;
  background: #111;
  padding: 30px;
  border-radius: 20px;
  scroll-snap-align: center;
  opacity: 0;
  transform: translateX(40px);
  animation: cardReveal 0.8s ease forwards;
}

.about-text .timeline-item .date {
  font-size: 14px;
  color: var(--main-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-text .timeline-item h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 600;
}

.about-text .timeline-item p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 15px;
  line-height: 2;
  opacity: 0.8;
}

.about-text .timeline-item h4 span {
  font-weight: 400;
}

.about-text .timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.about-text .timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.about-text .timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.about-text .timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.about-text .about-btn {
  display: flex;
  justify-content: center;
}

.about-text .btn {
  line-height: 1.4;
  margin: 0 15px 15px 0;
}

.portfolio-section {
  padding: 80px 0;
}
.sub-title {
  font-weight: bold;
  color: var(--main-color);
}
.portfolio-item {
  width: calc((100% / 3) - 30px);
  margin: 15px 15px 30px;
}
.portfolio-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 20px 0;
}
.portfolio-details {
  display: none;
}
/* UPDATED PORTFOLIO THUMBNAIL */
.portfolio-thumbnail {
  position: relative;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 0 10px var(--main-color);
  border-radius: 10px;
}

/* IMAGE */
.portfolio-thumbnail img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);

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

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;

  border-radius: 10px;
}

/* OVERLAY TEXT */
.portfolio-overlay span {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 18px;

  border-radius: 30px;
}

/* HOVER EFFECT */
.portfolio-thumbnail:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-thumbnail:hover img {
  transform: scale(1.08);
}

/* REMOVE OLD BUTTON STYLE (not needed anymore) */
.portfolio-item .btn {
  display: none;
}

.portfolio-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  visibility: hidden;
}
.portfolio-popup.open {
  visibility: visible;
  overflow-y: auto;
}
.portfolio-popup.open .pp-content {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}
.pp-inner {
  min-height: 100vh;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-content {
  background-color: var(--white-alpha-25);
  padding: 30px;
  border-radius: 30px;
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--white-alpha-40);
  backdrop-filter: var(--backdrop-filter-blur);
  opacity: 0;
  transform: scale(0.9);
}
.pp-header {
  position: relative;
}
.pp-header .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  position: absolute;
  right: -40px;
  top: -40px;
}
.pp-thumbnail img {
  border-radius: 10px;
}
.pp-header h3 {
  text-transform: capitalize;
  font-size: 25px;
  margin: 20px 0 15px;
}
.pp-body .des {
  margin-bottom: 20px;
}
.pp-body .info li {
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: capitalize;
}
.pp-body .info li span {
  font-weight: 300;
}
.pp-body .info li a {
  text-transform: lowercase;
  color: var(--main-color);
}

.contact-section {
  padding: 80px 0;
}
.contact-info {
  margin-bottom: 150px;
}
.contact-form,
.contact-info {
  width: 50%;
  padding: 0 15px;
}
.contact-form .input-group {
  width: 100%;
  margin-bottom: 30px;
}
.contact-form .input-control {
  width: 100%;
  height: 50px;
  display: block;
  border: none;
  border-radius: 25px;
  font-family: "ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white-alpha-25);
  padding: 0 20px;
  color: var(--white);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.contact-form .input-control::placeholder {
  color: var(--white);
  opacity: 0.8;
  font-weight: 300;
}
.contact-form .input-control:focus {
  box-shadow: 0 0 10px var(--main-color);
  outline: none;
}
.contact-form textarea.input-control {
  height: 120px;
  resize: none;
  padding-top: 15px;
}
.contact-item {
  margin: 0 0 30px;
  padding: 0 0 0 20px;
  color: var(--white);
}
.contact-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 5px;
}
.contact-item .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--white-alpha-25);
  color: var(--white);
  border-radius: 50%;
  margin: 6px 10px 0 0;
  transition: all 0.3s ease;
}
.contact-item .social-links a:hover,
.social-item .social-links a:hover {
  color: var(--main-color);
  background-color: var(--cyan-light);
  box-shadow: 0 0 10px var(--main-color);
}
.contact-item span,
.social-item .social-links a:hover {
  color: var(--main-color);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes bounceTop {
  0%,
  100% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 10px var(--main-color),
      0 0 20px var(--main-color);
  }
  50% {
    transform: scale(1.1);
    box-shadow:
      0 0 20px var(--main-color),
      0 0 30px var(--main-color);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
  background-color: transparent;
  visibility: hidden;
}
.overlay.active {
  visibility: visible;
}

.bg-circles {
  position: fixed;
  top: 0;
  left: 50%;
  height: 100%;
  width: calc(100% - 30px);
  max-width: 1200px;
  transform: translateX(-50%);
}
.bg-circles div {
  position: absolute;
  border-radius: 50%;
}
.bg-circles .circle-1 {
  height: 60px;
  width: 60px;
  background-color: var(--sky-blue);
  left: 5%;
  top: 10%;
  opacity: 0.3;
  animation: zoomInOut 5s ease-in-out infinite;
}
.bg-circles .circle-2 {
  height: 80px;
  width: 80px;
  background-color: var(--main-color);
  left: 35%;
  top: 50%;
  opacity: 0.4;
  animation: pulse-glow 5s ease-in-out infinite;
}
.bg-circles .circle-3 {
  height: 120px;
  width: 120px;
  background-color: var(--dark-blue);
  right: -60px;
  top: 40%;
  opacity: 0.6;
  animation: bounceTop 5s ease-in-out infinite;
}
.bg-circles .circle-4 {
  height: 50px;
  width: 50px;
  background-color: var(--white);
  left: -30px;
  top: 80%;
  opacity: 0.6;
  animation: bounceTop 5s ease-in-out infinite;
}

.pg-loader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: var(--white-alpha-25);
  backdrop-filter: var(--backdrop-filter-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.pg-loader.fade-out {
  opacity: 0;
}
.pg-loader div {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0.6;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  animation: spin 1s linear infinite;
}
.pg-loader div:nth-child(1) {
  height: 60px;
  width: 60px;
  border-color: var(--main-color);
}
.pg-loader div:nth-child(2) {
  height: 45px;
  width: 45px;
  border-color: var(--dark-blue);
  animation-duration: 1.2s;
}
.pg-loader div:nth-child(3) {
  height: 30px;
  width: 30px;
  border-color: var(--white);
}

@media (max-width: 991px) {
  .container {
    padding: 0;
  }
  .home-text,
  .home-img {
    width: 100%;
  }
  .home-text {
    text-align: center;
    margin-top: 50px;
  }
  .home-img {
    order: -1;
  }
  .home-img .img-box {
    max-width: 300px;
  }
  .home-text .btn {
    margin: 0 7px 15px;
    display: none;
  }
  .social-item .social-links {
    margin: -20px 0 0 0;
  }
  .portfolio-item {
    width: calc(50% - 30px);
  }

  .about-section {
    padding: 60px 0;
  }

  .about-container {
    gap: 30px;
  }

  .about-text {
    padding: 0 15px;
  }

  .about-text .skills {
    gap: 12px;
  }

  .about-text .skill-item {
    padding: 6px 14px;
    font-size: 14px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .nav-btn.prev {
    left: 5px;
  }

  .nav-btn.next {
    right: 5px;
  }

  .about-text .timeline {
    gap: 25px;
  }

  .about-text .timeline-item {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .contact-form,
  .contact-info,
  .about-img,
  .about-text {
    width: 100%;
  }
  .home-img {
    width: 80%;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding: 5px;
    font-size: 14px;
    text-align: justify;
  }

  .about-text h3 {
    margin: 40px 0;
    font-size: 20px;
  }
  .portfolio-item {
    width: calc(100% - 30px);
  }
  .portfolio-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.35);
  }

  .portfolio-overlay span {
    font-size: 14px;
    padding: 8px 14px;
  }
  .pp-inner {
    padding: 30px 15px;
  }
  .contact-info {
    order: -1;
    margin-bottom: 15px;
  }
  .contact-item {
    padding: 0;
  }

  .about-text .skills {
    justify-content: center; /* center align on mobile */
    gap: 10px;
  }

  .about-text .skill-item {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 16px;
  }

  .nav-btn {
    display: none; /* mobile uses swipe */
  }

  .about-text .timeline {
    gap: 18px;
    padding: 10px 0;
  }

  .about-text .timeline-item {
    padding: 20px;
    border-radius: 18px;
  }
}
@media (max-width: 575px) {
  .header .nav-inner ul li a {
    font-size: 35px;
  }
  .home-text h1 {
    font-size: 36px;
  }
  .home-text h2 {
    font-size: 16px;
  }
  .pp-header h3 {
    font-size: 20px;
  }

  .about-text .timeline-item {
    padding: 18px;
  }

  .about-text .timeline-item h4 {
    font-size: 17px;
  }

  .about-text .timeline-item p {
    font-size: 14px;
    line-height: 2;
  }
}
