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

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

/* Top Banner */
.top-banner {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

.top-banner a {
  color: #4caf50;
  text-decoration: none;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
/* Base nav styling */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

/* Dropdown menu styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #f9f9f2;
  padding: 10px 0;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu li:hover {
  background-color: #eaeaea;
}

/* Adjust icon spacing */
.dropdown-menu i {
  font-size: 12px;
  color: #333;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #4caf50;
  font-style: italic;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a i {
  margin-left: 5px;
  font-size: 0.8em;
}

.nav-menu a:hover {
  color: #4caf50;
}

.cta-button {
  background-color: #4caf50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #45a049;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./images/golfhero.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 50px;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 1000px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero-menu{
    list-style: none;
    display: flex;
    gap: 20px;
}
.hero-menu li a{
        font-size: 20px;
    color: #000;
    text-decoration: none;
} 
/* Search Form */
.search-form {
  background-color: white;
  padding: 20px;
  border-radius: 50px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 400px;
  max-width:500px;
}

.search-form select {
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  background-color: #f9f9f9;
  min-width: 180px;
}

.search-button {
  background-color: #4caf50;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search-button:hover {
  background-color: #45a049;
}

/* Features Section */
.features {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  padding: 0 20px;
}

.feature {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.feature h3 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 15px;
}

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

/* Explore Section */
.explore {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.explore h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Golf Packages Grid */
.golf-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

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

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

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.location-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #4caf50;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.package-content {
  padding: 25px;
}

.package-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.package-duration {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.package-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.start-location {
  color: #666;
}

.start-location-label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.start-location-name {
  font-weight: bold;
  color: #333;
}

.package-price {
  text-align: right;
}

.price-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4caf50;
}

.dream-holiday-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 1000;
}

.dream-holiday-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

/* Destinations Section */
.destinations {
  padding: 80px 0;
  background-color: white;
}

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

.destinations h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 20px;
  height: 520px;
}

.destination-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.destination-card.thailand {
  grid-row: 1 / 3;
}

.destination-card.vietnam {
  grid-column: 2;
  grid-row: 1;
}

.destination-card.indonesia {
  grid-column: 3;
  grid-row: 1;
}

.destination-card.cambodia {
  grid-column: 2 / 4;
  grid-row: 2;
}

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

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

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

.destination-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.destination-packages {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Responsive Design for Destinations */
@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 250px);
    height: auto;
  }

  .destination-card.thailand,
  .destination-card.vietnam,
  .destination-card.indonesia,
  .destination-card.cambodia {
    grid-column: 1;
    grid-row: auto;
  }

  .destination-name {
    font-size: 2rem;
  }
}

/* Golf Events Section */
.golf-events {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.golf-events h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.calendar-icon {
  font-size: 2rem;
  color: #4caf50;
}

.calendar-header h3 {
  font-size: 2rem;
  color: #333;
  margin: 0;
}

.events-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.event-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-photo {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(76, 175, 80, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

.event-content {
  padding: 25px;
  text-align: left;
}

.event-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.event-details {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-direction:column;
}

.event-location {
  color: #666;
}

.location-label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #999;
}

.location-name {
  font-weight: bold;
  color: #333;
}

.event-price {
  text-align: right;
}

.event-price .price-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.event-price .price-amount {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4caf50;
}

/* View All Events Button */
.view-all-events {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background-color: #4caf50;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.view-all-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

/* Golf Courses Section */
.golf-courses {
  padding: 80px 0;
  background-color: white;
}

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

.golf-courses h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.courses-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Course Slider */
.course-slider {
  position: relative;
  overflow: hidden;
  margin: 50px 0;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.course-slide {
  min-width: 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.course-card {
  flex: 0 0 350px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.course-card:hover .course-image {
  transform: scale(1.05);
}

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

.course-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.course-location {
  font-size: 1rem;
  opacity: 0.9;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background-color: #4caf50;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #4caf50;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/golfcoursebg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  border-radius: 0 0 50% 50%;
  transform: translateY(-50px);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.testimonials h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 60px;
  font-weight: bold;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 350px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.verified-badge {
  color: #4caf50;
  font-size: 1rem;
  margin-left: 10px;
}

.testimonial-text {
  color: #666;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Testimonial Navigation */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s;
  z-index: 10;
}

.testimonial-nav:hover {
  background-color: white;
  color: #333;
}

.testimonial-nav.prev {
  left: 20px;
}

.testimonial-nav.next {
  right: 20px;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
  .golf-events h2 {
    font-size: 2rem;
  }

  .calendar-header h3 {
    font-size: 1.5rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .event-price {
    text-align: left;
  }
}

/* Responsive Design for Courses */
@media (max-width: 768px) {
  .golf-courses h2 {
    font-size: 2rem;
  }

  .course-slide {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    flex: 0 0 300px;
    height: 350px;
  }

  .slider-nav {
    display: none;
  }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2rem;
  }

  .testimonial-slide {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 300px;
  }

  .testimonial-nav {
    display: none;
  }
}

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

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

  .hero {
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .search-form {
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
  }

  .search-form select {
    width: 100%;
    min-width: auto;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .explore h2 {
    font-size: 2rem;
  }

  .golf-packages {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .package-price {
    text-align: left;
  }
}

/* Subscription Section */
.subscription {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/golfsubs.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

/* .subscription::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: white;
  border-radius: 0 0 50% 50%;
  transform: translateY(-50px);
} */

.subscription-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.subscription-content {
  flex: 1;
  max-width: 500px;
}

.subscription h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.subscription-form {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.subscription-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
  outline: none;
}

.subscription-form input::placeholder {
  color: #999;
}

.offers-btn {
  background-color: #e74c3c;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.offers-btn:hover {
  background-color: #c0392b;
}

.golf-ball-decoration {
  width: 200px;
  height: 200px;
  background: url("/placeholder.svg?height=200&width=200") no-repeat center;
  background-size: contain;
  opacity: 0.8;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  text-align: center;
}

.contact-item h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: normal;
}

.contact-item p {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #4caf50;
}

/* Responsive Design for Subscription */
@media (max-width: 768px) {
  .subscription h2 {
    font-size: 2rem;
  }

  .subscription-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .subscription-form {
    flex-direction: column;
    gap: 10px;
  }

  .subscription-form input,
  .offers-btn {
    border-radius: 5px;
  }

  .golf-ball-decoration {
    width: 150px;
    height: 150px;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-item p {
    font-size: 1rem;
  }
}

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

/* Footer Section */
.footer {
  background-color: #2d4a2b;
  color: white;
  padding: 60px 0 30px;
}

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

/* Top Footer */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: bold;
  font-style: italic;
  color: white;
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: #4caf50;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #4caf50;
}

/* Certifications */
.footer-certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.cert-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.cert-text {
  flex: 1;
}

.cert-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.cert-number {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Bottom Footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.payment-icon {
  font-size: 2rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #4caf50;
}

.footer-legal span {
  opacity: 0.6;
}

.awards {
  display: flex;
  gap: 10px;
}

.award-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-certifications {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .payment-methods,
  .awards {
    justify-content: center;
  }
}

.video-wrapper {
  padding-left: 1rem;  /* 16px */
  padding-right: 1rem;
  padding-top:2rem;
}

@media (min-width: 768px) {
  .video-wrapper {
    padding-left: 3rem; /* 48px for larger screens */
    padding-right: 3rem;
  }
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

