:root {
  --primary-color: #4caf50;
  --dark-bg: #ffffff;
  --light-text: #333333;
  --section-padding: 5rem 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h2 {
  font-size: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg);
  color: var(--light-text);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo-img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--light-text);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--light-text);
}

/* Carousel Section */
.carousel-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.carousel {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-item:nth-child(1) {
  background: linear-gradient(rgba(0, 100, 0, 0.2), rgba(0, 100, 0, 0.2)),
    url("/img/hero4.jpg");
  /* background: url("/img/hero2.jpg"); */
}

/* .carousel-item:nth-child() {
    background-image: url("/img/IMG_0883.jpeg");
  } */

.carousel-item:nth-child(2) {
  background: linear-gradient(rgba(0, 100, 0, 0.2), rgba(0, 100, 0, 0.2)),
    url("/img/hero1.jpg");
}

.carousel-item:nth-child(1),
.carousel-item:nth-child(2),
.carousel-item:nth-child(3) {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.carousel-item h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: yellowgreen;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.carousel p {
  font-size: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: yellowgreen;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

/* Why Choose Us Section */
.why-us {
  width: 100%;
  margin: auto;
  padding: var(--section-padding);
  text-align: center;
  background-color: #f9f9f9;
}

.reasons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.reason {
  flex-basis: 300px;
  margin: 1rem;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.reason:hover {
  transform: translateY(-10px);
}

.reason i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  text-align: center;
}

.services-title {
  margin-bottom: 50px;
}

/* Pricing Section */
.pricing {
  width: 80%;
  margin: auto;
  padding: var(--section-padding);
  text-align: center;
  background-color: #f9f9f9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 175, 80, 0.2),
    transparent
  );
  transition: 0.5s;
}

.price-card:hover::before {
  left: 100%;
}

.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.price-card:hover {
  transform: translateY(-10px);
  background-color: var(--primary-color);
  color: white;
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.price-card:hover h3,
.price-card:hover .price,
.price-card:hover li,
.price-card:hover li::before {
  color: white;
}

.price-card:hover button {
  background: white;
  color: var(--primary-color);
}

.price {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 1rem 0;
  transition: color 0.3s;
}

.price-card h3 {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.price-card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.price-card:hover h3::after {
  background: white;
}

.price-card ul {
  list-style: none;
  margin: 2rem 0;
}

.price-card li {
  margin: 1rem 0;
  position: relative;
  padding-left: 1.5rem;
  transition: color 0.3s;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  transition: color 0.3s;
}

.price-card button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 80%;
  margin-top: 1rem;
}

.price-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Gallery Section */
.gallery-section {
  padding-top: 100px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #333;
  padding: 4rem 2rem 1rem;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.quick-links {
  display: flex;
  flex-direction: column;
}

.quick-links a {
  color: white;
  text-decoration: none;
  margin: 0.2rem 0;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover {
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
  }

  .gallery-item img {
    height: 250px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 100, 0, 0.5), rgba(0, 100, 0, 0.5)),
    url("./img/gallery-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateZ(0);
  will-change: transform;
}

/* Hero-Section H1, P */
.carousel-item h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: bold;
  color: yellowgreen;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.carousel-item p {
  font-size: 1.2rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}



/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 1rem 0;
  }

  .menu-btn {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service.large {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 5px;
    margin-bottom: 50px;
  }

  .price-card {
    padding: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    margin: 0.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .carousel-item h1 {
    font-size: 2.5rem;
  }
}

.section-testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.client-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.client-details h3 {
  font-size: 1.125rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.client-details p {
  font-size: 0.875rem;
  color: #666;
}

.quote {
  font-style: italic;
  color: #4a5568;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-testimonials-container {
    grid-template-columns: 1fr;
  }
  .section-testimonials-header h2 {
    font-size: 1.75rem;
  }
}

/* Testimonials Styles */
.stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* Sport-Section */
.sport-section {
  width: 100%;
  height: 80vh;
  background: linear-gradient(rgba(0, 100, 0, 0.5), rgba(0, 100, 0, 0.5)),
    url(/img/sport-section.jpg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  width: 80%;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: 2px solid greenyellow;
}

.box span {
  display: block;
  font-size: 1.5rem;
  color: greenyellow;
}

@media (max-width: 768px) {
  .box-container {
    grid-template-columns: 1fr;
  }

  .logo-img {
    height: 50px;
    width: auto;
  }

  .services-title {
    padding: 5px;
  }

  .sport-section {
    display: flex;
    min-height: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.phone-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.phone-link:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .phone-link {
    color: var(--primary-color);
    text-decoration: underline;
  }
}
