/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #fff;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh; /* Full height of the viewport */
  background-image: linear-gradient(135deg, #00000085, #00000085),
    url("pypro.avif"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 70%;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 15px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background-color: #ffee0000; /* Call-to-action button color */
  border: solid 2px white;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #004dc0; /* Hover effect for the button */
  border: solid 2px #004dc0;
}
.cta-btn:click {
  background-color: #004dc0; /* Hover effect for the button */
  border: solid 2px #004dc0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 11px;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}
.header {
  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 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;
  }
}
/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.course-highlights {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f39c12; /* Accent color */
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Highlight Card Styles */
.highlight-card {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.icon {
  font-size: 2.5rem;
  color: #f39c12; /* Accent color for icons */
  margin-bottom: 15px;
}

.highlight-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.highlight-card p {
  font-size: 1rem;
  color: #cccccc; /* Softer text color for description */
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .highlight-card {
    padding: 15px;
  }
  .icon {
    font-size: 2rem;
  }
}
/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.how-it-works {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f39c12; /* Accent color */
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Step Card Styles */
.step-card {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.icon-container {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f39c12; /* Accent color for icon container */
  border-radius: 50%;
}

.icon-container i {
  font-size: 1.5rem;
  color: #121212; /* Dark icon inside bright container */
}

.step-card h3 {
  font-size: 1.4rem;
  margin: 10px 0;
}

.step-card p {
  font-size: 1rem;
  color: #cccccc; /* Softer text color for description */
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .step-card {
    padding: 15px;
  }

  .icon-container {
    width: 50px;
    height: 50px;
  }

  .icon-container i {
    font-size: 1.2rem;
  }
}
/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.webinars-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f39c12; /* Accent color */
}

.webinars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

/* Webinar Card Styles */
.webinar-card {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.webinar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f39c12; /* Accent color for titles */
}

.webinar-card p {
  font-size: 1rem;
  color: #cccccc; /* Softer text color for details */
  margin: 5px 0;
}

.webinar-card i {
  color: #f39c12; /* Accent color for icons */
  margin-right: 8px;
}

.register-button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #121212;
  background-color: #f39c12; /* Accent color for button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.register-button:hover {
  background-color: #ffca28; /* Lighter shade for hover */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .webinar-card {
    padding: 15px;
  }
}
/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.faq-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #f39c12; /* Accent color */
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #1e1e1e; /* Slightly lighter dark background */
  margin: 10px 0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: #fff; /* Accent color for question */
}

.faq-question:hover {
  background-color: #282828;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  color: #6b6b6b; /* Softer text color for answer */
  background-color: #1e1e1e;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Icon Styles */
.faq-question i {
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}
/* General Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

.cta-banner {
  background-image: linear-gradient(135deg, #000000d2, #000000d2),
    url("coursep.jpg"); /* Dark gradient background */
  padding: 60px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.cta-content {
  max-width: 800px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffff; /* Accent color */
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #cccccc; /* Softer text color for description */
}

.cta-button {
  padding: 15px 30px;
  font-size: 1rem;
  color: #fff; /* Dark text for contrast */
  background-color: transparent; /* Bright CTA color */
  backdrop-filter: blur(15px);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 5px 10px #121212;
  border: solid 2px #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #004dc0; /* Lighter shade for hover */
  border: solid 2px #004dc0;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 25px;
  }
}
/* Footer Section */
.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;
}
