/* CG Film Vikas Nigam - Main Stylesheet */
/* Organized by sections for maintainability */

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

/* ===== COLORS ===== */
:root {
  --primary: #2563EB;
  --secondary: #14B8A6;
  --accent: #F59E0B;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-600: #4B5563;
  --gray-900: #111827;
}

/* ===== LAYOUT CLASSES ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.sticky {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .navbar-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .navbar-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.navbar-list {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .navbar-list {
    display: flex;
  }
}

.nav-item a {
  color: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-item a:hover {
  color: var(--primary);
}

.nav-item.active a {
  color: var(--primary);
  font-weight: 600;
}

/* Desktop Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-link {
  cursor: pointer;
}

.desktop-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 16rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f3f4f6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  padding: 0.5rem 0;
  z-index: 50;
}

.nav-dropdown:hover .desktop-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: inherit;
  text-align: left;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.desktop-dropdown-link:hover {
  background-color: #f9fafb;
  color: var(--primary);
}

.dropdown-icon {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.group:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  gap: 0.5rem;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-toggle {
  font-size: 1.25rem;
  padding: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-link:hover {
  color: var(--primary);
}

.mobile-dropdown-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-menu {
  display: none;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-left: 1rem;
  gap: 0.25rem;
}

.mobile-dropdown-toggle[aria-expanded="true"] + .mobile-dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-dropdown-link {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  display: block;
  text-decoration: none;
}

.mobile-dropdown-link:hover {
  color: var(--primary);
}

/* Hamburger Animation */
.hamburger {
  font-size: 1.25rem;
  padding: 0.25rem;
  transition: transform 0.2s ease;
}

.hamburger.active i {
  transform: rotate(90deg);
}

/* ===== HERO SECTIONS ===== */
.hero-section {
  height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-full {
  min-height: 100vh;
}

.hero-half {
  min-height: 60vh;
  margin-bottom: 5rem;
}

.hero-bg-primary {
  background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
}

.hero-bg-accent {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.3));
}

.hero-bg-booking {
  background: linear-gradient(to bottom right, var(--accent), rgb(251, 146, 60));
}

.hero-overlay {
  background-size: cover;
  background-position: center;
}

.hero-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
  text-shadow: 0 25px 25px rgb(0 0 0 / 0.3);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07));
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #0d9488;
  transform: scale(1.05);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f9fafb;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.5s ease;
  border: 1px solid #f3f4f6;
}

.card:hover {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.875rem;
}

.icon-primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.icon-secondary {
  background: rgba(20, 184, 166, 0.1);
  color: var(--secondary);
}

.icon-accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.card-text {
  color: #4b5563;
  text-align: center;
  font-size: 1.125rem;
}

.grid-cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr 1fr;
  }
  .hero-section {
    /* height: 500px; */
  }
}

@media (min-width: 1024px) {
  .grid-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== FORMS ===== */
.form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: white;
  padding-top: 3rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-text {
  opacity: 0.75;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  margin-bottom: 0.5rem;
  color: inherit;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-divider {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  opacity: 0.75;
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-secondary { background-color: var(--secondary); }
.text-accent { color: var(--accent); }
.bg-accent { background-color: var(--accent); }

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-3xl { box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3); }

.transition-all { transition: all 0.3s ease; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-2xl:hover { box-shadow: var(--shadow-2xl); }

.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACKGROUND IMAGES ===== */
.bg-hero-home { 
  background-image: url('assets/image/home_bg.png');
  background-size: cover;
  background-position: center;
}

.bg-hero-locations { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-facilities { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-projects { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-gallery { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
  background-position: center;
}

.bg-hero-contact { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-chairman { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-corporation { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-video-gallery { 
  background-image: url('assets/image/breadcrumb.png');
  background-size: cover;
}

.bg-hero-booking { 
  background: linear-gradient(to bottom right, var(--accent), rgb(251, 146, 60));
}

/* ===== CARDS WITH BACKGROUND ===== */
.location-card-bg {
  height: 20rem;
  position: relative;
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.group:hover .location-card-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.location-card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  z-index: 10;
}

.location-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.project-card-img {
  height: 16rem;
  position: relative;
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group:hover .project-badge {
  opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .mobile-dropdown-menu {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ===== MAP ===== */
.map-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.map-iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ===== EVENT PAGE STYLES ===== */
.event-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card .group\/image:hover img {
  transform: scale(1.1);
}
.event-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.event-btn {
  background: linear-gradient(135deg, var(--primary), #1D4ED8);
  transition: all 0.3s ease;
}
.event-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37,99,235,0.4);
}

/* Line Clamp Utilities (Tailwind-like) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Fade-in-up for Events */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-up.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@media (max-width: 768px) {
  .lg\\:col-span-2 { grid-column: span 1 / span 1 !important; }
}


/* -------------- homr slider -------------- */

.slider-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider img {
  width: calc(100% / 3); /* 3 images visible */
  height: 250px;
  object-fit: cover;
  padding: 5px;
  border-radius: 10px;
}

/* Navigation buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 0; }
.next { right: 0; }

/* Responsive */
@media (max-width: 768px) {
  .slider img {
    width: calc(100% / 2);
  }
}

@media (max-width: 480px) {
  .slider img {
    width: 100%;
  }
}

.home-slider-section{  
  background-image: url('assets/image/img1.jpg');
  background-size: cover;
}

 /* behind the seen  */

.bts-section {
  /* height: 100vh; */
  background: url('assets/image/bts.png') no-repeat center center/cover;
  background-attachment: fixed; /* Parallax Effect */
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  padding: 50px;
}

/* Dark Glass Box */
.bts-content {
  max-width: 450px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(10px);
}

/* Text Styling */
.bts-content h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.bts-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.bts-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .bts-section {
    justify-content: center;
    padding: 20px;
  }

  .bts-content {
    max-width: 100%;
  }

  .bts-content h2 {
    font-size: 24px;
  }
}

/* about */

.about-section {
  /* background: #f2f2f2; */
  padding: 80px 0;
  font-family: 'Georgia', serif;
  display: flex;
  align-items: center;
}

.camera-icon {
  display: block;
  position: absolute;
  left: 68px;
  /* top: 50%; */
  transform: translateY(-50%);
  z-index: 2;
}

.camera-icon img {
  width: 120px;
  /* opacity: 0.2; */
  animation: floatY 3s ease-in-out infinite;
}
.camera-icon-right {
  display: block;
  position: absolute;
  right: 68px;
  /* top: 50%; */
  transform: translateY(-165%);
  z-index: 2;
}

.camera-icon-right img {
  width: 120px;
  /* opacity: 0.2; */
  animation: floatY 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatY {
  0% {
    transform: translateY(-50%) translateY(0px);
  }
  50% {
    transform: translateY(-50%) translateY(-15px);
  }
  100% {
    transform: translateY(-50%) translateY(0px);
  }
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Icon */
.about-icon {
  font-size: 100px;
  color: #ccc;
  flex-shrink: 0;
}

/* Content */
.about-content {
  text-align: center;
  flex: 1;
}

/* Top Stars Line */
.top-line {
  color: #e53935;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.top-line .brand {
  margin: 0 10px;
  font-weight: bold;
}

/* Heading */
.about-content h2 {
  font-size: 34px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Paragraph */
.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-icon {
    font-size: 70px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* ------------ad slider---------------- */

.ads-section{
  padding: 80px 0;
}

.ads-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ads-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.ads-slide {
  min-width: 100%;
  flex-shrink: 0; 
}

.ads-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Buttons */
.ads-prev, .ads-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.ads-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


.ads-prev { left: 10px; }
.ads-next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .ads-slide img {
    height: 220px;
  }
}

/* ---------------------------- */

.cinematic_section {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f2f2f2;
  overflow: hidden;
  background-image: url('assets/image/bg-section.webp');
  background-size: cover;
}

/* BACKGROUND PATTERN */
.cinematic_section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* CONTAINER */
.cinematic-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* COMMON ITEM */
.cinematic-item {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  transition: 0.4s;
}

.cinematic-item img {
  width: 120px;
  opacity: 0.85;
  filter: grayscale(100%);
}

/* POSITIONS */
.item1 { top: 50%; left: 10%; transform: translateY(-50%) rotate(-5deg); }
.item2 { top: 25%; left: 40%; transform: rotate(5deg); }
.item3 { top: 60%; right: 10%; transform: rotate(-8deg); }
.item4 { top: 15%; right: 25%; transform: rotate(6deg); }
.item5 { bottom: 9%; left: 30%; transform: rotate(-3deg); }

/* HOVER EFFECT */
.cinematic-item:hover img {
  transform: scale(1.2);
  opacity: 1;
  filter: grayscale(0%);
}

/* FLOAT ANIMATION */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .cinematic_section {
    height: 350px;
  }

  .cinematic-item img {
    width: 70px;
  }

  .item1 { left: 5%; }
  .item2 { left: 30%; }
  .item3 { right: 5%; }
  .item4 { right: 25%; }
  .item5 { left: 20%; }

  .camera-icon-right{
    display: none;
  }
  .camera-icon{
    display: none;
  }

}

/* isolate everything with adv- prefix (no conflict) */

.adv-section {}

.adv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.adv-overlay h3 {
  font-size: 22px;
  font-weight: bold;
}

.adv-overlay p {
  font-size: 14px;
  opacity: 0.8;
  margin: 10px 0;
}

.adv-overlay a {
  background: #dc2626;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

/* buttons */
.adv-next,
.adv-prev {
  color: #fff;
  transform: scale(0.7);
}

/* pagination */
.adv-pagination .swiper-pagination-bullet-active {
  background: #dc2626;
}

/* card */
.adv-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.adv-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.adv-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.adv-card p {
  color: #555;
  margin-bottom: 20px;
}

.adv-card a {
  /* color: #dc2626; */
  font-weight: bold;
}