/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0a0f1c;
  color: #fff;
}

/* Header Styles */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #0a0f1c;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between logo image and text */
}

.header-logo {
  height: 40px; /* Adjust height as needed */
  width: auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

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

.nav-links li a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease; /* Added transition for nav links */
}

.nav-links li a:hover {
  color: #44a0ff;
}

/* Button Styles */
.btn-discord, .btn-enroll {
  background-color: #1c6fff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-discord:hover, .btn-enroll:hover {
  background-color: #0044cc;
}

/* Hero Section */
.hero {
  background: url('https://cdn.discordapp.com/attachments/1366051121302474802/1395285897293074442/wallpapersden.com_pubg-warrior-4k-city-sunset_3840x2160.jpg?ex=6879e4c1&is=68789341&hm=eb7da321473794861aef73ba0e1a0f5d913325ff6b1877bb61221755d5a32197&') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #fff;
}

.hero-content {
  max-width: 600px;
  animation: fadeIn 1s ease-in-out forwards; /* Added animation */
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-content span {
  color: #44a0ff;
}

/* Services Section */
.services {
  padding: 60px;
  text-align: center;
  background-color: #0d1324;
}

.services h2 {
  font-size: 32px;
  color: #fff;
  font-variant: small-caps; /* Font change */
}

.services h2 span {
  color: #4d8dff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background-color: #12192e;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  min-width: 260px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for hover */
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(70, 150, 255, 0.5); /* Example hover effect */
}

.card h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

.card ul {
  list-style-type: none;
  padding: 0;
  color: #bbb;
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 60px;
  text-align: center;
  background-color: #0a0f1c;
}

.about h2 { /* Applying font-variant to the About Us heading */
  margin-bottom: 20px;
  font-variant: small-caps;
}

.about p {
  margin-bottom: 20px;
}

.about .who-we-are {
  margin-bottom: 30px;
}

.about .who-we-are h3 {
  font-variant: small-caps; /* Font change */
}

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.stats div {
  background-color: #12192e;
  padding: 20px;
  border-radius: 8px;
  color: #aaccff;
  font-weight: bold;
  min-width: 150px;
  display: flex; /* For potential centering of text */
  justify-content: center;
  align-items: center;
  height: 80px; /* Example height */
  font-variant: small-caps; /* Font change */
}

.stats div:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(70, 150, 255, 0.5); /* Similar to card hover effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Number Counting Animation Support (CSS part) */
/* This requires JavaScript to update the numbers. CSS provides the structure. */
.count-up {
  animation: count-up-animation 2s forwards; /* Placeholder animation */
}

@keyframes count-up-animation {
  from { /* Initial state for animation */ }
  to { /* Final state for animation */ }
}

/* Founder Section */
.founder-section {
  background-color: #12192e; /* Box background */
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px; /* Space from previous content */
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.founder-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

/* Owner Section */
.owner-section {
  background-color: #12192e; /* Box background */
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px; /* Space from previous content */
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.owner-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

/* Admin Section */
.admin-section {
  background-color: #12192e; /* Box background */
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px; /* Space from previous content */
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.admin-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

/* Team Section */
.team-section {
  background-color: #12192e; /* Box background */
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px; /* Space from previous content */
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.team-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

/* Dev Section */
.dev-section {
  background-color: #12192e; /* Box background */
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px; /* Space from previous content */
  color: #bbb;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.dev-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-variant: small-caps; /* Font change */
}

.dev-section strong {
  color: #fff; /* Make bold text white */
}

.dev-section ul {
  list-style-type: disc; /* Use disc bullets for lists */
  padding-left: 20px; /* Indent list items */
  text-align: left; /* Align list items to the left */
}

.dev-section li {
  margin-bottom: 10px; /* Space between list items */
}

.dev-section a {
  color: #44a0ff; /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.dev-section a:hover {
  color: #ffffff; /* Hover color for links */
}

/* Footer Section */
footer {
  text-align: center;
  padding: 20px;
  background-color: #0a0f1c;
  color: #aaa;
  font-size: 14px;
}

.social-links { /* Reverted class name */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.social-links a {
  color: #bbb; /* Default link color */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #44a0ff; /* Hover color for links */
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .hero { /* Adjustments for hero section on smaller screens */
    padding: 0 20px; /* Reduce horizontal padding */
    text-align: center; /* Center align content */
    height: auto; /* Allow height to adjust */
    min-height: 70vh; /* Ensure some height */
  }
  .hero-content {
    max-width: 100%; /* Allow content to take full width */
  }
  .hero-content h1 {
    font-size: 32px; /* Reduce font size for mobile */
  }
  .services {
    padding: 30px 20px; /* Adjust padding for services */
  }
  .services h2 {
    font-size: 28px; /* Reduce heading font size */
  }
  .cards {
    flex-direction: column; /* Stack cards vertically */
    align-items: center; /* Center cards */
  }
  .card {
    width: 90%; /* Make cards take more width */
    min-width: unset; /* Remove min-width constraint */
  }
  .about, footer {
    padding: 30px 20px; /* Adjust padding for about and footer */
  }
  .social-links { /* Responsive adjustments for footer */
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .social-links a {
    width: 100%;
    justify-content: center;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
