/* ============================================================
   DPM CLASSES - MODERN HERO SECTION STYLESHEET (UNIQUE NAMESPACE)
   ============================================================ */

.dpm-hero-wrapper {
  background-color: #0b1120;
  color: #ffffff;
  padding: 80px 0 60px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Background Canvas & Glow Effects */
.dpm-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.dpm-hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}

.dpm-hero-glow-1 {
  background: #3b82f6;
  top: -50px;
  left: -50px;
}

.dpm-hero-glow-2 {
  background: #8b5cf6;
  bottom: -50px;
  right: -50px;
}

/* Trust Badge */
.dpm-hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.dpm-hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.dpm-hero-badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

/* Main Titles */
.dpm-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.dpm-hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.6;
}

/* Buttons */
.dpm-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dpm-hero-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.dpm-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
  color: #ffffff;
}

.dpm-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.dpm-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Stats Counter */
.dpm-hero-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #38bdf8;
}

.dpm-hero-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Glassmorphism Card */
.dpm-hero-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dpm-hero-card-icon {
  font-size: 2.5rem;
}

.dpm-hero-card-title {
  font-weight: 700;
  color: #f8fafc;
}

.dpm-hero-card-desc {
  font-size: 0.9rem;
  color: #94a3b8;
}

.dpm-hero-feature-item {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.dpm-hero-card-btn {
  display: block;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dpm-hero-card-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Floating Badges */
.dpm-hero-float-tag {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  animation: dpmFloat 4s ease-in-out infinite;
}

.dpm-hero-float-top-left {
  top: -15px;
  left: -20px;
}

.dpm-hero-float-bottom-right {
  bottom: -15px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes dpmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Mobile Responsive Overrides */
@media (max-width: 991px) {
  .dpm-hero-wrapper {
    padding: 50px 0;
  }
  .dpm-hero-title {
    font-size: 2.1rem;
  }
  .dpm-hero-float-tag {
    display: none; /* Hide floating tags on mobile to avoid overcrowding */
  }
}


/* about section */

/* ============================================================
   DPM CLASSES - MODERN ABOUT US STYLESHEET (UNIQUE NAMESPACE)
   ============================================================ */

.dpm-about-wrapper {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 90px 0;
}

/* Section Tag */
.dpm-about-tag {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Headings & Text */
.dpm-about-heading {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.dpm-about-heading-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-about-description {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* Left Media Card & Glow */
.dpm-about-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #2563eb;
  filter: blur(100px);
  opacity: 0.25;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-about-main-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dpm-about-experience-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dpm-about-exp-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1;
}

.dpm-about-exp-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.3;
}

.dpm-about-card-quote {
  font-size: 1rem;
  font-style: italic;
  color: #cbd5e1;
  line-height: 1.6;
}

.dpm-about-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Floating Pills */
.dpm-about-pill {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: #f8fafc;
}

.dpm-about-pill-icon {
  font-size: 1.5rem;
}

.dpm-about-pill-top {
  top: -20px;
  right: -10px;
}

.dpm-about-pill-bottom {
  bottom: -20px;
  left: -10px;
}

/* Feature Boxes Grid */
.dpm-about-feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.dpm-about-feature-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
}

.dpm-about-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.dpm-about-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.dpm-about-feature-text {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* Button */
.dpm-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.4);
}

.dpm-about-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(2, 132, 199, 0.6);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-about-wrapper {
    padding: 60px 0;
  }
  .dpm-about-heading {
    font-size: 1.85rem;
  }
  .dpm-about-pill {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 15px;
  }
}


/* courses */

/* ============================================================
   DPM CLASSES - MODERN COURSES STYLESHEET (UNIQUE NAMESPACE)
   ============================================================ */

.dpm-courses-wrapper {
  background-color: #0b1120;
  color: #f8fafc;
  padding: 90px 0;
}

/* Header Elements */
.dpm-courses-tag {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dpm-courses-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.dpm-courses-title-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-courses-subtitle {
  font-size: 1rem;
  color: #94a3b8 !important;
  max-width: 680px;
  margin: 0 auto;
}

/* Nav Pills Filtering */
.dpm-courses-pills {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dpm-courses-pills .nav-link {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.dpm-courses-pills .nav-link.active,
.dpm-courses-pills .nav-link:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Course Card Design */
.dpm-courses-card {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dpm-courses-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  background: rgba(30, 41, 59, 0.85);
}

/* Badges & Tags */
.dpm-courses-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.dpm-badge-primary { background: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(37, 99, 235, 0.3); }
.dpm-badge-info { background: rgba(14, 165, 233, 0.2); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.3); }
.dpm-badge-warning { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.dpm-badge-success { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.dpm-badge-danger { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.dpm-badge-accent { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

.dpm-courses-board-tag {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

/* Featured Card Ribbon */
.dpm-courses-card-featured {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(30, 41, 59, 0.9);
}

.dpm-courses-featured-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  background: #f59e0b;
  color: #000000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 35px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

/* Card Content */
.dpm-courses-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.dpm-courses-card-text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.dpm-courses-feature-item {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.dpm-courses-mode {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.dpm-courses-btn-link {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.dpm-courses-btn-link:hover {
  gap: 10px;
}

/* Bottom Callout Box */
.dpm-courses-callout {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.dpm-courses-callout-btn {
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dpm-courses-callout-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .dpm-courses-wrapper {
    padding: 60px 0;
  }
  .dpm-courses-title {
    font-size: 1.85rem;
  }
  .dpm-courses-pills {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* faculty */
/* ============================================================
   DPM CLASSES - MODERN FACULTY STYLESHEET (UNIQUE NAMESPACE)
   ============================================================ */

.dpm-faculty-wrapper {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 90px 0;
}

.dpm-faculty-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #3b82f6;
  filter: blur(120px);
  opacity: 0.18;
  top: 20%;
  right: 5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Header Tags */
.dpm-faculty-tag {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dpm-faculty-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.dpm-faculty-title-gradient {
  background: linear-gradient(135deg, #c084fc 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-faculty-subtitle {
  font-size: 1rem;
  color: #94a3b8 !important;
  max-width: 650px;
  margin: 0 auto;
}

/* Faculty Card */
.dpm-faculty-card {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  transition: all 0.3s ease;
}

.dpm-faculty-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Avatar Placeholder */
.dpm-faculty-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
}

.dpm-faculty-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.dpm-faculty-exp-tag {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Text & Badges */
.dpm-faculty-subject-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dpm-faculty-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.dpm-faculty-degree {
  font-size: 0.82rem;
  color: #94a3b8 !important;
}

.dpm-faculty-bio {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.dpm-faculty-classes {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

/* Bottom Banner */
.dpm-faculty-banner {
  background: rgba(30, 41, 59, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.dpm-faculty-check {
  color: #34d399;
  font-weight: 800;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .dpm-faculty-wrapper {
    padding: 60px 0;
  }
  .dpm-faculty-title {
    font-size: 1.85rem;
  }
}


/* ============================================================
   DPM CLASSES - MODERN TESTIMONIALS STYLESHEET (UNIQUE NAMESPACE)
   ============================================================ */

.dpm-testimonials-wrapper {
  background-color: #0b1120;
  color: #f8fafc;
  padding: 90px 0;
}

.dpm-testimonials-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #f59e0b;
  filter: blur(140px);
  opacity: 0.12;
  bottom: 10%;
  left: 5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Header Elements */
.dpm-testimonials-tag {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dpm-testimonials-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.dpm-testimonials-title-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-testimonials-subtitle {
  font-size: 1rem;
  color: #94a3b8 !important;
  max-width: 650px;
  margin: 0 auto;
}

/* Stats Counter Grid Cards */
.dpm-testimonials-stat-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.dpm-testimonials-stat-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-3px);
}

.dpm-testimonials-stat-icon {
  font-size: 1.5rem;
}

.dpm-testimonials-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #38bdf8;
}

.dpm-testimonials-stat-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Review Cards */
.dpm-testimonials-card {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.dpm-testimonials-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.dpm-testimonials-featured {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(30, 41, 59, 0.85);
}

.dpm-testimonials-rating {
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Badges */
.dpm-testimonials-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.dpm-badge-board {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.dpm-badge-defence {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.dpm-badge-upboard {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Content */
.dpm-testimonials-quote {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: italic;
}

.dpm-testimonials-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.dpm-testimonials-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.dpm-testimonials-meta {
  font-size: 0.78rem;
}

/* CTA Bar */
.dpm-testimonials-cta {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.dpm-testimonials-btn {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dpm-testimonials-btn:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .dpm-testimonials-wrapper {
    padding: 60px 0;
  }
  .dpm-testimonials-title {
    font-size: 1.85rem;
  }
}

/* ============================================================
   DPM CLASSES - CONTACT & LOCATION STYLESHEET (NAMESPACED)
   ============================================================ */

.dpm-contact-wrapper {
  background-color: #080d1a;
  color: #f8fafc;
  padding: 90px 0;
}

.dpm-contact-glow-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #2563eb;
  filter: blur(150px);
  opacity: 0.15;
  top: 10%;
  right: 5%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-contact-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #38bdf8;
  filter: blur(140px);
  opacity: 0.1;
  bottom: 5%;
  left: 5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Header */
.dpm-contact-tag {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dpm-contact-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
}

.dpm-contact-title-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-contact-subtitle {
  font-size: 1rem;
  color: #94a3b8 !important;
  max-width: 650px;
  margin: 0 auto;
}

/* Info Box */
.dpm-contact-info-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.dpm-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Form Card */
.dpm-contact-form-card {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.dpm-contact-label {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
}

.dpm-contact-input {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease;
}

.dpm-contact-input:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
  outline: none;
}

.dpm-contact-input::placeholder {
  color: #64748b !important;
}

/* Custom Select styling */
select.dpm-contact-input option {
  background: #0f172a;
  color: #ffffff;
}

/* Submit Button */
.dpm-contact-submit-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dpm-contact-submit-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

/* Map Frame */
.dpm-contact-map-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 767px) {
  .dpm-contact-wrapper {
    padding: 60px 0;
  }
  .dpm-contact-title {
    font-size: 1.85rem;
  }
}


/* topbar */
/* ============================================================
   DPM CLASSES - MODERN HEADER & NAVBAR STYLES
   ============================================================ */

.dpm-header-wrapper {
  position: relative;
  z-index: 1030;
}

/* --- TOPBAR STYLING --- */
.dpm-topbar {
  background-color: #060a12;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.dpm-topbar-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.dpm-topbar-link:hover {
  color: #38bdf8;
}

.dpm-topbar-divider {
  color: rgba(255, 255, 255, 0.2);
}

.dpm-social-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dpm-social-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- NAVBAR STYLING --- */
.dpm-navbar {
  background-color: #0b1120;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.dpm-navbar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.dpm-brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* Navigation Links */
.dpm-nav-link {
  color: #94a3b8 !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.dpm-nav-link:hover,
.dpm-nav-link.active {
  color: #38bdf8 !important;
  background-color: rgba(56, 189, 248, 0.08);
}

/* Dropdown Menu */
.dpm-dropdown-menu {
  background-color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  padding: 8px;
  margin-top: 10px !important;
}

.dpm-dropdown-item {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dpm-dropdown-item:hover {
  background-color: rgba(37, 99, 235, 0.2);
  color: #38bdf8;
}

/* CTA Button */
.dpm-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.dpm-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Mobile Toggler */
.dpm-toggler {
  padding: 6px 10px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
}

.dpm-toggler .navbar-toggler-icon {
  filter: invert(1);
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
  .dpm-navbar-collapse {
    background-color: #0b1120;
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .dpm-nav-link {
    padding: 10px 14px !important;
  }

  .dpm-dropdown-menu {
    background-color: rgba(15, 23, 42, 0.6);
    margin-top: 4px !important;
    padding-left: 10px;
  }
}



/* temporary */
/* ============================================================
   DPM CLASSES - HERO BANNER STYLESHEET (NAMESPACED)
   ============================================================ */

.dpm-hero-wrapper {
  background-color: #0b1120;
  color: #f8fafc;
  min-height: calc(100vh - 120px);
}

/* Background Ambient Lighting Effects */
.dpm-hero-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #2563eb;
  filter: blur(160px);
  opacity: 0.2;
  top: -5%;
  left: -5%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-hero-glow-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f59e0b;
  filter: blur(150px);
  opacity: 0.12;
  bottom: 0%;
  right: -5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Badge Component */
.dpm-hero-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.dpm-hero-badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: dpmPulse 1.8s infinite;
}

@keyframes dpmPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* Typography */
.dpm-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-hero-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-hero-subtitle {
  font-size: 1.05rem;
  color: #94a3b8 !important;
  line-height: 1.6;
}

/* Action Buttons */
.dpm-hero-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.dpm-hero-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
}

.dpm-hero-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dpm-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

/* Key Metrics */
.dpm-hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #38bdf8;
}

.dpm-hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Feature Card (Right Side) */
.dpm-hero-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dpm-hero-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(56, 189, 248, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.dpm-hero-pill-tag {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.dpm-hero-feature-list li {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.dpm-hero-proof-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dpm-hero-arrow-link {
  width: 36px;
  height: 36px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.dpm-hero-arrow-link:hover {
  background: #38bdf8;
  color: #0b1120;
  transform: translateX(3px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .dpm-hero-title {
    font-size: 2.1rem;
  }
  .dpm-hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .dpm-hero-title {
    font-size: 1.75rem;
  }
  .dpm-hero-stat-number {
    font-size: 1.4rem;
  }
  .dpm-hero-stat-label {
    font-size: 0.72rem;
  }
}


/* footer */
/* ============================================================
   DPM CLASSES - FOOTER STYLESHEET (NAMESPACED)
   ============================================================ */

.dpm-footer-wrapper {
  background-color: #070b14;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Ambient Glow */
.dpm-footer-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.08;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.dpm-footer-accent {
  color: #38bdf8;
}

.dpm-footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dpm-footer-text {
  color: #94a3b8;
  line-height: 1.6;
}

/* Social Media Buttons */
.dpm-footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dpm-footer-social-link:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-3px);
}

/* Link Lists */
.dpm-footer-links li {
  margin-bottom: 10px;
}

.dpm-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.88rem;
  display: inline-block;
}

.dpm-footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.dpm-footer-links i {
  font-size: 0.75rem;
  color: #38bdf8;
}

/* Contact List */
.dpm-footer-contact span,
.dpm-footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.dpm-footer-contact a:hover {
  color: #38bdf8;
}

/* Bottom Bar */
.dpm-footer-copyright {
  color: #64748b;
  font-size: 0.82rem;
}

.dpm-footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.25s ease;
}

.dpm-footer-legal-links a:hover {
  color: #cbd5e1;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .dpm-footer-wrapper {
    text-align: left;
  }
}


/* about */
.dpm-bg-dark {
  background-color: #0b1120;
}

.dpm-bg-darker {
  background-color: #070b14;
}

.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }

.dpm-hero-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.dpm-philosophy-box {
  background: rgba(30, 41, 59, 0.6);
}

.dpm-stat-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dpm-feature-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dpm-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
}


/* ============================================================
   DPM CLASSES - ABOUT US HERO BANNER (NAMESPACED)
   ============================================================ */

.dpm-about-hero-wrapper {
  background-color: #060913;
  color: #f1f5f9;
  min-height: 80vh;
}

/* Background Lighting Glows */
.dpm-about-hero-glow-left {
  position: absolute;
  width: 380px;
  height: 380px;
  background: #0284c7;
  filter: blur(170px);
  opacity: 0.18;
  top: -10%;
  left: -5%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-about-hero-glow-right {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #d97706;
  filter: blur(180px);
  opacity: 0.12;
  bottom: -10%;
  right: -5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Top Pill Badge */
.dpm-about-hero-pill {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Typography */
.dpm-about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-about-hero-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-about-hero-description {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 600px;
}

/* Feature Tags */
.dpm-about-hero-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Buttons */
.dpm-about-hero-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.4);
}

.dpm-about-hero-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(2, 132, 199, 0.6);
}

.dpm-about-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dpm-about-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.4);
}

/* Right Media Card Framing */
.dpm-about-hero-media-container {
  padding: 10px;
}

.dpm-about-hero-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.dpm-about-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.dpm-about-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 19, 0) 40%, rgba(6, 9, 19, 0.85) 100%);
}

/* Floating Badges on Image */
.dpm-about-hero-float-card {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.dpm-about-hero-float-icon {
  width: 38px;
  height: 38px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.dpm-about-hero-float-stat {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 8px 14px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.dpm-about-hero-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  display: inline-block;
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .dpm-about-hero-title {
    font-size: 2.25rem;
  }
  .dpm-about-hero-img {
    height: 300px;
  }
  .dpm-about-hero-float-card {
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 575px) {
  .dpm-about-hero-title {
    font-size: 1.85rem;
  }
  .dpm-about-hero-description {
    font-size: 0.95rem;
  }
}


/* ============================================================
   DPM CLASSES - LEGACY & PHILOSOPHY STYLESHEET (NAMESPACED)
   ============================================================ */

.dpm-legacy-wrapper {
  background-color: #0b1120;
  color: #f8fafc;
}

/* Background Ambient Lighting Effect */
.dpm-legacy-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.12;
  top: 20%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
}

/* Top Pill Badge */
.dpm-legacy-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Typography */
.dpm-legacy-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-legacy-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-legacy-text {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* Success Cycle Card */
.dpm-legacy-cycle-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(12px);
}

.dpm-legacy-cycle-step {
  flex: 1;
  min-width: 70px;
}

.dpm-legacy-step-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8;
}

.dpm-legacy-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f5f9;
  display: block;
}

.dpm-legacy-arrow {
  color: #64748b;
  font-size: 0.85rem;
}

/* Right Pillar Cards */
.dpm-legacy-pillar-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.dpm-legacy-pillar-card:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-3px);
}

.dpm-legacy-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dpm-legacy-card-text {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-legacy-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 575px) {
  .dpm-legacy-title {
    font-size: 1.65rem;
  }
  .dpm-legacy-step-num {
    font-size: 0.95rem;
  }
  .dpm-legacy-step-label {
    font-size: 0.75rem;
  }
}


/* ============================================================
   DPM CLASSES - WHY CHOOSE US STYLESHEET (NAMESPACED)
   ============================================================ */

.dpm-why-wrapper {
  background-color: #070b14;
  color: #f8fafc;
}

/* Background Lighting Glows */
.dpm-why-glow-top {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.12;
  top: 5%;
  left: -5%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-why-glow-bottom {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #f59e0b;
  filter: blur(180px);
  opacity: 0.1;
  bottom: 5%;
  right: -5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Top Pill Badge */
.dpm-why-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Typography */
.dpm-why-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-why-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-why-subtitle {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Feature Cards */
.dpm-why-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dpm-why-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.dpm-why-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.dpm-why-card-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Callout Box */
.dpm-why-callout {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.dpm-why-btn {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

.dpm-why-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.6);
}

/* Utility Class */
.max-w-3xl {
  max-width: 48rem;
}

.text-slate-300 {
  color: #cbd5e1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-why-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 575px) {
  .dpm-why-title {
    font-size: 1.65rem;
  }
}



/* ============================================================
   DPM CLASSES - HOLISTIC DEVELOPMENT & CTA STYLESHEET
   ============================================================ */

.dpm-holistic-wrapper {
  background-color: #070b14;
  color: #f8fafc;
}

/* Ambient Background Lighting Glows */
.dpm-holistic-glow-left {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #0284c7;
  filter: blur(200px);
  opacity: 0.12;
  top: 10%;
  left: -10%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-holistic-glow-right {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #f59e0b;
  filter: blur(200px);
  opacity: 0.1;
  bottom: 10%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
}

/* Top Pill Badge */
.dpm-holistic-badge {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Typography */
.dpm-holistic-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-holistic-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-holistic-subtitle {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Pillar Cards */
.dpm-pillar-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dpm-pillar-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateX(6px);
}

.dpm-pillar-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dpm-pillar-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Image Frame & Floating Card */
.dpm-holistic-image-wrap {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dpm-main-img {
  height: 420px;
}

.dpm-floating-stat-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.dpm-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Call to Action Box */
.dpm-cta-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.dpm-cta-badge {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Action Buttons */
.dpm-btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

.dpm-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(2, 132, 199, 0.6);
}

.dpm-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dpm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Helpers & Utilities */
.fw-extrabold {
  font-weight: 800;
}

.text-slate-300 {
  color: #cbd5e1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-holistic-title {
    font-size: 1.95rem;
  }
  .dpm-main-img {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .dpm-holistic-title {
    font-size: 1.65rem;
  }
  .dpm-main-img {
    height: 280px;
  }
}


/* ============================================================
   DPM CLASSES - COURSES HERO STYLESHEET
   ============================================================ */

.dpm-hero-wrapper {
  background-color: #070b14;
  color: #f8fafc;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Ambient Background Glows */
.dpm-hero-glow-left {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #0284c7;
  filter: blur(220px);
  opacity: 0.15;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-hero-glow-right {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #f59e0b;
  filter: blur(200px);
  opacity: 0.12;
  bottom: 0;
  right: -5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Status Pulse Badge */
.dpm-hero-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.dpm-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(56, 189, 248, 0.4);
  animation: dpmPulse 2s infinite;
}

@keyframes dpmPulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* Typography */
.dpm-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.dpm-hero-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-hero-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 620px;
}

/* Search Bar Box */
.dpm-hero-search-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dpm-custom-select {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
}

.dpm-custom-select:focus {
  box-shadow: none;
}

.dpm-btn-hero-search {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px -4px rgba(2, 132, 199, 0.5);
}

.dpm-btn-hero-search:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -4px rgba(2, 132, 199, 0.7);
}

/* Stats Footer */
.dpm-stat-bullet {
  font-size: 1.1rem;
}

.dpm-stat-label {
  font-size: 0.75rem;
  color: #64748b;
}

/* Image Showcase & Floating Cards */
.dpm-hero-img-container {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dpm-hero-img {
  height: 440px;
}

.dpm-hero-float-card {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.dpm-hero-float-card.card-1 {
  top: 10%;
  left: -8%;
}

.dpm-hero-float-card.card-2 {
  bottom: 8%;
  right: -5%;
}

.dpm-float-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

/* Utility Helpers */
.extra-small {
  font-size: 0.72rem;
}

.text-slate-400 {
  color: #94a3b8;
}

.bg-slate-900 {
  background-color: #0f172a !important;
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-hero-title {
    font-size: 2.3rem;
  }
  .dpm-hero-float-card.card-1 {
    top: 5%;
    left: 2%;
  }
  .dpm-hero-float-card.card-2 {
    bottom: 5%;
    right: 2%;
  }
  .dpm-hero-img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .dpm-hero-title {
    font-size: 1.85rem;
  }
  .dpm-hero-search-box {
    padding: 1rem !important;
  }
  .dpm-hero-img {
    height: 290px;
  }
  .dpm-hero-float-card {
    position: static !important;
    margin-top: 10px;
  }
}


/* ============================================================
   DPM CLASSES - CATEGORY FILTER & COURSE GRID STYLESHEET
   ============================================================ */

.dpm-grid-wrapper {
  background-color: #070b14;
  color: #f8fafc;
}

/* Ambient Background Lighting Glows */
.dpm-grid-glow-top {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #0284c7;
  filter: blur(200px);
  opacity: 0.12;
  top: 5%;
  right: -5%;
  border-radius: 50%;
  pointer-events: none;
}

.dpm-grid-glow-bottom {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #f59e0b;
  filter: blur(200px);
  opacity: 0.1;
  bottom: 5%;
  left: -5%;
  border-radius: 50%;
  pointer-events: none;
}

/* Badge & Typography */
.dpm-grid-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.dpm-grid-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dpm-grid-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dpm-grid-subtitle {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Filter Navigation Pills */
.dpm-filter-pills .nav-link {
  color: #94a3b8;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dpm-filter-pills .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.dpm-filter-pills .nav-link.active {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 8px 16px -4px rgba(2, 132, 199, 0.5);
}

/* Course Cards */
.dpm-course-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dpm-course-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

.dpm-course-card.border-highlight {
  border-color: rgba(251, 191, 36, 0.4);
}

.dpm-popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Card Tags & Details */
.dpm-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.tag-board {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.tag-science {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.tag-defence {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.tag-crash {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.dpm-batch-cap {
  font-size: 0.78rem;
  font-weight: 600;
}

.dpm-card-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}

.dpm-card-list li {
  font-size: 0.84rem;
  color: #cbd5e1;
  margin-bottom: 6px;
}

/* Card Action Buttons */
.dpm-btn-card-primary {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px -3px rgba(2, 132, 199, 0.4);
}

.dpm-btn-card-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px -3px rgba(2, 132, 199, 0.6);
}

.dpm-btn-card-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dpm-btn-card-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Helpers & Utilities */
.max-w-3xl {
  max-width: 48rem;
}

.extra-small {
  font-size: 0.72rem;
}

.text-slate-400 {
  color: #94a3b8;
}

.bg-slate-900 {
  background-color: #0f172a !important;
}

.border-slate-800 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .dpm-grid-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 575px) {
  .dpm-grid-title {
    font-size: 1.65rem;
  }
  .dpm-filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start !important;
  }
  .dpm-filter-pills .nav-link {
    white-space: nowrap;
  }
}




/* Fully Namespaced Styles — No Overlaps */
.course-cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 64px 24px;
  border-radius: 16px;
  margin: 32px 0;
  text-align: center;
}

.course-cta-container {
  max-width: 768px;
  margin: 0 auto;
}

.course-cta-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.course-cta-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ebf8ff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-cta-seat-badge {
  display: inline-block;
  background-color: rgba(239, 68, 68, 0.25);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fecdd3;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.course-cta-content p {
  font-size: 18px;
  color: #dbeafe;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Timer Grid */
.course-cta-timer {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.course-cta-timer-box {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 8px;
  min-width: 70px;
}

.course-cta-timer-val {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.course-cta-timer-unit {
  font-size: 12px;
  color: #bfdbfe;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

/* Action Buttons */
.course-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.course-cta-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.course-cta-btn-primary {
  background-color: #ffffff;
  color: #1e3a8a;
  border: 2px solid #ffffff;
}

.course-cta-btn-primary:hover {
  background-color: #f1f5f9;
  border-color: #f1f5f9;
  transform: translateY(-2px);
}

.course-cta-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.course-cta-btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.course-cta-social-proof p {
  font-size: 14px;
  color: #93c5fd;
  margin: 0;
}