/* ================================
   EduZone Professional UI Theme
   ================================ */

/* --- Font Imports --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap");

/* --- Root Variables for Theming --- */
:root {
  --color-primary: #1e3a8a;
  --color-primary-dark: #172554;
  --color-accent: #10b981;
  --color-bg: #f9fafb;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-hover: #2563eb;
  --color-error: #ef4444;

  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* --- Global Reset --- */
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* --- Navbar --- */
.navbar {
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.navbar-brand img {
  height: 68px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}

/* --- Page Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-secondary);
  color: var(--color-text);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* --- Buttons --- */
.btn-primary {
  background: var(--color-primary);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-hover);
  transform: translateY(-1px);
}

/* --- Cards --- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Responsive Navbar --- */
@media (max-width: 991px) {
  .navbar-nav {
    background: linear-gradient(180deg, var(--color-primary-dark), var(--color-primary));
    border-radius: 8px;
    padding: 10px;
  }

  .nav-link {
    padding: 10px 0;
  }
}
















/* --- Hero Section --- */
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url("/asset/img/img2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Inter", "Poppins", sans-serif;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(10, 25, 47, 0.9),
    rgba(23, 42, 89, 0.8)
  ); /* deep blue gradient overlay */
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Typography */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.hero-title span {
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.hero-subtitle {
  color: #e2e8f0;
  font-size: 1.15rem;
  margin-top: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(90deg, #00d4ff, #007bff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.75rem 1.6rem;
  box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 212, 255, 0.5);
}

.hero-buttons .btn-outline-light {
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
  background-color: #fff;
  color: #1e293b;
  transform: translateY(-3px);
}

/* Image */
.hero-img {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    text-align: center;
    padding: 80px 20px;
    height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-img {
    max-width: 70%;
    margin-top: 30px;
  }
}





















/* Section Base */
.benefits {
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
  font-family: "Inter", "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: #007bff;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.05rem;
}

/* Card Styles */
.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.benefit-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 1.8rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper img {
    width: 35px;
  }

  .benefit-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .benefits {
    padding: 60px 15px;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .benefit-card {
    margin-bottom: 20px;
  }
}
























.courses-section {
  background: #f9fafb;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
}

.section-title span {
  color: #f59e0b;
}

.section-subtitle {
  color: #64748b;
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.1rem;
}

/* Filter Buttons */
.course-filters .filter-btn {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 8px 18px;
  margin: 4px;
  border-radius: 30px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.3s ease;
}

.course-filters .filter-btn.active,
.course-filters .filter-btn:hover {
  background: #f59e0b;
  color: #fff;
  border-color: #f59e0b;
}

/* Course Card */
.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.course-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.course-card:hover .course-img img {
  transform: scale(1.05);
}

.course-content {
  padding: 20px;
}

.course-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.rating {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.rating span {
  color: #64748b;
  margin-left: 5px;
}

.course-content p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.enroll-btn {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enroll-btn:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .course-content h5 {
    font-size: 1rem;
  }

  .course-content p {
    font-size: 0.9rem;
  }

  .enroll-btn {
    width: 100%;
  }
}
















/* General Section Styling */
.how-it-works-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-title span {
  background: linear-gradient(135deg, #f59e0b, #eab308);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Step Container */
.steps-container {
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #fde68a, #facc15);
  border-radius: 3px;
  z-index: 1;
  opacity: 0.3;
}

/* Step Cards */
.step-card {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.step-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.step-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.step-inner:hover .step-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, #eab308, #f59e0b);
}

.step-inner h5 {
  font-weight: 700;
  color: #1e293b;
  margin-top: 10px;
  margin-bottom: 10px;
}

.step-inner p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Connecting Arrows */
@media (min-width: 992px) {
  .step-card:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-size: 1.4rem;
    z-index: 3;
    animation: arrowBlink 2s infinite ease-in-out;
  }

  @keyframes arrowBlink {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
    50% { opacity: 1; transform: translateY(-50%) translateX(10px); }
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .steps-container::before {
    content: none;
  }
  .step-card {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 2rem;
  }
}




















.video-intro {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.video-intro .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(15, 23, 42, 0.9) 80%
  );
  z-index: 1;
}

.video-intro .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.section-title span {
  color: #fbbf24;
}

.section-subtitle {
  color: #d1d5db;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Video Thumbnail */
.video-wrapper {
  max-width: 720px;
  position: relative;
}

.video-thumbnail {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
  animation: pulse 2s infinite;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.7);
}

/* Play Button Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .video-wrapper {
    max-width: 90%;
  }
}


















/* Why Choose TruTuTor Section */
.why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafc, #ffffff);
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 700;
}

.why-choose h2 span {
  color: #007bff; /* Brand accent color */
}

.why-choose .subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

/* Mobile view */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card i {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }
}












.testimonials-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
}

.section-title span {
  color: #007bff;
}

.section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

/* Testimonial Wrapper */
.testimonials-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  max-width: 330px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

/* Floating quote mark */
.quote-mark {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: rgba(0, 123, 255, 0.1);
  font-weight: bold;
  line-height: 1;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #007bff;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.testimonial-card:hover img {
  transform: scale(1.05);
}

.testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.testimonial-card .role {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Gradient highlight on hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent 70%);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
  transform: scale(3);
}

/* Responsive Carousel Style */
@media (max-width: 768px) {
  .testimonials-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 25px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}













.stats-section {
  position: relative;
  background: radial-gradient(circle at top left, #007bff20, transparent 60%),
              radial-gradient(circle at bottom right, #00bcd420, transparent 60%),
              linear-gradient(135deg, #f8fbff, #ffffff);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.08);
  filter: blur(120px);
  z-index: 0;
}

.stats-section::before {
  top: -50px;
  left: -50px;
}
.stats-section::after {
  bottom: -50px;
  right: -50px;
}

.stats-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.stats-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 60px;
  z-index: 1;
  position: relative;
}

.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-block {
  text-align: center;
  min-width: 180px;
  transition: transform 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.2));
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
  position: relative;
}

.label {
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.divider {
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, #007bff20, #007bff60, #007bff20);
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-row {
    flex-direction: column;
    gap: 40px;
  }
  .divider {
    display: none;
  }
  .number {
    font-size: 2.2rem;
  }
  .stats-title {
    font-size: 2.2rem;
  }
}






















/* === CTA Banner === */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, #1e3a8a, #0f172a, #1e40af);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Soft overlay */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  ),
  radial-gradient(circle at 80% 60%, rgba(250, 204, 21, 0.1), transparent 70%);
  z-index: 1;
}

/* Optional blur glass layer */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Text Styling */
.cta-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #f8fafc;
}

.cta-title span {
  color: #facc15;
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.6);
}

.cta-title strong {
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.cta-subtitle span {
  color: #93c5fd;
  font-weight: 500;
}

/* Button Styling */
.btn-cta {
  background: linear-gradient(90deg, #facc15, #fcd34d);
  color: #1e293b;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  border-radius: 50px;
}

.btn-cta:hover::after {
  transform: translateX(100%);
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.7);
}

/* Floating wave-like shape */
.cta-banner::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -60px;
  left: -50%;
  border-radius: 50%;
  animation: floatWave 10s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes floatWave {
  0% { transform: translateY(0); }
  100% { transform: translateY(25px); }
}

/* Responsive */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.8rem;
  }
  .btn-cta {
    width: 85%;
    font-size: 1rem;
    padding: 13px 0;
  }
}



















/* ===== Footer Styling ===== */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #e2e8f0;
  font-family: "Poppins", sans-serif;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* Decorative glowing circles */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,0.15), transparent 60%);
  z-index: 0;
}
.footer::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
}
.footer::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -50px;
}

.footer-top {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: #facc15;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #facc15;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #facc15;
  margin-left: 5px;
}

/* About Section */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span {
  color: #facc15;
}

.footer-col.about p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Social icons */
.social-links a {
  display: inline-block;
  color: #facc15;
  font-size: 1.1rem;
  margin-right: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

/* Contact Info */
.footer-col.contact ul li i {
  color: #facc15;
  margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px 10px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  font-size: 0.9rem !important;
  letter-spacing: 0.3px;
}
.footer-bottom span {
  color: #facc15;
  font-weight: 600;
}

.footer-bottom p {
 font-size: 0.9rem !important;
}



/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li a:hover {
    margin-left: 0;
  }

  .social-links a {
    margin: 0 8px;
  }
}












.courses-section {
  background: #f9fafb;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
}
.section-title span {
  color: #f59e0b;
}
.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.course-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.filter-btn {
  background: #e0e7ff;
  border: none;
  color: #1e3a8a;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #1e3a8a;
  color: #fff;
}

.course-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.course-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-content {
  padding: 1rem;
  text-align: center;
}
.course-content h5 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.course-content p {
  color: #6b7280;
  font-size: 0.9rem;
}
.rating {
  font-size: 0.9rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
.enroll-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 25px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.enroll-btn:hover {
  background: #f59e0b;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .course-card {
    margin-bottom: 1rem;
  }
  .course-content h5 {
    font-size: 1rem;
  }
  .course-content p {
    font-size: 0.85rem;
  }
}
























 
      /* Hero Section */
      .course-hero {
        position: relative;
        /* background: linear-gradient(120deg, #1e40af, #3b82f6); */
        color: #fff;
        padding: 40px 0;
      }

      .course-hero h1 {
        font-weight: 600;
      }

      .course-meta {
        font-size: 15px;
        opacity: 0.9;
      }

      /* Course Info Card */
      .course-info-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 25px;
        position: sticky;
        top: 90px;
      }

      .enroll-btn {
        background: #1e40af;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        font-weight: 500;
        width: 100%;
        transition: all 0.3s ease;
      }

      .enroll-btn:hover {
        background: #2563eb;
      }

      /* Tabs */
      .nav-tabs .nav-link.active {
        background-color: #1e40af;
        color: #fff !important;
        border-radius: 8px;
      }

      .nav-tabs .nav-link {
        color: #1e40af;
        font-weight: 500;
      }

      .tab-content {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      }

      /* Instructor */
      .instructor-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        padding: 20px;
        display: flex;
        align-items: center;
      }

      .instructor-card img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
      }

      /* Curriculum */
      .curriculum-item {
        border-bottom: 1px solid #e2e8f0;
        padding: 10px 0;
      }

      /* Reviews */
      .review-item {
        border-bottom: 1px solid #e5e7eb;
        padding: 15px 0;
      }

      @media (max-width: 767px) {
        .course-hero {
          padding: 60px 20px;
          text-align: center;
        }
      }