@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Phetsarath:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

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

body {
  background-color: #ffffff;
}

section {
  scroll-margin-top: 70px; /* same height as your navbar */
}

.english-font {
  font-family: Inter, Arial, sans-serif;
}

.lao-font {
  font-family: Phetsarath, sans-serif;
}

.navbar li {
  list-style: none;
}

a {
  /* color of links */
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.navbar {
  /* color of nav bar */
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto 0 auto;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 10;
  height: 70px;
  transition: box-shadow 0.3s ease-in-out;
}

.nav-logo {
  width: 50px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.nav-text {
  color: var(--main-color);
  margin-right: auto;
  margin-left: 10px;
}

.nav-link {
  font-size: 1.2rem;
  transition: 0.7s ease;
}

.nav-link:hover {
  color: rgb(80, 194, 249);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* color of bars */
  background-color: rgb(0, 0, 0);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  width: 50px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    /* color of nav menu links */
    background-color: #ececec;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    opacity: 0.99;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-text {
    display: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .lang-container {
    padding: 1rem;
  }
}

#header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 100%;
  background-image: url("images/header-bkgd.webp");
  background-size: cover;
  background-repeat: none;
  background-position: center;
}

.header-row {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header-row-left {
  flex: 1 1 100%;
  padding: 2rem;
  height: 100%;
  display: flex;
}

.header-row-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  width: 100%;
}

.gradient-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.7;
  overflow: hidden;
}

.gradient-layer img {
  width: 500%;
}

.text-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}
.header-row-left a {
  width: 30%;
  padding: 1rem;
  margin: 2rem auto;
  color: #000;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease-in-out;
  display: block;
  text-align: center;
  border-radius: 1rem;
  color: #fff;
  background-color: rgb(80, 194, 249);
}

.header-row-left h1 {
  margin-top: 10rem;
  font-size: 3rem;
}

.scroll-text {
  margin-top: 10rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: sans-serif;
  color: transparent;
  background-image: linear-gradient(90deg, black 0%, black 50%, #aaa 50%);
  background-size: 200% 100%;
  background-position: right;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.2s ease-out;
}

.header-row-left p {
  font-size: 1.6rem;
  font-style: italic;
  color: #484848;
  margin-bottom: 1rem;
}

/* .header-row-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.header-row-right-div {
  position: relative;
  width: 100%;
  height: 600px; /* or whatever size you need */
  overflow: hidden;
  border-radius: 1rem;
}

.header-row-right-div img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  opacity: 0;
  animation: fadeSlideshow 12s infinite;
  /* border: 1px solid red; */
}

.header-row-right-div img:nth-child(1) {
  animation-delay: 0s;
}

.header-row-right-div img:nth-child(2) {
  animation-delay: 4s;
}

.header-row-right-div img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fadeSlideshow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    background-image: url("images/clients/browser-template-1.webp");
  }

  33% {
    background-image: url("images/clients/browser-template-2.webp");
  }

  66% {
    background-image: url("images/clients/browser-template-3.webp");
  }
}

/* Language Styles */
.lang-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.lang-container p {
  font-size: 0.8rem !important;
  animation: none !important;
}

.us-flag {
  margin-right: 1rem;
}

.us-flag,
.lao-flag {
  height: 20px;
  width: 30px !important;
  /* margin: 0 6px; */
  filter: brightness(50%);
  box-shadow: none;
  transition: 0.3s ease-in-out;
  border-radius: 0.2rem;
}

.us-flag:hover,
.lao-flag:hover {
  cursor: pointer;
  filter: brightness(75%);
}

.us-flag.active,
.lao-flag.active {
  filter: brightness(100%);
  box-shadow: 0 4px 8px #0003, 0 10px 24px #00000030;
}

.menu-link {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .logo-container {
    gap: 0.5rem;
  }
  .logo-container h1 {
    font-size: 1.5rem;
  }

  #header-section {
    height: 100%;
  }

  .text-layer {
    width: 100%;
  }

  .header-row-left h1 {
    margin-top: 4rem;
    font-size: 2rem;
  }

  .header-row {
    width: 100%;
    margin-top: 4rem;
    flex-direction: column-reverse;
  }

  .header-row-left {
    width: 100%;
    padding: 0 1.25rem !important;
  }

  .gradient-layer {
    width: 100%;
    overflow: hidden;
  }

  .gradient-layer img {
    width: 200%;
    margin-left: -50%;
  }

  .header-row-right {
    padding: 0 1rem;
  }

  .header-row-right-div {
    padding: 0;
    height: 220px;
    width: 100%;
    border-radius: 0.5rem;
  }

  .header-row-right-div img {
    width: 100%;
    object-position: top;
    object-fit: contain;
  }

  .header-row-left {
    padding: 0 1rem;
  }

  .header-row-left a {
    width: 100% !important;
  }
}

/* About Styles */
#about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  background-color: #ececec;
  padding: 4rem 0;
  /* border: 1px solid red; */
}

#about-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 2rem;
}

.about-container {
  flex-basis: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes transformImage {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.about-container.right {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
  aspect-ratio: 1 / 1;
}

.about-container.right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: transformImage 20s linear infinite alternate;
}

.about-container.left {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 1.3rem;
}

.about-text-container {
  width: 100%;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.3;
}

.about-text-container p {
  color: #484848;
}

hr {
  margin: 1rem 0;
}

.tech-logos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tech-logo-row {
  display: flex;
  gap: 10px;
}

.tech-logo-row img {
  width: 50px;
}

/* Portfolio Styles */
#portfolio-section {
  height: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 4rem;
}

#portfolio-section h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.portfolio-container {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  /* border: 1px solid red; */
}

.portfolio-card {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #ececec;
  border-radius: 1rem;
  /* box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030; */
}

.portfolio-card img {
  margin-top: 1rem;
  width: 100%;
  object-fit: cover;
  padding: 0 2rem;
}

.portfolio-card div {
  position: relative;
}

.portfolio-card div a {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #898989;
  color: #e4e4e4;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 1rem;
  opacity: 90%;
}

.portfolio-card div i:hover {
  color: #fff;
}

.portfolio-main {
  width: 300px;
}

.portfolio-sub-logo {
  width: 300px;
}

/* Merch Styles */
#pricing-section {
  height: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  background-color: #ececec;
}

#pricing-section h2 {
  font-size: 4rem;
  text-align: center;
}

.promise {
  font-size: 1.5rem;
  line-height: 1.5;
  width: 70%;
  text-align: justify;
  color: #484848;
}

.pricing-card-container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  width: 70%;
}

.pricing-card {
  flex-basis: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 1.9rem;
  border-radius: 1rem;
  background-color: rgb(80, 194, 249);
  color: #000 !important;
}

.pricing-card i {
  font-size: 3rem;
  margin: 2rem;
}

.pricing-card ul {
  display: table;
  padding-left: 1rem;
  margin: 0 auto;
  font-size: 1.3rem;
}

.pricing-card ul li {
  margin: 1rem 0;
  color: #000;
}

/* .pricing-card.year-one {
  width: 100%;
  color: #000;
} */

.pricing-card.post-year-one {
  background-color: #cacaca;
  color: #4b4b4b;
}

.pricing-card h3 {
  font-size: 2rem;
  text-align: center;
}

.ul-container {
  display: flex;
}

.branding-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.branding-section h2 {
  font-size: 3rem;
  margin: 2rem 0;
}

.branding-photo-cred {
  font-size: 0.6rem;
  margin-bottom: 2rem;
}

.branding-container {
  display: flex;
  width: 70%;
  height: 800px; /* or any height you prefer */
  gap: 1rem; /* optional space between columns */
  margin-bottom: 2rem;
}

.branding-left,
.branding-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.branding-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
}

.branding-right {
  gap: 1rem; /* space between stacked images */
}

.branding-right img {
  width: 100%;
  height: calc(50% - 0.5rem);
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
}

/* Facebook Styles */
#fb-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

#fb-section h2 {
  font-size: 3rem;
}

/* Overview Styles */
#overview-section {
  height: 100vh;
  /* padding: 2rem; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
}

#overview-section.murm {
  background-color: #ffffff;
}

#overview-section h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.facebook {
  width: 70%;
  border-radius: 1rem;
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
}

.website-demo {
  display: flex;
  width: 70%;
  height: 80%;
  padding: 0;
}

.demo-image {
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 1rem;
  animation: scrollImage 20s ease-in-out infinite alternate;
}

/* Animation keyframes */
@keyframes scrollImage {
  from {
    object-position: top;
  }
  to {
    object-position: bottom;
  }
}

#benefit-section {
  height: 100%;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #ececec;
}

#benefit-section h2 {
  font-size: 3rem;
  margin: 2rem 0;
}

.benefit-container {
  width: 70%;
  display: flex;
  gap: 1rem;
}

.benefit-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
}

.benefit-group p {
  color: #484848;
  font-size: 1.2rem;
  line-height: 1.5;
}

.benefit-left {
  flex-basis: 33%;
}

.benefit-left img {
  width: 100%;
  border-radius: 0.8rem;
  box-shadow: 0 2px 4px #0003, 0 6px 20px #00000030;
}

.benefit-right {
  flex-basis: 66%;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-desc {
  font-size: 1.5rem;
}

.photo-credit {
  font-size: 0.8rem !important;
}

/* faq - accordion styles */
#faq-section {
  height: 100vh;
  padding: 2rem 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.accordion {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.3rem;
}

.accordion_item {
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ✅ Important: make the button the positioning context */
.accordion_btn {
  position: relative; /* ← required for ::after */
  cursor: pointer;
  background: #ececec;
  padding: 1rem;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 1rem;
  transition: background 0.3s, border-radius 0.3s ease;
  -webkit-text-fill-color: black !important;
  color: black !important;
}

.accordion_item.active .accordion_btn {
  background: #999999;
  border-radius: 1rem 1rem 0 0;
}

.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #bdbdbd;
  border-radius: 0 0 1rem 1rem;
}

/* ✅ padding inside inner wrapper */
.accordion_inner {
  padding: 1rem;
}

/* ✅ plus sign */
.accordion_btn::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ✅ rotate to X */
.accordion_item.active .accordion_btn::after {
  transform: translateY(-50%) rotate(45deg);
  color: #000;
}

/* Contact Styles */
#contact-section {
  height: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  background-color: #ececec;
}

#contact-section h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

#contact-section form {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  font-size: 1.3rem;
}

#contact-section form input,
#contact-section form textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.3rem;
  background-color: #fff;
}

.label-input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact-section form button,
.thank-you-wrapper a {
  padding: 1rem;
  margin: 2rem auto;
  color: #000;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease-in-out;
  width: 300px;
  display: block;
  text-align: center;
  border-radius: 1rem;
  color: #fff;
  background-color: rgb(80, 194, 249);
}

#contact-section form button:hover {
  background-color: #e7e7e7;
}

/* Active (on click / mobile tap) */
#contact-section form button:active {
  background-color: #e0e0e0; /* darker gray */
  transform: scale(0.98); /* small press effect */
}

/* Thank You Styles */
.thank-you-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.thank-you-wrapper img {
  width: 30%;
}

/* FAQ Styles */
#faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  padding: 2rem;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
}

#faq-section h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.faq-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}

.faq-container {
  flex-basis: 50%;
  flex: 1;
  padding: 0 2rem;
}

.faq-container img {
  width: 100%;
}

.faq-container.right {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 1.8rem;
}

.faq-text-container {
  width: 100%;
  flex: 1;
  padding: 2rem;
  background-color: rgb(230, 230, 230);
}

.faq-text-container h4 {
  font-weight: 900;
}

.faq-text {
  font-size: 1.5rem;
}

/* Footer Styles */

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.footer-logo {
  width: 50px;
}

/* OBSERVER STYLES */

.fade-in {
  transform: translateY(3rem);
  opacity: 0;
  transition: transform 0.3s ease-in-out;
}

.fade-in.show {
  transform: translateY(0px);
  opacity: 1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-row-left h1 {
    text-align: left;
  }

  .header-row-left p {
    text-align: left;
    font-size: 1.4rem;
  }

  #pricing-section {
    height: 100%;
    padding: 2rem 1rem;
  }

  .pricing-card-container {
    flex-wrap: wrap;
    width: 100%;
  }

  .pricing-card {
    flex-basis: 100%;
  }

  .pricing-title {
    width: 70%;
  }

  /* Stories Mobile Styles */
  #about-section {
    padding: 2rem 0rem;
  }

  #about-section h2 {
    margin-top: 1rem;
  }

  .about-wrapper {
    height: 100%;
    width: 100%;
  }

  .about-top-container p {
    text-align: left;
  }

  .about-bottom-container {
    display: none;
  }

  .about-bottom-container img {
    display: none;
  }

  .about-container.left {
    padding: 0;
  }

  .about-container.right {
    width: 90%;
  }

  .about-text-container {
    padding: 1rem;
  }

  .about-mobile-only {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }

  .tech-logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
    padding: 1rem;
  }

  .tech-logo-row img {
    width: 50px;
  }

  .ul-container {
    flex-direction: column;
    gap: 0;
  }

  /* Benefits Mobile Styles */
  #benefit-section {
    padding: 1rem 1rem 2rem 1rem;
  }

  #benefit-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  #benefit-section h3 {
    text-align: center;
  }

  .benefit-container {
    width: 100%;
    flex-direction: column;
  }

  .benefit-group {
    flex-direction: column;
    width: 100%;
    padding: 1rem;
  }

  .promise {
    text-align: left;
    width: 100%;
  }

  .accordion {
    width: 90%;
  }

  /* Stories Mobile Styles */

  #about-section {
    height: 100%;
  }

  #about-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .about-wrapper {
    flex-direction: column-reverse;
  }

  .about-container {
    flex-basis: 100%;
    padding: 1rem;
  }

  .about-text-container {
    font-size: 1.3rem;
  }

  /* Thank You Styles */
  .thank-you-wrapper img {
    width: 100%;
  }

  .branding-container {
    margin-bottom: 2rem;
  }

  .branding-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .branding-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0 1rem;
  }

  /* Facebook Mobile Styles */
  #fb-section {
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    gap: 1rem;
    /* margin-bottom: 0; */
  }

  #fb-section h2 {
    font-size: 2rem;
  }

  #fb-section img {
    width: 100%;
  }

  /* Overview Mobile Styles */

  #overview-section {
    height: 100%;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 0;
    gap: 1rem;
  }

  #overview-section img {
    width: 100%;
    /* margin-bottom: 2rem; */
  }

  #overview-section h2 {
    font-size: 2rem;
    margin: 0;
  }

  .website-demo {
    width: 100%;
    height: 250px;
  }

  #portfolio-section {
    padding-bottom: 2rem;
  }

  #portfolio-section h2 {
    font-size: 3rem;
    margin: 0;
  }

  .portfolio-container {
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }

  .portfolio-card {
    flex-basis: 100%;
  }
  /* faq Mobile Styles */

  #faq-section {
    padding: 2rem 0;
    height: 100%;
  }

  #faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .faq-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .faq-container {
    flex-basis: 100%;
    padding: 1rem;
  }

  .faq-text-container {
    font-size: 1.4rem;
  }

  /* Contact Mobile Styles */
  #contact-section {
    padding: 1.2rem;
  }
  #contact-section form {
    width: 100%;
  }

  .photo-credit {
    text-align: center;
  }

  .footer-container {
    padding: 1rem;
  }
}
