body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f9ff;
  color: #333;
}

header {
  background-color: #002244;
  padding: 20px 0;
}
html {
  scroll-behavior: smooth;
}
.navbar {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: white;
  margin: 0;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background: linear-gradient(120deg, #dfe9f3 0%, #ffffff 100%);
}

.hero-text {
  max-width: 50%;
}

.hero-img img {
  width: 400px;
  max-width: 100%;
}

.btn {
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  background-color: #0056b3;
}

.vm-section {
  display: flex;
  justify-content: space-around;
  padding: 40px 5%;
  background-color: #eef6fb;
}

.vm {
  max-width: 400px;
  text-align: center;
}

.offerings, .features, .free-trial {
  padding: 50px 10%;
  text-align: center;
}

.offer-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.offer, .feature {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.free-trial ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.free-trial li {
  margin: 10px 0;
  font-weight: bold;
}

.btn-secondary {
  background-color: #28a745;
}

footer {
  background: #001a33;
  color: white;
  padding: 20px;
  text-align: center;
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  padding: 20px;
}

.course-list a {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.course-list a:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.course-subtext {
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

/* Course Section Improvements */
section {
  padding: 50px 20px;
  text-align: center;
}

h2 {
  font-size: 32px;
  color: #002244;
  margin-bottom: 10px;
}

.course-subtext {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Vertical Layout for Courses */
.course-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Gorgeous Gradient Buttons */
.course-list a {
  text-decoration: none;
  font-weight: bold;
  padding: 14px 40px;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: white;
  border-radius: 30px;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 280px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.course-list a:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  transform: scale(1.05);
}

/* Optional eye-candy */
.course-extra-info {
  margin-top: 50px;
  font-size: 20px;
  color: #333;
  font-weight: 500;
}

.course-extra-info span {
  display: inline-block;
  background: #fef2c0;
  padding: 8px 16px;
  margin: 5px;
  border-radius: 8px;
  font-size: 16px;
}
/* Limited Offer Section */
.limited-offer {
  background: linear-gradient(120deg, #fff8e1, #ffe0b2);
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.limited-offer h2 {
  color: #e65100;
  margin-bottom: 15px;
}

.limited-offer p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.btn-register {
  padding: 12px 25px;
  background: #ff6f00;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #e65100;
}

/* FAQ Section */
.faq-section {
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  color: #002244;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 18px;
  background: #f0f8ff;
  border: none;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  color: #002244;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e0f0ff;
}

.faq-answer {
  padding: 15px;
  display: none;
  background-color: #ffffff;
  color: #333;
  font-size: 16px;
}

/* Open FAQ toggled using JS */
.faq-question.active + .faq-answer {
  display: block;
}
.limited-offer {
  background: linear-gradient(120deg, #fff3e0, #ffe0b2);
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.limited-offer h2 {
  color: #e65100;
  margin-bottom: 15px;
}

.limited-offer p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.btn-register {
  padding: 12px 25px;
  background: #ff6f00;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #e65100;
}

/* FAQ */
.faq-section {
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  color: #002244;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 18px;
  background: #f5f9ff;
  border: none;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e0f0ff;
}

.faq-answer {
  padding: 15px;
  display: none;
  background: #fff;
  font-size: 16px;
  color: #333;
}

.faq-question.active + .faq-answer {
  display: block;
}
/* Course Section Background */
section.course-section {
  background: linear-gradient(135deg, #dff1ff, #f0fcff);
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}
.course-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
header {
  background-color: #002244;
  padding: 20px 0;
}

.navbar {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  color: white;
  margin: 0;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}
/* Banner Styling */
.course-banner {
  background: url('https://images.unsplash.com/photo-1581093588401-ef846e6a494a?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.course-banner::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.course-banner h2, .course-banner .tagline {
  position: relative;
  z-index: 1;
}

.course-banner h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.course-banner .tagline {
  font-size: 22px;
  font-style: italic;
  color: #f0f0f0;
}

/* Course Details Section */
.course-details {
  text-align: center;
  padding: 50px 20px;
  background: #f7fbff;
}

.course-details .info-box {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Why Learn Section */
.course-benefits {
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
  padding: 60px 20px;
  text-align: center;
}

.course-benefits h3 {
  font-size: 28px;
  color: #002244;
  margin-bottom: 20px;
}

.course-benefits p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.btn-enroll {
  padding: 14px 35px;
  font-size: 18px;
  background: #e91e63;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-enroll:hover {
  background: #ad1457;
}
.register-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  background: #f0f9ff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.register-form input,
.register-form select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.btn-enroll {
  padding: 12px 20px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enroll:hover {
  background-color: #0056b3;
}
/* CONTACT SECTION STYLES */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5faff, #e0f7ff);
  text-align: center;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1000px;
}

.contact-section h2 {
  font-size: 32px;
  color: #002244;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 10px;
}

.contact-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #0077cc;
  margin-bottom: 10px;
}

.contact-card a {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}
/* Welcome Board Styles */
.welcome-board {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #030214);
  color: #f3f8fa;
  padding: 60px 90px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
  border-bottom: 4px solid #e1e0e6c8;
  box-shadow: 0 0 25px #00f7ff66;
}

.welcome-container h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}


.welcome-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.welcome-btn {
  background-color: #e5e3ef;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px #00f7ff88;
}

.welcome-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 20px #00f7ff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px auto;
  max-width: 90%;
}

.course-list a {
  padding: 12px 24px;
  background-color: #00f7ff;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 0 10px #00f7ff80;
  transition: 0.3s ease;
}

.course-list a:hover {
  background: white;
  box-shadow: 0 0 15px #00f7ff;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.count-box span {
  font-size: 2.5rem;
}

.count-box p {
  font-size: 1rem;
}
