:root {
  /* Brand Colors */
  --primary: #004e92;
  --primary-rgb: 0, 78, 146; /* Added for RGBA usage */
  /* Deep Blue */
  --primary-light: #0072ff;
  /* Bright Blue */
  --secondary: #00c6ff;
  /* Cyan/Pearl */
  --accent: #ff6b6b;
  /* Coral Red for CTAs */

  /* Neutrals */
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  --gradient-pearl: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--primary-light) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-main: "Inter", sans-serif;
  --font-heading: "Outfit", sans-serif;

  /* Conic Gradient for Buttons */
  --conic-gradient: conic-gradient(
    from 0deg,
    #ff4545,
    #00ff99,
    #006aff,
    #ff0095,
    #ff4545
  );
}

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

body {
  font-family: var(--font-main);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Frontend pages need padding for fixed header */
body.frontend-page {
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- Utilities --- */
.container,
.container-xl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* Enhanced Container Variants */
.container-wide,
.container-xxl {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

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

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

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



.text-center {
  text-align: center;
}

.text-gray {
  color: var(--gray);
}

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

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 30px;
}



/* Course Detail Grid - Better Proportions */
.course-detail-grid {
  display: grid;
  gap: 30px;
  align-items: start;
  grid-template-columns: 65% 32%;
}

#enquire {
  height: 100%;
}



/* Typography Helpers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

/* --- Components --- */

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 78, 146, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  width: 100%;
}

/* Enhanced shadow and background when scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 78, 146, 0.1);
}

.navbar.scrolled .nav-container {
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

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

.nav-link {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active Navigation State */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.has-dropdown.dropdown-active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 25px;
}

.nav-link i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* .has-dropdown:hover .nav-link i {
  transform: rotate(180deg);
} */



/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

/* Ensure toggle is visible on desktop for click interaction */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: inline-block !important;
        margin-left: 5px;
        opacity: 0.7;
        transition: transform 0.3s;
    }
    .has-dropdown:hover .mobile-menu-toggle {
        opacity: 1;
    }
    .has-dropdown.dropdown-active .mobile-menu-toggle i {
        /* transform: rotate(180deg); Removed to avoid conflict with JS class swap */
    }
}



/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer h3 {
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray);
}

/* Hero Slider & Page Hero */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Generic Hero Content (Layout only) */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  margin: 0 auto; /* Ensure centering */
}

.home-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding: 20px;
}

.home-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white) !important; /* Force white text */
  text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Add shadow for better readability */
}

.home-hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: var(--white) !important; /* Force white text */
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.page-hero {
  background: var(--gradient-primary);
  padding: 40px 0;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Cards (General) */
.feature-card,
.course-card,
.testimonial-card,
.info-card,
.team-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.feature-card:hover,
.course-card:hover,
.testimonial-card:hover,
.info-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Feature Cards (Home) */
.feature-card {
  padding: 30px;
  text-align: center;
  background: var(--light);
}

.feature-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

/* Course Cards (Home) */
.course-img-placeholder {
  height: 200px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.course-content {
  padding: 25px;
}

.course-price {
  font-weight: 700;
  color: var(--primary);
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
}

.testimonial-stars {
  color: #f1c40f;
  margin-bottom: 15px;
}

.google-badge {
  top: 20px;
  right: 20px;
  width: 30px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 10px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

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

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

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

/* Info Cards (About/Contact) */
.info-card {
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  border-color: var(--secondary);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 198, 255, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--secondary);
  color: var(--white);
  transform: rotateY(180deg);
}

/* Team Cards */
.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--gray);
}

.team-content {
  padding: 25px;
}

.team-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* FAQ Accordion */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  padding: 0 20px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
  border-top: 1px solid #eee;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Stats Section */
.stats-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

/* Forms (Contact & Lead Gen) */
.contact-container,
.lead-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  /* Reset gap for flex containers if needed, or use specific layout */
}

/* Specific Contact Page Layout */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Premium Lead Form Styles */
.lead-form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.lead-form-sidebar {
    background: var(--primary);
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lead-form-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse 10s infinite;
}

.lead-form-sidebar h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.lead-form-sidebar p {
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.lead-list {
    list-style: none;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.lead-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.lead-form-content {
    padding: 50px;
}

.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
}

.lead-form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .lead-form-container {
        grid-template-columns: 1fr;
    }
    .lead-form-content {
        padding: 30px;
    }
}

.contact-info-box {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-form-box {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Lead Gen Form Layout */
.lead-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.lead-form-sidebar {
  flex: 1;
  background: var(--gradient-pearl);
  padding: 40px;
  color: var(--white);
  min-width: 300px;
}

.lead-form-content {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.lead-list {
  list-style: none;
}

.lead-list li {
  margin-bottom: 15px;
}

/* Form Elements */
.form-group,
.input-group {
  margin-bottom: 20px;
}

.form-control,
.input-field {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: var(--font-main);
  transition: all 0.3s;
}

.input-field {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Slight var for lead form */

.form-control:focus,
.input-field:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 78, 146, 0.1);
}

/* Course Detail - Tools & Career */
.tool-card {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.tool-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 78, 146, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.tool-name {
  font-weight: 600;
  color: var(--dark);
}

.career-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.career-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.career-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.input-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}



/* About Page Specifics */
.about-image-wrapper {
  position: relative;
}

.about-placeholder {
  background: var(--gray);
  height: 400px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 50px;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.experience-badge h3 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

/* Contact Page Specifics */
.contact-item {
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.social-links-start {
  justify-content: flex-start;
}

/* --- Home Page Redesign (Premium & Storytelling) --- */

/* Storytelling Typography */
.story-heading {
  font-size: 2.8rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-lead {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Horizontal Snap Scrolling (Mobile App Feel) */
.snap-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.snap-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.snap-item {
  scroll-snap-align: center;
  flex: 0 0 85%;
  /* Show part of next item to encourage scroll */
  /* min-width: 280px; */
  min-width: 310px;
  max-width: 380px;
}



/* Persona Cards */
.persona-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.persona-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.persona-icon {
  width: 70px;
  height: 70px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
}

/* Logo Grid (Trust) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  opacity: 0.7;
}

.logo-item img {
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s;
}

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

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 15px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 78, 146, 0.4);
  z-index: 999;
  animation: slideUp 0.5s ease-out;
  width: 70%;
  transform: translateX(-50%);
}



/* Enhanced Container Variants */
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Enhanced Footer Styles */
.footer-grid {
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr !important;
}

.tagline {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 15px 0;
  letter-spacing: 1px;
}

.highlight-digit {
  color: var(--primary-light);
  font-weight: 900;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links li i {
  color: var(--secondary);
  margin-top: 3px;
  min-width: 18px;
}

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

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
}

.footer-products p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Back to Top with Progress */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 78, 146, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background: #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f062";
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  font-weight: 900;
  opacity: 0;
}

.progress-wrap:hover::after {
  opacity: 1;
}

.progress-wrap .progress-text {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover .progress-text {
  opacity: 0;
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
}

/* Exit Popup */
.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.exit-popup.active {
  display: flex;
}

.exit-popup-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-popup:hover {
  background: var(--light);
  color: var(--dark);
}

.popup-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
}

.exit-popup-content h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.popup-tagline {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 10px 0;
}

.exit-popup-content p {
  margin-bottom: 25px;
  color: var(--gray);
}




/* ================================================
   EXTRACTED INLINE STYLES - FRONTEND PAGES
   ================================================ */

/* 404 Page */
.error-page-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.error-message {
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

/* About Page */
.about-intro-text {
  font-size: 1.1rem;
}

.stat-label {
  margin: 0;
  font-weight: 600;
}

.principles-grid {
  gap: 40px;
}

/* Contact Page */
.contact-hero-subtitle {
  font-size: 1.1rem;
  margin-top: 15px;
  opacity: 0.95;
}

.contact-whatsapp-badge {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact-whatsapp-icon {
  color: #25d366;
}

.contact-map-note {
  color: #666;
  font-size: 0.85rem;
  display: block;
  margin-top: 5px;
}

.contact-map-iframe {
  border: 0;
}

/* Courses Index Page */
.courses-hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.courses-hero-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.filter-btn-spacing {
  margin: 5px;
}

.filter-tabs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter-scroll-container {
  text-align: center;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
  width: 100%;
}

.filter-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  color: var(--primary);
  opacity: 0;
  visibility: hidden;
}

.scroll-indicator.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-indicator:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.scroll-indicator.left {
  left: 0;
}

.scroll-indicator.right {
  right: 0;
}

/* Fade Gradients */
.filter-tabs-wrapper::before,
.filter-tabs-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.filter-tabs-wrapper.can-scroll-left::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
  opacity: 1;
}

.filter-tabs-wrapper.can-scroll-right::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
  opacity: 1;
}

.course-img-container {
  height: 200px;
  overflow: hidden;
}

.course-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.course-placeholder i {
  font-size: 50px;
  color: var(--gray);
}

.course-title {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.course-description {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.course-view-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Course Filter Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
}

/* Lead Magnet Design System */
:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.12);
  --gradient-premium: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Course Detail Lead Magnet UI */
.course-detail-hero {
  background: var(--gradient-premium);
  padding: 100px 0 140px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course-detail-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.course-detail-hero .container {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-content-left .course-badge {
  background: var(--secondary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.hero-content-left .course-detail-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}




.mb-60 { margin-bottom: 80px; }
.mb-50 { margin-bottom: 60px; }

.bg-soft { background-color: #fcfcfc; }
.bg-white { background-color: #ffffff; }

/* Conic Style Buttons */
.btn-conic {
    position: relative;
    padding: 18px 35px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-conic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--conic-gradient);
    animation: rotateConic 4s linear infinite;
    z-index: -2;
}

.btn-conic::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
    border-radius: 10px;
    z-index: -1;
    transition: background 0.3s ease;
}

.btn-conic:hover::after {
    background: rgba(0, 0, 0, 0.8);
}

.btn-conic:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
    color: #fff;
}

@keyframes rotateConic {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Entrance Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}


.hero-content-left .course-detail-description {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-benefit-item i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* Hero V2: Centered */
.hero-v2 {
    padding: 120px 0;
    background: linear-gradient(135deg, #003d5c 0%, var(--primary) 50%, #001f3f 100%);
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
}

.hero-centered-content {
    margin: 0 auto;
}

.hero-v2 .course-badge {
    background: rgba(241, 196, 15, 0.2);
    color: var(--secondary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
    border: 2px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(241, 196, 15, 0.3);
}

.hero-v2 .course-detail-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-v2 .course-detail-description {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 60px;
    color: #fff;
    flex-wrap: wrap;
    padding: 40px 0 20px;
}

.stat-mini {
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
    min-width: 120px;
}

.stat-mini span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(241, 196, 15, 0.4);
}

/* Hero V3: Tech-Focused */
.hero-v3 {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #0a1628 0%, #162d40 100%);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(var(--primary-rgb), 0.12) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.6;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}

.tech-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 210, 255, 0.15);
    color: #00d2ff;
    border: 2px solid rgba(0, 210, 255, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

/* Hero V3 Text Styling for Better Readability */
.hero-v3 .course-detail-title {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-v3 .course-detail-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-v3 .hero-split {
    position: relative;
    z-index: 2;
}

.hero-image-floating {
    position: relative;
    z-index: 2;
}

.floating-card {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.floating-card img {
    border-radius: 20px;
    max-height: 480px;
    width: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-premium);
    color: #fff;
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Switcher */
.hero-switcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

.hero-switcher span {
    font-weight: 700;
    font-size: 0.9rem;
    color: #666;
}

.hero-switcher a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-weight: 800;
    transition: all 0.3s ease;
}

.hero-switcher a.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.hero-image-right {
  position: relative;
}

.hero-image-right img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
  border: 4px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease;
}

.hero-image-right:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  box-shadow: var(--shadow-premium);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.trust-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
}

/* Section Styling */
.section-title-premium {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title-premium::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--primary);
  border-radius: 10px;
}

/* Modern Cards */
.modern-card {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-premium);
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-deep);
  border-color: var(--primary);
}

.modern-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

/* Instructor Card Refinement */
.instructor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.instructor-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.instructor-avatar-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.instructor-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.5rem;
}

.instructor-badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.instructor-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}

.instructor-designation {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.instructor-bio {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
}



/* Career Growth Visual */
.career-growth-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
}

.growth-indicator {
  width: 60px;
  height: 60px;
  background: #2ecc71;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Premium Form */
.premium-form-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
  border: 3px solid var(--primary);
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
  min-width: 100%;
}

.premium-form-box:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(var(--primary-rgb), 0.2);
  transform: translateY(-5px);
}

.premium-form-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--primary);
  line-height: 1.2;
}

.premium-form-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.5;
  font-weight: 500;
}



/* Home Page */
.hero-slide-bg {
  background-color: var(--primary);
}

.hero-title-highlight {
  color: var(--secondary);
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: left;
  flex-wrap: wrap;
}

.hero-cta-outline {
  border-color: var(--white);
  color: var(--white);
}

.feature-card-horizontal {
  text-align: left;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-icon-left {
  margin: 0;
  font-size: 30px;
}

.about-placeholder-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.decorative-box-1 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transform: rotate(15deg);
}

.decorative-box-2 {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transform: rotate(-20deg);
}

.decorative-circle {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.placeholder-content {
  text-align: center;
  z-index: 1;
}

.placeholder-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.placeholder-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.placeholder-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 10px;
}

.experience-badge-label {
  margin: 0;
  font-weight: 600;
}

.home-course-icon {
  font-size: 50px;
}

.home-course-desc {
  font-size: 0.9rem;
}

.home-course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-course-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.home-view-all-section {
  margin-top: 40px;
}

.testimonial-quote {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author-name {
  font-size: 0.9rem;
}

.rating-score {
  font-weight: 700;
  font-size: 1.2rem;
}

.rating-stars {
  color: #f1c40f;
}

.company-logo-placeholder {
  color: #ccc;
}

.lead-form-honeypot {
  display: none;
}

.lead-form-submit {
  width: 100%;
}

/* Workshops Page */
.workshops-hero-subtitle {
  font-size: 1.1rem;
  margin-top: 15px;
  opacity: 0.95;
}

.workshop-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Header */
.header-mobile-cta {
  padding: 10px 20px;
}

/* Footer */
.footer-description {
  margin-top: 15px;
}

.footer-social-links {
  margin-top: 25px;
}

.footer-hours-indent {
  padding-left: 30px;
}

.footer-support-text {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}



.img-fluid {
  width: 100%;
}
.footer-logo {
  max-width: 300px;
}
.logo {
  max-width: 200px;
}

/* Premium UI Modal */
.premium-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.premium-modal {
  background: var(--white);
  width: 90%;
  max-width: 400px;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.premium-modal-overlay.active .premium-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.modal-icon-wrapper.success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.modal-icon-wrapper.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.modal-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.5;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.premium-modal h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.premium-modal p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.premium-modal-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(0, 78, 146, 0.3);
}





.premium-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 78, 146, 0.4);
}

.premium-modal-btn.error-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Syllabus Modal Styles */
.syllabus-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.syllabus-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.syllabus-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.syllabus-close-btn:hover {
  color: var(--dark);
}

.syllabus-title {
  margin-bottom: 10px;
  color: var(--primary);
}

.syllabus-subtitle {
  color: var(--gray);
  margin-bottom: 25px;
}

.syllabus-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8ecf1;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.syllabus-input:focus {
  border-color: var(--primary);
  outline: none;
}

.syllabus-submit-btn {
  padding: 15px;
  width: 100%;
}
/* =================================================
   Google Reviews Styles
   ================================================= */

/* Reviews Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}





/* Review Card */
.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--light);
  background: var(--primary);
  text-align: center;
  justify-content: center;
  align-items: anchor-center;
  color: white;
}

.review-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 5px 0;
}

/* Star Rating */
.review-rating {
  color: #f1c40f;
  font-size: 0.9rem;
}

.review-rating i {
  margin-right: 2px;
}

/* Review Text */
.review-text-wrapper {
  margin-bottom: 15px;
}

.review-text {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.review-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 5px;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.review-read-more:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Review Time */
.review-time {
  color: var(--gray);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-time i {
  font-size: 0.8rem;
}

/* Reviews Stats Section */
.reviews-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}



.stat-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.stat-content h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 0 10px 0;
}

.stat-content p {
  color: var(--dark);
  font-weight: 600;
  margin: 0 0 5px 0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pagination-btn,
.pagination-page {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.pagination-btn {
  background: var(--primary);
  color: var(--white);
}

.pagination-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.pagination-page {
  background: var(--light);
  color: var(--dark);
  min-width: 45px;
  text-align: center;
}

.pagination-page:hover {
  background: var(--primary);
  color: var(--white);
}

.pagination-page.active {
  background: var(--gradient-primary);
  color: var(--white);
  cursor: default;
}

.pagination-pages {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* No Reviews Message */
.no-reviews-message {
  text-align: center;
  padding: 60px 20px;
  background: var(--light);
  border-radius: 15px;
  grid-column: 1 / -1;
}

/* Mobile Responsive Adjustments */


/* =================================================
      Enhanced Reviews Page Styles
      ================================================= */

/* Enhanced Stats Section */
.reviews-stats-enhanced {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
}



/* Overall Rating Card */
.overall-rating-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.rating-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 15px;
}

.rating-stars-large {
  color: #f1c40f;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.rating-stars-large i {
  margin: 0 3px;
}

.rating-text {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.google-logo-small {
  width: 60px;
  height: auto;
}

/* Rating Breakdown */
.rating-breakdown {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.rating-bar-item:last-child {
  margin-bottom: 0;
}

.star-label {
  min-width: 50px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.star-label i {
  color: #f1c40f;
  margin-left: 3px;
}

.progress-bar {
  flex: 1;
  height: 12px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.5s ease;
  border-radius: 10px;
}

.rating-count {
  min-width: 40px;
  text-align: right;
  font-weight: 600;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Reviews Controls */
.reviews-controls {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--light);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.filter-btn:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-btn i {
  color: #f1c40f;
  margin-left: 3px;
}

/* Search and Sort Group */
.search-sort-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.search-form {
  flex: 1;
  min-width: 250px;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-group i {
  position: absolute;
  left: 15px;
  color: var(--gray);
}

.search-input-group input {
  width: 100%;
  padding: 12px 45px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.search-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.clear-search {
  position: absolute;
  right: 15px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
}

.clear-search:hover {
  color: var(--primary);
}

.sort-select {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  min-width: 180px;
}

.sort-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Active Filters */
.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 25px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
}

.filter-label {
  font-weight: 600;
  color: var(--dark);
  margin-right: 5px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-tag a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.filter-tag a:hover {
  opacity: 1;
}

.clear-all-filters {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-left: auto;
}

.clear-all-filters:hover {
  text-decoration: underline;
}

/* Results Count */
.results-count {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Enhanced Reviews Grid */
.reviews-grid-enhanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}





/* No Reviews Found */
.no-reviews-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: var(--light);
  border-radius: 20px;
}

.no-reviews-found i {
  color: var(--gray);
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-reviews-found h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.no-reviews-found p {
  color: var(--gray);
  margin-bottom: 25px;
}

/* Pagination Ellipsis */
.pagination-ellipsis {
  padding: 10px 15px;
  color: var(--gray);
}

/* Google Badge on Review Card */

/* =================================================
      5-Star Slider for Home Page
      ================================================= */

/* Slider Container */
.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}



/* Slider Track */
.reviews-slider {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 10px 0;
}

.slider-slide {
  min-width: 100%;
  padding: 0 10px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}



/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot:hover {
  background: var(--primary-light);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Slider Card Enhancement */
.slider-slide .testimonial-card {
  margin: 0;
  height: 100%;
}

/* Utility Classes for Alignment */
.hero-cta-group-center {
  justify-content: center;
}

.feature-card-aligned {
  text-align: left;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-icon-large {
  margin: 0;
  font-size: 30px;
}

/* Subsection Title */
.subsection-title {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Demo Form Button */
/* Sticky Sidebar Form */
.demo-form-sticky {
  position: sticky;
  top: 100px; /* Adjust based on header height */
  z-index: 10;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
/* Course Detail Page Cleanup Classes */
.hero-v2-title-wrap {
    margin-left: auto;
    margin-right: auto;
}

.hero-v2-desc-wrap {
    margin-left: auto;
    margin-right: auto;
}

.section-title-premium-left {
    text-align: left;
    margin-bottom: 30px;
}

.course-overview-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-card-modern {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-icon-container {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-icon-image {
    width: 25px;
}

.highlight-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.tool-image-fixed {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.career-role-name {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.career-role-meta {
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-answer-inner {
    padding: 0 20px 20px;
}

.premium-form-input {
    height: 55px;
    border-radius: 12px;
}

.premium-form-submit {
    height: 60px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.form-security-text {
    font-size: 0.85rem;
}

/* ================================================
   CENTRALIZED FRONTEND STYLES
   ================================================ */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
}

.btn-block {
    width: 100%;
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.course-detail-content h3 {
    line-height: 30px;
}
.hero-centered-content .hero-cta-group {
    justify-content: center;
}
.reviews-section {
    padding-top: 80px;
}
.curriculum{
  padding-top:90px;
}
/* Frontend Utility Classes */
.img-cover { object-fit: cover !important; }
.img-contain { object-fit: contain !important; }
.w-100 { width: 100% !important; }
.h-200 { height: 200px !important; }
.d-block { display: block !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }

.fs-1-8 { font-size: 1.8rem !important; }
.mb-10 { margin-bottom: 10px !important; }
.rounded-top-15 { border-radius: 15px 15px 0 0 !important; }

.fs-3 { font-size: 3rem !important; }

/* ================================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ================================================ */

/* --- Max-Width Breakpoints (Desktop to Mobile) --- */

/* Extra Large Screens (1440px) */
@media (max-width: 1440px) {
  .container-wide,
  .container-xxl {
    max-width: 1200px;
    padding: 0 20px;
  }
  .container-fluid {
    padding: 0 30px;
  }
}

/* Large Screens (1200px) */
@media (max-width: 1200px) {
  .container-wide,
  .container-xxl {
    max-width: 960px;
  }
  .hero-content-left .course-detail-title {
    font-size: 3.2rem;
  }
  .hero-v2 .course-detail-title {
    font-size: 3.5rem;
  }
}

/* Tablets & Small Desktops (991px) */
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 20px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .nav-links {
    position: absolute;
    gap: 10px;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  .mobile-sticky-cta {
    display: block;
    width: calc(100% - 90px);
    left: 20px;
    transform: none;
    bottom: 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .course-detail-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .section-padding {
    padding: 50px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content-left .course-detail-description {
    margin: 0 auto 40px;
  }
  .hero-benefits-grid {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-image-right img {
    transform: none;
    max-width: 500px;
    max-height: 400px;
    margin: 0 auto;
  }
  .floating-card img {
    max-height: 380px;
  }
  .trust-bar {
    margin-top: -40px;
  }
  .premium-form-box {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
  .hero-v2 {
    padding: 120px 0 100px;
  }
  .hero-v2 .course-detail-title {
    font-size: 3rem;
  }
  .hero-v3 {
    padding: 100px 0 80px;
  }
  .hero-stats-mini {
    gap: 40px;
  }
  .hero-benefit-item {
    justify-content: center;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .container,
  .container-wide,
  .container-fluid,
  .container-xl,
  .container-xxl {
    padding: 0 15px;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
  .instructor-flex {
    flex-direction: column;
    text-align: center;
  }
  .instructor-avatar-box {
    margin: 0 auto;
  }
  .hero-content-left .course-detail-title {
    font-size: 2.5rem;
  }
  .hero-benefits-grid {
    grid-template-columns: 1fr;
  }
  .course-detail-hero {
    padding: 80px 0 100px;
  }
  .hero-v2 {
    padding: 100px 0 80px;
  }
  .hero-v2 .course-detail-title {
    font-size: 2.2rem;
  }
  .hero-v2 .course-detail-description {
    font-size: 1.1rem;
  }
  .hero-stats-mini {
    gap: 30px;
  }
  .stat-mini span {
    font-size: 2rem;
  }
  .premium-form-box {
    padding: 35px 25px;
  }
  .premium-form-title {
    font-size: 1.6rem;
  }
  .hero-image-right img {
    max-height: 300px;
  }
  .floating-card img {
    max-height: 280px;
  }
  .hero-v3 {
    padding: 80px 0 60px;
  }
  .reviews-stats-enhanced {
    grid-template-columns: 1fr;
  }
  .reviews-slider-container {
    padding: 0 40px;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* Small Tablets (767px) */

  .review-card {
    padding: 20px;
  }
  .review-photo,
  .review-avatar {
    width: 45px;
    height: 45px;
  }
  .review-author-name {
    font-size: 0.95rem;
  }
  .review-text {
    font-size: 0.9rem;
  }
  .stat-card {
    padding: 25px 20px;
  }
  .stat-content h3 {
    font-size: 2rem;
  }
  .page-hero .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }

}

/* Mobile Phones (576px) */
@media (max-width: 576px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --- Min-Width Breakpoints (Mobile to Desktop) --- */

/* Tablets & Larger (768px) */
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Desktops & Larger (992px) */
@media (min-width: 992px) {
  .snap-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
  }
  .snap-item {
    flex: none;
    width: auto;
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid-enhanced {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   Refactored Internal CSS (Fixed Specificity)
   ========================================= */

/* Mega Menu Styles - High Specificity */
.navbar .nav-links .mega-menu-item {
    position: static !important; /* Allow full width */
}

.navbar .nav-links .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary);
    display: block; /* Ensure it's block but hidden via opacity/visibility */
}

/* Unified Active State for Dropdown & Mega Menu */
.has-dropdown.dropdown-active .dropdown-menu,
.has-dropdown.dropdown-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.view-all-courses-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-all-courses-btn:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Remove Hover Effects (Click Only) */
@media (min-width: 992px) {
    /* Hover effect removed as per user request */
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-cat-title {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 10px;
}

.mega-list a {
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
    display: block;
}

.mega-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.view-all-link {
    font-weight: 600;
    color: var(--primary) !important;
    margin-top: 10px;
    font-size: 13px !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar .nav-links .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0 20px;
        display: none; /* Hidden by default on mobile */
        border-top: none;
        background: #f9f9f9;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }
    
    /* Show menu when the parent li has 'dropdown-active' class (toggled via JS) */
    .navbar .nav-links .mega-menu-item.dropdown-active .mega-menu {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mega-cat-title {
        margin-top: 15px;
    }
    
    /* Mobile Toggle Logic */
    .nav-link-wrapper {
        display: flex;
        justify-content: center; /* Ensure arrow is on the right */
        align-items: center;
        width: 100%;
    }

    
    .mobile-menu-toggle {
        padding: 10px 15px;
        cursor: pointer;
        color: var(--primary);
        font-size: 1.2rem;
    }
    
    /* Standard Dropdown Mobile Toggle */
    .has-dropdown.dropdown-active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: block;
    }
}

/* Premium UI Utilities */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.premium-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 435px;
    margin: 0 auto;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.aspect-ratio-16-9 {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

/* Global Premium Hero */
.page-hero-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}

.page-hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb),0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero-premium h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.breadcrumb-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.breadcrumb-premium a {
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-premium a:hover {
    color: var(--primary);
}

.breadcrumb-premium i {
    font-size: 10px;
    opacity: 0.5;
}

/* Category Card Specifics */
.category-grid {
    gap: 30px;
}

.cat-image-wrapper {
    height: 160px;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cat-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-card:hover .cat-bg-img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cat-icon-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cat-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-content h3 {
    margin: 10px 0 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3436;
}

.cat-desc {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-meta-divider {
    height: 1px;
    background: #f1f2f6;
    margin: 0 0 20px;
    width: 100%;
}

.cat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-count {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-count i {
    color: var(--primary);
    margin-right: 5px;
}

.btn-circle-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-card:hover .btn-circle-arrow {
    background: var(--primary);
    color: #fff !important;
    transform: translateX(5px);
    opacity: 1;
}

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

/* Card Styles */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.card-image-wrapper img {
    transition: transform 0.5s ease;
}

.premium-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta-top {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #888;
}

.meta-item i {
    color: var(--primary);
    margin-right: 5px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-title a {
    color: #2d3436;
    transition: color 0.2s;
}

.card-title a:hover {
    color: var(--primary);
}

.card-excerpt {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f2f6;
}

.btn-link-premium {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.btn-link-premium:hover {
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
}

.course-placeholder {
    background: #dfe6e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #b2bec3;
}

/* Global Fixes */
body {
    overflow-x: hidden;
}

/* Mobile Menu Scroll Fix */
@media (max-width: 991px) {
    .nav-links.active {
        overflow-y: auto;
        max-height: 80vh; /* Leave space for header */
        padding-bottom: 50px;
    }
}
