/* ENHANCED RED THEME WITH CLEAN DESIGN */
:root {
  --accent: #e63946;
  --accent-2: #ef476f;
  --accent-dark: #d00000;
  --accent-light: #ffcad4;
  --neon: rgba(230, 57, 70, 0.15);
  --muted: #6b7280;
  --bg: #ffffff;
  --alt-bg: #f8f9fa;
  --card-bg: #ffffff;
  --card-border: rgba(230, 57, 70, 0.1);
  --shadow: 0 18px 60px rgba(230, 57, 70, 0.12);
  --soft-shadow: 0 10px 36px rgba(230, 57, 70, 0.08);
  --radius: 20px;
  --text: #0b1220;
  --footer-bg: #0a0005;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
  /* Account for sticky header */
}

/* GRADIENT STRIP */
.gradient-strip {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-2));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1031;
}

/* STICKY NAVBAR IMPROVEMENTS */
.navbar {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 4px;
  width: 100%;
  z-index: 1030;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

.navbar .btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: 12px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

/* ENHANCED MODERN HERO SECTION */
.hero {
  position: relative;
  padding: 4rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 247, 0.9) 100%);
  box-shadow: var(--shadow);
  margin: 2rem 0;
  overflow: hidden;
}

/* .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  z-index: 0;
} */

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
}

.hero p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 18px 46px rgba(230, 57, 70, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(230, 57, 70, 0.3);
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-ghost {
  border: 1.5px solid rgba(230, 57, 70, 0.2);
  background: transparent;
  color: var(--accent);
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(230, 57, 70, 0.05);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Feature badges */
.feature-badges {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.badge-neo {
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.12), rgba(239, 71, 111, 0.08));
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

/* Stats section */
.stats-container {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(230, 57, 70, 0.2);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Hero visual */
.device-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 247, 0.7));
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(230, 57, 70, 0.15);
  max-width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.device-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
  box-shadow: 0 30px 80px rgba(230, 57, 70, 0.2);
}

.device-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.1;
  filter: blur(20px);
}

.float-1 {
  width: 200px;
  height: 200px;
  top: -80px;
  right: -80px;
}

.float-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
}

/* SECTION HEADINGS */
.section-heading {
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
}

.view-all {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.view-all::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.view-all:hover {
  transform: translateX(5px);
}

.view-all:hover::after {
  width: 100%;
}

/* COURSE CARDS IMPROVEMENTS */
.course-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--soft-shadow);
  transition: all 0.35s ease;
  height: 100%;
  background: var(--card-bg);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(230, 57, 70, 0.16);
  border-color: rgba(230, 57, 70, 0.2);
}

.course-thumb {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.course-card:hover .course-thumb {
  transform: scale(1.05);
}

.course-body {
  padding: 1.5rem;
}

.course-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.course-description {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.course-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.course-duration {
  color: var(--muted);
  font-size: 0.85rem;
}

.badge-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* PRICING SECTION IMPROVEMENTS */
.price-card {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 253, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
  /* height: 100%; */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(230, 57, 70, 0.15);
}

.price-card h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-interval {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.price-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price-card .btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 600;
}

.highlighted-plan {
  border: 2px solid rgba(230, 57, 70, 0.2);
  transform: scale(1.03);
  position: relative;
}

.highlighted-plan::after {
  content: "Most Popular";
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

/* TESTIMONIALS IMPROVEMENTS */
.testimonial {
  background: linear-gradient(180deg, #fff, #fff);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--card-border);
  box-shadow: var(--soft-shadow);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  color: rgba(230, 57, 70, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(230, 57, 70, 0.1);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-author-role {
  color: var(--muted);
  font-size: 0.85rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.2);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

/* FAQ IMPROVEMENTS */
.accordion-button {
  font-weight: 600;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(230, 57, 70, 0.1);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  background: rgba(255, 245, 247, 0.5);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(230, 57, 70, 0.05);
  color: var(--accent);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(230, 57, 70, 0.2);
}

.accordion-body {
  padding: 1.25rem 1.5rem 2rem;
  color: var(--muted);
  background: rgba(255, 245, 247, 0.3);
  border-radius: 0 0 12px 12px;
}

/* FOOTER IMPROVEMENTS */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-2));
}

.footer-brand {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: none;
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.social-btn i {
  color: #fff;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 992px) {
  .hero {
    padding: 2.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .feature-badges {
    justify-content: center;
  }

  .stats-container {
    justify-content: center;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .device-card {
    margin-top: 2rem;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .highlighted-plan::after {
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    padding: 0.2rem 0.8rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .gradient-strip {
    height: 3px;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .hero {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .btn-cta,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .highlighted-plan::after {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

/* UTILITY CLASSES */
.text-accent {
  color: var(--accent);
}

.mb-6 {
  margin-bottom: 5rem;
}

.mt-6 {
  margin-top: 5rem;
}

.bg-alt {
  background: var(--alt-bg);
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* New styles for job placement section */
.placement-guarantee {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 247, 0.9) 100%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  margin: 4rem 0;
}

.guarantee-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* FLOATING ENQUIRY BUTTON */
.floating-enquiry {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-enquiry:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}
