/* General Reset 2*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo a {
  text-decoration: none;
  color: inherit;
}
/* Main menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

/* Menu items */
.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  padding: 10px;
  display: block;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0077cc;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #0077cc;
}

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


/* Carousel */
.carousel-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

.carousel {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #fff;
}

/* Titles */
.titles {
  text-align: center;
  padding: 3rem 1rem;
}

.titles h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.titles p {
  font-size: 1.25rem;
  color: #777;
}

/* Photo Grid */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 2%;
  gap: 1.5rem;
}

.left-side, .right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-small {
  display: flex;
  gap: 1rem;
}

.bottom-small {
  display: flex;
  gap: 1rem;
}

.grid-photo {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  max-height: 250px;
}

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

.grid-photo:hover img {
  transform: scale(1.05);
}

.photo-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  white-space: nowrap;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #eee;
  padding: 1rem 2rem;
  margin-top: 3rem;
}

.footer-logo {
  font-weight: bold;
}

.footer-copy {
  font-size: 0.9rem;
}

.footer-top button {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .photo-grid {
    flex-direction: column;
    padding: 1rem;
  }

  .top-small, .bottom-small {
    flex-direction: column;
  }
}


/*------------------------------------------------------- About Intro Section Start -------------------------------------------------------*/
.about-intro {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

/*------------------------------------------------------- About Intro Section End -------------------------------------------------------*/
/*------------------------------------------------------- Contact Section Start -------------------------------------------------------*/
.contact-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

.contact-form button:hover {
  background-color: #0077cc;
}

/*------------------------------------------------------- Contact Section End -------------------------------------------------------*/

/*-------------------------------------------------- Christening Page Start ----------------------------------------*/
/* Christening CTA Split */
.herotitles {
  text-align: center;
  padding: 3rem 1rem; /* <--- This controls top & bottom (3rem), and left & right (1rem) */
}


    .cta-photo-split {
      padding: 4rem 2rem;
      background-color: #f9f9f9;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
    }

    .cta-split-inner {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-photos {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      flex: 1;
    }

    .cta-photos img,
    .cta-bottom img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .cta-photos img:hover,
    .cta-bottom img:hover {
      transform: scale(1.01);
    }

    .cta-content {
      flex: 1;
    }

    .cta-content h2 {
          text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #222;
    }

    .cta-content p {
          text-align: center;
      font-size: 1.2rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .cta-button-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-button-christening {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button-christening:hover {
  background: #000;
  color: #fff;
}


    .cta-bottom {
      max-width: 1200px;
      margin: 2rem auto 4rem;
      padding: 0 2rem;
    }
    
    .cta-img-bottom {
  display: block;
  margin: 2rem auto 0 auto;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.cta-img-bottom:hover {
  transform: scale(1.02);
}

    

    /* Lightbox */
    .lightbox-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .lightbox-modal img {
      max-width: 90%;
      max-height: 80%;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
    }
    
    .lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 2.5rem;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  user-select: none;
  z-index: 1001;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}


    @media (max-width: 768px) {
      .cta-split-inner {
        flex-direction: column;
        text-align: center;
      }

      .cta-photos {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }

      .cta-photos img {
        width: 48%;
      }

      .cta-content {
        margin-top: 2rem;
      }

      .cta-bottom img {
        width: 100%;
      }
    }

/*-------------------------------------------------- Christening Page End -----------------------------------------------*/


/*-------------------------------------------------- Newborns Page Start ----------------------------------------*/
/* Newborns Hero Section - same layout as Maternity */
.newborn-hero {
  padding: 3rem 2rem;
  background-color: #fdf8f8;
}

.newborn-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .newborn-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

.newborn-text {
  max-width: 600px;
  text-align: right;
}

.newborn-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.newborn-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.newborn-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.cta-section {
  background: #ffeef2;
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-button-newborn {
  background: #000;
  color: #fff;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 50px;
  transition: background 0.3s;
}

.cta-button-newborn:hover {
  background: #333;
}

.babyfeet-section {
  text-align: center;
  margin: 2rem 0;
}

.babyfeet-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}



/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

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

.lightbox .close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

.lightbox .close {
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 30px;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 30px;
  transform: translateY(-50%);
}
/*-------------------------------------------------- Newborns Page End ----------------------------------------*/
/*-------------------------------------------------- Maternity Page Start ----------------------------------------*/
/* MATERNITY SECTION */
/* MATERNITY SECTION */
.maternity-hero {
  padding: 3rem 1.5rem;
  background-color: #fff7f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.maternity-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  position: relative;
}

/* Text fade left */
.maternity-text {
  text-align: right;
  max-width: 500px;
  flex: 1;
  opacity: 0;
  transform: translateX(0);
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image fade right after text */
.maternity-image {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(0);
  animation: slideInRight 1s ease forwards;
  animation-delay: 1.2s; /* Wait until text finishes */
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.maternity-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}

/* CTA Button */
.cta-button-maternity {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 50px;
  transition: background 0.3s;
}

.cta-button-maternity:hover {
  background: #333;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

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

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/*-------------------------------------------------- Maternity Page End ----------------------------------------*/

/*-------------------------------------------------- Packages Start ----------------------------------------*/
/* Services Hero Image */
.services-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Services Headings */
.services-headings {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.services-headings h2 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #777;
}

.services-headings h3 {
  font-size: 2rem;
  font-weight: 500;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  background: #fff;
}

.package-card {
/*border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
min-height: 250px; */


   border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: calc(100% - 2rem); 
  height: 400px; 
  object-fit: cover; 
  margin: 1rem; 
  margin-bottom: 0; 
  border-radius: 8px;
  display: block;
  
   /*width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0; 
  margin: 0; */
}

/* Info Box */
.package-info {
  background: #f8f8f8;
  padding: 1.5rem;
  margin: 1rem;
  border-radius: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.package-info ul {
  padding-left: 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  list-style: disc;
}

.package-price {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: 1.5rem;
}

.starting-text {
  font-size: 0.9rem;
  color: #999;
  margin-right: 0.4rem;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
}

/* CTA */
.services-cta {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
}

.cta-button-packages {
  background: #e8d8c3; /* light beige */
  color: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0; /* square edges */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-packages:hover {
  background: #d8c3a0; /* darker beige on hover */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


/* BANNER WITH QUOTE */
.quote-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin: 3rem 0;
}

.quote-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 /* filter: brightness(0.6);*/
}

.quote-banner .quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  max-width: 70%;
  text-align: center;
  line-height: 1.4;
}

/* PROCESS TITLES */
.process-titles {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem;
  color: #222;
}

.process-titles h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-titles h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0;
}

/* PROCESS STEPS CONTAINER */
.process-steps {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* EACH PROCESS STEP */
.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

/* STEP IMAGE */
.process-step img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* TEXT SIDE */
.process-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  color: #000;
}

.process-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.6rem 0;
  color: #555;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.process-text hr {
  border: none;
  border-top: 2px solid #ddd;
  width: 40px;
  margin: 0 0 1rem 0;
}

.process-text p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
  margin: 0;
}

/* FAQ SECTION */
.faq-section {
  background: #fff;
  padding: 4rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 0.5rem;
}

.faq-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #000;
}

.faq-item {
  border-top: 1px solid #ccc;
}

.faq-item:last-child {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f7f7f7;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  background: #f7f7f7; /* light gray */
  text-align: left;
/*  padding: 1rem;*/
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Show answer when active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg); /* turns + into × */
}


.quality-section {
  background: #fff;
  padding: 4rem 1.5rem;
 
}

.quality-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  align-items: flex-start;
}

.quality-left {
 flex: 0 0 auto;
  display: flex;
  align-items: flex-end; /* align bottom of image */
}


.quality-right {
  flex: 1 1 400px;
}


.vertical-img {
  width: 70%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
 
  
}

.quality-right h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.quality-right p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.5;
}

.quality-button {
  display: inline-block;
  background: #e8d8c3; /* light beige */
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: background 0.3s ease;
}

.quality-button:hover {
  background: #d8c3a0;
}

.horizontal-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}


/*------------------------------------------------- Packages End ----------------------------------------*/

/*------------------------------------------------- Retouching Start ----------------------------------------*/
 .retouching-banner {
   background: #f7f7f7;
  padding: 2rem 2rem; /* ↓ reduce vertical padding from 6rem to 2rem */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* Remove or reduce this next line if it's making the banner too tall */
  min-height: 40vh; /* or try 50vh if you still want some height */
}

    .retouching-banner img {
      width: 200px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .retouching-banner-text h2 {
       font-size: 1.8rem; /* Bigger */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #222;
    }

    .retouching-banner-text h3 {
        font-size: 1rem; /* Smaller */
  font-weight: 500;
  margin-bottom: 1rem;
  color: #555;
    }

    .retouching-banner-text p {
      font-size: 1rem;
      color: #444;
      max-width: 700px;
      line-height: 1.6;
    }

    .restoration-section {
      padding: 4rem 2rem;
      background: #fff;
    }

    .restoration-section h2 {
      font-size: 1.8rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 0.5rem;
      color: #222;
    }

    .restoration-section hr {
      width: 50px;
      height: 3px;
      background: #ccc;
      border: none;
      margin: 0 auto 1.5rem;
    }

    .restoration-section-text {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
      color: #444;
      font-size: 1rem;
      line-height: 1.6;
    }

    .restoration-gallery,
    .portrait-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .restoration-gallery img,
    .portrait-gallery img {
      width: 100%;
      border-radius: 6px;
      object-fit: cover;
    }

    .beauty-section {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
      background: #f7f7f7;
    }

    .beauty-text {
      flex: 1 1 400px;
      text-align: center;
    }

    .beauty-text h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #222;
    }

    .beauty-text hr {
      width: 50px;
      height: 3px;
      background: #ccc;
      border: none;
      margin: 0 auto 1.5rem;
    }

    .beauty-text p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }

    .beauty-images {
      display: flex;
      gap: 1rem;
      flex: 1 1 400px;
      justify-content: center;
    }

    .beauty-images img {
      width: 200px;
      height: 300px;
      object-fit: cover;
      border-radius: 6px;
    }

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}


    @media (max-width: 768px) {
      .retouching-banner,
      .beauty-section {
        flex-direction: column;
        text-align: center;
      }

      .beauty-images {
        flex-direction: column;
      }

      .beauty-images img {
        width: 100%;
        max-width: 300px;
        height: auto;
      }

      .restoration-gallery,
      .portrait-gallery {
        grid-template-columns: 1fr;
      }

/*------------------------------------------------- Retouching End ----------------------------------------*/

/*------------------------------------------------- Portraits Start ----------------------------------------*/
/* PORTRAITS PAGE */

.portraits-page {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.portraits-left {
  flex: 0 0 33.33%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.portraits-left .text-wrapper {
  text-align: center;
}

.portraits-left h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #222;
}

.portraits-left p {
  font-size: 1.2rem;
  color: #555;
}

.portraits-right {
  flex: 0 0 66.66%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.portraits-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1200px) {
  .portraits-right {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .portraits-page {
    flex-direction: column;
  }

  .portraits-left {
    width: 100%;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
  }

  .portraits-right {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }
}

@media (max-width: 600px) {
  .portraits-right {
    grid-template-columns: repeat(2, 1fr);
  }
}




/*------------------------------------------------- Portraits End ----------------------------------------*/
/*------------------------------------------------- Fashion Start ----------------------------------------*/

/* Fashion Page */
.fashion-gallery {
  column-count: 4;
  column-gap: 1rem;
  padding: 1rem;
}

.fashion-gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.fashion-gallery img:hover {
  transform: scale(1.03);
}

/* Responsive Columns */
@media (max-width: 1200px) {
  .fashion-gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .fashion-gallery {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .fashion-gallery {
    column-count: 1;
  }
}


/*------------------------------------------------- Fashion End ----------------------------------------*/