/* home page stylee */
/*
body {
    background-color: rgb(255, 255, 255);
    padding-top: 50px;
}
@media (max-width: 1200px) {
  body {
    padding-top: 30px;}
}*/
.homepage-width{
     max-width: 100%;
  padding: 70px 8% 50px 8%;
}
@media (max-width: 1200px) {
  .homepage-width {
  max-width: 100%;
  padding: 50px 5%;}
}
/* end home page stylee */


/* ===== DESKTOP FULL-SCREEN SLIDER ===== */
.slide-portfolio-pager {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.slide-portfolio-pages {
  display: flex;
  transition: transform 0.1s ease;
  flex-direction: column;
}

.slide-portfolio-page {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5%;
  position: relative;
}

.slide-portfolio-page-content {
  background: rgba(255, 255, 255, 0.89);
  padding: 30px;
  border-radius: 12px;
  max-width: 350px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.slide-portfolio-page h1 {
  font-weight: 800;
  margin-bottom: 10px;
}

.slide-portfolio-page p {
  margin-bottom: 20px;
}

.download-buttons-portfolio {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.download-buttons-portfolio a img {
  height: 40px;
  cursor: pointer;
}

/* ===== MOBILE/TABLET: Hide desktop sliders, show mobile section ===== */
.responsive-section-portfoliopage {
  display: none;
}

@media screen and (max-width: 823px) {
  .slide-portfolio-pager {
    display: none; /* Hide full-page sliders */
  }

  .responsive-section-portfoliopage {
    display: block;
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
  }

  .section-content-portfoliopage {
    max-width: 600px;
    margin: 20px auto;
    background-color: #c6dcdd;
    border-radius: 10px;
    padding: 10px 10px 25px 10px;
  }

  .section-image-portfoliopage {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .responsive-section-portfoliopage h2 {
    color: #000;
    margin-top: 15px;
    font-weight: 700;
  }

  .responsive-section-portfoliopage p {
    font-size: 16px;
    color: #333;
    margin: 15px 0;
  }
}
