html {
  overflow-x: hidden;
}

.bg-orange {
  background-color: #ffe0c2;
}
p {
  text-align: justify;
}

.navbar .nav-link.active {
  background: #ff6b35;
  border-radius: 20px;
  padding: 8px 20px;
  color: #fff !important; /* make text visible */
  /* margin: 0 15px; */
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-top: 8px;
  z-index: 1050;
  position: absolute;
}

.dropdown-item {
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: rgba(255, 140, 0, 0.1);
}

.dropdown {
  position: static;
}

.navbar .dropdown-menu {
  z-index: 1050 !important;
  position: absolute !important;
  top: 100% !important;
  left: auto !important;
  right: auto !important;
}

/* Custom hover effects for mobile menu */
.offcanvas .nav-link:hover {
  background-color: rgba(255, 140, 0, 0.1);
  transform: translateX(5px);
}

/* button */
.button-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-create-button {
  border-radius: 25px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  height: 48px;
  display: flex;
  align-items: center;
}

.btn-create-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.create-button {
  background-color: #ff8800;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  height: 48px;
  display: flex;
  align-items: center;
}

.create-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.btn-arrow-button {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.arrow-button {
  background-color: #ff8800;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.arrow-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.button-text {
  white-space: nowrap;
}

.arrow-icon {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.btn-arrow-icon {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.mother-studio-font-family {
  font-family: "Poppins", sans-serif;
}

.mother-studio-about-badge {
  background-color: #ffc107;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 2rem;
}

.mother-studio-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mother-studio-highlight-text {
  color: #ff8c42;
}

.mother-studio-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.mother-studio-cta-button {
  background-color: #ff8c42;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.mother-studio-cta-button:hover {
  background-color: #e67a35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
  color: white;
}

.mother-studio-logo {
  max-width: 400px;
  height: auto;
}

.mother-studio-stat-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.mother-studio-stat-card:hover {
  transform: translateY(-5px);
}

.mother-studio-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 0.5rem;
}

.mother-studio-stat-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.mother-studio-stat-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .mother-studio-main-heading {
    font-size: 2rem;
  }

  .mother-studio-about-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .mother-studio-stat-number {
    font-size: 2rem;
  }
}
.text-orange {
  color: #ff7a00;
}

.hero-banner {
  height: 750px; /* default for desktop */
}

/* Tablets */
@media (max-width: 991px) {
  .hero-banner {
    height: 500px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-banner {
    height: 400px;
  }
}

/* Default */
.nav-logo {
  width: 120px;
  padding: 0.75rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .nav-logo {
    width: 100px;
    padding: 0.5rem;
  }
}

/* Small devices (phones) */
@media (max-width: 480px) {
  .nav-logo {
    width: 80px;
    padding: 0.4rem;
  }
}

/* stat */
.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.image-container {
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.team-image {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  flex: 1 1 500px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 25px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3e50;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: #6c7a89;
  line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .stats-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .team-image {
    max-width: 100%;
  }
}

/* More Than Just  */
.news-title {
  color: #ff6b35;
  text-align: justify;
}

.news-desc {
  text-align: justify;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: scrollMarquee 40s linear infinite;
}

.news-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 15px;
}

.news-date {
  font-size: 14px;
  color: #888;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* our signeture services  */

.photo-service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 300px;
}

.photo-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-service-card:hover {
  transform: translateY(-2px);
}

/* Exact overlay to match your reference image */
.photo-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 13px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 100%,
    rgba(255, 255, 255, 0.3) 100%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border-radius: 20px 20px;
  z-index: 2;
  min-height: 60px;
  /* display: flex;
  flex-direction: column;
  justify-content: flex-end; */
}

.photo-card-overlay h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.photo-card-overlay p {
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #000000;
  font-weight: 400;
}

/* Arrow icon exactly like your reference */
.photo-card-icon {
  /* position: absolute;
  bottom: 40px;
  right: 24px; */
  background-color: rgba(0, 0, 0, 0.644);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
}

.photo-service-card:hover .photo-card-icon {
  transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .photo-service-card {
    height: 280px;
  }

  .photo-card-overlay h5 {
    font-size: 20px;
  }

  .photo-card-icon {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }

  .photo-card-icon::after {
    font-size: 18px;
  }
}

/* Layout for side-by-side cards */
.photo-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.photo-cards-container .photo-service-card {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 768px) {
  .photo-cards-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* oru work  */
.campus-card {
  width: 320px;
  /* Increased width */
  height: 400px;
  /* Increased height */
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin: 0 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campus-card:hover img {
  transform: scale(1.05);
}

.campus-card .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.campus-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.campus-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  /* Slowed down */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
/* how it work  */
.ms-how-wrapper {
  background: linear-gradient(135deg, #1b1b1b 0%, #947c73 50%, #2f2522 100%);
  color: white;
}

.ms-how-top-btn {
  background: transparent;
  border: 1px solid #ffffff99;
  color: white;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.ms-how-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ms-how-heading span {
  color: #ffb547;
}

.ms-how-subheading {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1rem;
}

.ms-how-img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.ms-how-steps h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.ms-how-steps p {
  font-size: 1rem;
  color: #d1d1d1;
}

/* social index  */

.insta-highlight-swiper {
  padding: 40px 0;
}

.insta-highlight-swiper .swiper-slide {
  transition: transform 0.5s ease;
  transform: scale(0.85);
  opacity: 0.5;
}

.insta-highlight-swiper .swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
  z-index: 10;
}

.insta-highlight-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.insta-highlight-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .insta-highlight-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .insta-highlight-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

.insta-highlight-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.insta-highlight-content h5 {
  font-weight: bold;
  margin-bottom: 8px;
}

.insta-highlight-next,
.insta-highlight-prev {
  color: #000;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.insta-highlight-next::after,
.insta-highlight-prev::after {
  font-size: 16px;
}

/* testimonial  */
.testimonial-main-container {
  background-color: #f8f9fa;
  font-family: "Arial", sans-serif;
  overflow: hidden;
}

.section-title-header {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading-text {
  font-weight: 400;
  color: #333333;
  letter-spacing: -0.5px;
}

.highlighted-word {
  color: #ff6b35;
  font-weight: 500;
}

.testimonial-rows-container {
  width: 100%;
  position: relative;
}

.testimonial-single-row {
  display: flex;
  margin-bottom: 25px;
  overflow: hidden;
}

.testimonial-track-wrapper {
  display: flex;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  gap: 20px;
  width: max-content;
}

.move-right-direction {
  animation-name: scrollToRight;
}

.move-left-direction {
  animation-name: scrollToLeft;
}

@keyframes scrollToRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollToLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  flex-shrink: 0;
}

.card-header-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.profile-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.user-info-section {
  flex: 1;
}

.customer-name-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 2px;
}

.customer-role-text {
  font-size: 0.8rem;
  color: #6c757d;
}

.star-rating-display {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.golden-star-icon {
  color: #ffc107;
  font-size: 14px;
}

.review-content-text {
  color: #495057;
  line-height: 1.5;
  font-size: 0.9rem;
  text-align: left;
}

.quote-symbol {
  color: #6c757d;
  font-weight: 500;
}
/* video swiper  */
/* Video swiper */
/* Container */
.video-swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Swiper Slides */
.video-testimonial-slide {
  background: #f3f5f6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 400px;
}

/* Text Area */
.testimonial-content-area {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.testimonial-quote-text {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 20px;
}

.testimonial-quote-text .highlight-orange-text {
  color: #e57728;
}

.testimonial-author-info {
  font-size: 16px;
  color: #666666;
  font-style: italic;
}

/* Video Area */
.video-player-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  cursor: pointer;
}

.wedding-video-player {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.video-duration-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: 500;
  z-index: 2;
}

.made-with-love-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #e57728;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  font-weight: 500;
  z-index: 2;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.video-play-overlay:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid #333333;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 3px;
}

/* Progress Loader */
.video-swiper-loader-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #dddddd;
  border-radius: 10px;
  overflow: hidden;
  z-index: 5;
}

.video-swiper-loader {
  width: 0%;
  height: 100%;
  background-color: #e57728;
  transition: width 4s linear;
  border-radius: 10px;
}

/* Swiper Pagination */
.swiper-pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  background-color: #cccccc;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background-color: #e57728;
}

/* Video playing state */
.video-playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .video-testimonial-slide {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
  }

  .testimonial-content-area {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .testimonial-quote-text {
    font-size: 1.4rem;
  }

  .testimonial-author-info {
    font-size: 14px;
  }

  .video-player-container {
    max-width: 100%;
  }

  .wedding-video-player {
    height: 220px;
  }

  .video-duration-label,
  .made-with-love-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .video-play-overlay {
    width: 50px;
    height: 50px;
  }

  .play-icon-triangle {
    border-left: 15px solid #333333;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}

@media (max-width: 576px) {
  .testimonial-quote-text {
    font-size: 1rem;
  }

  .video-swiper-loader-wrapper {
    width: 80px;
    height: 3px;
  }

  .video-testimonial-slide {
    padding: 30px 15px;
  }
}
/* faq  */

/* FAQ Section Styles */
.faq-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

.contact-btn-orange {
  background-color: #ff8c00;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.contact-btn-orange:hover {
  background-color: #e37400;
}

.contact-arrow-icon {
  background: #fff;
  color: #ff8c00;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 50%;
  font-size: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.faq-item.expanded {
  border-color: #ff8c00;
  background: #fffaf0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.toggle-icon.orange {
  background: #ff8c00;
}

.toggle-icon.dark {
  background: #333;
}

.faq-answer {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  display: none;
  line-height: 1.6;
}

.faq-answer.visible {
  display: block;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13.5px;
  }
}

/* photo booking  */
.photography-booking-wrapper {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #000000;
  padding: 32px 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 992px) {
  .photography-booking-wrapper {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .photography-booking-wrapper {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
}

.booking-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.camera-icon-symbol {
  width: 20px;
  height: 16px;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border-radius: 3px;
  position: relative;
}

.camera-icon-symbol::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 12px;
  background: #ffffff;
  border-radius: 2px;
}

.camera-icon-symbol::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 6px;
  width: 8px;
  height: 4px;
  background: #8b4513;
  border-radius: 2px;
}

.enquiry-form-title {
  font-size: 17px;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: -0.2px;
}

.booking-form-subtitle {
  color: #666666;
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.3;
}

.photo-shoot-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.booking-input-group {
  display: flex;
  flex-direction: column;
}

.form-field-label {
  font-size: 12px;
  color: #666666;
  margin-bottom: 6px;
  font-weight: 500;
}

.client-detail-input {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fafafa;
  transition: all 0.2s ease;
  outline: none;
  color: #333;
}

.client-detail-input:focus {
  border-color: #cccccc;
  background-color: #ffffff;
}

.client-detail-input::placeholder {
  color: #999999;
}

.photography-dropdown-select {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  color: #333;
}

.photography-dropdown-select:focus {
  border-color: #cccccc;
  background-color: #ffffff;
}

.shoot-booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help-decision-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-question-text {
  font-size: 13px;
  color: #e74c3c;
  font-weight: 400;
}

.help-question-text::before {
  content: "💡";
  margin-right: 6px;
}

.callback-request-btn {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 12px;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.callback-request-btn:hover {
  background-color: #f8f8f8;
  border-color: #cccccc;
}

.arrow-navigation-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.arrow-navigation-btn:hover {
  background-color: #f8f8f8;
  border-color: #cccccc;
}

.arrow-navigation-btn::before {
  content: "→";
  font-size: 12px;
  color: #666666;
}

.submit-enquiry-section {
  display: flex;
  align-items: center;
}

.primary-submit-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff7300 100%);
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(255, 140, 0, 0.2);
}

.primary-submit-btn:hover {
  background: linear-gradient(135deg, #e6790a 0%, #e65c00 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.submit-arrow-icon {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-arrow-icon::before {
  content: "→";
  font-size: 10px;
  color: #ff8c00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .photo-shoot-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .photography-booking-wrapper {
    padding: 24px;

    border-radius: 20px;
  }

  .photo-shoot-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shoot-booking-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .help-decision-section {
    justify-content: center;
  }

  .submit-enquiry-section {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .enquiry-form-title {
    font-size: 15px;
  }

  .booking-form-subtitle {
    font-size: 13px;
  }

  .primary-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* footer  */
.ms-footer-wrapper {
  background-color: #2f2f2f;
  color: white;
  font-family: "Segoe UI", sans-serif;
  padding: 2rem 1rem;
}

/* Subscription Section */
.ms-footer-subscribe-section {
  background-image: url("/images/footer1.png"); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.ms-footer-subscribe-badge {
  background-color: white;
  color: #333;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
}

.ms-footer-heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1rem 0;
  line-height: 1.4;
}

.ms-footer-subtext {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.ms-footer-email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.ms-footer-input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 30px 0 0 30px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.ms-footer-submit-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.ms-footer-submit-btn:hover {
  background-color: #222;
}

/* Footer Bottom Section */
.ms-footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
}

/* Logo and Brand */
.ms-footer-logo {
  height: 40px;
}

.ms-footer-brand-text h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.ms-footer-brand-text p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

/* Footer Columns */
.ms-footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  min-width: 280px;
}

.ms-footer-column h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.ms-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ms-footer-column li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-footer li {
  border: #ccc solid 1px;
  padding: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
  background-color: #333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.ms-footer-column li:hover {
  color: white;
}

/* Legal Footer */
.ms-footer-legal {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #aaa;
  display:block;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ms-footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .ms-footer-email-form {
    flex-direction: column;
  }

  .ms-footer-input,
  .ms-footer-submit-btn {
    width: 100%;
    border-radius: 30px;
    margin: 0.3rem 0;
  }

  .ms-footer-email-form {
    gap: 0.5rem;
  }

  .ms-footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.email-subscribe-box {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 50px;
  padding: 5px 10px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

.email-subscribe-box input[type="email"] {
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 15px;
  flex: 1;
  border-radius: 50px;
  font-size: 14px;
}

.email-subscribe-box button {
  background-color: #2b2b2b;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.email-subscribe-box button:hover {
  background-color: #444;
}

.email-subscribe-box button svg {
  width: 18px;
  height: 18px;
}
.sticky-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000000 !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000 !important;
  animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----about us ------ */
/* Section wrapper */
.wdob-section {
  padding: 60px 0;
}

/* Section title */
.orange-title {
  color: #ff7b00;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Subtitle */
.wdob-subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 40px;
}

/* Service card */
.wdob-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.wdob-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.wdob-card h6 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.wdob-card a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}
.wdob-card a:hover {
  color: #ff7b00;
}

.mother-studio-bullet-list li {
  font-size: 24px;
  line-height: 2;
  color: #333;
}

/* For tablets and below (≤ 991px) */
@media (max-width: 991px) {
  .mother-studio-bullet-list li {
  font-size: 24px;
  line-height: 2;
  color: #333;
}
}

/* For mobile phones (≤ 576px) */
@media (max-width: 576px) {
  .mother-studio-bullet-list li {
  font-size: 14px;
  line-height: 2;
  color: #333;
}
}

.mother-stats-section {
  text-align: center;
  font-family: Arial, sans-serif;
}

.mother-stats-item {
  padding: 20px;
  border-right: 1px solid #ddd;
}
.mother-stats-item:last-child {
  border-right: none;
}

.mother-stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e96b2f;
}

.mother-stats-title {
  font-weight: 600;
  margin-top: 8px;
  font-size: 1rem;
}

.mother-stats-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
}

.mother-stats-footer {
  margin-top: 25px;
  font-style: italic;
  color: #333;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive fix for borders */
@media (max-width: 992px) {
  .mother-stats-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .mother-stats-item:last-child {
    border-bottom: none;
  }
}

.mother-studio-section {
  padding: 40px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.studio-main-heading {
  font-weight: 700;
  color: #333333;
  text-align: center;
  line-height: 1.2;
}

.studio-brand-name {
  color: #ff8c42;
}

.studio-description {
  font-size: 16px;
  color: #666666;
  text-align: center;
  font-weight: 400;
}

.studio-swiper-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.studio-cards-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
}

.studio-member-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}


.studio-member-card:hover {
  border-color: #ff8c42;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.studio-profile-photo {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 24px;
}

.studio-member-name {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.studio-member-title {
  font-size: 14px;
  color: #888888;
  margin-bottom: 16px;
  font-weight: 400;
}

.studio-member-quote {
  font-size: 14px;
  color: #555555;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.4;
}

.studio-social-row {
  display: flex;
  gap: 12px;
}

.studio-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.studio-social-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.studio-facebook-btn {
  background-color: #1877f2;
}
.studio-twitter-btn {
  background-color: #1da1f2;
}
.studio-instagram-btn {
  background-color: #e4405f;
}
.studio-linkedin-btn {
  background-color: #0a66c2;
}

.studio-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff8c42;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-nav-arrow:hover {
  background: #e67832;
  transform: translateY(-50%) scale(1.05);
}

.studio-prev-arrow {
  left: -24px;
}

.studio-next-arrow {
  right: -24px;
}

/* Responsive Design */
@media (min-width: 992px) {
  .studio-member-card {
    width: calc((100% - 48px) / 3);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .studio-member-card {
    width: calc((100% - 24px) / 2);
  }
  .studio-main-heading {
    font-size: 36px;
  }
  .studio-prev-arrow {
    left: -15px;
  }
  .studio-next-arrow {
    right: -15px;
  }
}

@media (max-width: 767px) {
  .studio-member-card {
    width: 100%;
  }
  .studio-main-heading {
    font-size: 28px;
  }
  .studio-section {
    padding: 40px 0;
  }
  .studio-prev-arrow {
    left: -10px;
  }
  .studio-next-arrow {
    right: -10px;
  }
  .studio-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
/* Video Section */
.emotions-video-section {
  padding: clamp(30px, 5vw, 80px) 0;
  background: #ffffff;
  overflow: hidden;
}

.emotions-main-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: #333333;
  margin-bottom: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  text-align: center;
}

.emotions-highlight-orange {
  color: #ff8c42;
  display: block;
}

/* Swiper Container */
.emotions-swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 clamp(15px, 3vw, 60px);
}

.emotions-video-wrapper {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Video Items */
.emotions-video-item {
  flex: 0 0 auto;
  margin-right: clamp(15px, 2vw, 25px);
  position: relative;
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.emotions-video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.emotions-video-item:last-child {
  margin-right: 0;
}

.emotions-video-thumbnail {
  width: 100%;
  height: clamp(200px, 25vw, 280px);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.emotions-video-item:hover .emotions-video-thumbnail {
  transform: scale(1.05);
}

/* Play Overlay */
.emotions-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.emotions-video-item:hover .emotions-play-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.emotions-play-button {
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.emotions-play-button:hover {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  transform: scale(1.15);
}

.emotions-play-icon {
  font-size: clamp(16px, 3vw, 24px);
  color: #333;
  margin-left: 2px;
}

/* Navigation Buttons */
.emotions-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff8c42, #e67832);
  border: none;
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  border-radius: 50%;
  color: white;
  font-size: clamp(12px, 2.5vw, 18px);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.emotions-nav-btn:hover {
  background: linear-gradient(135deg, #e67832, #d4691f);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.emotions-prev-btn {
  left: clamp(5px, 1vw, 15px);
}

.emotions-next-btn {
  right: clamp(5px, 1vw, 15px);
}

/* Video Modal */
.emotions-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.emotions-modal-content {
  position: relative;
  width: 100%;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emotions-modal-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: clamp(8px, 1.5vw, 15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.emotions-close-btn {
  position: absolute;
  top: clamp(-35px, -5vw, -50px);
  right: 0;
  background: linear-gradient(135deg, #ff8c42, #e67832);
  border: none;
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
  border-radius: 50%;
  color: white;
  font-size: clamp(12px, 2vw, 16px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.emotions-close-btn:hover {
  background: linear-gradient(135deg, #e67832, #d4691f);
  transform: scale(1.1);
}

/* Responsive Breakpoints */

/* Extra Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .emotions-video-item {
    width: 550px;
  }
}

/* Large Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .emotions-video-item {
    width: 480px;
  }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .emotions-video-item {
    width: 420px;
  }
}

/* Large Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .emotions-video-item {
    width: calc((100vw - 160px) / 2);
    max-width: 350px;
    min-width: 280px;
  }

  .emotions-swiper-container {
    padding: 0 60px;
  }
}

/* Medium Tablet (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .emotions-video-item {
    width: calc(100vw - 120px);
    max-width: 500px;
  }

  .emotions-swiper-container {
    padding: 0 45px;
  }
}

/* Small Tablet/Large Mobile (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .emotions-video-item {
    width: calc(100vw - 100px);
    max-width: 400px;
  }

  .emotions-swiper-container {
    padding: 0 40px;
  }

  .emotions-video-thumbnail {
    height: clamp(180px, 35vw, 220px);
  }
}

/* Mobile (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .emotions-video-item {
    width: calc(100vw - 80px);
  }

  .emotions-swiper-container {
    padding: 0 30px;
  }

  .emotions-video-section {
    padding: clamp(25px, 6vw, 40px) 0;
  }
}

/* Small Mobile (320px - 374px) */
@media (min-width: 320px) and (max-width: 374px) {
  .emotions-video-item {
    width: calc(100vw - 70px);
  }

  .emotions-swiper-container {
    padding: 0 25px;
  }

  .container {
    padding: 0 15px;
  }
}

/* Very Small Mobile (below 320px) */
@media (max-width: 319px) {
  .emotions-video-item {
    width: calc(100vw - 60px);
  }

  .emotions-swiper-container {
    padding: 0 20px;
  }

  .container {
    padding: 0 10px;
  }

  .emotions-video-section {
    padding: 20px 0;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .emotions-video-item:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .emotions-video-item:hover .emotions-video-thumbnail {
    transform: none;
  }

  .emotions-video-item:hover .emotions-play-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  }

  .emotions-play-button:hover {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.85)
    );
    transform: none;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .emotions-video-thumbnail {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .emotions-video-section {
    padding: clamp(20px, 3vh, 30px) 0;
  }

  .emotions-video-thumbnail {
    height: clamp(150px, 20vh, 180px);
  }

  .emotions-main-title {
    margin-bottom: clamp(20px, 3vh, 30px);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .emotions-video-wrapper {
    transition: none;
  }

  .emotions-video-item,
  .emotions-play-button,
  .emotions-nav-btn,
  .emotions-close-btn {
    transition: none;
  }
}

/* ---------our works--------- */
/* Unique Section Box */
.ourworks-box {
  background: #f9f9f9;
  padding: 50px 40px; /* default for desktop/tablet */
  border-radius: 12px;
  margin: 0 auto 40px; /* spacing after box */
}

/* For tablets and below (≤ 991px) */
@media (max-width: 991px) {
  .ourworks-box {
    padding: 30px 20px; /* reduce padding */
  }
}

/* For mobile phones (≤ 576px) */
@media (max-width: 576px) {
  .ourworks-box {
    padding: 15px; /* or 0 if you want no padding at all */
  }
}

.ourworks-title {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 5px;
}

.ourworks-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}

.ourworks-description {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0 auto;
}

/* Card Styles */
.ourworks-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.ourworks-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.ourworks-card:hover img {
  transform: scale(1.05);
}

/* Caption */
.ourworks-caption {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* Overlay */
.ourworks-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}
.ourworks-card:hover .ourworks-overlay {
  opacity: 1;
}
.ourworks-overlay i {
  font-size: 30px;
  margin-bottom: 8px;
}
.ourworks-overlay span {
  font-size: 16px;
  font-weight: 600;
}

/* Link reset */
.ourworks-link {
  text-decoration: none;
  color: inherit;
}

/* -----------kids-photography----------- */
/* Hero Banner Section */
.gallery-hero-banner {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/baby-img/01.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-banner2 {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/maternity/14.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-hero-banner3 {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/outdoor-pre-post/003.jpg") no-repeat
    center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-banner4 {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/wedding&reception/22.jpg") no-repeat
    center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-banner5 {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/family-img/001.jpg") no-repeat
    center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-banner6 {
  position: relative;
  height: 450px;
  background: url("../images/ourworks/candid-img/012.jpg") no-repeat
    center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.gallery-main-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Menu */
.photography-nav-menu {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  color: #666;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 102;
}

.mobile-menu-toggle:hover {
  color: #667eea;
}

.nav-menu-item {
  padding: 20px 25px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.nav-menu-item:hover,
.nav-menu-item.active-nav-item {
  color: #667eea;
  border-bottom-color: #667eea;
  background-color: #f8f9ff;
}

.nav-menu-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #667eea;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu-item:hover::after {
  width: 100%;
}

/* Gallery Description */
.gallery-description-section {
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery Grid */
.photography-gallery-container {
  margin: 0 auto;
  padding: 0 20px 50px;
}

.gallery-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.gallery-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-grid-item:nth-child(4n + 1) {
  grid-row: span 2;
}

.gallery-grid-item:nth-child(7n + 2) {
  grid-column: span 2;
}

.gallery-grid-item:nth-child(11n + 3) {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery-grid-item:nth-child(13n + 5) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-grid-item:hover .gallery-item-image {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  color: white;
  font-size: 2rem;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.gallery-grid-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Lightbox Popup */
.lightbox-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.lightbox-popup-overlay.popup-active {
  display: flex;
  opacity: 1;
}

.lightbox-popup-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  transform: scale(0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-popup-overlay.popup-active .lightbox-popup-content {
  transform: scale(1);
}

.lightbox-popup-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 1001;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.lightbox-close-btn:hover {
  background: rgba(220, 53, 69, 0.9);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.lightbox-nav-btn:hover {
  background: rgba(102, 126, 234, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 20px;
}

.lightbox-next-btn {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-main-title {
    font-size: 2.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu-container {
    flex-direction: column;
    position: relative;
    max-height: 70px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu-container.mobile-menu-active {
    max-height: 500px;
  }

  .nav-menu-item {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu-container.mobile-menu-active .nav-menu-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu-item:first-child {
    margin-top: 70px;
  }

  .gallery-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    grid-auto-rows: 180px;
  }

  .gallery-grid-item:nth-child(4n + 1),
  .gallery-grid-item:nth-child(7n + 2),
  .gallery-grid-item:nth-child(11n + 3),
  .gallery-grid-item:nth-child(13n + 5) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .lightbox-close-btn {
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .lightbox-prev-btn {
    left: 15px;
  }

  .lightbox-next-btn {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-hero-banner {
    height: 300px;
  }

  .gallery-main-title {
    font-size: 2rem;
  }

  .gallery-grid-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lightbox-close-btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev-btn {
    left: 10px;
  }

  .lightbox-next-btn {
    right: 10px;
  }
}

/* ----------contact us----------- */
.magic-section {
  padding: 30px 0px;
  background-color: #ffffff;
}
.magic-text-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35; /* orange text */
  margin-bottom: 20px;
}
.magic-text-box p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 20px;
}
.magic-btn {
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.magic-btn:hover {
  background: #ff6b35;
  color: #ffffff;
}
.magic-image img {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Contact Info (Left Black Box) */
.contactus-info {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
}
.contactus-info h4 {
  font-weight: 700;
  margin-bottom: 15px;
}
.contactus-info p i {
  color: #ff7b00;
  margin-right: 8px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 22px;
  color: #ff7b00;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}

/* Contact Form (Right White Box) */
.contactus-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contactus-form label {
  font-weight: 600;
}
.contactus-form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
}
.contactus-form .form-control:focus {
  border-color: #ff7b00;
  box-shadow: none;
}

/* Submit Button */
.contactus-submit {
  background: #ff7b00;
  color: #fff;
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 123, 0, 0.4);
}
.contactus-submit:hover {
  background: #111;
}

/* Map Section */
.map-section {
  position: relative;
}
.map-box {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 123, 0, 0.9);
  padding: 15px 30px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#goTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none; /* Hidden by default */
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
    line-height: 46px;
  }

  #goTopBtn:hover {
    background-color: #3f3f41; /* Darker on hover */
  }

  /* studio page  */
  /* film-video */
.film-video-container {
  background-color: #F3F5F6;
  border-radius: 15px;
}

.custom-nav-tabs {
  border-bottom: none;
  margin-bottom: 2rem;
  justify-content: start;
}

.custom-nav-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 600;
  padding: 1rem 2rem;
  margin: 0 0.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: transparent;
}

.custom-nav-tabs .nav-link:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  border-color: transparent;
}

.custom-nav-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: transparent;

}

.custom-nav-tabs .nav-link.active:hover {
  color: #fff;
  background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* Additional styles for the content */
.highlight-orange-text {
  color: #ff6b35;
  font-weight: 600;
}



.film-testimonial-content h6 {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.film-testimonial-author {
  color: #6c757d;
  font-style: italic;
  margin-top: 0.5rem;
}

.tab-content {
  min-height: 400px;
}