@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  scroll-behavior: smooth;
}

:root {
  --bg-primary: #0f0c29;
  --bg-secondary: #302b63;
  --bg-tertiary: #24243e;
  --accent-cyan: #00ffff;
  --accent-purple: #ff00ff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
}

body { 
  font-family: 'Poppins', sans-serif; 
  background: var(--bg-primary);
  color: var(--text-primary); 
  overflow-x: hidden;
}

/* Glass Effect */
.glass {
  background: var(--glass-bg);
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  transition: all 0.3s ease;
}

/* Header - ALWAYS CENTER & NO MOVE */
.header {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: fadeInDown 0.5s ease;
  transition: none !important;
}

.logo img { height: 48px; }

.nav-links { 
  display: flex; 
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  text-decoration: none;
  transition: all 0.35s ease;
  padding-bottom: 8px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: all 0.35s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* --- NEW: Active Navbar Link Styling --- */
.nav-links a:hover, 
.nav-links a.active { 
  color: white; 
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.nav-links a:hover::after, 
.nav-links a.active::after { 
  width: 100%; 
}

.hamburger { 
  display: none; 
  font-size: 1.8rem; 
  cursor: pointer; 
  color: white; 
}

@keyframes fadeInDown { 
  from { opacity: 0; transform: translate(-50%, -30px); } 
  to { opacity: 1; transform: translate(-50%, 0); } 
}

/* Hero Section */
.hero {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content { 
  max-width: 1000px; 
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  animation: heroIn 1s ease-out;
}

.hero h1 span {
  display: block;
  font-size: clamp(4rem, 10vw, 6rem);
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  animation: heroIn 1s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 1s ease-out 0.4s backwards;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn.primary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { 
  padding: 120px 5%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title { 
  text-align: center; 
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Categories & Tabs */

.category-section {
  padding-top: 80px; 
  min-height: 100vh;
}

.segmented-control {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.segmented-control .tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.segmented-control .tab-btn:hover {
  color: white;
}

.segmented-control .tab-btn.active {
  background: var(--glass-bg);
  color: var(--text-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.tab-content-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-out;
  min-height: 50vh;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Scroll Up Button */
#scroll-up-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  padding: 0;
}

#scroll-up-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-up-btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}


/* Loading Indicator */
.loading-indicator {
  text-align: center;
  padding: 4rem 2rem;
}

.spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.no-content {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* === 3D PHOTO CAROUSEL === */
.carousel-3d,
.video-3d-carousel,
.posters-3d-carousel {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 120px;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

.carousel-3d .swiper-slide {
  width: 400px !important;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Vertical photos */
.carousel-3d .swiper-slide.vertical-photo {
  width: 400px !important;
  height: 560px;
}

/* Horizontal photos */
.carousel-3d .swiper-slide.horizontal-photo {
  width: 480px !important;
  top: 130px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d .swiper-slide.horizontal-photo img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.carousel-3d .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.carousel-3d .swiper-slide-active {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.carousel-3d .swiper-slide-active img {
  transform: scale(1.02);
}

.carousel-3d .swiper-slide:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* === 3D VIDEO CAROUSEL === */
.video-3d-carousel .swiper-slide {
  width: 320px !important;
  height: 570px;
  aspect-ratio: 9/16;
  border-radius: 36px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.6s ease;
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-3d-carousel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 36px;
  display: block;
  cursor: pointer;
}

/* Video Controls Overlay */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 15;
  pointer-events: none;
}

.swiper-slide:hover .video-controls {
  opacity: 1;
  pointer-events: all;
}

.video-controls-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-progress {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.video-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 10px;
  width: 0%;
  transition: width 0.1s linear;
}

.video-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.video-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.video-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-time {
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
}

.video-3d-carousel .swiper-slide-active {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

/* === POSTERS 3D CAROUSEL === */
.posters-3d-carousel .swiper-slide {
  width: 400px !important;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.posters-3d-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.posters-3d-carousel .swiper-slide-active {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.posters-3d-carousel .swiper-slide-active img {
  transform: scale(1.02);
}

.posters-3d-carousel .swiper-slide:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.swiper-pagination {
  display: none !important;
}

/* Custom Navigation Buttons */
.custom-nav {
  position: absolute; /* detach from the slide flow */
  bottom: 30px;       /* sits in the empty space at the bottom */
  left: 0;
  width: 100%;        /* span the full width of the screen */
  display: flex;
  justify-content: center; /* force buttons to the center */
  align-items: center;
  gap: 2rem;
  z-index: 10;        /* ensure it sits on top of everything */
  margin-top: 0;      /* remove old margin */
  pointer-events: none; /* allows clicking through the empty space around buttons */
}

.nav-btn {
  pointer-events: auto; 
  /* Existing styles below... */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn:active {
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  background: rgba(0, 0, 0, 0.2);
  padding: 120px 5% 140px;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.contact-info {
  padding: 3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-info-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-wrapper {
  padding: 3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

#contact-form { 
  display: grid; 
  gap: 1.5rem; 
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(0, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

.submit-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.success-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(0, 255, 0, 0.15);
  border: 1px solid rgba(0, 255, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 3.5rem;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 10;
  width: 90%;
}

.success-message.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.success-message i {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 1.2rem;
}

#contact-form.submitted {
  opacity: 0.3;
  pointer-events: none;
}

.contact-email {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.15rem;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}

.contact-email a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 5% 3rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 50px;
  margin: 0 auto;
}

.footer-description {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* === FAQ SECTION === */
.faq-section {
  background: transparent;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 1.8rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-question i {
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.8rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: rgba(15, 12, 41, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 100px 30px 50px;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  overflow-y: auto;
}

.sidebar.active { left: 0; }

.sidebar ul { list-style: none; }
.sidebar ul li { margin: 1.8rem 0; }

.sidebar ul a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  padding: 8px 0;
}

.sidebar ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: all 0.3s ease;
}

.sidebar ul a:hover,
.sidebar ul a.active { 
  opacity: 1; 
  color: var(--accent-cyan);
}

.sidebar ul a:hover::after,
.sidebar ul a.active::after {
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 9998;
}

.overlay.active { 
  opacity: 1; 
  visibility: visible; 
}

/* Header stays centered */
body.sidebar-active {
  overflow: hidden;
}

.header {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* ==================== CUSTOM MODAL ==================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Darker overlay for better focus */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Ensure it's above everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    border-radius: 20px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.active .custom-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header i {
    font-size: 3.5rem;
    color: var(--accent-purple); /* Using purple for alert emphasis */
    margin-bottom: 0.8rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.modal-footer button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* UPDATED: Styling for the liquid glass button. Removed transparent gradient fill for visibility. */
.modal-close-btn.glass {
    /* Set text color to white for visibility */
    color: var(--text-primary);
    
    /* Ensure the button itself has a good backdrop blur and correct base color */
    background: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-close-btn.glass:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

/* ==================== NEW ADDITIONS: PROJECTS & SERVICES ==================== */

/* --- UPDATED: PROJECTS CAROUSEL (Replaces old grid) --- */
.projects-carousel {
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
}

.projects-carousel .swiper-slide {
    height: auto; /* Allow content to dictate height */
    display: flex;
    justify-content: center;
}

/* Adjust project card for carousel */
.project-card {
    position: relative;
    height: 450px;
    width: 100%; /* Fill slide width */
    max-width: 400px; /* Max width for aesthetics */
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    display: block;
    background: #000;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Gradient Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 25px 90px;
    pointer-events: none;
}

.card-overlay h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.card-overlay p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Floating Bottom Bar (Neumorphism) */
.floating-bar {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    pointer-events: all;
}

.floating-bar span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.floating-bar .action-btn {
    width: 44px;
    height: 44px;
    background: var(--text-primary);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.project-card:hover .action-btn {
    transform: rotate(-45deg);
    background: var(--accent-cyan);
}

/* New Projects Carousel Navigation/Pagination */
.project-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.project-pagination .swiper-pagination-bullet-active {
    background: var(--accent-cyan);
}

.project-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.project-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.project-prev { left: 10px; }
.project-next { right: 10px; }


/* --- PROFILE CARDS (SERVICES) --- */
.services-list ul {
    list-style: none;
    line-height: 2.2;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.services-list i {
    color: var(--accent-cyan);
    margin-right: 15px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-card {
    position: relative;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    background: #000;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    padding: 20px 25px 95px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.profile-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified { color: #00b894; font-size: 1rem; }

.profile-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.profile-bar { padding: 0 6px 0 20px; }

.profile-bar .stats {
    display: flex;
    gap: 15px;
}

.profile-bar .stats span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* UPDATED: Profile Actions (Email + WhatsApp) */
.profile-actions {
    display: flex;
    gap: 8px;
    padding-right: 6px;
}

.profile-action-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-action-btn:hover {
    background: var(--accent-cyan);
    color: black;
    transform: scale(1.1);
}


/* --- PROJECT DETAIL PAGE (Back Button, etc.) --- */
.project-page-container {
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 50px;
}

.project-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.project-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-align: center;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.back-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-circle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.project-about-section {
    padding: 0 20px;
    margin-bottom: 3rem;
}

.about-card-static {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px; 
    backdrop-filter: blur(15px);
}

.about-card-static h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.about-card-static p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AUTHOR WIDGET (White Pill, WhatsApp Icon) */
.media-author-widget {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center content since icon is removed */
    gap: 30px; 
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 20;
    min-width: 280px;
}

.widget-text {
    color: #ffffffff;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* UPDATED: Author Link Style */
.author-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.author-link:hover strong {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.widget-text strong {
    font-weight: 700;
    color: #ffffffff;
    transition: color 0.3s ease;
}

/* ==================== FINAL MOBILE RESPONSIVENESS (Placed at end to override) ==================== */
@media (max-width: 992px) {
  .hamburger { display: block; }
  .nav-links { display: none; }
  .header { padding: 20px; top: 10px; }
  
  .segmented-control {
    flex-wrap: wrap;
    padding: 6px;
    max-width: 90%;
    border-radius: 30px;
  }

  .segmented-control .tab-btn {
    flex-basis: 48%; /* Two per row on smaller screens */
    margin: 4px 0;
    padding: 10px 15px;
  }
  
  .carousel-3d .swiper-slide { 
    width: 340px !important; 
    height: 480px; 
  }
  
  .carousel-3d .swiper-slide.horizontal-photo {
    width: 400px !important;
    top:150px;
    height: 300px;
  }
  
  .video-3d-carousel .swiper-slide { 
    width: 280px !important; 
    height: 500px; 
  }
  
  .posters-3d-carousel .swiper-slide { 
    width: 340px !important; 
    height: 480px; 
  }
  
  .nav-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .section { 
    padding: 80px 4%; 
    min-height: auto;
  }
  
  .section-title { 
    font-size: 2.2rem; 
    margin-bottom: 0.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  .hero h1 { 
    font-size: 2.8rem; 
  }
  
  .hero h1 span {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons { 
    flex-direction: column; 
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  .footer-links { 
    flex-direction: column; 
    gap: 1.5rem;
    align-items: center;
  }
  
  .contact-container { 
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 2.5rem 2.5rem; 
  }
  
  .carousel-3d, 
  .video-3d-carousel, 
  .posters-3d-carousel {
    padding: 80px 10px 100px;
    min-height: 600px;
  }
  
  .carousel-3d .swiper-slide { 
    width: 300px !important; 
    height: 420px; 
  }
  
  .carousel-3d .swiper-slide.horizontal-photo {
    width: 340px !important;
    top:200px;
    height: 250px;
  }
  
  .video-3d-carousel .swiper-slide { 
    width: 260px !important; 
    height: 460px; 
  }
  
  .posters-3d-carousel .swiper-slide { 
    width: 300px !important; 
    height: 420px; 
  }
  
  .video-controls {
    padding: 15px;
  }
  
  .video-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .video-time {
    font-size: 0.75rem;
  }
  
  .custom-nav {
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .faq-question {
    padding: 1.5rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .success-message {
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }
  
  .success-message i {
    font-size: 2.5rem;
  }
  
  .success-message h3 {
    font-size: 1.3rem;
  }

  .about-content {
    padding: 2.5rem 1.5rem;
  }

  /* --- SPECIFIC MOBILE FIXES FOR NEW GRIDS --- */
  .profiles-grid {
    grid-template-columns: 1fr; /* Force 1 column on mobile */
    gap: 1.5rem;
    padding: 0 15px;
  }
  
  .project-card {
    height: 380px; /* Reduced height for mobile */
  }
  
  .profile-card {
    height: 420px; /* Reduced height for mobile */
  }

  /* Adjust Floating Bar on Mobile */
  .floating-bar {
    height: 50px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  
  .floating-bar span {
    font-size: 0.85rem;
  }
  
  .floating-bar .action-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  
  /* Text adjustments */
  .card-overlay h3, .profile-info h3 {
    font-size: 1.5rem;
  }
  
  .card-overlay {
    padding-bottom: 80px; /* Ensure text doesn't overlap floating bar */
  }
  
  .profile-overlay {
    padding-bottom: 80px;
  }

  /* Detail Page Mobile Adjustments */
  .project-top-nav {
    margin-top: 10px;
  }
  
  .project-page-title {
    font-size: 1.8rem;
  }
  
  .about-card-static {
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }
  
  /* Widget Mobile Fix */
  .media-author-widget {
    width: 90%;
    margin-top: 20px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h1 span {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
  
  .section-title::after {
    width: 60px;
  }

  .segmented-control {
    flex-wrap: wrap;
    padding: 6px;
    max-width: 90%;
    border-radius: 30px;
  }
  
  .segmented-control .tab-btn {
    flex-basis: 48%; /* Two per row on smaller screens */
    margin: 4px 0;
    padding: 10px 15px;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .carousel-3d,
  .video-3d-carousel,
  .posters-3d-carousel {
    padding: 60px 10px 80px;
    min-height: 550px;
  }
  
  .carousel-3d .swiper-slide {
    width: 280px !important;
    height: 380px;
  }
  
  .carousel-3d .swiper-slide.horizontal-photo {
    width: 300px !important;
    height: 220px;
    top:200px
  }
  
  .video-3d-carousel .swiper-slide {
    width: 240px !important;
    height: 420px;
  }
  
  .posters-3d-carousel .swiper-slide {
    width: 280px !important;
    height: 380px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .contact-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .faq-question {
    padding: 1.2rem 1rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
}

/* ==================== IMAGE PROTECTION UTILITIES ==================== */

/* 1. Prevent selecting image or text */
.no-save {
  -webkit-user-select: none;  /* Chrome, Safari, Opera */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Standard */
  -webkit-touch-callout: none; /* iOS Safari - prevents context menu on long press */
  pointer-events: none;       /* Makes image unclickable (clicks go to overlay) */
}

/* 2. Container for the image and its invisible overlay */
.protected-img-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 3. The Invisible Overlay */
.protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5; /* Sit above the image */
  background: transparent; /* Invisible */
  cursor: pointer; /* Maintains clickability for navigation */
}
/* ==================== WATERMARK SYSTEM (Mobile & Desktop Safe) ==================== */

/* 1. The Watermark Layer */
.watermark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Clicks pass through */
  z-index: 3; /* Sits ABOVE image, but BELOW buttons */
  overflow: hidden;
  border-radius: inherit; /* Matches the rounded corners of your cards */
}

/* 2. Diagonal Repeating Pattern */
.watermark-overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.30; /* Adjusted for visibility */
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='50%25' y='50%25' fill='white' font-family='Poppins, sans-serif' font-weight='600' font-size='24' text-anchor='middle' dominant-baseline='middle' transform='rotate(-45 150 150)'%3Econsurv qreative%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  transform: rotate(0deg); 
  pointer-events: none;
}

/* 3. LAYERING FIX: Force UI elements ABOVE the watermark */

/* Text Gradient Overlay - Level 4 */
/* This ensures the project title text is readable over the pattern */
.card-overlay, 
.profile-overlay {
  z-index: 4; 
  position: absolute; 
}

/* === CRITICAL FIX FOR FLOATING BAR === */
/* Level 5 (Top Priority) */
/* This ensures the white bar and buttons sit ON TOP of the watermark */
.floating-bar, 
.video-controls, 
.custom-nav {
  z-index: 5; 
  position: absolute;
}

/* 4. Parent Container Fix */
/* Necessary for the absolute positioning to work correctly */
.project-card, 
.profile-card, 
.swiper-slide,
.protected-img-container {
  position: relative !important;
  /* Mobile Safari Fix: Prevents watermark from bleeding outside rounded corners */
  -webkit-transform: translateZ(0); 
}