/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #0d0d0d; /* Dark background */
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 15, 15, 0.9); /* Semi-transparent black */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: #f5bc42; /* Royal gold */
}

.logo .accent {
  color: #00ffff; /* Futuristic cyan */
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #ffae00;
}

.cta-button {
  padding: 10px 20px;
  background-color: #00ffff;
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: #f5bc42;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    background-color: #1a1a1a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Features Section Styling */
.features {
  padding: 80px 50px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a); /* Dark gradient */
}

.features-heading {
  margin-bottom: 40px;
}

.features-heading h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold color */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.features-heading p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  padding: 30px;
  border-radius: 12px;
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
  transform: translateY(-10px); /* Lift the card on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Deeper shadow on hover */
}

/* Feature Card Icon */
.feature-icon {
  font-size: 50px;
  color: #ffb800; /* Royal gold */
  margin-bottom: 20px;
}

/* Feature Card Title */
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffb800; /* Royal gold */
}

/* Feature Card Text */
.feature-card p {
  font-size: 16px;
  font-weight: 300;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Background */
body {
  font-family: "Arial", sans-serif;
  background-color: #0d0d0d; /* Dark background */
  color: #fff; /* Light text for contrast */
}

/* About Us Section Styling */
.about-us {
  padding: 100px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
}

.about-content {
  max-width: 50%;
  padding-right: 50px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 80%;
    margin-bottom: 20px;
  }
}
/* Core Values Section */
.core-values {
  background-color: #0d0d0d; /* Dark background */
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.core-values .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: #f5bc42; /* Royal gold */
  text-shadow: 0 0 10px #f5bc42, 0 0 20px #f5bc42;
  margin-bottom: 20px;
  margin-top: 25px;
}

.section-description {
  font-size: 1.2rem;
  color: #dddddd;
  margin-bottom: 40px;
  line-height: 1.8;
}

.section-description .highlight {
  color: #00ffff; /* Futuristic cyan */
  text-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
}

/* Values Grid */
.values-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensures cards adjust dynamically */
}

.value-card {
  background-color: #1a1a1a; /* Slightly lighter dark */
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8), 0 0 10px #00ffff;
}

.icon {
  font-size: 2.5rem;
  color: #00ffff; /* Futuristic cyan */
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #f5bc42; /* Royal gold */
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-grid {
    flex-direction: column; /* Stacks cards vertically on mobile */
    align-items: center;
  }

  .value-card {
    width: 90%; /* Cards take up more space on smaller screens */
  }
}
.about-us {
  padding: 100px 50px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  align-items: center;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a); /* Dark gradient */
  box-shadow: 0 5px 10px 5px #1d1d1d;
}

.about-content {
  max-width: 50%;
  padding-right: 50px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  line-height: 1.6;
}

/* About Us Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6); /* Soft shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .about-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-image img {
    max-width: 80%;
  }
}
.footer-section {
  background-color: #1e1e1e; /* Dark Background */
  color: #fff; /* Light Text */
  padding: 50px 20px;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsletter-container,
.social-media-container,
.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 20px;
}

.newsletter-container h3,
.social-media-container h3,
.contact-info h3 {
  font-size: 24px;
  color: #ffb800; /* Royal Gold */
  margin-bottom: 10px;
}

.newsletter-container p,
.social-media-container p,
.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 15px;
}
.contact-info a {
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
  color: white;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 8px;
  background-color: #333;
  color: #fff;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ffb800; /* Royal Gold */
}

.newsletter-form button {
  padding: 14px 24px;
  background-color: #ffb800; /* Royal Gold */
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e59f00; /* Darker Gold */
}

.social-media-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

.social-link {
  display: block;
  color: #fff;
  font-size: 24px;
}

.social-link:hover {
  color: #ffb800; /* Royal Gold */
}

.contact-info p {
  font-size: 18px;
  color: #f0f0f0;
}

.footer-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 16px;
  color: #888;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 200px;
  margin-top: 0%;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav img {
    width: 125px;
  }
  .nav-links ul li {
    display: block;
  }
  .nav-links {
    position: absolute;
    background: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul {
    padding: 30px;
  }
  .row {
    flex-direction: column;
  }
}
.courses-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Individual Course Card */
.course-card {
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
  border-radius: 12px;
  overflow: hidden;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px); /* Lift the card on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Deeper shadow on hover */
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-info {
  padding: 20px;
}

.course-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  margin-bottom: 10px;
}

.course-info p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.btn {
  background-color: #ffb800; /* Royal gold */
  color: #0d0d0d;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e59f00; /* Darker gold on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .courses-list {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
