/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color:  #0e0e1a;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  background-color: #1e1e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffc3;
}

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

.nav-links li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00ffc3;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #f0f0f0;
  cursor: pointer;
}

/* Main Content */
.main-content {
  flex: 1;
  text-align: center;
  padding: 60px 20px;
}

.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00ffc3;
}

.main-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  background: #00ffc3;
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d68b00;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #1e1e1e;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e1e1e;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 200px;
    border: 1px solid #333;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }
}

/* Programming Language Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  width: 120px;
  height: 140px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}


/* Programming Language Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  width: 120px;
  height: 140px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.4);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Instructor Section */
.team-section {
  margin-top: 60px;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  color: #00ffc3;
  margin-bottom: 30px;
}

.team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  width: 180px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.4);
}

.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.team-card h3 {
  margin: 10px 0 5px;
  color: #fff;
}

.team-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Features Section */
.features-section {
  margin-top: 60px;
  text-align: center;
  padding: 0 20px;
}

.features-section h2 {
  font-size: 2rem;
  color: #00ffc3;
  margin-bottom: 30px;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 195, 0.1);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.3);
}

.feature-box img {
  width: 48px;
  margin-bottom: 12px;
}

.feature-box h3 {
  color: #fff;
  margin-bottom: 8px;
}

.feature-box p {
  color: #ccc;
  font-size: 0.9rem;
}
.reviews-section, .companies-section, .contact-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f2f2f2;
  color: #333;
}

.reviews {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.company-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.company-logos img {
  width: 100px;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.company-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.contact-section p {
  font-size: 16px;
  margin: 10px 0;
}

/* === Reviews Section Styled Like "Why Choose Us?" === */
.reviews-section {
  background-color: #0e0e1a;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.reviews-section h2 {
  font-size: 28px;
  color: #00f2ff;
  margin-bottom: 30px;
}

.reviews {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-card {
  background-color: #1a1a2e;
  padding: 25px 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
  border-color: rgba(0, 255, 255, 0.2);
  background-color: #202034;
}

.review-card p {
  font-style: italic;
  color: #cce7ff;
  margin-bottom: 10px;
}

.review-card h4 {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 5px;
}

.review-card span {
  font-size: 14px;
  color: #ccc;
}

/* === Companies Section Styled Similar === */
.companies-section {
  background-color: #0e0e1a;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.companies-section h2 {
  font-size: 26px;
  color: #00f2ff;
  margin-bottom: 25px;
}

.company-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.company-logos img {
  width: 80px;
  height: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: 0.3s ease;
}

.company-logos img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.08);
}

.contact-section {
  background-color: #0e0e1a;
  padding: 50px 20px;
  text-align: center;
  color: #e0e0e0;
}

.contact-section h2 {
  color: #00f2ff;
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 16px;
  margin: 8px 0;
  color: #ccc;
}

.company-logos img {
  width: 50px;
  height: 50px;
  transition: 0.3s ease;
  filter: invert(0.8);
}

.company-logos img:hover {
  filter: invert(1) brightness(1.2);
  transform: scale(1.1);
}

.stats-section {
  background-color: #0e0e1a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.stat-box {
  background: #1a1a2e;
  padding: 30px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}
.stat-box h3 {
  font-size: 32px;
  color: #00f2ff;
}
.stat-box p {
  font-size: 16px;
  color: #ccc;
}

.search-section {
  background: #111;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}
.search-section input {
  padding: 10px;
  width: 250px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}
.search-section button {
  padding: 10px 20px;
  background: #00f2ff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
}

.contact-form-section {
  background: #0e0e1a;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.contact-form-section form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form-section input, .contact-form-section textarea {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 15px;
}
.contact-form-section button {
  padding: 12px;
  background-color: #00f2ff;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}





