* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}


/* HEADER STYLES */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
  /* Start fully visible */
  background: linear-gradient(to right, rgba(106, 19, 182, 1), rgba(103, 18, 185, 1), rgba(100, 18, 189, 1), rgba(97, 17, 192, 1), rgba(93, 17, 196, 1));
}


.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 20px;
}

/* LOGO */
.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

@media (min-width: 998px) and (max-width: 2560px) {
  nav ul {
    margin-top: 20px;
  }
}


nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
}

/* Hover underline effect */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #FFD700;
  /* gold accent */
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: #FFD700;
}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MOBILE MENU */
@media (max-width: 992px) {
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #900bef;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav ul.open {
    max-height: 500px;
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Nav menu spacing and alignment for 995px–1240px (laptops + mid screens) */
@media (min-width: 995px) and (max-width: 1240px) {
  nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 auto;
    gap: 0;
  }

  nav ul li {
    flex: 1;
    text-align: center;
    position: relative;

  }

  /* separator line between items */
  nav ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    /* position after padding */
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    /* faint white line */
    margin-left: 15px;
  }

  nav ul li a {
     font-size: 0.90rem;   /*adjustment for tablet view */
    white-space: nowrap;
    padding: 6px 4px;
    display: block;
  }

  nav ul li a:hover {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
  }
}





/* Active link (current page) */
nav ul li a.active {
  color: #FFD700;
  /* highlight color */
  font-weight: bold;
  /* optional */
  border-bottom: 2px solid #FFD700;
  /* underline effect */
}

/* HERO VIDEO SECTION */
.hero-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 72px;
  /* approx header height (60px) + some spacing */
}

/* Responsive video with proper aspect ratio */
.hero-video-section video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  aspect-ratio: 1280 / 514;
}

/* Adjust margin-top for smaller devices if header height differs */
@media (max-width: 992px) {
  .hero-video-section {
    margin-top: 70px;
    /* slightly smaller for mobile/tablet */
  }
}

/* Small devices - increase video height */
@media (max-width: 430px) {
  .hero-video-section video {
    height: 200px;
    /* increase height for better visibility */
    width: 100%;
    object-fit: cover;
    /* ensures video covers the area without stretching */
  }

  /* Optional: adjust bottom margin for hero content if overlay exists */
  .hero-content {
    bottom: 15px;
    /* slightly higher above video bottom */
  }
}


/* HERO CONTENT - Overlay text */
.hero-content {
  position: absolute;
  bottom: 20px;
  /* distance from bottom of video */
  left: 50%;
  /* center horizontally */
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

/* Headline */
.hero-content h1 {
  font-size: 3rem;
  /* large laptop */
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  /* Prevent line breaks */
  overflow: hidden;
  /* Hide overflow if too long */
  text-overflow: ellipsis;
  /* optional: show ... if really small screen */
}

/* Paragraph */
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Button Styling */
.hero-content .btn {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 40px;
  background: linear-gradient(45deg, #ffcc00, #ff9900);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: #fff;
  border: 1px solid #ff9900;
  color: #000;
}

/* RESPONSIVE FONT SIZES */

/* Large laptop -> medium screens */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-content .btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

/* Tablets */
@media (max-width: 992px) {

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    font-size: 0.9rem;
    padding: 10px 22px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {

  .hero-content {
    bottom: 5px;
    /* distance from bottom of video */
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-content .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}


/* MOBILE CTA hidden by default */
.mobile-cta {
  display: none;
  text-align: center;
  margin: 20px auto;
  max-width: 90%;
  padding: 18px 15px;
  border-radius: 16px;

  /* Background image with overlay effect */
  background: url("Images/bg-pattern.jpg") center/cover no-repeat;
  background-blend-mode: overlay;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Text color for readability */
  color: #060606;

  /* Shadow & border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);

  /* Animation */
  animation: fadeIn 0.8s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show only on small devices */
@media (max-width: 430px) {
  .hero-content {
    display: none;
    /* Hide overlay text */
  }

  .mobile-cta {
    display: block;
    /* Show mobile CTA below video */
  }

  .mobile-cta h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 300;
  }

  .mobile-cta .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    border-radius: 40px;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .mobile-cta .btn:hover {
    background: #fff;
    border: 1px solid #ff9900;
    color: #000;
  }
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  position: relative;
}

h2::before,
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #e63946;
  margin: 8px auto;
}

/* Cinematic Shoot Section */
.cinematic-shoot {
  background: #900bef13;
  /* light purple glassy feel */
  backdrop-filter: blur(15px);
  text-align: center;
}

.cinematic-shoot .section-title {
  font-size: 2.5rem;
  color: #800080;
  /* your purple color */
  margin-bottom: 40px;
  position: relative;
}

.cinematic-shoot .videos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cinematic-shoot .video-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(128, 0, 128, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(128, 0, 128, 0.2);
  flex: 1 1 400px;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cinematic-shoot .video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(128, 0, 128, 0.4);
}

.cinematic-shoot video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.cinematic-shoot .description {
  max-width: 900px;
  margin: 0 auto;
  color: #4a004a;
  /* darker purple text */
  font-size: 1.1rem;
  line-height: 1.8;
}

.reviews {
  padding: 60px 20px;
  background: rgba(254, 254, 254, 0.97);
  backdrop-filter: blur(12px);
  text-align: center;
}

.reviews .section-title {
  font-size: 2rem;
  color: #800080;
  margin-bottom: 30px;
}

.review-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 45px;
  /* space for arrows */
}

.review-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(128, 0, 128, 0.3);
  border-radius: 20px;
  padding: 25px;
  max-width: 700px;
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(128, 0, 128, 0.2);
  animation: fadeIn 0.5s ease-in-out;
  margin: 0 auto;
  text-align: left;
  /* keep reviews natural */
}

.review-card.active {
  display: flex;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  white-space: pre-line;
  /* keeps line breaks exactly as client wrote */
}

.review-card .stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card h4 {
  font-weight: bold;
  color: #4a004a;
  font-size: 1rem;
}

/* Arrows */
button.prev,
button.next {
  background: rgba(128, 0, 128, 0.8);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

button.prev:hover,
button.next:hover {
  background: #800080;
}

button.prev {
  left: 10px;
  /* inside padding */
}

button.next {
  right: 10px;
}

/* Tablet */
@media (max-width: 768px) {
  .review-slider {
    padding: 0 35px;
  }

  button.prev,
  button.next {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .reviews .section-title {
    font-size: 1.6rem;
  }

  .review-slider {
    padding: 0 30px;
  }

  .review-card {
    padding: 18px;
  }

  .review-card p {
    font-size: 0.95rem;
  }

  .review-card h4 {
    font-size: 0.9rem;
  }

  .review-card .stars {
    font-size: 1rem;
  }

  button.prev,
  button.next {
    font-size: 1.2rem;
    padding: 6px 9px;
  }
}

.blog-feature {
  padding: 60px 20px;
  background: #900bef13;
  /* light purple glassy feel */

  text-align: center;
}

.blog-feature .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.blog-feature .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.feature-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 45%;
  max-width: 500px;
}

.feature-item img {
  width: 100%;
  height: 400px;
  /* fixed equal height */
  object-fit: contain;
  /* shows full image without cutting */
  background: #fff;
  /* fills empty space if aspect ratio is different */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 10px;
  /* adds spacing around inside */
}


.feature-item img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 100%;
  }

  .feature-item img {
    height: 300px;
    /* smaller height for mobile */
  }
}

.contact-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
  /* makes both columns same height */
}


.contact-map,
.contact-details {
  flex: 1;
  min-width: 0;
  /* fixes flex shrink issue on small screens */
}

/* Map iframe full size */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  border: none;
}

/* Tablet and below */
@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .contact-details {
    margin-top: 20px;
    padding: 20px;
  }
}

/* Small devices */
@media (max-width: 576px) {
  .contact-map iframe {
    min-height: 220px;
  }

  .contact-details {
    padding: 15px;
    text-align: center;
  }

  .contact-details .info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


}

@media (max-width: 576px) {
  .contact-details .info-box {
    flex-direction: column;
    align-items: center;
    /* centers the icon */
    text-align: center;
    /* centers the text */
  }

  .contact-details .icon-circle {
    margin-bottom: 10px;
    /* space between icon and text */
  }
}

/* Contact Details Box */
.contact-details {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centers content vertically */
}

/* Info Boxes inside details */
.contact-details .info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
  text-align: left;
}

.contact-details h4 {
  font-size: 1.8rem;
  color: #222;
}



.contact-details .icon-circle {
  width: 40px;
  height: 40px;
  background: red;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button styling */
.btn-contact {
  display: inline-block;
  padding: 12px 25px;
  background: #ffecd2;
  color: #222;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-map {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-map {
    height: 200px;
  }

  .info-box {
    gap: 10px;
  }
}

.cont-section {
  padding: 60px 20px;
  background-image: linear-gradient(to right, #f3e5a6, #f6ebbb, #f9f2cf, #fcf8e4, #fffef8);

}

.contact-contain {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details h4 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 20px;
  padding-left: 15px;
  /* space between text and line */
  border-left: 4px solid red;
  /* vertical red line */
}


.contact-details {
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details p {
  color: #555;
  line-height: 1.6;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.info-box:hover {
  background: #f0f0f0;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff7e5f;
  /* accent color */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-box div a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}


.info-box div a:hover {
  color: #ff4e3a;
  /* accent hover */
}

.btn-contact {
  display: inline-block;
  padding: 12px 25px;
  background: #ff7e5f;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-contact:hover {
  background: #ff4e3a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-map iframe {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-details {
    padding: 20px 15px;
  }

  .info-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .icon-circle {
    margin-bottom: 5px;
  }
}



.social-section {
  background: linear-gradient(135deg, #ffffffcd, #f9f9f9c2);
  padding: 70px 20px;
  text-align: center;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.social-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #ffecd2, #f9e8e2d7);
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}


@keyframes slideIn {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* reduced gap for small screens */
    flex-wrap: nowrap; /* force 1 line */
    position: relative;
    z-index: 2;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;  /* slightly smaller icons */
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  filter: blur(8px);
}

.social-btn:hover {
  transform: translateY(-12px) scale(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.social-btn:hover::before {
  background: rgba(255, 255, 255, 0.25);
  filter: blur(12px);
}

/* Instagram */
.social-btn.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* YouTube */
.social-btn.youtube {
  background: #ff0000;
}

/* Facebook */
.social-btn.facebook {
  background: #1877f2;
}

/* Floating Bubbles */
.bubbles span {
  position: absolute;
  bottom: -100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rise 6s linear infinite;
  /* faster default */
}

/* Unique positions, sizes, durations, and delays for variety */
.bubbles span:nth-child(1) {
  left: 5%;
  width: 25px;
  height: 25px;
  animation-duration: 6s;
}

.bubbles span:nth-child(2) {
  left: 15%;
  width: 20px;
  height: 20px;
  animation-duration: 5s;
  animation-delay: 0.5s;
}

.bubbles span:nth-child(3) {
  left: 25%;
  width: 30px;
  height: 30px;
  animation-duration: 7s;
  animation-delay: 1s;
}

.bubbles span:nth-child(4) {
  left: 35%;
  width: 18px;
  height: 18px;
  animation-duration: 5.5s;
  animation-delay: 0.3s;
}

.bubbles span:nth-child(5) {
  left: 45%;
  width: 22px;
  height: 22px;
  animation-duration: 6.5s;
  animation-delay: 0.8s;
}

.bubbles span:nth-child(6) {
  left: 55%;
  width: 15px;
  height: 15px;
  animation-duration: 5s;
  animation-delay: 0.6s;
}

.bubbles span:nth-child(7) {
  left: 65%;
  width: 28px;
  height: 28px;
  animation-duration: 6s;
  animation-delay: 1.2s;
}

.bubbles span:nth-child(8) {
  left: 75%;
  width: 20px;
  height: 20px;
  animation-duration: 7s;
  animation-delay: 0.4s;
}

.bubbles span:nth-child(9) {
  left: 80%;
  width: 18px;
  height: 18px;
  animation-duration: 5.5s;
  animation-delay: 0.7s;
}

.bubbles span:nth-child(10) {
  left: 85%;
  width: 25px;
  height: 25px;
  animation-duration: 6.5s;
  animation-delay: 1s;
}

.bubbles span:nth-child(11) {
  left: 90%;
  width: 20px;
  height: 20px;
  animation-duration: 5s;
  animation-delay: 0.9s;
}

.bubbles span:nth-child(12) {
  left: 95%;
  width: 15px;
  height: 15px;
  animation-duration: 6s;
  animation-delay: 0.3s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-500px) scale(0.8);
    opacity: 0;
  }
}

.bg-contact {
  background-image: linear-gradient(to right, #f3e5a6, #f6ebbb, #f9f2cf, #fcf8e4, #fffef8);
}

.bg-contact-1 {
  background: #a1c4fd;
}

.instagram-reels {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reels-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  /* clean spacing between reels */
}

.instagram-media {
  margin: 0 !important;
  max-width: 320px !important;
  flex: 1 1 280px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 🔹 Small mobile fix */
/* 🔹 Fix for Mobile-sm screens (320px to 375px) */
@media (min-width: 320px) and (max-width: 375px) {
  .reels-grid {
    padding-left: 12px;
    padding-right: 12px;
    gap: 15px;
    /* keep spacing balanced */
  }

  .instagram-media {
    flex: 1 1 100%;
    /* full width in small mobiles */
    max-width: 100% !important;
  }

  .instagram-reels h2 {
    font-size: 1.4rem;
    /* slightly smaller title */
  }
}

.facebook-posts {
  padding: 60px 20px;
  background: #f0f2f5;
  text-align: center;
}

.facebook-posts .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  /* space between posts */
}

.posts-grid iframe {
  max-width: 100%;
  flex: 1 1 300px;
  /* responsive sizing */
  height: 450px;
  /* fixed same height for all posts */
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

@media (max-width: 480px) {
  .posts-grid iframe {
    height: 400px;
    /* slightly smaller on small mobiles */
  }
}

@media (max-width: 360px) {
  .posts-grid iframe {
    height: 350px;
    /* mobile-sm */
  }
}

/* Google Review Section */
.google-review {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #6b11cbc4, #2574fca8);
}

.google-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.google-review-card h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.stars {
  margin-bottom: 15px;
}

.stars i {
  color: #FFD700;
  font-size: 22px;
  margin: 0 2px;
}

.review-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.qr-code img {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
}

.review-btn {
  display: inline-block;
  background: #2575fc;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.review-btn:hover {
  background: #1a5ed8;
}

.footer-text {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .google-review-card {
    padding: 25px 20px;
  }

  .google-review-card h2 {
    font-size: 20px;
  }

  .review-text {
    font-size: 14px;
  }

  .qr-code img {
    max-width: 140px;
  }
}

.site-footer {
  background: #111;
  /* 🔥 Dark background */
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 20px;
  max-width: 300px;
  /* keeps it neat */
  margin-left: auto;
  margin-right: auto;
  /* centers it in footer */
}

.footer-logo h3 {
  font-size: 22px;
  color: #ffdd00;
  /* yellow highlight */
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-logo p {
  font-size: 14px;
  color: #ccc;
  /* subtle gray */
  line-height: 1.5;
  margin: 0;
}


.footer-links h4,
.footer-social h4,
.footer-review h4 {
  text-align: center;
  /* centers everything */
  margin-bottom: 20px;
  /* space below this section */
}

.footer-social h4 {
  margin-bottom: 12px;
  /* spacing between text and icons */
  font-size: 18px;
  color: #fff;
}

.footer-links h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  /* remove bullets */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  /* stack links vertically */
  gap: 10px;
  /* spacing between links */
  align-items: center;
  /* center horizontally */
}

.footer-links ul li a {
  color: #ffffff;
  /* yellow links */
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-links ul li a:hover {
  color: #ffdd00;
  /* white on hover */
  transform: scale(1.05);
  /* subtle zoom */
}

.social-icons {
  display: flex;
  justify-content: center;
  /* centers the icons horizontally */
  gap: 20px;
  /* equal spacing */
}

.social-icons a {
  color: #ffffff;
  /* your yellow color */
  font-size: 22px;
  /* icon size */
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  /* zoom effect */
  color: #ffdd00;
  /* change to white on hover */
}

.footer-review .review-btn {
  display: inline-block;
  background: #ffdd00;
  /* yellow button */
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 30px;
  /* rounded pill */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.footer-review .review-btn:hover {
  background: #ffc107;
  /* darker yellow hover */
  transform: scale(1.05);
  /* smooth zoom */
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.prewedding-hero {
  position: relative;
  height: 100vh;
  background: url("Images/Pre-wedding/53.jpg") no-repeat center center/cover;
}

/* Text Overlay */
.prewedding-hero-overlay {
  position: absolute;
  top: 130px;
  /* adjust spacing from top */
  right: 40px;
  /* adjust spacing from right */
  text-align: right;
  color: #fff;
}

.prewedding-hero-overlay h1 {
  font-size: 1.5rem;
  /* medium size */
  font-weight: 600;
}

/* Button */
.prewedding-hero-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4d6d;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 10px;
}

.prewedding-hero-btn:hover {
  background: #e63956;
}

/* Mobile View */
@media (max-width: 768px) {
  .prewedding-hero {
    background-position: center;
    /* shift image focus to left side */
  }

  .prewedding-hero {
    background-position: 35% center;
    /* move subject more towards right */
  }


  .prewedding-hero-overlay {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }

  .prewedding-hero-overlay h1 {
    font-size: 1.2rem;
    white-space: nowrap;
    /* keep text in one line */
  }

  .prewedding-hero-btn {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

.prewedding-about {
  padding: 80px 20px;
  /* background: #fff; */
  text-align: center;
}

.prewedding-about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.prewedding-about-title {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.prewedding-about-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #ff4d6d;
  margin: 12px auto 0;
  border-radius: 2px;
}

.prewedding-about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlights */
.prewedding-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  /* color: white; */

}

.prewedding-highlight-card {
  background: #eb9efa5b;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  /* color: white; */
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.prewedding-highlight-card i {
  font-size: 2rem;
  color: #ff002f;
  margin-bottom: 15px;
}

.prewedding-highlight-card h3 {
  font-size: 1.3rem;
  /* color: #ffffff; */
  margin-bottom: 10px;
}

.prewedding-highlight-card p {
  font-size: 0.95rem;
  /* color: #ffffff; */
  line-height: 1.6;
}

.wedding-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("Images/Wedding-Images/10.jpg") no-repeat center center;
  background-size: cover;
  background-position: center top;
}

/* Adjust margin-top for small devices */
@media (max-width: 768px) {
  .wedding-hero {
    margin-top: 50px;
    /* adjust the value as needed */
  }
}



/* Text Overlay at Bottom-Center */
.wedding-hero-overlay {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 80%;
  padding: 20px 30px;
  border-radius: 15px;
}


.wedding-hero-overlay h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

/* Button */
.wedding-hero-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4d6d;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 15px;
}

.wedding-hero-btn:hover {
  background: #e63956;
}

/* Responsive Adjustment for Small Devices */
@media (max-width: 768px) {
  .wedding-hero-overlay h1 {
    font-size: 1.5rem;
  }

  .wedding-hero-overlay {
    bottom: 30px;
  }
}

.wedding-highlights-section {
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.wedding-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.wedding-card {
  background: #ffffff7a;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wedding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wedding-card i {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.wedding-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.wedding-card p {
  font-size: 0.95rem;
  color: #555;
}

#heart-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/* Heart shape */
.heart {
  position: absolute;
  width: 40px;
  height: 40px;
  background: red;
  clip-path: path("M20 7 C20 -3, 0 -3, 0 10 C0 20, 20 35, 20 40 C20 35, 40 20, 40 10 C40 -3, 20 -3, 20 7 Z");
  opacity: 0;
  animation: floatUp linear forwards;
}

/* Floating animation */
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.8) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(-50vh) translateX(-20px) scale(1.1) rotate(10deg);
  }

  100% {
    transform: translateY(-110vh) translateX(20px) scale(0.9) rotate(-10deg);
    opacity: 0;
  }
}


/* Floating Music Button */
.music-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* left side like WhatsApp */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #900bef86;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 999;
}

.music-btn:hover {
  background: #6c08b498;
  transform: scale(1.1);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
  /* margin-top: 20px; */
  margin-top: 70px;

}

/* Left Side */
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-left-top .contact-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* keeps full image visible */
  border-radius: 5px;
}

/* For big devices (desktop/laptop) */
@media screen and (min-width: 1024px) {
  .contact-left-top .contact-img {
    max-height: 60vh;
    /* responsive: up to 70% of screen height */
    width: 100%;
    /* keep natural aspect ratio */
    margin: 0 auto;
    /* center if narrower than container */
  }
}

/* Bottom FOLLOW US Section */
.contact-left-bottom {
  background: rgba(144, 11, 239, 0.05);
  padding: 20px;
  border-radius: 12px;
}

/* Right Side Form */
.contact-right {
  flex: 1;
  min-width: 300px;
  /* ensures responsive */
}

.contact-card {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.contact-right {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #900bef;
  font-size: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 20px 15px 45px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #000000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

input::placeholder,
textarea::placeholder,
select {
  color: #000000;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 5px 15px rgba(144, 11, 239, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

select {
  appearance: none;
  background: rgba(255, 255, 255, 0.2) url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" stroke="%23900bef" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="1 5 7 11 13 5"/></svg>') no-repeat right 15px center;
  background-size: 14px;
  padding-right: 40px;
}

textarea {
  resize: none;
}

.contact-right button {
  padding: 15px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #900bef, #6d08b4);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(144, 11, 239, 0.4);
  transition: 0.4s;
}

.contact-right button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(144, 11, 239, 0.6);
}

/* Extra small devices (320px–360px) */
@media (max-width: 360px) {
  .contact-left {
    width: 100%;
    /* stretch full width */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center children */
    justify-content: center;
  }

  .contact-left-top,
  .contact-left-bottom {
    width: 100%;
    /* occupy full width */
    max-width: 100%;
    /* prevent overflow */
    margin: 0 auto;
    /* center block elements */
  }

  .contact-left-top .contact-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    /* force true center */
  }

  .contact-left-bottom {
    margin-top: 15px;
    text-align: center;
    /* center text & icons */
  }
}


.maternity-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("Images/Maternity-images/m-2.jpg") no-repeat right;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  /* top-left alignment on desktop/tablet */
  justify-content: flex-start;
  padding: 60px;
  box-sizing: border-box;
  margin-top: 70px;
}

.maternity-hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  margin-top: 60px;
}

.maternity-hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.maternity-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #900bef;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.maternity-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 425px) {
  .maternity-hero {
    background-image: url('Images/Maternity-images/27.png');
    /* new image */
    background-position: center center;
    /* adjust position if needed */
  }
}


/* 🔹 Mobile/small devices: content bottom, image center, add top margin */
@media (max-width: 600px) {
  .maternity-hero {
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background-size: cover;
  }

  .maternity-hero-overlay {
    text-align: center;
  }

  .maternity-hero-overlay h1 {
    font-size: 28px;
  }

  .maternity-hero-btn {
    display: block;
    margin: 10px auto 0 auto;
  }
}


.maternity-highlights-section {
  padding: 80px 20px;
  text-align: center;
}

.maternity-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.maternity-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.maternity-card {
  background: #ffffff7a;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maternity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.maternity-card i {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.maternity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.maternity-card p {
  font-size: 0.95rem;
  color: #555;
}


.babyshoot-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("Images/Babyshoot/15.jpg") no-repeat center center;
  background-size: cover;
  background-position: center top;
  margin-top: 40px;
}

/* Adjust margin-top for small devices */
@media (max-width: 768px) {
  .babyshoot-hero {
    margin-top: 50px;
    /* adjust the value as needed */
  }
}

.babyshoot-hero-overlay {
  position: absolute;
  bottom: 20px; /* distance from bottom */
  right: 20px;  /* distance from right */
  text-align: right;
  color: #fff;
}

.babyshoot-hero-overlay h1 {
  font-size: clamp(1.5rem, 3vw, 4rem); /* auto resize */
  margin-bottom: 10px;
}

/* Extra tweak for very big desktops (above 1400px) */
@media (min-width: 1400px) {
  .babyshoot-hero-overlay h1 {
    font-size: 2rem;
  }
  .babyshoot-hero-btn {
    font-size: 0.95rem;
    padding: 8px 20px;
  }
}

@media (min-width: 1300px) {
  .babyshoot-hero-overlay {
    top: 20px;
    left: 20px;
    bottom: auto;
    right: auto;
    text-align: left;
    margin-top: 80px;
  }
}

.babyshoot-hero-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: #fff;
  background: #900bef;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.babyshoot-hero-btn:hover {
  background: #6d08c7;
}

.babyshoot-highlights-section {
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.babyshoot-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.babyshoot-card {
  background: #ffffff7a;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.babyshoot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.babyshoot-card i {
  font-size: 2rem;
  color: #ff4d6d;
  margin-bottom: 15px;
}

.babyshoot-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.babyshoot-card p {
  font-size: 0.95rem;
  color: #555;
}

.glass-card {
    backdrop-filter: blur(1px);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }

  .package-feature {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.834);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .package-card.animate {
    transform: translateY(0);
    opacity: 1;
  }

  .package-card {
    transform: translateY(30px);
    opacity: 0;
  }

  @media (max-width: 768px) {
    h2 {
      font-size: 2rem;
    }
    .glass-card {
      padding: 20px;
    }
  }

  .package-card {
    position: relative; /* make ribbon absolute relative to card */
}

.ribbon {
    position: absolute;
    top: 10px;
    right: -10px;
    background-color: red;
    color: white;
    font-weight: 700;
    padding: 5px 15px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 0.8rem;
    z-index: 10;
}

.btn-whatsapp-pulse {
  background: #25d365bd;
  color: white;
  position: fixed;
  bottom: 70px;
  right: 5px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
}

.social-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-btn.whatsapp:hover {
    opacity: 0.8;
}

  .video-controls .btn {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }
  .video-controls .btn:hover {
    background: rgba(0,0,0,0.8);
  }

   /* Default style for desktop */
  #videoOverlayIcon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 50px; /* Default size */
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  }

  /* Smaller devices */
  @media (max-width: 768px) {
    #videoOverlayIcon {
      font-size: 40px; /* smaller on tablets */
    }
  }

  @media (max-width: 480px) {
    #videoOverlayIcon {
      font-size: 20px; /* even smaller on mobile */
    }
  }