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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Uniform Section Spacing */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info span {
  color: #666;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s;
  color: #28a745;
}

.social-link:hover {
  transform: scale(1.2);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

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

.logo-icon {
  background: #28a745;
  color: white;
  width: 75px;
  height: 75px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.logo-icon a {
  width: 100%;
  height: 100%;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.logo-text h1 {
  font-size: 24px;
  color: #000;
  margin-bottom: 2px;
  font-weight: 700;
}

.logo-text p {
  font-size: 12px;
  color: #666;
}

.navigation {
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #28a745;
}

.contact-btn {
  background: #28a745;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #218838;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-section .container {
  width: 100%;
  /* max-width: 100%; */
  /* margin: 0px; */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight {
  color: #28a745;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}
.hero-buttons a {
  color: #fff;
  text-decoration: none !important;
}
.hero-buttons a:hover,
.hero-buttons .btn-secondary:hover a {
  color: #000;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #28a745;
  color: white;
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #000;
}

/* Page Hero */
.page-hero {
  background: #f8f9fa;
  padding: 160px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: #fff;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-top: 4px solid #28a745;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #000;
  font-weight: 600;
}

.service-card p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* About Sections */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-text h3 {
  font-size: 1.5rem;
  color: #000;
  margin: 32px 0 16px;
  font-weight: 600;
}

.about-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

/* Values Section */
.values-section {
  background: #f8f9fa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 16px;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
  background: #fff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.leader-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ccc;
}

.leader-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 8px;
  font-weight: 600;
}

.leader-role {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 16px;
}

.leader-card p {
  color: #666;
  line-height: 1.6;
}

/* Featured Work Section */
.featured-work-section {
  background: #f8f9fa;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.work-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-10px);
}

.work-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.work-card:hover .work-image img {
  transform: scale(1.1);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.work-image:hover .work-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.work-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #28a745;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.work-content {
  padding: 30px;
}

.work-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #000;
  font-weight: 600;
}

.work-content p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating {
  color: #28a745;
  font-weight: 600;
}

.year {
  color: #999;
  font-size: 14px;
}

.view-all-btn {
  text-align: center;
}

/* Mission Section */
.mission-section {
  background: #000;
  color: white;
  text-align: center;
}

.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  color: white;
  font-weight: 700;
}

.mission-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: #000;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: white;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 24px;
  color: #28a745;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.6;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #28a745;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item a {
  color: #ccc;
  text-decoration: none;
}

.contact-item a:hover {
  color: #28a745;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
}

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

.close:hover {
  color: #000;
}

/* Icons */
.icon-movie:before {
  content: "🎬";
}
.icon-music:before {
  content: "🎵";
}
.icon-folk:before {
  content: "💃";
}
.icon-fashion:before {
  content: "👗";
}
.icon-artist:before {
  content: "⭐";
}
.icon-video:before {
  content: "📹";
}
.icon-heart:before {
  content: "❤️";
}
.icon-shield:before {
  content: "🛡️";
}
.icon-users:before {
  content: "👥";
}
.icon-lightbulb:before {
  content: "💡";
}

/* Contact Page Styles - FIXED TO USE GREEN INSTEAD OF ORANGE */
.contact-main-section {
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #28a745;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send-message {
  background: #28a745;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-send-message:hover {
  background: #218838;
}

/* Contact Info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  margin-bottom: 4px;
  font-size: 14px;
}

.office-hours {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.hours-schedule {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
}

.hours-row span:first-child {
  color: #666;
}

.hours-row span:last-child {
  color: #000;
  font-weight: 500;
}

/* Visit Studio Section */
.visit-studio-section {
  background: #f8f9fa;
}

.studio-map {
  /* max-width: 800px; */
  margin: 0 auto;
}

.map-placeholder {
  background: #e9ecef;
  height: 400px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
}

.map-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.map-placeholder h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 8px;
}

.map-placeholder p {
  color: #666;
}

/* FAQ Section */
.faq-section {
  background: #fff;
}

.faq-accordion {
  /* max-width: 800px; */
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  transition: background 0.3s;
}

.faq-item.active .faq-question {
  background: #28a745;
  color: white;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Event Services - Updated to use GREEN instead of ORANGE */
.event-services-section {
  background: #fff;
}

.event-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.event-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid #f0f0f0;
}

.event-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon-circle {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
}

.event-service-card h3 {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 16px;
  font-weight: 600;
}

.event-service-card p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features-list {
  list-style: none;
  text-align: left;
}

.service-features-list li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.service-features-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-item,
  .office-hours {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 15px;
  }

  .hours-schedule {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .mission-content h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .map-placeholder {
    height: 300px;
  }
}

/* Services Page Specific Styles */
.main-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.main-service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.main-service-card:hover {
  transform: translateY(-10px);
}

.main-service-image {
  position: relative;
  height: auto;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: white;
}

.service-overlay-icon {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
  color: white;
}

.service-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.service-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.main-service-content {
  padding: 30px;
}

.main-service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features li {
  list-style: none;
  padding: 4px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.service-price {
  color: #666;
  font-size: 14px;
}

.service-price strong {
  color: #28a745;
  font-size: 16px;
}

.btn-learn-more {
  background: #28a745;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-learn-more:hover {
  background: #218838;
}

/* Additional Services */
.additional-services {
  background: #f8f9fa;
}

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

.additional-service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.additional-service-icon {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: white;
}

.additional-service-card h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 12px;
  font-weight: 600;
}

.additional-service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.additional-service-card ul {
  list-style: none;
}

.additional-service-card li {
  padding: 4px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.additional-service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Process Section */
.process-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 4px;
  background: #28a745;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
}

.process-step h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 12px;
  font-weight: 600;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Artists Page Styles */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.artist-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.artist-card:hover {
  transform: translateY(-10px);
}

.artist-image {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
}

.artist-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: white;
  width: 100%;
}

.artist-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.artist-badge {
  background: #28a745;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.artist-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.artist-role {
  font-size: 1rem;
  opacity: 0.9;
  color: #28a745;
  font-weight: 600;
}

.artist-content {
  padding: 30px;
}

.artist-description {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.artist-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
  text-align: center;
}

.artist-stat {
  flex: 1;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #28a745;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.recent-work {
  margin-bottom: 24px;
}

.recent-work h4 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 16px;
  font-weight: 600;
}

.work-list {
  list-style: none;
}

.work-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.work-item:last-child {
  border-bottom: none;
}

.work-icon {
  width: 32px;
  height: 32px;
  background: #28a745;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.work-details {
  flex: 1;
}

.work-name {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 2px;
}

.work-year {
  font-size: 12px;
  color: #999;
}

.artist-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.artist-social {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  transition: all 0.3s;
  font-size: 16px;
}

.social-icon.instagram:hover {
  background: #e4405f;
  color: white;
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-icon.youtube:hover {
  background: #ff0000;
  color: white;
}

/* Behind the Scenes Section - Fix layout */
.behind-scenes-section {
  background: #fff;
}

.behind-scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.behind-scene-item {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.behind-scene-item:hover {
  transform: scale(1.02);
}

.behind-scene-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behind-scene-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

.behind-scene-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.behind-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(40, 167, 69, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.behind-scene-item:hover .behind-play-button {
  opacity: 1;
}

@media (max-width: 768px) {
  .behind-scenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-stats {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .behind-scenes-grid {
    grid-template-columns: 1fr;
  }

  .artist-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* Gallery Page Styles */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 4px;
}

.filter-tab {
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
}

.filter-tab.active {
  background: #28a745;
  color: white;
}

.filter-tab:hover:not(.active) {
  background: #e9ecef;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-box {
  position: relative;
}

.search-input {
  padding: 12px 16px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 250px;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.view-toggle {
  display: flex;
  gap: 4px;
  background: #f8f9fa;
  border-radius: 6px;
  padding: 4px;
}

.view-btn {
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.view-btn.active {
  background: #28a745;
  color: white;
}

/* Gallery Grid View */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

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

.gallery-thumbnail {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  overflow: hidden;
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-play-btn {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.gallery-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.gallery-content {
  padding: 20px;
}

.gallery-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.gallery-views {
  font-weight: 500;
}

/* Gallery List View */
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-list-item {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-list-item:hover {
  transform: translateY(-2px);
}

.gallery-list-thumbnail {
  position: relative;
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  flex-shrink: 0;
}

.gallery-list-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-list-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-list-item:hover .gallery-list-overlay {
  opacity: 1;
}

.gallery-list-play-btn {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.gallery-list-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.gallery-list-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.gallery-list-badge {
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.gallery-list-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.gallery-list-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.gallery-list-duration {
  font-weight: 600;
  color: #28a745;
}

/* Hidden class for view switching */
.hidden {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gallery-controls {
    justify-content: space-between;
  }

  .search-input {
    width: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-list-item {
    flex-direction: column;
  }

  .gallery-list-thumbnail {
    width: 100%;
    height: 180px;
  }
}

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

  .search-input {
    width: 150px;
  }

  .filter-tabs {
    gap: 4px;
  }

  .filter-tab {
    padding: 8px 12px;
    font-size: 14px;
  }
}

.btn-view-portfolio {
  background: #28a745;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-view-portfolio:hover {
  background: #218838;
}

/* Events Page Styles */
.upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.upcoming-event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.upcoming-event-card:hover {
  transform: translateY(-5px);
}

.event-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.event-badge.upcoming {
  background: #28a745;
  color: white;
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: white;
}

.event-overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.event-overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.event-content {
  padding: 30px;
}

.event-description {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.event-details {
  margin-bottom: 24px;
}

.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-icon {
  font-size: 16px;
  margin-top: 2px;
}

.detail-info strong {
  display: block;
  color: #000;
  font-weight: 600;
  margin-bottom: 2px;
}

.detail-info span {
  color: #666;
  font-size: 14px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.event-stats {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
}

.price {
  color: #28a745;
  font-weight: 600;
}

.btn-book-tickets {
  background: #28a745;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-book-tickets:hover {
  background: #218838;
}

/* Past Events */
.past-events-section {
  background: #f8f9fa;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.past-event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.past-event-card:hover {
  transform: translateY(-5px);
}

.past-event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

.past-event-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.event-date {
  font-size: 0.9rem;
  opacity: 0.9;
}

.past-event-content {
  padding: 20px;
}

.past-event-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.past-event-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}

.attendance {
  color: #666;
}

.rating {
  color: #28a745;
  font-weight: 600;
}

.past-event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.views {
  font-size: 12px;
  color: #999;
}

.btn-view-gallery {
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-view-gallery:hover {
  background: #218838;
}

/* Event Services */
.event-services-section {
  background: #fff;
}

.event-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.event-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

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

.event-service-card .service-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
}

.event-service-card h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 16px;
  font-weight: 600;
}

.event-service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Plan Event CTA */
.plan-event-section {
  background: #000;
  color: white;
  text-align: center;
}

.plan-event-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.plan-event-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .upcoming-events-grid {
    grid-template-columns: 1fr;
  }

  .past-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .past-events-grid {
    grid-template-columns: 1fr;
  }

  .event-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.work-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  overflow: hidden;
}

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

.work-overlay,
.play-button {
  position: absolute;
  z-index: 2;
  /* keep your overlay styles if needed */
}

/* Custom New Csss */

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  background: transparent;
  padding: 0;
  width: 50%;
  height: -webkit-fill-available;
}
span.close {
  position: absolute;
  right: -15px;
  top: -15px;
  padding: 0;
  margin: 0;
  line-height: normal;
  letter-spacing: normal;
  background: #000;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #fff;
}
.modal-content iframe {
  height: 100%;
  object-fit: cover !important;
}
.work-image {
  height: 200px;
}
.bgn1 {
  background: #f8f9fa !important;
}
