* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background-color: var(--light-gray);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #db3a1d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: white
}

.navbar {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  /* background-color: #ffbeb3; */
  color: black;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #e7614a;
    flex-direction: column;
    width: 220px;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px 0 0 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Slideshow */
.slider-container {
  margin-top: 80px;
  position: relative;
  max-width: 100%;
  height: 510px;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  object-fit: cover;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f2c2d6;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #FF69B4;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
  .slider-container {
    height: 250px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

/* categorie */
* {
  box-sizing: border-box;
}

.profile-section {
  padding: 40px 20px;
  border-radius: 10px;
 background-color: #f7f1ef;
  overflow: hidden;
}

.profile-b {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.section-title {
  font-size: 2rem;
  color: #db3a1d;
  text-align: center;
  margin-bottom: 30px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  background: transparent;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.profile-card img {
  width: 50%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.profile-card h3 {
  font-size: 1rem;
  color: #db3a1d;
  margin: 0;
  text-align: center;
}

/* Tablet View */
@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✅ Mobile View - 3 items per row without overflow */
@media (max-width: 600px) {
  .profile-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .profile-card {
    padding: 10px;
  }

  .profile-card img {
    width: 60%;
    max-height: 50px;
  }

  .profile-card h3 {
    font-size: 0.85rem;
  }

  .profile-b {
    padding: 20px 10px;
  }
}


/* about*/
/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #FFF0F5;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image img {
  width: 500px;
  max-width: 500px;
  height: 350px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.3);
}

.about-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #db3a1d;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-content .check-btn {
  background-color: #c86c21;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.about-content .check-btn:hover {
  background-color: #e78d43;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-width: 90%;
    margin: auto;
  }
  .about-content{
    margin-top: 20px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-content .check-btn {
    font-size: 0.9rem;
  }
}

/*gallery*/
/* NEW: Full background for the entire gallery section */
.gallery-section {
  background-color: #f7e1cf;
  padding: 40px 20px;
  text-align: center;
}

/* Optional: Heading style (moved out from .gallery to avoid conflict) */
.gallery-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #db3a1d;
}

/* Existing styles (unchanged) */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #ab5005;
}

.gallery img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.show-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #db3a1d;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover {
  background-color: #e5563c;
}

/* Optional: Make modal match or contrast cleanly */
.modal {
  display: none; /* Your JS should toggle this */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #fff;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery img {
    width: 45vw;  /* 4 images per row for mobile */
    height: auto;
  }

  .show-more-btn {
    width: 80%;
  }
}

@media (min-width: 769px) {
  .gallery img {
    width: 200px;  /* Fixed width and height for desktop */
    height: 150px;
  }
}

/*photography page*/

/* Fixed Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #db3a1d;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

/* About Section */
.about-section {
  
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
   margin-top: 20px;
  flex-wrap: wrap;
}

.about-content img {
  width: 60%;
 
  border-radius: 10px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-content {
  flex: 1;
  max-width: 500px;
}

.text-content h2 {
  color: #db3a1d;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.text-content p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
     margin-top: 20px;
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }

  .about-content img {
    max-width: 90%;
    width: 100%;
    height: 200px;
  }
}
/*photography gallerey */

.gallery-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.view-more-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #db3a1d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 150px;
  }

  .view-more-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/*price details(photography)*/

.pricing-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background-color: #f7f1ef;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card h3 {
  font-size: 1.4rem;
  color: #db3a1d ;
  margin-bottom: 10px;
}

.price {
  font-size: 1.8rem;
  color: #db3a1d ;
  margin-bottom: 15px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  color: #5c5c5c;
  font-size: 0.95rem;
}

.price-card ul li {
  margin-bottom: 8px;
}

.price-card.popular {
  border: 2px solid #db3a1d;
  background-color: #fae1d8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px;
  }

  .price {
    font-size: 1.6rem;
  }
}

/*youtube(photography)*/
.video-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.video-fixed {
  width: 100%;
  height: 300px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-fixed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.video-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.video-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.video-box {
  flex: 1 1 45%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-box {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}
/*Testmonials*/
.testimonial-section {
  padding: 50px 20px;
 
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(214, 51, 108, 0.15);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #5c5c5c;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-card h4 {
  color: #db3a1d;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/*whatsapp contact */
.taara-contact {
  padding: 50px 20px;
  background-color: #f7f1ef;
  text-align: center;
  margin: 10px;
  border-radius:10px;
}

.taara-contact-title {
  font-size: 2rem;
  color: #db3a1d;
  margin-bottom: 10px;
}

.taara-contact-subtext {
  color: #5c5c5c;
  font-size: 1rem;
  margin-bottom: 30px;
}

.taara-contact-details p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #333;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}
/*footer*/
.footer {
  background-color: #f5c2b9;
  padding: 20px 10px;
  text-align: center;
  color: #333;
  margin-top: 40px;
}

.footer-content p {
  margin-bottom: 10px;
  color: black;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}
.container {
      display: flex;
      justify-content: center;
      padding: 2rem;
    }

    .main-content {
      width: 100%;
      max-width: 1000px;
    }

    .post {
      background: var(--white);
      border-left: 8px solid var(--primary);
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 2rem;
      box-shadow: 0 3px 6px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .post img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .post h2 {
      margin: 0.5rem 0 0.2rem;
      color: #c9184a;
    }

    .post p {
      margin-bottom: 0.5rem;
    }

    .read-more {
      align-self: start;
      background: var(--primary);
      color: white;
      padding: 1px 5px;
      text-decoration: none;
      border-radius: 20px;
      font-size: 15px;
      transition: background 0.3s ease;
    }

    
    @media (min-width: 768px) {
      .post {
        flex-direction: row;
        gap: 1.5rem;
      }

      .post img {
        width: 40%;
      }

      .post-content {
        flex: 1;
      }
    }

    footer {
      text-align: center;
      padding: 1.5rem;
      background: #ddd;
      color: #333;
      margin-top: 2rem;
    }

/*blog*/
.blog-section {
      padding: 100px 20px;
      margin-top: 0px;
      height: auto;
     
    }

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #db3a1d;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1.3rem;
  padding: 16px 20px 0;
  color: #ab5005;
}

.blog-card p {
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #555;
}

.read-more {
  padding: 10px 20px 20px;
  color: #db3a1d;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .blog-card img {
    height: 160px;
  }
  .blog-section{
    padding: 50px 10px;
    margin-top: 30px;
  }
}
/* blog-details */

.blog-post {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff0e6, #ffecd2);
  animation: fadeIn 0.7s ease-in;
}

.container-5 {
 width: 80%;
  margin:30px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.container-5:hover {
  transform: translateY(-5px);
}

.post-title {
  font-size: 2.5rem;
  text-align: center;
  color: #ab5005;
  margin-bottom: 25px;
  position: relative;
}

.post-title span {
  color: #ff6600;
  text-shadow: 0 0 8px #ffd8b0;
}

.post-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.post-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.post-content .bonus {
  background: #fff2e6;
  padding: 15px;
  border-left: 5px solid #ff9b4a;
  border-radius: 8px;
  font-weight: 500;
  color: #b34900;
}

.back-link {
  display: inline-block;
  margin-top: 35px;
  font-weight: 600;
  color: #ab5005;
  text-decoration: none;
  padding: 10px 20px;
  background: #fff6ef;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: background 0.3s;
}

.back-link:hover {
  background: #ffecd2;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
  .post-title {
    font-size: 1.8rem;
  }

  .post-content p {
    font-size: 1rem;
  }

  .container-5 {
    padding: 25px 20px;
    margin: 10px auto;
    width: 100%;
  }
  .post-image{
    width:100%;
    height: 200px;
  }
}

/* footer */
    footer {
      text-align: center;
      padding: 1.5rem;
      background: #ddd;
      color: #333;
      margin-top: 2rem;
    }

    /*contact page*/
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: auto;
      padding: 2rem;
      max-width: 1200px;
      margin-top: 55px;
    }

    .map-box,
    .whatsapp-box {
      flex: 1;
      min-width: 300px;
      background-color: var(--white);
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .map-box iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 8px;
    }

    .whatsapp-box h2 {
      margin-bottom: 1rem;
      color: #c9184a;
      font-size: 1.2rem;
    }

    .chat-bubble {
      background-color: #dcf8c6;
      padding: 1rem;
      border-radius: 12px 12px 0 12px;
      margin-bottom: 1rem;
      width: fit-content;
      max-width: 90%;
    }

    .whatsapp-link {
      display: inline-block;
      margin-top: 1rem;
      background-color: #25D366;
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
    }

    .whatsapp-link:hover {
      background-color: #1ebd5b;
    }

   

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .map-box iframe {
        height: 300px;
      }
    }
    /*back-button*/
    .back-arrow {
      position: fixed;
      top: 20px;
      left: 20px;
      height: 52px;
      background-color: #db3a1d;
      color: white;
      font-size: 1.5rem;
      padding: 5px 14px;
      border-radius: 50%;
      margin-top: 55px;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      transition: background 0.3s ease;
    }
    
    .back-arrow:hover {
      background-color: #f44b2d;
    }
    
    /* quote price */

    .container-7 {
      width: 90%;
      margin: 50px auto;
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      padding: 45px 40px;
      transition: box-shadow 0.3s ease-in-out;
    }

    .quote {
      text-align: center;
      margin-bottom: 40px;
      color: #db3a1d;
      font-weight: 800;
      font-size: 2.7rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
    }

    .quote::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #db3a1d;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .quote-1 {
      margin: 40px 0 20px;
      color: #db3a1d;
      font-size: 1.7rem;
      font-weight: 700;
      border-left: 5px solid #db3a1d;
      padding-left: 15px;
    }

    .service {
      background: #f9fbff;
      border: 1.5px solid #d6e4f0;
      border-radius: 16px;
      padding: 20px 25px;
      margin-bottom: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .service-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  
}

@media (min-width: 769px) {
  .service-content {
    flex-wrap: nowrap;
  }

  .quantity-controls {
    justify-content: flex-end;
    width: auto;
  }

  .top-row {
    width: auto;
    margin-bottom: 0;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .quantity-controls {
    justify-content: center;
    width: 100%;
  }
}


    .service:hover {
      background: #eef5ff;
      transform: scale(1.01);
      box-shadow: 0 8px 22px rgba(41, 128, 185, 0.25);
    }

    .service-content {
      width: 100%;
    }

    .top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .service-name {
      font-size: 16px;
      font-weight: 700;
      color: #723e35;
    }

    .price-1 {
      font-weight: 700;
      font-size: 1.2rem;
      color: #723e35;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }

    .quantity-controls button {
      background-color: #db3a1d;
      border: none;
      color: white;
      font-size: 16px;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(41, 128, 185, 0.35);
      transition: transform 0.2s ease;
    }

    .quantity-controls button:hover {
      transform: scale(1.15);
    }

    .quantity-controls span {
      font-size: 1.3rem;
      font-weight: 600;
      color: #723e35;
      min-width: 28px;
      text-align: center;
    }

    .subtotal {
      text-align: center;
      font-size: 2rem;
      font-weight: 800;
      color: #db3a1d;
      margin-top: 50px;
      letter-spacing: 1.2px;
      border-top: 2px dashed #723e35;
      padding-top: 20px;
    }

    .proceed-btn {
      display: block;
      margin: 30px auto 0;
      background-color: #db3a1d;
      color: white;
      padding: 18px 45px;
      font-size: 1.4rem;
      font-weight: 700;
      border: none;
      border-radius: 35px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 7px 20px rgba(41, 128, 185, 0.6);
    }

    .proceed-btn:hover {
     background-color: #eb5e45;
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(232, 95, 74, 0.65);
    }

    @media (max-width: 768px) {
      .container-7 {
        padding: 30px 20px;
      }
      .quantity-controls{
        margin-top: 20px;
      }
      .price-1 {
        text-align: right;
        width: auto;
        font-size: 1.1rem;
      }

      .proceed-btn {
        width: 100%;
        padding: 16px 0;
        font-size: 1.2rem;
      }

      .quote {
        font-size: 2rem;
      }

      .quote-1 {
        font-size: 1.4rem;
      }

      .subtotal {
        font-size: 1.7rem;
      }
    }

    /* key words at photography page */

    .keyword-section {
  padding: 30px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.keyword-section h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #db3a1d;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #f7725a;
}

/* gallery page */
h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #db3a1d;
  text-align: center;
  margin-top: 90px;
  font-weight: bold;
}

.gallery-container-photo {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 50px 20px;
}

.gallery-photo {
  column-count: 4;
  column-gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.gallery-photo img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  filter: brightness(0.9);
  border-radius: 6px;
}

.gallery-photo img:hover {
  transform: scale(1.04);
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  z-index: 2;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
  padding: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal img {
  width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  animation: popIn 0.3s ease-out;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive Columns */
@media (max-width: 1200px) {
  .gallery-photo { column-count: 3; }
}

@media (max-width: 768px) {
  .gallery-photo { column-count: 2; }
}

@media (max-width: 480px) {
  .gallery-container-photo {
    padding: 20px 10px;
  }

  .gallery-photo {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-photo img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 0;
  }

  .modal img {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
  }

  .close {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
}

/* General Styles */
:root {
  --primary-color: #2C3E50;
  --secondary-color: #3498DB;
  --accent-color: #E74C3C;
  --text-color: #2C3E50;
  --light-gray: #F8F9FA;
  --border-color: #E9ECEF;
  --white: #FFFFFF;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 120px 20px;
}

.hero-content h1 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.2em;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 20px;
  background-color: var(--white);
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background-color: var(--light-gray);
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 600;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  position: relative;
}

.testimonial-content i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background-color: var(--white);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #db3a1d;
  font-weight: 600;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-gray);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}

.faq-question h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.faq-toggle {
  font-size: 20px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1em;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.cta-button {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 15px;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button.primary {
  background: var(--white);
  color: var(--primary-color);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }
}

/* Map and WhatsApp Section */
.map-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.map-box h2 {
  margin-bottom: 20px;
  color:#db3a1d;
  font-weight: 600;
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
}

.whatsapp-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.whatsapp-box h2 {
  margin-bottom: 20px;
  color:#db3a1d;
  font-weight: 600;
}

.chat-bubble {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.whatsapp-link {
  display: inline-block;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  margin-top: 15px;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}


/* mini-sessions page */

    .hero {
      position: relative;
      height: 400px;
      overflow: hidden;
    }

    .hero img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      margin-top: 80px;
      object-fit: cover;
      opacity: 0;
      animation: fade 15s infinite;
    }

    .hero img:nth-child(1) { animation-delay: 0s; }
    .hero img:nth-child(2) { animation-delay: 5s; }
    .hero img:nth-child(3) { animation-delay: 10s; }

    @keyframes fade {
      0% {opacity: 0;}
      10% {opacity: 1;}
      30% {opacity: 1;}
      40% {opacity: 0;}
      100% {opacity: 0;}
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      text-shadow: 2px 2px 6px #000;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      color: white;
    }

    .description-section {
      padding: 40px 20px;
      background-color: #fef7fa;
      color: #444;
      text-align: center;
    }

    .description-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #db3a1d;
    }

    .description-section p {
      font-size: 1rem;
      max-width: 800px;
      margin: 10px auto;
      line-height: 1.6;
    }

    .section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #db3a1d;
    }

    .sessions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .session-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .session-card:hover {
      transform: translateY(-5px);
    }

    .session-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .session-card .content {
      padding: 15px;
    }

    .session-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      color: #db3a1d;
    } 

    .session-card p {
      font-size: 0.95rem;
      color: #666;
    }

    .pricing {
      text-align: center;
      margin-top: 30px;
    }

    .pricing p {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .cta-button-1 {
      display: inline-block;
      margin-top: 20px;
      background: #db3a1d;
      color: white;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .cta-button-1:hover {
      background: #ea4a2e;
    }

    @media (max-width: 600px) {
      .hero-text h1 {
        font-size: 2rem;
      }
    }
    .content-points-section {
  padding: 50px 20px;
  background: #f7f1ef;;
  text-align: center;
}

.content-points-section h2 {
  font-size: 2rem;
  color: #db3a1d;
  margin-bottom: 40px;
}

.points-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.point {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.point img {
  width: 40px;
  margin-bottom: 15px;
}

.point p {
  font-size: 1rem;
  color: #444;
}

/* Simple animation trigger */
.animated.visible {
  opacity: 1;
  transform: translateY(0);
}
.points-section {
  background-color: #f7f1ef;;
  padding: 50px 20px;
  text-align: center;
  color: #4a4a4a;
}

.points-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.points-section h2 {
  font-size: 2rem;
  color: #db3a1d;
}

.points-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.points-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.points-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: #db3a1d;
}


/* service page  */
.intro {
      text-align: center;
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto 30px;
      color: #555;
    }

    .services-container-S {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin: 25px;
      padding: 0 10px;
    }

    .service-card-S {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .service-card-S:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .service-image-S {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .service-content-S {
      padding: 15px;
      text-align: center;
    }

    .service-title-S {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #db3a1d;
    }

    .service-description-S {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 15px;
      color: #555;
    }

    .learn-more-S {
      display: inline-block;
      padding: 8px 18px;
      background-color: #db3a1d;
      color: #fff;
      border-radius: 20px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.3s;
    }

    .learn-more-S:hover {
      background-color: #a52b12;
    }

    .cta-section-S {
      margin-top: 50px;
      text-align: center;
      padding: 30px 10px;
      background: #fff0ed;
      border-radius: 12px;
    }

    .cta-section-S h2 {
      color: #db3a1d;
      margin-bottom: 10px;
    }

    .cta-section-S p {
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .cta-button-S {
      background: #db3a1d;
      color: #fff;
      padding: 12px 25px;
      border-radius: 25px;
      font-size: 1rem;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .cta-button-S:hover {
      background: #a52b12;
    }

    @media (max-width: 600px) {
      .service-card-S {
        padding: 0;
      }
      .service-image-S {
        height: 150px;
      }
    }