/* General Styles */
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: rgb(167 121 1);
}

/* Navbar */
.navbar {
  background: rgb(255 255 255);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgb(255 255 255);
}

.nav-link {
  position: relative;
  color: #000000 !important;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #e91e63;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(0);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: url("/image/Banner-Image.jpg");
  background-size: 105%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  isolation: isolate;
  animation: parallaxMotion 25s ease-in-out infinite alternate;
}

@keyframes parallaxMotion {
  0% {
    background-size: 105%;
    background-position: center center;
  }
  100% {
    background-size: 100%;
    background-position: top center;
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: white;
}

.hero-content h1 {
  font-size: 5rem;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

.intro-text p:nth-child(1) {
  animation-delay: 0.3s;
}
.intro-text p:nth-child(2) {
  animation-delay: 0.6s;
}
.intro-text p:nth-child(3) {
  animation-delay: 0.9s;
}

.films-section {
  background: #fde6a924;
  padding: 5rem 0;
}

.film-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.film-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.film-card:hover img {
  transform: scale(1.1);
}

.film-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.film-card:hover .film-overlay {
  opacity: 1;
}

.film-overlay h3 {
  margin-bottom: 10px;
}

.portfolio-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.portfolio-section img {
  border-radius: 15px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
}

.portfolio-section img.active {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-section img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-section {
  padding: 5rem 0;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-section {
  padding: 5rem 0;
  background: #fff;
}

.faq-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.footer {
  background: #1a2b3c;
  color: white;
  padding: 4rem 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #e91e63;
}

.social-icons a {
  margin: 0 15px;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #e91e63;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Video Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 620px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.modal-nav {
  margin-top: 10px;
}

.modal-nav button {
  margin: 0 10px;
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #f0ece380;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #f0ece3;
}

.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}
.zoom-in {
  animation: zoomIn 1.5s ease-in-out;
}
.hover-scale:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
.hover-effect:hover {
  transform: translateY(-10px) scale(1.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}
.icon-img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease-in-out;
}
.service-icon:hover .icon-img {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* General Styling */
.testimonial-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Testimonial Container */
.testimonial-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
  position: relative;
}

/* Individual Testimonial */
.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
}

/* Active Testimonial */
.testimonial.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

/* Testimonial Image */
.testimonial-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
}

/* Client Name */
.testimonial-name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* Fade-in Animation */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  overflow: none;
}

.gallery-image:hover {
  transform: scale(1.05);
  filter: brightness(80%);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.nav-link.active {
  color: #007bff !important;
  font-weight: 600;
  /*border-bottom: 2px solid #007bff;*/
}

.about-section {
  background: #fde6a924;
  padding: 5rem 0;
}

.services-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

/* About use */

.section {
  padding: 60px 0;
  text-align: center;
}

.about-image {
  width: 100%; /* Full width */
  height: 300px; /* Fixed height for square appearance */
  object-fit: cover; /* Cover to maintain aspect ratio */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.team-members {
  display: flex;
  justify-content: center; /* Center the team members */
  flex-wrap: wrap; /* Allow wrapping to the next line */
  margin-top: 30px;
}

.team-member {
  margin: 15px; /* Space between team members */
  width: 220px; /* Fixed width for team members */
  height: 250px; /* Fixed height for team members */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.team-member:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 15px;
}

.team-member:hover .gradient-overlay {
  opacity: 1; /* Show overlay on hover */
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.team-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-position {
  font-size: 14px;
  color: #666;
}

/* Custom styles for the loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Additional styles for testimonials */
.testimonial {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
}

.testimonial p {
  font-style: italic;
}

.testimonial-footer {
  font-weight: bold;
  text-align: right;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://source.unsplash.com/1600x900/?photography,studio") no-repeat
      center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.highlight-section {
  background: url("https://source.unsplash.com/1600x900/?nature") no-repeat
    center center/cover;
  background-size: cover;
  padding: 60px 20px;
  color: white;
  text-align: center;
  border-radius: 10px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}
.highlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 1;
}
.highlight-section h2,
.highlight-section p {
  position: relative;
  z-index: 2;
}
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.5s forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.process-step {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.5s forwards;
}
.process-step:hover {
  transform: translateY(-10px);
}
.cta {
  background: #222;
  color: white;
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 1s ease-in-out;
}
.cta a {
  background: #ffcc00;
  color: #222;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta a:hover {
  background: #e6b800;
}
.process-step h4 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #333;
}
.process-step p {
  font-size: 1rem;
  color: #666;
}

.why-choose-us {
  padding: 100px 0;
  background: url(https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80)
    no-repeat center / cover;
  position: relative;
  isolation: isolate;
  text-align: center;
  color: #fff;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.why-choose-us p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.fade-in {
  animation: fadeInUp 1s ease-in-out forwards;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.about-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}
.visible {
  visibility: visible !important;
}

.about-text {
  flex: 1;
  color: #fff;
}

 