/* ==========================================
   STYLE.CSS - MASTER LAYOUT & COMPONENT DESIGN
   ========================================== */

/* Grid and Flex Layout Utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-column { display: flex; flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-green { color: var(--color-green); }
.text-purple { color: var(--color-purple); }

/* Typography Extras */
.section-title {
  margin-bottom: 3.5rem;
  max-width: 700px;
}
.section-title.center {
  margin-left: auto;
  margin-right: auto;
}
.section-title h2 {
  margin-bottom: 0.75rem;
}
.section-title h2 span {
  color: var(--color-green);
}
.section-title p {
  color: var(--color-muted);
  font-size: 1.1rem;
}

/* Mobile Nav Overlay Upgrade */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 30px rgba(26,26,34,0.08);
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}
.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
}

/* USP "Why DCA" Grid */
.usp-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  height: 100%;
}
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 156, 91, 0.2);
}
.usp-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-green-soft);
  color: var(--color-green-dark);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.usp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}
.usp-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Course Cards */
.course-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 33, 214, 0.2);
}
.course-card-header {
  position: relative;
  background-color: var(--color-purple-soft);
  padding: 2rem;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-green);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.course-card-header h3 {
  color: var(--color-purple-dark);
  font-size: 1.3rem;
  font-weight: 700;
}
.course-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.course-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.course-bullets {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.course-bullets li {
  font-size: 0.95rem;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.course-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
}
.course-card-footer {
  border-top: 1px solid var(--color-line);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stats Counter Strip */
.stats-strip {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 3rem 0;
}
.stat-box {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Curriculum Accordion (using Details HTML) */
.curriculum-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
details.module-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
details.module-item[open] {
  border-color: var(--color-green);
  box-shadow: var(--shadow-sm);
}
summary.module-header {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary.module-header::-webkit-details-marker {
  display: none;
}
summary.module-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-green);
  font-weight: 400;
  transition: transform 0.2s ease;
}
details.module-item[open] summary.module-header::after {
  content: '−';
}
.module-content {
  padding: 1.5rem;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-line);
}
.module-topics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}
@media (max-width: 576px) {
  .module-topics-list { grid-template-columns: 1fr; }
}
.module-topics-list li {
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.25rem;
}
.module-topics-list li::before {
  content: '•';
  color: var(--color-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Tools Logo Wall */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.tool-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--color-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  user-select: none;
}
.tool-item:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
  transform: translateY(-2px);
}

/* Testimonials System */
.testimonials-block {
  padding: 4rem 0;
}
.testimonial-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-purple-soft);
  color: var(--color-purple-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-ink);
}
.author-info p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Forms (Lead Capture) */
.lead-form-container {
  background-color: #FFFFFF;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow-md);
  max-width: 650px;
  margin: 0 auto;
}
.form-title {
  text-align: center;
  margin-bottom: 2rem;
}
.form-title h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.form-title p {
  color: var(--color-muted);
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #FFFFFF;
  color: var(--color-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px var(--color-purple-soft);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}
.form-urgency-note {
  font-size: 0.8rem;
  color: var(--color-green-dark);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  display: block;
}

/* Local SEO Details & Map Block */
.local-seo-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .local-seo-section { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
}
.contact-item-icon {
  color: var(--color-green);
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--color-muted);
}
.map-placeholder {
  width: 100%;
  height: 350px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Resource Directory - Upgraded Related Pages & Career Resources */
.resource-directory-container {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}
.resource-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.resource-col h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-green-dark);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--color-green-soft);
  padding-bottom: 0.5rem;
}
.resource-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resource-col li a {
  font-size: 0.95rem;
  color: var(--color-ink);
  font-weight: 500;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.resource-col li a:hover {
  color: var(--color-purple);
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .resource-directory-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .resource-directory-container {
    padding: 2rem 1.5rem;
  }
}

/* Tables for Fees / Syllabus */
.fee-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}
.fee-table th {
  background-color: var(--color-surface);
  font-weight: 700;
  padding: 1rem;
  border-bottom: 1.5px solid var(--color-line);
}
.fee-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-line);
}
.fee-table tr:last-child td {
  border-bottom: none;
}
.fee-table tr:hover td {
  background-color: var(--color-surface-alt);
}

/* Accordion FAQs */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-list details {
  background-color: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-list details[open] {
  border-color: var(--color-purple);
}
.faq-list summary {
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-purple);
  font-weight: bold;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 1.25rem 1.5rem;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-line);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Mega Menu Layout */
footer {
  background-color: #111116;
  color: #ECECEE;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: 2rem;
  font-size: 0.9rem;
  border-top: 4px solid var(--color-green);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--color-green);
}
.footer-about p {
  color: #9A9AAB;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #22222E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s ease;
}
.footer-socials a:hover {
  background-color: var(--color-purple);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-green);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: #9A9AAB;
}
.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid #22222E;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: #6C6C80;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-bottom-links a {
  color: #6C6C80;
  font-size: 0.85rem;
}
.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* Sticky CTAs */
.sticky-desktop-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: block;
}
@media (max-width: 768px) {
  .sticky-desktop-cta { display: none; }
}

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 15px rgba(26,26,34,0.1);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  z-index: 95;
  border-top: 1px solid var(--color-line);
}
@media (max-width: 768px) {
  .sticky-mobile-bar { display: grid; }
  body { padding-bottom: 60px; } /* Prevent footer clipping */
}
.sticky-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 60px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.sticky-mobile-btn.btn-call {
  background-color: var(--color-green);
  color: #FFFFFF;
}
.sticky-mobile-btn.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}
.sticky-mobile-btn:active {
  opacity: 0.9;
}

/* Key Takeaway box / Info widget */
.info-takeaway-box {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-green);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-takeaway-box h4 {
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.info-takeaway-box p {
  font-size: 0.95rem;
  margin: 0;
}

/* Conversion Widgets & CTAs */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 99;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Social Proof Toast Alert */
.social-toast {
  position: fixed;
  bottom: 7.5rem;
  left: 2rem;
  z-index: 98;
  background-color: #FFFFFF;
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-green);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.social-toast.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.social-toast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
}
.social-toast-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-muted);
}
.social-toast-body {
  font-size: 0.9rem;
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.4;
}
.social-toast-time {
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 700;
}

/* Exit Intent Modal Overlay */
.exit-intent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 34, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-intent-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.exit-intent-modal {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.exit-intent-overlay.active .exit-intent-modal {
  transform: scale(1);
}
.exit-intent-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-muted);
}
.exit-intent-modal h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
}
.exit-intent-modal h3 span {
  color: var(--color-green);
}
.exit-intent-modal p {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.exit-intent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Countdown Timer Widget */
.countdown-container {
  background-color: var(--color-purple-soft);
  border: 1.5px dashed var(--color-purple);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}
.countdown-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-purple-dark);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-purple-dark);
}
.countdown-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}

/* Scroll Reveal Utility Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hide widgets on mobile bottom sticky bar collision */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 5.5rem;
    left: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .social-toast {
    bottom: 9.5rem;
    left: 1rem;
    max-width: 280px;
  }
}

/* ==========================================================================
   HOMEPAGE REDESIGN STYLES - Matches digitalcharanjeet.in Branding
   ========================================================================== */

/* 6-box Stats Banner */
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}
.home-stats-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20, 156, 91, 0.25);
}
.home-stats-card .stat-prefix {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.home-stats-card .stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.home-stats-card .stat-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .home-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* "Do you know?" Gradient Fact Banner */
.do-you-know-banner {
  background: linear-gradient(135deg, var(--color-green-soft) 0%, #ffffff 50%, var(--color-purple-soft) 100%);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 1000px;
  box-shadow: var(--shadow-md);
}
.do-you-know-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-green);
  margin-bottom: 1rem;
}
.do-you-know-banner p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--color-ink);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.do-you-know-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Typical Salary Matrix */
.salary-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.salary-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.salary-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 33, 214, 0.2);
}
.salary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.salary-card p.salary-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.salary-card .salary-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-purple);
  margin-bottom: 0.25rem;
}
.salary-card .salary-annual {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .salary-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .salary-matrix-grid {
    grid-template-columns: 1fr;
  }
}

/* Disclaimer / Note Styling */
.disclaimer-box {
  background-color: var(--color-surface);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.disclaimer-box h4 {
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.disclaimer-box p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Career Opportunities Cards */
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.career-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 33, 214, 0.2);
}
.career-cta-box {
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.career-cta-box:hover {
  transform: scale(1.01);
}
@media (max-width: 991px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .career-grid {
    grid-template-columns: 1fr;
  }
}

/* Instructor Bio Layout Info */
.instructor-image-container {
  box-shadow: var(--shadow-md);
}
.instructor-credentials div {
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.5rem;
}
.instructor-credentials div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Step-by-Step Placement Roadmap Timeline */
.placement-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.timeline-step {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: calc(20% - 1.25rem);
  min-width: 200px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.timeline-step:hover {
  border-color: var(--color-purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.timeline-step .step-num {
  background-color: var(--color-purple-soft);
  color: var(--color-purple-dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--color-purple);
}
.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}
.timeline-step p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-muted);
}
@media (max-width: 1200px) {
  .timeline-step {
    width: calc(33.33% - 1rem);
  }
}
@media (max-width: 768px) {
  .timeline-step {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 480px) {
  .timeline-step {
    width: 100%;
  }
}

