/* GLOBAL CONTAINER FIX */

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.nav-container {
  display: flex;
  justify-content: space-between; /* 🔥 pushes nav to right */
  align-items: center;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #008000;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.logo img {
  width: 40px;
  height: auto;
}

nav a {
  margin: 0 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff6f00;
}

/* INTRO PAGE */
.intro-body {
  overflow: hidden;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.intro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 128, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.enter-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #ff6f00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.enter-btn:hover {
  background: #e65c00;
}

/* HERO */
.hero {
  padding: 100px;
  text-align: center;
  background: linear-gradient(to right, #ff6f00, #008000);
  color: white;
}

/* HOME CONTENT */
.home-content {
  display: flex;
  gap: 30px;
  padding: 60px;
}

.home-content div {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.home-content img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* PAGE HEADER */
.page-header {
  padding: 80px;
  text-align: center;
  background: #ff6f00;
  color: white;
}

/* ABOUT */
.about-content {
  display: flex;
  gap: 40px;
  padding: 60px;
  align-items: center;
}

.about-content img {
  width: 50%;
  border-radius: 10px;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px;
}

.service-card {
  background: #008000;
  color: white;
  padding: 30px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  background: #ff6f00;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 60px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTACT */
.contact-form {
  padding: 60px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 60%;
  margin: 15px auto;
  padding: 12px;
  border: 2px solid #008000;
  border-radius: 5px;
}

.contact-form button {
  padding: 12px 25px;
  background: #ff6f00;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #008000;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #008000;
  color: white;
}
/* SECOND HOME SECTION */
.home-extra {
  display: flex;
  gap: 30px;
  padding: 60px;
  background: #ffffff;
}

.extra-card {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.extra-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.extra-card h3 {
  color: #008000;
  margin-bottom: 10px;
}

.extra-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: #008000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ff6f00;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* DANCE CLASSES PAGE */
.classes-section {
  display: flex;
  gap: 30px;
  padding: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.class-card {
  background: white;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}

.class-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.class-card h3 {
  color: #ff6f00;
  margin-bottom: 10px;
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* SECOND SECTION - DANCE CLASSES */
.classes-extra {
  display: flex;
  gap: 30px;
  padding: 60px;
  background: #f9f9f9;
  justify-content: center;
  flex-wrap: wrap;
}

.extra-class-card {
  background: white;
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}

.extra-class-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.extra-class-card h3 {
  color: #008000;
  margin-bottom: 10px;
}

.extra-class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
/* SECOND ABOUT SECTION */
.about-company {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: #ffffff;
}

.about-company-text {
  flex: 1;
}

.about-company-text h2 {
  color: #ff6f00;
  margin-bottom: 20px;
}

.about-company-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-company-image {
  flex: 1;
}

.about-company-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about-text h2 {
  color: #008000;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
}

.about-image {
  flex: 1;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #008000;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.service-price {
  font-size: 20px;
  font-weight: bold;
  color: #ff6f00;
  margin: 10px 0 15px 0;
}

/* SERVICES GRID */

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  padding: 60px;
}

.service-box {
  background: white;

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s;

  position: relative;

  text-align: center;
}

.service-box img {
  width: 100%;

  height: 200px;

  object-fit: cover;
}

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

.price-badge {
  position: absolute;

  top: 15px;

  left: 15px;

  background: #ff6f00;

  color: white;

  padding: 8px 15px;

  border-radius: 5px;

  font-weight: bold;
}

.book-btn {
  display: inline-block;

  margin: 15px;

  padding: 10px 20px;

  background: #008000;

  color: white;

  text-decoration: none;

  border-radius: 5px;
}

.book-btn:hover {
  background: #ff6f00;
}

/* CTA */

.service-cta {
  text-align: center;

  padding: 60px;

  background: linear-gradient(to right, #ff6f00, #008000);

  color: white;
}

.cta-btn {
  display: inline-block;

  margin-top: 20px;

  padding: 15px 30px;

  background: white;

  color: #008000;

  text-decoration: none;

  border-radius: 5px;

  font-weight: bold;
}

/* ELITE HERO */
.hero-services {
  position: relative;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1520975916090-3105956dac38")
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 128, 0, 0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 20px;
  animation: fadeInUp 1s ease;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px;
}

.service-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-box:hover img {
  transform: scale(1.05);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.price-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6f00;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}

.service-box:hover .price-badge {
  transform: scale(1.1);
}

.book-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 25px;
  background: #008000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #ff6f00;
}

/* MODAL */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  position: relative;
}

.modal-content h2 {
  color: #ff6f00;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #008000;
}

/* CTA */
.service-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #ff6f00, #008000);
  color: white;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  background: white;
  color: #008000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero with African overlay */
.hero-services {
  position: relative;
  height: 450px;
  background: url("https://images.unsplash.com/photo-1520975916090-3105956dac38")
    center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 128, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 48px;
  animation: fadeInDown 1s ease;
}
.hero-content p {
  font-size: 20px;
  animation: fadeInUp 1s ease;
}

/* Grid and service boxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px;
}
.service-box {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-box:hover img {
  transform: scale(1.05);
}
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.price-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6f00;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}
.service-box:hover .price-badge {
  transform: scale(1.1);
}
.book-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 25px;
  background: #008000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.book-btn:hover {
  background: #ff6f00;
}

/* Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: left;
  position: relative;
}
.modal-content h2 {
  color: #ff6f00;
  margin-bottom: 15px;
}
.modal-content p {
  font-size: 16px;
  line-height: 1.6;
}
.modal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}
.modal-content table td {
  padding: 8px;
  border: 1px solid #ddd;
}
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #008000;
}

/* CTA */
.service-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #ff6f00, #008000);
  color: white;
}
.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 35px;
  background: white;
  color: #008000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh; /* allow scrolling */
  overflow-y: auto; /* enable vertical scroll */
  text-align: left;
  position: relative;
}

.classes-schedule {
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.classes-schedule h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #ff6f00;
}

.classes-schedule table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.classes-schedule th,
.classes-schedule td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.classes-schedule th {
  background: #008000;
  color: white;
}

.classes-schedule tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* Table container for mobile scrolling */
.table-container {
  overflow-x: auto;
}

/* Schedule section styling */
.classes-schedule {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.classes-schedule h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f00;
}

/* Table styling */
.classes-schedule table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.classes-schedule th,
.classes-schedule td {
  padding: 14px 20px;
  border: 1px solid #ddd;
  text-align: center;
}

.classes-schedule th {
  background: #008000;
  color: white;
}

/* Row colors for classes */
.classes-schedule tbody tr.afro-fusion {
  background-color: #fff3e0;
}
.classes-schedule tbody tr.hip-hop {
  background-color: #e0f2f1;
}
.classes-schedule tbody tr.contemporary {
  background-color: #ffe0b2;
}

/* Hover animation */
.classes-schedule tbody tr:hover {
  transform: scale(1.02);
  background: linear-gradient(90deg, #ff6f00 10%, #ffffff 90%);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Zebra stripes still visible */
.classes-schedule tbody tr:nth-child(even):not(:hover) {
  opacity: 0.9;
}

/* Scroll-trigger fade-in */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background-color: #ffffff; /* clean white for Dance Classes page */
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

/* Optional: Hero section background */
.hero-classes {
  position: relative;
  height: 400px;
  background: url("https://images.unsplash.com/photo-1508704019882-f9cf40e475b4")
    center/cover no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 111, 0, 0.5); /* orange overlay to match theme */
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.classes-registration {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.classes-registration h2 {
  text-align: center;
  color: #ff6f00;
  margin-bottom: 30px;
}

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

.classes-registration label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.classes-registration input,
.classes-registration select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.classes-registration button.cta-btn {
  width: 100%;
  padding: 15px;
  background: #ff6f00;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.classes-registration button.cta-btn:hover {
  background: #008000;
}

.services-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  color: #ff6f00;
  margin-bottom: 40px;
}

/* Service container */
.service-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

/* Alternate image/content position */
.service-container:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  flex: 1 1 40%;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.service-content {
  flex: 1 1 60%;
  padding: 20px;
}

.service-content h3 {
  font-size: 28px;
  color: #008000;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 18px;
  line-height: 1.6;
}

.classes-schedule {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.classes-schedule h2 {
  text-align: center;
  font-size: 36px;
  color: #ff6f00;
  margin-bottom: 30px;
}

.classes-schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.classes-schedule th,
.classes-schedule td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.classes-schedule th {
  background-color: #ff6f00;
  color: white;
}

.classes-schedule tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.classes-schedule tbody tr:hover {
  background-color: #ffe6cc;
}
.classes-schedule {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.classes-schedule h2 {
  text-align: center;
  font-size: 36px;
  color: #ff6f00;
  margin-bottom: 30px;
}

.classes-schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.classes-schedule th,
.classes-schedule td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.classes-schedule th {
  background-color: #ff6f00;
  color: white;
}

.classes-schedule tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.classes-schedule tbody tr:hover {
  background-color: #ffe6cc;
}
.classes-schedule {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.classes-schedule h2 {
  text-align: center;
  font-size: 36px;
  color: #ff6f00;
  margin-bottom: 30px;
}

.classes-schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.classes-schedule th,
.classes-schedule td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

.classes-schedule th {
  background-color: #ff6f00;
  color: white;
}

.classes-schedule tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.classes-schedule tbody tr:hover {
  background-color: #ffe6cc;
}

.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h1 {
  font-size: 42px;
  color: #ff6f00;
  margin-bottom: 40px;
}

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

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

.gallery-description {
  margin-top: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* SERVICES PAGE */

.page-title {
  text-align: center;
  padding: 60px 20px;
}

.services-section {
  padding: 60px 20px;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.service-card {
  background: white;

  padding: 20px;

  text-align: center;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  border-radius: 10px;
}

.service-img {
  width: 100%;

  cursor: pointer;

  border-radius: 10px;
}

/* LIGHTBOX */

.lightbox {
  display: none;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  justify-content: center;

  align-items: center;
}

.lightbox-img {
  max-width: 80%;
}

.close {
  position: absolute;

  top: 30px;

  right: 40px;

  color: white;

  font-size: 40px;

  cursor: pointer;
}

/* NAVBAR */

.nav-container {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 15px 40px;

  background: orange;
}

.nav-links {
  display: flex;

  gap: 20px;

  list-style: none;
}

.nav-links a {
  color: white;

  text-decoration: none;

  font-weight: bold;
}

.logo img {
  width: 60px;
}

/* PAGE HEADER */

.page-header {
  text-align: center;

  padding: 50px;

  background: white;
}

/* SERVICES */

.services {
  display: flex;

  gap: 30px;

  padding: 50px;

  justify-content: center;

  flex-wrap: wrap;

  background: #f4f4f4;
}

.service-box {
  background: white;

  padding: 20px;

  width: 300px;

  text-align: center;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.service-img {
  width: 100%;

  cursor: pointer;
}

/* LIGHTBOX */

#lightbox {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: black;

  justify-content: center;

  align-items: center;
}

#lightbox-img {
  width: 60%;
}

#close {
  position: absolute;

  top: 20px;

  right: 40px;

  color: white;

  font-size: 40px;

  cursor: pointer;
}

.services {
  display: flex;

  gap: 30px;

  padding: 60px;

  flex-wrap: wrap;

  justify-content: center;
}

.service-box {
  width: 300px;

  background: white;

  padding: 20px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.service-img {
  width: 100%;

  cursor: pointer;
}

#lightbox {
  display: none;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: black;

  justify-content: center;

  align-items: center;
}

#lightbox-img {
  width: 60%;
}

#close {
  position: absolute;

  top: 30px;

  right: 40px;

  color: white;

  font-size: 40px;

  cursor: pointer;
}
/* =========================
   NAVBAR FIX (GLOBAL)
========================= */

.header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

/* LOGO */
.logo img {
  height: 60px;
  display: block;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex; /* 🔥 THIS FIXES YOUR PROBLEM */
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #008000; /* green */
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff6f00; /* orange */
}

/* ACTIVE PAGE */
.nav-links a.active {
  color: #ff6f00;
  border-bottom: 2px solid #ff6f00;
  padding-bottom: 4px;
}
/* =========================
   ELITE SERVICES UPGRADE
========================= */

.services {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 20px;
}

/* CARD */
.service-box {
  width: 300px;
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

/* HOVER EFFECT */
.service-box:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.service-img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

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

/* TITLE */
.service-box h2 {
  margin-top: 15px;
  color: #008000;
}

/* PRICE */
.price {
  margin:;
}
/* =========================
   SECOND IMAGE SECTION
========================= */

.services-gallery {
  text-align: center;
  padding: 60px 20px;
}

/* TITLE */
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #ff6f00;
}

/* ROW */
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* IMAGES */
.gallery-img {
  width: 300px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.gallery-img:hover {
  transform: scale(1.05);
}
.price {
  color: #ff6f00;
  font-weight: bold;
  margin: 10px 0;
  font-size: 18px;
}

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

.btn:hover {
  background: #ff6f00;
}
/* SECTION TITLES */

.section-title {
  text-align: center;
  font-size: 30px;
  margin: 60px 0 20px;
  color: #ff6f00;
  font-weight: bold;
}
/* For tighten space use this code 
.section-title {
  margin: 40px 0 10px;
}
*/

/* =========================
   IMAGE HOVER OVERLAY
========================= */

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* IMAGE */
.service-img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-size: 18px;
  font-weight: bold;

  opacity: 0;
  transition: 0.4s;

  pointer-events: none;
}

/* HOVER EFFECT */
.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover .service-img {
  transform: scale(1.1);
}
/* =========================
   FOOTER
========================= */

.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #ff6f00;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ff6f00;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* =========================
   VIDEO SECTION
========================= */

.video-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

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

.video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.testimonial-box {
  width: 300px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  font-style: italic;
  transition: 0.3s;
}

.testimonial-box:hover {
  transform: translateY(-8px);
}

.testimonial-box h4 {
  margin-top: 15px;
  color: #ff6f00;
  font-style: normal;
}
/* =========================
   BOOKING FORM
========================= */

.booking-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.booking-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.booking-form textarea {
  min-height: 100px;
  resize: none;
}

.booking-form button {
  padding: 12px;
  background: #008000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #ff6f00;
}
/* PAYPAL PAYMENT */

.paypal-button {
  margin-top: 20px;
  text-align: center;
}

.payment-note {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.paypal-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0070ba;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.paypal-btn:hover {
  background: #003087;
}
/* THANK YOU PAGE */

.thank-you-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank-you-section h1 {
  font-size: 40px;
  color: #008000;
}

.thank-you-section p {
  margin: 10px 0;
  font-size: 18px;
}
/*
.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6f00;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
  */
.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #0070ba;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover {
  background: #003087;
}
