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

body {
  font-family: "Ubuntu", system-ui;
  font-weight: 300;
  font-style: normal;
}

/* Hero Section */
.hero-image {
  position: relative;
  height: 100vh;
  background-image: url("./assets/hero_section.webp"); 
  background-size: cover;
  background-position: center;
}

.overlay {
  position: relative;
  height: 100vh; 
  background-color: rgba(63, 63, 63, 0.7); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white; 
}

.overlay h1 {
  border: 1px solid yellow;
}

.bordered-text {
  padding: 10px; /* Padding for spacing */
  margin: 10px; /* Margin for spacing */
  display: inline-block; /* Ensures the border wraps tightly around the text */
  text-align: center; /* Center the text */
}

/* Video Section */
.video-container {
  max-width: 800px;
  height: 60vh;
  margin: 20px auto; /* Center the container */
  padding: 20px;
  border: 2px solid #333; /* Beautiful boundaries */
  border-radius: 8px;
  background-color: white; /* Container background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  position: relative;
}

@media(max-width:500px) {
  .video-container {
    height: 50%;
  }
}

#player {
  width: 100%;
  height: 100%;
}

/* About and features section styling */
.section {
  padding: 50px 0px;
  text-align: center;
  border-bottom: 2px solid #333;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.section p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

#about {
  /* border: 1px solid #333; */
  margin-left: 10%;
  margin-right: 10%;
}

#about p {
  text-align: justify;
}

/* features */
.features {
  margin-left: 10%;
  margin-right: 10%;
}

.feature-card {
  /* width: 30%; */
  border: 1px solid black;
  display: inline-block;
  margin: 2px;
}

.feature-card img {
  object-fit: contain;
}

.features a {
  color: rgb(58, 0, 58);
}

.section.features {
  /* padding: 50px 20px;  */
  /* display: grid; */
  /* grid-template-columns: repeat(
    auto-fill,
    minmax(250px, 1fr)
  );  */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* Space between grid items */
  flex-wrap: wrap;
}

.feature-card {
  background-color: #f9f9f9; /* Background color for the cards */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Internal padding */
  text-align: center; /* Center align text */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s; /* Transition effect for hover */
  width: 300px;
  max-width: 350px;
}

.feature-card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.feature-card img {
  width: 100%; /* Make the image responsive */
  border-radius: 10px; /* Round image corners */
}

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

/* find nearby */
.find-and-connect {
  margin-left: 10%;
  margin-right: 10%;
  /* padding: 50px 20px; Padding around the section */
}

.flex-container {
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping to make it responsive */
  justify-content: center; /* Space between items */
}

.find-nearby,
.discord-container {
  flex: 1; /* Equal space for both containers */
  min-width: 300px; /* Minimum width for responsiveness */
  margin: 10px; /* Margin around each container */
}

.map-container {
  text-align: center; /* Center align the map */
}

.map iframe {
  max-width: 100%; /* Make the iframe responsive */
  height: auto; /* Adjust height automatically */
  border-radius: 10px; /* Rounded corners for the map */
}

.discord-container {
  background-color: #f9f9f9; /* Background color for Discord section */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Internal padding */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.cta-button {
  display: inline-block; /* Makes the button a block-level element */
  background-color: #28a745; /* Main background color */
  color: white; /* Text color */
  padding: 12px 20px; /* Vertical and horizontal padding */
  border: none; /* Removes default border */
  border-radius: 5px; /* Rounded corners */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Removes underline */
  text-align: center; /* Centers the text */
  transition: background-color 0.3s, transform 0.3s; /* Transition effects */
  cursor: pointer; /* Changes cursor to pointer */
  margin: 20px;
}

.cta-button:hover {
  background-color: #218838; /* Darker shade on hover */
  transform: scale(1.05); /* Slightly enlarges the button */
}
/* experts */
.experts-section {
  margin-left: 10%;
  margin-right: 10%;
  /* padding: 40px; */
  /* border-radius: 10px; */
  margin-bottom: 40px;
}

.experts-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.experts-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.expert-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 15px;
  padding: 20px;
  width: 280px;
  transition: transform 0.3s;
  text-align: center;
  border: 1px solid #333;
}

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

.expert-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.expert-card h2 {
  font-size: 1.5em;
  margin: 10px 0;
}

.expert-card p {
  margin: 5px 0;
}

.expert-card a {
  color: #007bff;
  text-decoration: none;
}

/* packages */
.packages {
  margin: 0 10%; /* 10% margin on left and right */
}

.packages-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.packages-table {
  width: 100%;
  max-width: 1200px; /* Set a maximum width for larger screens */
  border-collapse: collapse;
  margin-top: 20px;
}

.packages-table th,
.packages-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.packages-table th {
  background-color: #f4f4f4;
}

.package-price {
  color: green;
  font-weight: bold;
}

.cta-button {
  background-color: #27ae60;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #218c4b;
}

/* Responsive styles */
@media (max-width: 768px) {
  .packages {
    margin: 0 5%; /* Adjust margins for smaller screens */
  }

  .packages-table {
    font-size: 14px; /* Reduce font size for smaller screens */
    overflow-x: auto; /* Allow horizontal scrolling */
    display: block; /* Allow the table to be scrollable */
  }

  .packages-table th,
  .packages-table td {
    padding: 8px; /* Reduce padding for smaller screens */
  }

  .packages-table th {
    font-size: 16px; /* Keep header font size consistent */
  }

  .packages-table td {
    font-size: 14px; /* Keep cell font size smaller */
  }
}

/* testimonials */
.testimonials-section {
  margin: 40px 10%;
  padding: 20px;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ff7f50;
  font-weight: bold;
  letter-spacing: 1px;
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.testimonial-card {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #ff7f50, #f94d6a);
  border-radius: 15px;
  padding: 20px;
  color: white;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 2px 10px 6px rgba(134, 130, 130, 0.8);
}

/* faq-section */
.faq-section {
  margin: 0 10%;
  /* padding: 2rem; */
  margin-bottom: 2rem;
}

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

.faq-question {
  width: 100%;
  background-color: #f1f1f1;
  border: none;
  outline: none;
  padding: 1rem;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #ddd;
}

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: #ffffff;
  border-top: 1px solid #ccc;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* USP Section */
.usp-section {
  margin-left: 10%;
  margin-right: 10%;
  /* padding: 60px; */
  /* background-color: #f0f0f0; */
  text-align: center;
  border-bottom: 2px solid black;
}

.usp-section h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #333;
  font-weight: bold;
}

/* Flexbox Layout for USP Cards */
.usp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* USP Cards */
.usp-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(10, 10, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
  position: relative;
  width: 280px; /* Fix width for cards */
}

.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 24px rgba(10, 10, 10, 0.5);
}

/* Images - Larger Size */
.usp-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #010101;
}

/* Heading - Bold and Bigger */
.usp-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 20px 0;
  font-weight: bold;
}

/* Text - Shorter */
.usp-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Links */
.usp-card a {
  color: #690023;
  /* text-decoration: none; */
  font-weight: bold;
  font-size: 1.1rem;
}

.usp-card a:hover {
  text-decoration: underline;
}

/* Adding colors to each card */
.usp-card:nth-child(1) {
  background-color: #e0f7fa;
}

.usp-card:nth-child(2) {
  background-color: #e0f7fa;
}

.usp-card:nth-child(3) {
  background-color: #e0f7fa;
}
