* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(#000000a2, #000000a2), url("heroimg.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  backdrop-filter: blur(5px);
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 10px;
  transition: 0.5s;
}
.hero-btn:hover {
  border: 1px solid #004dc0;
  background-color: #004dc0;
  box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 15px 37px;
  font-size: 16px;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .text-box h1 {
    font-size: 20px;
  }
  .text-box p {
    margin: 10px 2 40px;
    font-size: 11px;
    color: #fff;
    margin-bottom: 30px;
  }
}
* {
  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 */
}

/* 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;
  text-decoration: none;
}
.about-content h2:hover {
  text-decoration: underline;
  cursor: pointer;
}

.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%;
  }
}
/* 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 */
}

/* Community Engagement Section Styling */
.community-engagement {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a); /* Dark gradient */
  text-align: center;
}

.engagement-content {
  margin-bottom: 50px;
}

.engagement-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.engagement-content p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* Engagement Cards */
.engagement-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
  padding: 30px;
  border-radius: 12px;
  width: 30%;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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 */
}

.card-icon {
  font-size: 50px;
  color: #ffb800; /* Royal gold */
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffb800; /* Royal gold */
}

.card p {
  font-size: 16px;
  font-weight: 300;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .engagement-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "Arial", sans-serif;
  background-color: #0d0d0d; /* Dark background */
  color: #fff; /* Light text for contrast */
}

/* Courses Preview Section Styling */
.courses-preview {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a); /* Dark gradient */
  text-align: center;
}

.preview-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.preview-header p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* Courses List */
.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;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: "Arial", sans-serif;
  background-color: #0d0d0d; /* Dark background */
  color: #fff; /* Light text for contrast */
}

/* Interactive Demo Preview Section */
.interactive-demo-preview {
  padding: 80px 50px;
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a); /* Dark gradient */
  text-align: center;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* Demo Cards */
.demo-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Individual Demo Card */
.demo-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;
}

.demo-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 */
}

.demo-card-content {
  padding: 20px;
}

.demo-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffb800; /* Royal gold */
  margin-bottom: 10px;
}
.demo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.demo-card-content p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.demo-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;
}

.demo-btn:hover {
  background-color: #e59f00; /* Darker gold on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .demo-cards {
    flex-direction: column;
    align-items: center;
  }

  .demo-card {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* General Reset */
.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;
}
@media (max-width: 768px) {
  .newsletter-form input[type="email"] {
    width: 60%;
  }
  .newsletter-form button {
    width: 40%;
  }
}
.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;
}

.header1 {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(5px);
}
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%;
}
nav .fa-solid {
  display: none;
}
@media (max-width: 700px) {
  nav {
    width: 100%;
  }
  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;
  }
  .row {
    flex-direction: column;
  }
}
