/* ===== RESPONSIVE RESET FIX ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== GENERAL ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  background: #000;
}

/* ========== HEADER ========== */
/* Header Base */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: #dfa907;
  transition: all 0.3s ease;
  padding: 20px 5%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.site-header.shrink {
  padding: 15px 5%;
  /* was 10px — slightly more height */
  background: #c89607;
}

.site-header.shrink .logo h1 {
  font-size: 1.7rem;
  /* was 1.5rem */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.site-header.shrink .logo h1 {
  font-size: 1.5rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #000;
}


/* ========== VIDEO PRODUCTION HUB ========== */
.video-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80;
  background-color: #000;
  flex: 1;
  flex-direction: column;
}

.video-text-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  gap: 40px;
  /* more space between text and video */
}

/* Left content side */
.text-side {
  flex: 5;
  padding-right: 60px;
  /* more spacing */
}

.text-side h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-side p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 100px;
  color: #eee;
}

.cta-button {
  display: inline-block;
  background: #ffc815;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #ffda45;
}


/* Responsive for mobile */
@media (max-width: 900px) {
  .video-text-section .container {
    flex-direction: column;
    text-align: center;
  }

  .text-side {
    padding-right: 0;
  }

  .insta-video {
    max-width: 100%;
    height: 480px;
  }
}

/* ========== HERO LAYOUT ========== */
.hero-section {
  display: flex;
  height: calc(100vh - 80px);
  width: 100%;
}

/* Left side (text) */
.hero-left {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hero-left p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 600px;
}

/* Right side (form) */
.hero-right {
  flex: 1;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-card {
  width: 80%;
  max-width: 400px;
}

.form-card h2 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 20px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  background: #dfa907;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* Floating tab */
.get-quote-tab {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: rotate(-90deg);
  transform-origin: right top;
  background: #dfa907;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  z-index: 1000;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-left,
  .hero-right {
    flex: unset;
    width: 100%;
  }

  .hero-left {
    padding: 60px 30px;
    text-align: center;
  }

  .form-card {
    padding: 30px 20px;
  }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: #ffffff;
  text-align: center;
  padding: -10px -20px;
  color: #000;
}

.contact-title {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1px;
}

.contact-sub {
  font-size: 1.1rem;
  margin-bottom: 3%;
  color: #333;
}

/* Layout */
.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-left img {
  width: 220px;
  max-width: 200%;
}

/* Middle Form */
.contact-middle {
  flex: 1;
  min-width: 180px;
  max-width: 400px;
}

.contact-middle input,
.contact-middle textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #000000;
  font-size: 1rem;
}

.contact-middle .btn-submit {
  background: #dfa907;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Right Info + Map */
.contact-right {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.contact-map iframe {
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 10px;

}

/* Footer */
.footer {
  background: #dfa9;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-left img {
    width: 100px;

  }

  .contact-right,
  .contact-middle {
    text-align: center;
  }
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

/* Slider Section */
.slider-section {
  background: #ffffff;
  padding: 60px 0;
  margin-bottom: 60px;
}

.slider-section .container {
  text-align: center;
}

.slider {
  animation: slide 12s infinite;
  font-size: 1.5em;
  font-weight: bold;
}

/* Services */
.services-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 120px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.services,
.testimonials,
.contact,
.instagram,
.our-process {
  background: #fff;
  margin: 40px 0;
  padding: 60px 0;
  border-radius: 8px;
}



/* Footer */
footer {
  background: var(--dark-grey);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.our-process {
  background: linear-gradient(120deg, #dfa907, #f3d15b, #b88e00);
  background-size: 300% 300%;
  animation: moveGradient 10s ease infinite;
  text-align: center;
  padding: 60px 20px;
  color: #000;
  font-family: 'Raleway', sans-serif;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.process-block {
  background: #fff;
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.process-block:hover {
  transform: translateY(-8px);
}

.process-block h3 {
  color: #dfa907;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: 0.3s;
}

.carousel-nav button:hover {
  background: #000;
}

.carousel-dots {
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

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

.testimonial-grid-section {
  position: relative;
  padding: 70px 0 90px;
  /* smaller top & bottom spacing */
  text-align: center;
  background: linear-gradient(to bottom,
      #dfa907 0%,
      #ffec80 30%,
      #dfa907 70%,
       #b47a00 100%);
     
  /* subtle light fade top & bottom */
  overflow: hidden;
  font-family: "Raleway", sans-serif;
}

/* Floating testimonial cards */
.testimonial-floating-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.testimonial-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 220px;
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #d49800;
  font-size: 14px;
}

/* Center text section */
.testimonial-center-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-center-text .tagline {
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
}

.testimonial-center-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonial-center-text .subtext {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 30px;
}

.cta-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #222;
}

/* Stagger layout mimic image positions */
.testimonial-card:nth-child(1) {
  transform: translateY(25px) rotate(-2deg);
}

.testimonial-card:nth-child(2) {
  transform: translateY(-10px) rotate(1deg);
}

.testimonial-card:nth-child(3) {
  transform: translateY(20px) rotate(2deg);
}

.testimonial-card:nth-child(4) {
  transform: translateY(-15px) rotate(-1deg);
}

.testimonial-card:nth-child(5) {
  transform: translateY(30px) rotate(2deg);
}

.testimonial-card:nth-child(6) {
  transform: translateY(10px) rotate(-1deg);
}

.testimonial-card:nth-child(7) {
  transform: translateY(-25px) rotate(1deg);
}

.testimonial-card:nth-child(8) {
  transform: translateY(20px) rotate(-2deg);
}

.testimonial-card:nth-child(9) {
  transform: translateY(-10px) rotate(2deg);
}

.testimonial-card:nth-child(10) {
  transform: translateY(25px) rotate(-1deg);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-floating-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .testimonial-floating-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .testimonial-card {
    max-width: 180px;
    padding: 16px;
    font-size: 14px;
  }
}

/* testimony */

.testimonial-grid-section {
  position: relative;
  padding: 70px 0 0px;
  /* smaller top & bottom spacing */
  text-align: center;
  background: linear-gradient(to bottom,
        #dfa907 0%,
      #ffec80 30%,
      #dfa907 70%,
       #b47a00 100%);
  /* subtle light fade top & bottom */
  overflow: hidden;
  font-family: "Raleway", sans-serif;
}

/* Floating testimonial cards */
.testimonial-floating-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.testimonial-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 220px;
  font-size: 15px;
  line-height: 1.4;
  color: #222;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #d49800;
  font-size: 14px;
}

/* Center text section */
.testimonial-center-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-center-text .tagline {
  text-transform: uppercase;
  font-weight: 700;
  color: #b17e00;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
}

.testimonial-center-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonial-center-text .subtext {
  font-size: 15px;
  color: #444;
  margin-bottom: 30px;
}

.cta-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}


/* Stagger layout mimic image positions */
.testimonial-card:nth-child(1) {
  transform: translateY(25px) rotate(-2deg);
}

.testimonial-card:nth-child(2) {
  transform: translateY(-10px) rotate(1deg);
}

.testimonial-card:nth-child(3) {
  transform: translateY(20px) rotate(2deg);
}

.testimonial-card:nth-child(4) {
  transform: translateY(-15px) rotate(-1deg);
}

.testimonial-card:nth-child(5) {
  transform: translateY(30px) rotate(2deg);
}

.testimonial-card:nth-child(6) {
  transform: translateY(10px) rotate(-1deg);
}

.testimonial-card:nth-child(7) {
  transform: translateY(-25px) rotate(1deg);
}

.testimonial-card:nth-child(8) {
  transform: translateY(20px) rotate(-2deg);
}

.testimonial-card:nth-child(9) {
  transform: translateY(-10px) rotate(2deg);
}

.testimonial-card:nth-child(10) {
  transform: translateY(25px) rotate(-1deg);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-floating-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .testimonial-floating-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .testimonial-card {
    max-width: 180px;
    padding: 16px;
    font-size: 14px;
  }
}


/* Contact Section */
.contact-section {
  padding: 40px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-block {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.map-container iframe {
  border-radius: 8px;
}

/* Responsive Layouts */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .carousel-slide {
    justify-content: space-around;
  }
}

.video-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
}

.video-text-section .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.text-side {
  flex: 1;
  padding-right: 20px;
}

.text-side h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.text-side p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.video-side {
  flex: 1;
}

.video-side video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.brands-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.brands-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #000;
}

.brands-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1000px;
}

.brand-item {
  flex: 1;
  padding: 20px;
  position: relative;
}

.brand-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 1;
}

/* Horizontal Line Between the Two Rows */
.brands-divider-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 20px 0;
}

/* Optional: Add vertical lines between logos */
.brand-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: -25%;
  bottom: -25%;
  width: 1px;
  background-color: #000000;
}

/* Responsive: stack items on small screens */
@media (max-width: 768px) {
  .brands-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-item {
    flex: 0 0 33.33%;
    padding: 15px;
  }

  .brands-divider-line {
    margin: 20px 0;
  }
}

.hero-video-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  background-color: #000;
}

.hero-content-wrapper {
  max-width: 960px;
  width: 100%;
  text-align: center;
}

.youtube-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-content p {
  color: #ddd;
  font-size: 1.2rem;
}

.fade-text {
  animation: fadeOut 5s forwards;
  /* delay the animation start if needed */
  animation-delay: 1s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.video-showcase-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.video-showcase-section .section-heading {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.video-gallery-grid a img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery-grid a img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.explore-more-btn {
  margin-top: 40px;
}

.explore-more-btn a {
  background-color: #fdd835;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-more-btn a:hover {
  background-color: #fff176;
}

.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease;
}

.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.our-process {
  padding: 50px 20px;
  background: linear-gradient(270deg, #dfa907, #ffec80, #dfa907, #b47a00);
  background-size: 800% 800%;
  animation: gradientMove 10s linear infinite;
  text-align: center;
  color: #000;
  font-family: "Raleway", sans-serif;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex: 0 0 100%;
}

.process-block {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  text-align: center;
  color: #000;
}

.process-block h3 {
  color: #b97a00;
  font-weight: 700;
  margin-bottom: 10px;
}

.carousel-nav {
  text-align: center;
  margin-top: 20px;
}

.carousel-nav button {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.carousel-nav button:hover {
  color: #000;
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
  }

  .process-block {
    max-width: 90%;
  }
}

.our-process {
  padding: 60px 20px;
  background: linear-gradient(270deg, #dfa907, #ffec80, #dfa907, #b47a00);
  background-size: 800% 800%;
  animation: gradientMove 10s linear infinite;
  text-align: center;
  font-family: "Raleway", sans-serif;
  color: #000;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex: 0 0 100%;
}

.process-block {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #000;
}

.process-block h3 {
  color: #b97a00;
  margin-bottom: 10px;
}

.carousel-nav {
  margin-top: 20px;
}

.carousel-nav button {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.carousel-dots {
  margin-top: 15px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.carousel-dots .dot.active {
  background: #000;
}

@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
  }

  .process-block {
    max-width: 90%;
  }
}

.our-process {
  padding: 60px 20px;
  background: linear-gradient(270deg, #dfa907, #ffec80, #dfa907, #b47a00);
  background-size: 800% 800%;
  animation: gradientMove 10s linear infinite;
  font-family: 'Raleway', sans-serif;
  color: #2d2d2d;
  text-align: center;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex: 0 0 100%;
}

.process-block {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
}

.process-block h3 {
  color: #b47a00;
  font-weight: 700;
  margin-bottom: 10px;
}

.carousel-nav {
  text-align: center;
  margin-top: 25px;
}

.carousel-nav button {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin: 0 10px;
  color: #333;
  transition: color 0.3s ease;
}

.carousel-nav button:hover {
  color: #000;
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #777;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
  }

  .process-block {
    max-width: 90%;
  }
}


/* Tablet (768px and below) */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    align-items: center;
  }

  .process-block {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .process-block {
    padding: 15px;
  }

  .process-block h3 {
    font-size: 1rem;
  }

  .process-block p {
    font-size: 0.9rem;
  }
}

/* Brand Section Styling */
.brand-logos img {
  width: 150px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.brand-logos img:hover {
  transform: scale(1.05);
}

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  /* adds space between image and text block */
}

.popup-img {
  width: 100vw;
  height: 80vh;
  object-fit: contain;
  background-color: #000;
  border-radius: 12px;
}

/* Yellow Text Block */
.popup-text {
  background: #1a1a1a;
  padding: 20px 30px;
  border-radius: 10px;
  color: #ffcc00;
  max-width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-text h3 {
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-text p {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Yellow Button */
.visit-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.visit-btn:hover {
  background-color: #e6b800;
}

/* ========== OUR WORK SECTION ========== */
.our-work {
  background: #f7f7f7 url('https://www.transparenttextures.com/patterns/marble.png');
  background-size: cover;
  text-align: center;
  padding: 80px 40px;
  color: #000;
}

.work-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 10px;
}

.work-sub {
  color: #dfa907;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Video Button */
.video-button {
  margin-bottom: 30px;
}

.video-button button {
  background: #e5e5e5;
  border: none;
  color: #333;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-button button:hover {
  background: #dfa907;
  color: #fff;
}

/* Brand Name Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-bottom: 40px;
}

.brand-grid span {
  font-size: 1rem;
  color: #000;
  transition: all 0.3s;
}

.brand-grid span:hover {
  color: #dfa907;
  transform: scale(1.05);
}

/* Get in Touch Button */
.get-touch {
  text-align: center;
}

.get-touch-btn {
  background: #dfa907;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.get-touch-btn:hover {
  background: #911c1a;
}

/* Responsive */
@media (max-width: 768px) {
  .work-sub {
    font-size: 0.95rem;
  }

  .brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

/* Working floating vertical tab  */
.get-quote-tab {
  position: fixed;
  right: -42px;
  /* tuck the rotated tab partly off-screen */
  top: 50%;
  transform: rotate(-90deg);
  /* rotate text to be vertical */
  transform-origin: center center;
  background: #dfa907;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  /* adjust padding to taste */
  border-radius: 6px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: inline-block;
  transition: right .18s ease, transform .18s ease, background .18s ease;
}

/* on hover slide a bit into view */
.get-quote-tab:hover {
  right: 6px;
  /* slide fully into view */
  background: #dfa907;
  transform: rotate(-90deg) translateY(-2px);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.contact-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  vertical-align: middle;
}

/* Ensure all icons are equal and round */
.contact-links a i {
  line-height: 1;
}

/* Platform colors */

.contact-links .instagram {
  background: #E1306C;
  padding: 0;
}

.contact-links .youtube {
  background: #FF0000;
}

.contact-links .facebook {
  background: #1877F2;
}

.contact-links .phone {
  background: #34A853;
}

.contact-links .mail {
  background: #FFA500;
}


.contact-links .linkedin {
  background: #0077B5;
  /* LinkedIn Blue */
}

/* Hover effect */
.contact-links a:hover {
  transform: scale(1.0.5);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* ========== WHY DO BRANDS BELIEVE IN US ========== */
.why-brands {
  background: #1a1a1a;
  text-align: center;
  padding: 80px 20px;
}

.why-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-text {
  background: #1a1a1a;
  color: #ffcc00;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(165, 162, 162, 0.3);
}

.why-text h3 {
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 15px;
}

.why-text p {
  color: #ffcc00;
  font-size: 16px;
  margin-bottom: 20px;
}

.why-text .visit-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #fb0000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.why-text .visit-btn:hover {
  background-color: #e6b800;
}

Showcase of Excellence .video-showcase-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.video-gallery-grid a img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery-grid a img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
}

Our Services Section

/* ===== Services Section ===== */
.services-section {
  background-color: #ffffff;
  padding: 60px 20px;
  background: #fff;
  /* White background for this section only */
  text-align: center;
  padding: 100px 40px;
}

.section-title {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ===== Common Card Style ===== */
.service-card {
  width: 320px;
  height: 200px;
  perspective: 1000px;
  position: relative;
  cursor: pointer;
}

.service-card .card-front,
.service-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Color Themes ===== */
.black-card .card-front {
  background: #000;
  color: #dfa907;
}

.white-card .card-front {
  background: #fff;
  color: #dfa907;
  border: 1px solid #eee;
}

.service-card .card-front i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Back side with visible gradient motion */
.card-back {
  background: linear-gradient(270deg,
      #bdb9ab,
      #ffd84a,
      #b98500,
      #94865b);
  background-size: 300% 300%;
  color: #000;
  transform: rotateY(180deg);
  padding: 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(223, 169, 7, 0.25);
  animation: none;
  /* default stopped */
}

/* When card is hovered, trigger motion */
.service-card:hover .card-back {
  transform: rotateY(360deg);
  animation: goldShine 4s ease infinite;
}

/* Gold gradient animation */
@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* --- BRAND SECTION --- */
.brand-section {
  text-align: center;
  padding: 60px 5%;
  background: #fff;
}

.brand-section h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Responsive Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

/* LOGO BOX — 7:3 ratio, auto-color animation */
.brand-grid img {
  width: 100px;
  height: 60px;
  /* 7:3 ratio */
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  padding: 12px;
  transition: transform 0.4s ease, box-shadow 0.3s ease, filter 2s ease;
  filter: grayscale(100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: logoColorFade 5s infinite alternate ease-in-out;
}

/* On Hover - zoom & pop */
.brand-grid img:hover {
  transform: scale(1.2) translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Click drag state */
.brand-grid img:active {
  transform: scale(1.35) translateY(-8px);
  cursor: grabbing;
}

/* ===== Auto color animation ===== */
@keyframes logoColorFade {
  0% {
    filter: grayscale(100%) brightness(0.9);
  }

  50% {
    filter: grayscale(40%) brightness(1);
  }

  100% {
    filter: grayscale(0%) brightness(1.05);
  }
}

/* WhatsApp Floating Button */
.whatsapp-popup {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-popup a {
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-popup a:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Popup Message */
.popup-message {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
}

.popup-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Contact Box */
.whatsapp-contact-box {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.whatsapp-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-info i {
  font-size: 40px;
  color: #25D366;
}

.whatsapp-text h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 1.3rem;
}

.whatsapp-text p {
  margin: 0 0 12px;
  color: #333;
  font-size: 0.95rem;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* ===== MOBILE RESPONSIVE FIX FOR YDAM FILMS ===== */

/* Universal container fix */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make header fully responsive */
@media (max-width: 900px) {
  .site-header {
    width: 100%;
    padding: 10px 15px;
    position: relative;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .main-nav a {
    font-size: 0.95rem;
    color: #fff;
  }

  .logo h1 {
    font-size: 1.5rem;
  }
}

/* HERO SECTION */
@media (max-width: 900px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 15px;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

  .form-card {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .form-card input, .form-card textarea, .form-card button {
    width: 100%;
    font-size: 1rem;
  }
}

/* SERVICES SECTION FIX */
@media (max-width: 900px) {
  .services-section {
    padding: 40px 10px !important;
  }

  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .service-card i {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }
}

/* CONTACT SECTION FIX */
@media (max-width: 900px) {
  .contact-section {
    padding: 50px 10px;
    text-align: center;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-left img {
    width: 80%;
    margin: 0 auto;
  }

  .contact-middle {
    width: 100%;
    max-width: 400px;
  }

  .contact-middle form input,
  .contact-middle form textarea,
  .contact-middle form button {
    width: 100%;
    font-size: 1rem;
  }

  .contact-block {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .contact-map iframe {
    width: 100%;
    height: 200px;
  }

  .contact-links a {
    font-size: 1.3rem;
    margin: 0 10px;
  }
}

/* TESTIMONIAL / BRAND SECTION FIX */
@media (max-width: 900px) {
  .brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .brand-grid img {
    width: 100px;
  }

  .testimonial-grid-section {
    padding: 40px 15px;
  }

  .testimonial-floating-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-center-text h2 {
    font-size: 1.6rem;
  }
}

/* PROCESS SECTION FIX */
@media (max-width: 900px) {
  .vew__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .vew__connector {
    display: none;
  }

  .vew__step {
    width: 90%;
  }
}

/* SMALL MOBILE FIX */
@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.4rem !important;
  }

  p {
    font-size: 0.9rem !important;
  }

  button, .btn-submit {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .service-card {
    width: 95%;
  }
}
/* 🔧 Mobile visual test fix */
@media (max-width: 768px) {
  .contact-left img {
    margin-top: 0 !important;
    width: 85% !important;
  }

  .contact-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .contact-links {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .contact-links a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
