/* ======================
   NAVBAR
====================== */
/* ======================
   NAVBAR
====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent; /* default transparent */
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand,
.nav-link {
    color: #fff !important;
    font-weight: 500;
}

/* Scroll effect: add background */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
}

/* ======================
   BANNER
====================== */
.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* navbar fixed hone par content upar se shuru */
}

.swiper-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 5s linear;
}

.swiper-slide-active {
    transform: scale(1.08);
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.banner-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 5;
    color: #fff;
    text-align: center;
}

/* Text animation */
.banner-content h1,
.banner-content p,
.banner-content .btn {
    opacity: 0;
    transform: translateY(30px);
}

.banner.swiper-initialized .banner-content h1 {
    animation: fadeUp 1s ease forwards;
}
.banner.swiper-initialized .banner-content p {
    animation: fadeUp 1.3s ease forwards;
}
.banner.swiper-initialized .banner-content .btn {
    animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================
   PHOTO SERVICES
====================== */
.photo-services {
    padding: 80px 0;
    background: #f9f9f9;
}

.photo-services .service-item {
    padding: 80px 0;
    overflow: visible;
}

.photo-services .row {
    align-items: center;
}

/* Shoot text */
.photo-services .shoot-name {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: inline-block;
    margin-bottom: 10px;
}

.photo-services .service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.photo-services .service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 480px;
}

/* Image */
.photo-services .service-image {
    position: relative;
    overflow: hidden;
    border-radius: 0; /* Corner radius removed */
    animation: imageFloat 0s; /* Remove floating, we will use fade-scale */
}

.photo-services .service-image img {
    width: 90%; /* Smaller size */
    display: block;
    margin: 0 auto;
    transform: scale(0.9); /* Initial smaller scale */
    opacity: 0; /* Initial hidden */
    transition: transform 1.2s ease, opacity 1.2s ease; /* Smooth reveal */
}

/* Reveal image when AOS triggers */
.photo-services .service-image[data-aos].aos-animate img {
    opacity: 1;
    transform: scale(1); /* Full size */
}

/* Optional: add hover zoom */
.photo-services .service-image:hover img {
    transform: scale(1.05);
}
/* ======================
   ALTERNATE LAYOUT
====================== */
/* Even services: image left, text right */
.photo-services .service-item:nth-child(even) .service-text {
    order: 2;
}

.photo-services .service-item:nth-child(even) .service-image {
    order: 1;
}

/* Even services AOS animation */
.photo-services .service-item:nth-child(even) .service-text {
    data-aos: fade-left;
}
.photo-services .service-item:nth-child(even) .service-image {
    data-aos: fade-right;
}

/*Video Section*/

.video-section {
    position: relative;
}

.video-cover {
    width: 100%;
    border-radius: 0px;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

/* When AOS triggers or page load */
.video-cover.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Transparent Circular Play Button */
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    opacity: 0;
}

/* Hover + pulse */
.video-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.2);
}

.video-btn .play-icon {
    font-size: 28px;
    color: #fff;
    margin-left: 4px;
}

/* Fade in + scale on load */
.video-btn.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 2s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/*Counter section*/

.counter-section {
    background: #f8f9fa;
    padding: 120px 0;
}

.counter-item {
    position: relative;
}

.counter-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-number {
    font-size: 100px; /* Big number */
    font-weight: 900;
    color: rgba(0,0,0,0.1); /* Low opacity for faded look */
    margin-bottom: 0;
    line-height: 1;
    opacity: 0; /* fade in */
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.counter-number span {
    font-size: 50px; /* '+' or 'K' smaller */
    vertical-align: super; /* Superscript position */
    margin-left: 5px;
}

.counter-text {
    font-size: 18px;
    color: #111;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1.2s ease;
    white-space: nowrap;
}


/*Cta Section*/

.cta-photo {
    position: relative;
    min-height: 450px;
    background: url("https://placehold.co/1920x1080") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 820px;
    padding: 0 20px;
    animation: fadeUp 1.2s ease forwards;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 42px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 34px;
    }
}

/*Testimonial section */

.photo-testimonial {
  padding: 120px 0;
  background: #fff;
}

/* Image */
.testimonial-image img {
  width: 100%;
  opacity: 0;
  transform: translateX(-50px) scale(0.95);
  transition: all 0.8s ease;
}

/* Text */
.testimonial-content {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.testimonial-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.testimonial-content h2 {
  font-size: 40px;
  margin: 15px 0;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.client-info strong {
  font-size: 18px;
  display: block;
}

.client-info span {
  font-size: 14px;
  color: #777;
}

/* ACTIVE SLIDE ANIMATION */
.swiper-slide-active .testimonial-image img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.swiper-slide-active .testimonial-content {
  opacity: 1;
  transform: translateX(0);
}


/*Service sldier*/

/* =========================
   SERVICE SLIDER
========================= */
.service-slider {
  width: 100%;
  overflow: hidden;
}

.serviceSwiper {
  width: 100%;
}

.service-slide {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* Zoom on hover */
.service-slide:hover img {
  transform: scale(1.08);
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transition: all 0.6s ease;
}

/* Show text on hover */
.service-slide:hover .service-overlay {
  opacity: 1;
}

.service-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* Text animation */
.service-slide:hover .service-overlay span {
  transform: translateY(0);
}


/*Form section*/

/* =========================
   WEDDING BOOKING FORM
========================= */
.booking-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdfbfb, #f3f3f3);
  padding: 40px 15px;
}

.booking-card {
  background: #fff;
  max-width: 920px;
  width: 100%;
  padding: 55px 45px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  animation: bookingFade 1.2s ease forwards;
}

/* Entry animation */
@keyframes bookingFade {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Titles */
.booking-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.booking-subtitle {
  font-size: 15px;
  color: #777;
  margin-bottom: 35px;
}

/* Inputs */
.booking-form .input-group {
  position: relative;
  margin-bottom: 18px;
}

.booking-form .input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  transition: all 0.3s ease;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.booking-form textarea {
  resize: none;
}

/* Focus animation */
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #111;
}

.booking-form input:focus + i,
.booking-form textarea:focus + i {
  color: #111;
}

/* Button */
.booking-btn {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.booking-btn i {
  margin-right: 8px;
}

/* Hover */
.booking-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 575px) {
  .booking-card {
    padding: 40px 25px;
  }
}


/*Footer */

/* =========================
   WEDDING FOOTER
========================= */
.wedding-footer {
  position: relative;
  background: url('https://placehold.co/1920x700/111/fff') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 40px;
  overflow: hidden;
}

/* Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

/* Content */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* About text */
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
  max-width: 320px;
}

/* Social */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: all 0.4s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

/* Links */
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* Animation */
.footer-about,
.footer-links {
  opacity: 0;
  transform: translateY(40px);
  animation: footerFadeUp 1.2s ease forwards;
}

.footer-links:nth-child(2) { animation-delay: .2s; }
.footer-links:nth-child(3) { animation-delay: .4s; }

@keyframes footerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-about p {
    max-width: 100%;
  }
}


/* Contact List */
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ddd;
}

.contact-list i {
  color: #fff;
  font-size: 16px;
  margin-top: 4px;
}

/* Map */
.footer-map {
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  filter: grayscale(100%) brightness(0.8);
}

/* Animation */
.footer-contact {
  opacity: 0;
  transform: translateY(40px);
  animation: footerFadeUp 1.2s ease forwards;
  animation-delay: .6s;
}

.heart-beat {
  display: inline-block;
  color: #ff4d6d;
  font-size: 18px;
  animation: heartbeat 1.5s ease-in-out infinite;
  transform-origin: center;
}

/* Heartbeat Keyframes */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}



/*Heard Beat Button*/

/* About Section */
.about-photography {
  padding: 110px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif; /* Modern clean font */
  overflow: hidden;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: auto;
  border-radius: 12px;
  animation: imgFloat 6s ease-in-out infinite;
}

/* Image float animation */
@keyframes imgFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Content */
.about-content {
  animation: fadeSlide 1.3s ease forwards;
}

/* Subtitle */
.about-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff4d6d;
  margin-bottom: 12px;
  display: inline-block;
  font-weight: 600;
}

/* Title */
.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: #111;
}

/* Description */
.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  max-width: 520px;
}

/* Bullet points */
.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-points li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-points li i {
  color: #ff4d6d;
  margin-right: 10px;
  font-size: 18px;
}

/* Button */
.btn-heart {
  display: inline-flex;
  align-items: center;
  background: #ff4d6d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: heartbeat 2s infinite;
}

.btn-heart i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-heart:hover i {
  transform: translateX(5px);
}

/* Heartbeat animation */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.05); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.05); }
}

/* Text animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*Icons Lust */

.vertical-social-bar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Button styling */
.vertical-social-bar .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 77, 109, 0.2);
  color: #ff4d6d;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateX(50px);
  animation: slideFadeIn 0.8s forwards;
}

/* Stagger animation using nth-child */
.vertical-social-bar .social-btn:nth-child(1) { animation-delay: 0.1s; }
.vertical-social-bar .social-btn:nth-child(2) { animation-delay: 0.3s; }
.vertical-social-bar .social-btn:nth-child(3) { animation-delay: 0.5s; }
.vertical-social-bar .social-btn:nth-child(4) { animation-delay: 0.7s; }
.vertical-social-bar .social-btn:nth-child(5) { animation-delay: 0.9s; }
.vertical-social-bar .social-btn:nth-child(6) { animation-delay: 1.1s; }

/* Hover effect */
.vertical-social-bar .social-btn:hover {
  transform: scale(1.2);
  background: #ff4d6d;
  color: #fff;
  transition: all 0.3s ease;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*Service gallery */

.service-gallery { height: 100vh; display: flex; overflow: hidden; }
.container-fluid { height: 100%; }
.row { height: 100%; display: flex; flex-wrap: nowrap; }

/* Left Tabs */
.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: #f5f5f5;
  height: 100%;
  position: sticky;
  top: 0;
  overflow-y: auto;
}
.tab-item {
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-item.active, .tab-item:hover {
  background: #ff7f7f;
  color: #fff;
}

/* Right Images */
.image-display {
  flex: 1;
  padding: 20px;
  height: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 10px;
  gap: 10px;
}
.tab-images { display: none; }
.tab-images.active { display: grid; }

.tab-images img {
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}
.tab-images.active img {
  opacity: 1;
  transform: scale(1);
}

.service-gallery-enhanced .nav-tabs .nav-link {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 8px;
  color: #000!important;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.service-gallery-enhanced .nav-tabs .nav-link.active {
  border-bottom: 2px solid #ff4081;
  color: #ff4081;
}
.service-gallery-enhanced .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.service-gallery-enhanced .gallery-item {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}
.service-gallery-enhanced .gallery-item:hover {
  transform: scale(1.05);
}

.service-gallery-enhanced .tab-pane.active .gallery-item {
  animation-delay: calc(var(--i) * 0.1s);
}

/*Faq Sectio */


.faq-section {
  background: linear-gradient(135deg, #ffe6f0, #fff0e6);
  padding: 80px 0;
  border-radius: 16px;
}

.faq-section h2 {
  font-weight: 700;
  font-size: 36px;
  color: #d63384;
}

.accordion-button {
  background: #fff;
  color: #333;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:hover {
  background: #fce4ec;
  color: #d63384;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: #d63384;
}

.accordion-button i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) i {
  color: #fff;
  transform: rotate(360deg);
}

.accordion-body {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  background: #fff3f6;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

.accordion-collapse.show .accordion-body {
  opacity: 1;
  transform: translateY(0);
}



.animated-img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.animated-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* WordPress‑style left→right reveal */
.reveal‑lr {
  opacity: 0;
  transform: translateX(-60px); /* start 60px left */
  animation: revealSlide 1s ease‑out forwards;
}

/* Keyframes animation */
@keyframes revealSlide {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  60% {
    opacity: 0.6;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


