/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Modal Styles */
/* .review-modal .modal-backdrop {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-dialog {
  max-width: 500px;
}

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.modal-title {
  font-weight: 600;
  color: #1f2937;
}

.modal-body {
  padding: 1rem 1.5rem;
}

.modal-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
} */

/* .review-modal .btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.15s ease-in-out;
}

.btn-close:hover {
  opacity: 0.75;
} */

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;

  /* added for smooth hide/show */
  transition: transform 0.3s ease-in-out;
}

/* when hidden */
.header.hidden {
  transform: translateY(-100%);
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar {
  padding: 1.25rem 0; /* slightly taller */
  min-height: 80px; /* ensures consistent height */
}

.nav-logo a {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-logo .logo-text {
  color: red;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.contact-menu-rounded .btn {
  border-radius: 2rem !important;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: red;
  color: white;
  border: none;
  font-weight: 600;
}

/* responsive header for mobile */
/* Mobile styles */
@media (max-width: 500px) {
  /* Logo */
  .nav-logo a{
    font-size: 1.5rem;   /* smaller text */
  }

  .nav-actions {
    transform: scale(0.8);   /* shrink both button + menu */
    transform-origin: right center; /* shrink from right side, not middle */
    gap: 0.5rem;             /* reduce spacing between them */
  }

}


/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu-rounded {
  background: #181a1b;
  border-radius: 2.5rem;
  padding: 1rem 1.5rem;  /* reduced horizontal padding */
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  margin: 0 2rem;  /* added margin for spacing */
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.1rem; /* if missing, add it */
}

.nav-link:hover {
  color: #ff0000;
}

.nav-link.active{
  color: #ff0000 !important;
}

/* Responsive Styles */
@media (max-width: 824px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #181a1b;
    padding: 1rem 2rem;
    z-index: 999;
    border-bottom: 1px solid #333;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .contact-menu-rounded {
    margin-left: 1rem;
  }
}


/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: #ff0000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  color: #ff0000;
  border: 2px solid #ff0000;
}

.btn-outline:hover {
  background: #ff0000;
  color: #ffffff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  flex-direction: column;
  /* gap: 4rem; */
  align-items: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-title .highlight {
  color: #ff0000;
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #cccccc;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
} */

.key-metrics {
  background: rgba(255, 255, 255, 0.178); /* Semi-transparent background */
  backdrop-filter: blur(200px); 
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 40px auto;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.138);
  border: 1px rgba(255, 255, 255, 0.15);
  max-width: 1000px;
}

@media (max-width: 786px) {
  .key-metrics {
    width: 70vw;   /* 70% of the total screen width */
    margin: 0 auto;   /* restrict column width */
  }
}

.metrics-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.metric-item {
  position: relative;
  flex: 1;
  text-align: center;
  min-width: 150px;
  padding: 10px 20px;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 60%;
  width: 1px;
  background: rgba(237, 234, 234, 0.293);
  backdrop-filter: blur(4px);
}

@media (max-width: 1000px) {
  .metric-item:nth-child(2n)::after {
    content: none; /* remove vertical line */
  }
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0000;
}

.metric-label {
  font-size: 1rem;
  color: white;
  margin-top: 5px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-description {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose {
  padding: 80px 0;
  background: #0a0a0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ff0000;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Partners Section */
.partners {
  padding: 80px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  /* filter: grayscale(100%) brightness(0.8); */
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Services Section */
.services-section {
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* mobile friendly */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-8px);
  background-color: rgba(31, 41, 55, 0.7);
}

.service-card.popular {
  border: 2px solid rgba(220, 38, 38, 0.5);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #dc2626;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px 16px 0 0;
}

.service-header {
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.service-description {
  color: #d1d5db;
}

.service-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-item i {
  color: #dc2626;
  font-size: 16px;
}

.feature-item span {
  color: #d1d5db;
}

.service-footer {
  border-top: 1px solid #374151;
  padding-top: 24px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

/* Featured Courses Section */
.courses-section {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.courses-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.courses-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.courses-section .section-description {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto;
}

.courses-section .courses-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px 0;
}

.courses-section .courses-track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  gap: 2rem;
  padding: 0 1rem;
  will-change: transform;
}

.courses-section .course-card {
  flex: 0 0 350px;
  background: rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              border-color 0.4s, box-shadow 0.4s;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.courses-section .course-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.courses-section .card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.courses-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.courses-section .course-card:hover .card-image img {
  transform: scale(1.1);
}

.courses-section .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(220, 38, 38, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.courses-section .course-card:hover .image-overlay {
  opacity: 1;
}

.courses-section .course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #dc2626 100%);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  z-index: 2;
  user-select: none;
}

.courses-section .card-content {
  padding: 1.5rem;
}

.courses-section .course-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
  line-height: 1.3;
}

.courses-section .course-description {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.courses-section .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.courses-section .course-rating {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.courses-section .stars {
  display: flex;
  gap: 0.2rem;
}

.courses-section .stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.courses-section .rating-text {
  font-size: 0.8rem;
  color: #888;
  user-select: none;
}

.courses-section .course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b6b;
  user-select: none;
}

.courses-section .course-cta {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b 0%, #dc2626 100%);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.courses-section .course-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.3s ease;
}

.courses-section .course-cta:hover::before {
  left: 100%;
}

.courses-section .course-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.courses-section .course-cta:active {
  transform: translateY(0);
}

.courses-section .slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}

.courses-section .slider-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 107, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courses-section .slider-btn:hover {
  background: rgba(255, 107, 107, 0.4);
  border-color: rgba(255, 107, 107, 0.6);
  transform: scale(1.1);
}

.courses-section .slider-btn:active {
  transform: scale(0.95);
}

.courses-section .section-footer {
  text-align: center;
  margin-top: 3rem;
}

.courses-section .view-all-btn {
  background: rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 107, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.courses-section .view-all-btn:hover {
  background: rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.courses-section .view-all-btn i {
  transition: transform 0.3s ease;
}

.courses-section .view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .courses-section .section-title {
    font-size: 2.5rem;
  }
  .courses-section .course-card {
    flex: 0 0 300px;
  }
  .courses-section .card-content {
    padding: 1.2rem;
  }
  .courses-section .course-title {
    font-size: 1.2rem;
  }
  .courses-section .course-description {
    font-size: 0.85rem;
  }
  .courses-section .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .courses-section .slider-controls {
    padding: 0 5px;
  }
}

@media (max-width: 480px) {
  .courses-section .course-card {
    flex: 0 0 280px;
  }
  .courses-section .card-content {
    padding: 1rem;
  }
  .courses-section .section-title {
    font-size: 2rem;
  }
  .courses-section .section-description {
    font-size: 1rem;
  }
  .courses-section .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .courses-section .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* Loading animation */
.courses-section .course-card.loading {
  opacity: 0;
  transform: translateY(30px);
}

.courses-section .course-card.loaded {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Course Decision Section */
.course-decision {
  padding: 80px 0;
  background: #0a0a0a;
}

.decision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.decision-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.decision-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.decision-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  /* background: #111111; */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 0px 0px 32px;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating .stars {
  display: flex;
  gap: 2px;
}

.testimonial-rating i {
  color: #666;
  font-size: 1rem;
}

.testimonial-rating i.active {
  color: #ffd700;
}

.testimonial-message {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-button{
  display: inline-block;
  text-align: center;
  margin: 20px auto;
  padding: 12px 24px;
}

.testimonial-button-container {
  text-align: center;       /* centers inline-block button */
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.author-role {
  color: #cccccc;
  font-size: 0.9rem;
}

.no-reviews{
  text-align: center;
  margin-bottom: 25px;
}

/* About Section - home page*/
.about-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.about-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: #ff0000;
}

.about-icon {
  width: 60px;
  height: 60px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.about-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-description {
  color: #cccccc;
  line-height: 1.6;
}

/* about sec page */
/* About Page Styles */
.mission-vision {
  padding: 80px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 24px;
}

.stats-section {
  padding: 80px 0;
  background-color: rgba(31, 41, 55, 0.3);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
}

.stat-icon {
  background-color: rgba(220, 38, 38, 0.2);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon i {
  color: #dc2626;
  font-size: 24px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  color: #d1d5db;
}

/* .team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-4px);
}

.team-avatar {
  width: 96px;
  height: 96px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-avatar i {
  color: #9ca3af;
  font-size: 48px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.team-role {
  color: #fca5a5;
  margin-bottom: 8px;
}

.team-experience {
  color: #d1d5db;
  font-size: 14px;
} */

.story-section {
  padding: 80px 0;
  background-color: rgba(31, 41, 55, 0.3);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text {
  text-align: left;
}

.story-text p {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 24px;
}


/* Contact Section */
.contact-section {
  padding: 80px 0;
  /* background: #111111; */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.contact-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.contact-text h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: #cccccc;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 32px;
}

.form-header {
  margin-bottom: 32px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.contact-section-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: red;
  margin-bottom: 2rem;
}


.form-description {
  color: #d1d5db;
}

.contact-form {
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* .form-group {
  display: flex;
  flex-direction: column;
} */

.form-group label {
  color: #d1d5db;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card,
.why-choose-card {
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 32px;
}

.contact-info-title,
.why-choose-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  background-color: rgba(220, 38, 38, 0.2);
  padding: 12px;
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-icon i {
  color: #dc2626;
  font-size: 16px;
}

.contact-details h4 {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.contact-details p {
  color: #d1d5db;
  margin-bottom: 4px;
}

.contact-details small {
  color: #9ca3af;
  font-size: 12px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet {
  width: 8px;
  height: 8px;
  background-color: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
}

.why-choose-item span {
  color: #d1d5db;
}


/* Contact Form */
/* .contact-form-container {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
} */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* .form-group label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
} */

/* .form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 16px;
} */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  /* border-color: #ff0000; */
}

.success-message {
  background: #1a4d1a;
  color: #4ade80;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}



.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #ff0000;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff0000;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info p {
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #ff0000;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
}

/* Page Styles */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-description {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.content-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #ffffff;
}

.content-text p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  color: #cccccc;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: #ff0000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  /* margin-top: 2rem; */
}

/* About Content */
.about-content {
  padding: 80px 0;
  background: #0a0a0a;
}

/* Courses Content */
.courses-content {
  padding: 80px 0;
  background: #0a0a0a;
}

/* Services Content */
.services-content {
  padding: 80px 0;
  background: #0a0a0a;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
  background: #0a0a0a;
}

/* Cybersecurity Content */
.cybersecurity-content {
  padding: 80px 0;
  background: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #0a0a0a;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #333;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 2rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* .hero-title {
    font-size: 2.5rem;
  } */

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .decision-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }
}


/* Courses Section */
.courses-section {
  padding: 60px 0;
  background-color: #000000;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.course-card {
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.course-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-8px) scale(1.02);
}

.course-header {
  margin-bottom: 16px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.course-level {
  background-color: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-rating i {
  color: #fbbf24;
  font-size: 14px;
}

.course-rating span {
  color: #d1d5db;
  font-size: 14px;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.course-description {
  color: #d1d5db;
  font-size: 14px;
}

.course-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tech-tag {
  background-color: transparent;
  border: 1px solid #4b5563;
  color: #d1d5db;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.course-details {
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 14px;
}

.detail-item i {
  color: #dc2626;
  font-size: 14px;
  width: 16px;
}

.course-footer {
  border-top: 1px solid #374151;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-info {
  flex: 1;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.course-instructor {
  color: #9ca3af;
  font-size: 12px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: rgba(31, 41, 55, 0.3);
  text-align: center;
  background-color: #000000;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}