/* ==========================================================================
   UpLift IAS Academy - TNUSRB SI & PC Ultra-Premium Header & Page Styles
   Theme: Pure White Backgrounds, UpLift Blue Accent (#0c52d4), Dark Navy (#061738),
          Gold Accents (#ffc928), Dual Top Bar & Non-Empty Header Navigation
   Prefix: uplift-
   ========================================================================== */

/* Custom Local Font: Zoho Puvi — Used weights: 400, 500, 600, 700, 800, 900 */
@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zoho Puvi';
  src: url('../fonts/OpenType-TT/Zoho Puvi Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --uplift-blue: #0c52d4;
  --uplift-blue-dark: #061738;
  --uplift-blue-light: rgba(12, 82, 212, 0.06);
  --uplift-blue-gradient: linear-gradient(135deg, #0c52d4 0%, #1a6cff 100%);
  --uplift-dark-gradient: linear-gradient(135deg, #061738 0%, #0c52d4 100%);
  --uplift-gold-gradient: linear-gradient(135deg, #ffc928 0%, #f59e0b 100%);
  
  --uplift-yellow: #ffc928;
  --uplift-yellow-hover: #e5b31c;
  
  --uplift-white: #ffffff;
  --uplift-offwhite: #f8fafc;
  --uplift-text-dark: #061738;
  --uplift-text-main: #1e293b;
  --uplift-text-muted: #64748b;
  
  --uplift-radius-sm: 12px;
  --uplift-radius-md: 20px;
  --uplift-radius-lg: 28px;
  
  --uplift-font-heading: 'Zoho Puvi', sans-serif;
  --uplift-font-body: 'Zoho Puvi', sans-serif;
  
  /* Soft Ambient Shadows */
  --uplift-shadow-soft: 0 10px 30px rgba(12, 82, 212, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  --uplift-shadow-card: 0 15px 35px rgba(6, 23, 56, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
  --uplift-shadow-floating: 0 25px 55px rgba(6, 23, 56, 0.09), 0 8px 20px rgba(0, 0, 0, 0.03);
}

body, input, select, textarea, button {
  font-family: var(--uplift-font-body);
}

body {
  color: var(--uplift-text-main);
  background-color: var(--uplift-white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  padding-top: 110px !important;
}

p {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6, .uplift-heading-font {
  font-family: var(--uplift-font-heading);
  letter-spacing: -0.01em;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

section[id], div[id] {
  scroll-margin-top: 130px;
}

body.modal-open {
  padding-right: 0px !important;
}

body.modal-open .uplift-header {
  padding-right: 0px !important;
}

/* ==========================================
   1. DUAL HEADER BAR (TOP ANNOUNCEMENT CONTINUOUS TICKER)
   ========================================== */
.uplift-fixed-top-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(6, 23, 56, 0.08);
}
.uplift-top-bar {
  background-color: var(--uplift-blue-dark);
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--uplift-white);
  border-bottom: 2px solid var(--uplift-yellow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.uplift-top-bar a {
  color: var(--uplift-white);
  text-decoration: none;
}

.uplift-top-badge {
  background: var(--uplift-gold-gradient);
  color: var(--uplift-blue-dark);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.uplift-ticker-wrapper {
  width: 100%;
  position: relative;
}

.uplift-ticker-label {
  background-color: var(--uplift-blue-dark);
  position: relative;
  z-index: 10;
  box-shadow: 6px 0 16px rgba(6, 23, 56, 0.95);
  border-right: 1px solid rgba(255, 201, 40, 0.3);
  flex-shrink: 0;
}

.uplift-marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 15px, #000 calc(100% - 15px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15px, #000 calc(100% - 15px), transparent 100%);
}

.uplift-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  animation: upliftMarquee 110s linear infinite;
  will-change: transform;
  padding-left: 10px;
}

.uplift-top-bar:hover .uplift-ticker-track {
  animation-play-state: paused;
}

@keyframes upliftMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.uplift-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.uplift-ticker-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--uplift-yellow);
}

.uplift-item-title {
  font-weight: 700;
  color: #f8fafc;
}

.uplift-item-date {
  font-weight: 800;
  color: #ffc928;
}

.uplift-status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.uplift-status-badge.expected {
  background: rgba(255, 201, 40, 0.2);
  color: #ffc928;
  border: 1px solid rgba(255, 201, 40, 0.5);
  box-shadow: 0 0 8px rgba(255, 201, 40, 0.2);
}

.uplift-status-badge.tba {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.uplift-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(12, 82, 212, 0.08);
}

/* Modal Backdrop Glassmorphism Blur Effect */
.modal-backdrop.show {
  opacity: 1 !important;
  background: rgba(6, 23, 56, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 10500 !important;
}

/* Modal Popup Sizing & Responsive Alignment */
#autoLeadModal {
  z-index: 10550 !important;
}

#autoLeadModal .modal-dialog {
  max-width: 470px;
  width: 92%;
  margin: 1.75rem auto;
}

#autoLeadModal .modal-content {
  border-radius: 24px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#autoLeadModal .uplift-modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 110;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  background-color: #f1f5f9;
  border: 1px solid rgba(12, 82, 212, 0.2);
  border-radius: 50%;
  padding: 0;
  background-size: 8px;
  background-position: center;
  opacity: 0.85;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

#autoLeadModal .uplift-modal-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
  background-color: #fee2e2;
}

#autoLeadModal .modal-body {
  padding: 20px 20px !important;
}

#autoLeadModal .uplift-form-group {
  margin-bottom: 10px !important;
}

#autoLeadModal .uplift-form-label {
  font-size: 0.85rem !important;
  margin-bottom: 4px !important;
}

#autoLeadModal .uplift-form-input {
  padding: 10px 14px 10px 38px !important;
  font-size: 0.88rem !important;
}

#autoLeadModal .uplift-input-wrapper i {
  left: 14px !important;
  font-size: 0.95rem !important;
}

#autoLeadModal .uplift-custom-select-trigger {
  padding: 10px 32px 10px 38px !important;
  font-size: 0.88rem !important;
  border-radius: 12px !important;
}

#autoLeadModal .uplift-select-icon {
  left: 14px !important;
  font-size: 0.95rem !important;
}

#autoLeadModal .uplift-select-arrow {
  right: 14px !important;
}

#autoLeadModal .uplift-custom-option {
  padding: 10px 12px !important;
  font-size: 0.85rem !important;
}

#autoLeadModal .uplift-submit-btn {
  padding: 12px 20px !important;
  font-size: 1rem !important;
}

.uplift-header-brand-box {
  background-color: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.uplift-header-brand-box:hover {
  transform: translateY(-2px);
}

.uplift-header-logo {
  height: 60px !important;
  width: auto;
  object-fit: contain;
}

/* Center Navigation Links (Fixes Empty Space Header!) */
.uplift-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.uplift-nav-item {
  color: var(--uplift-blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.uplift-nav-item:hover, .uplift-nav-item.active {
  color: var(--uplift-blue);
}

.uplift-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--uplift-blue);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.uplift-nav-item:hover::after, .uplift-nav-item.active::after {
  width: 100%;
}

.uplift-header-phone {
  color: var(--uplift-blue-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.uplift-header-phone:hover {
  color: var(--uplift-blue);
}

.uplift-header-phone-icon {
  background: var(--uplift-blue-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uplift-blue);
  border: none;
}

.uplift-header-call-btn {
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(12, 82, 212, 0.2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.uplift-header-call-btn:hover {
  background: var(--uplift-blue);
  color: #ffffff;
}

.uplift-wa-btn {
  background: linear-gradient(135deg, #ffc928 0%, #f59e0b 100%) !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  border: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.uplift-wa-btn:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.6);
}

/* ==========================================
   2. HERO BANNER (PURE WHITE LEFT, AMBIENT RADIAL GLOW RIGHT)
   ========================================== */
/* ==========================================
   2. HERO BANNER (PURE WHITE LEFT, AMBIENT RADIAL GLOW RIGHT)
   ========================================== */
.uplift-hero-banner {
  position: relative;
  background-color: var(--uplift-white);
  background-image: radial-gradient(circle at 82% 48%, rgba(26, 108, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  padding: 32px 0 36px 0;
  overflow: hidden;
  border: none;
}

@media (max-width: 991px) {
  .uplift-hero-banner {
    padding: 24px 0 30px 0;
  }
}

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

/* Badges */
.uplift-badge-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  border: none;
  align-self: flex-start;
}

.uplift-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--uplift-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 201, 40, 0.7);
  animation: upliftPulse 1.8s infinite;
}

@keyframes upliftPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 201, 40, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 201, 40, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 201, 40, 0);
  }
}

/* Main Hero Typography with Uplift Blue Badge & White Text */
.uplift-hero-tag {
  color: var(--uplift-blue);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.uplift-hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--uplift-blue-dark);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.uplift-hero-title .uplift-highlight-blue {
  color: var(--uplift-white) !important;
  background: var(--uplift-blue-gradient) !important;
  padding: 8px 24px !important;
  border-radius: 14px !important;
  display: inline-block !important;
  box-shadow: 0 8px 24px rgba(12, 82, 212, 0.35) !important;
  font-size: 2.35rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
  margin-right: 0 !important;
}

.uplift-hero-slogan {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--uplift-blue-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.uplift-hero-slogan .highlight {
  color: var(--uplift-blue);
  background-color: var(--uplift-blue-light);
  padding: 4px 12px;
  border-radius: 8px;
}

/* Pricing Container */
.uplift-price-container {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 24px;
  box-shadow: var(--uplift-shadow-card);
  margin-bottom: 28px;
  border: none;
}

.uplift-price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.uplift-badge-offer {
  background: var(--uplift-blue-dark);
  color: var(--uplift-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

.uplift-emi-text {
  font-size: 0.84rem;
  color: var(--uplift-blue-dark);
  font-weight: 800;
}

.uplift-price-card {
  background-color: var(--uplift-offwhite);
  border-radius: var(--uplift-radius-sm);
  padding: 26px 14px 18px 14px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(12, 82, 212, 0.08);
}

.uplift-price-card:hover {
  transform: translateY(-4px);
  background-color: var(--uplift-white);
  box-shadow: var(--uplift-shadow-soft);
}

.uplift-card-tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #dc2626 !important;
  color: #ffffff !important;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 3;
}

.uplift-batch-name {
  color: var(--uplift-blue-dark);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 4px;
}

.uplift-old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
}

.uplift-new-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--uplift-blue);
  font-family: var(--uplift-font-heading);
  line-height: 1;
}

.uplift-save-badge {
  color: var(--uplift-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 6px;
}

/* Feature Grid */
.uplift-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.uplift-feature-pill {
  background-color: var(--uplift-white);
  padding: 14px 18px;
  border-radius: var(--uplift-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
  box-shadow: var(--uplift-shadow-soft);
  transition: all 0.25s ease;
  border: none;
}

.uplift-feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--uplift-shadow-card);
}

.uplift-feature-pill i {
  color: var(--uplift-yellow);
  background: var(--uplift-blue-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Rating Bar */
.uplift-rating-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 20px;
  background-color: var(--uplift-white);
  border-radius: var(--uplift-radius-sm);
  box-shadow: var(--uplift-shadow-soft);
  border: none;
}

.uplift-rating-stars {
  color: var(--uplift-yellow);
  font-size: 1.1rem;
}

.uplift-rating-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
}

/* Right Side Lead Capture Form */
.uplift-form-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-lg);
  padding: 28px 28px;
  box-shadow: var(--uplift-shadow-floating);
  position: relative;
  border: 1px solid rgba(12, 82, 212, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uplift-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.uplift-form-badge {
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  border: none;
}

.uplift-form-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--uplift-blue-dark);
  margin-bottom: 6px;
}

.uplift-form-subtitle {
  color: var(--uplift-text-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.uplift-form-group {
  margin-bottom: 22px;
}

.uplift-form-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
  margin-bottom: 8px;
  display: block;
}

.uplift-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.uplift-input-wrapper i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--uplift-blue);
  font-size: 1.05rem;
  z-index: 2;
  pointer-events: none;
}

.uplift-form-input, .uplift-form-select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 18px 14px 48px;
  border: 2px solid rgba(12, 82, 212, 0.08);
  border-radius: var(--uplift-radius-sm);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--uplift-blue-dark);
  transition: all 0.25s ease;
  background-color: var(--uplift-offwhite);
}

/* ==========================================
   CUSTOM ULTRA-NEAT DROPDOWN COMPONENT
   ========================================== */
.uplift-custom-select-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.uplift-custom-select-trigger {
  width: 100%;
  padding: 14px 42px 14px 48px;
  background-color: var(--uplift-offwhite);
  border: 2px solid rgba(12, 82, 212, 0.08);
  border-radius: var(--uplift-radius-sm);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--uplift-blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uplift-custom-select-trigger:hover,
.uplift-custom-select-wrapper.open .uplift-custom-select-trigger {
  background-color: var(--uplift-white);
  border-color: var(--uplift-blue);
  box-shadow: 0 0 0 4px rgba(12, 82, 212, 0.12);
}

.uplift-select-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--uplift-blue);
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

.uplift-select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--uplift-blue);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.uplift-custom-select-wrapper.open .uplift-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.uplift-custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background-color: var(--uplift-white);
  border-radius: var(--uplift-radius-sm);
  box-shadow: 0 15px 40px rgba(6, 23, 56, 0.18), 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(12, 82, 212, 0.2);
  z-index: 999;
  display: none;
  overflow: hidden;
  padding: 6px;
  animation: upliftDropdownFade 0.2s ease;
}

@keyframes upliftDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uplift-custom-select-wrapper.open .uplift-custom-select-options {
  display: block;
}

.uplift-custom-option {
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--uplift-blue-dark);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.uplift-custom-option:hover {
  background-color: var(--uplift-blue-light);
  color: var(--uplift-blue);
}

.uplift-custom-option.active {
  background-color: rgba(12, 82, 212, 0.08);
  color: var(--uplift-blue);
  font-weight: 700;
}

.uplift-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230c52d4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px !important;
  cursor: pointer;
}

.uplift-form-select option {
  max-width: 100% !important;
  word-wrap: break-word;
  white-space: normal;
  padding: 10px;
  background-color: var(--uplift-white);
  color: var(--uplift-blue-dark);
  font-size: 0.92rem;
}

.uplift-form-input:focus, .uplift-form-select:focus {
  outline: none;
  background-color: var(--uplift-white);
  box-shadow: 0 0 0 4px rgba(12, 82, 212, 0.12);
}

/* ==========================================
   STYLISH SHAKE & PULSE ANIMATION FOR CTA BUTTONS
   ========================================== */
@keyframes upliftShakePulse {
  0%, 70%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
  }
  74% {
    transform: translateY(-3px) scale(1.03) rotate(-2deg);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.65);
  }
  78% {
    transform: translateY(-3px) scale(1.03) rotate(2deg);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.65);
  }
  82% {
    transform: translateY(-3px) scale(1.03) rotate(-1.5deg);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.65);
  }
  86% {
    transform: translateY(-3px) scale(1.03) rotate(1.5deg);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.65);
  }
  90% {
    transform: translateY(-1px) scale(1.01) rotate(0deg);
  }
}

.uplift-submit-btn,
.uplift-btn-shake {
  animation: upliftShakePulse 3.5s infinite cubic-bezier(0.36, 0.07, 0.19, 0.97);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.uplift-submit-btn:hover,
.uplift-btn-shake:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.75) !important;
}

.uplift-submit-btn {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffc928 0%, #f59e0b 50%, #d97706 100%) !important;
  color: #ffffff !important;
  font-family: var(--uplift-font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4), 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.uplift-submit-btn:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.65) !important;
}

.btn-warning {
  background-color: #ffc928 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-warning:hover {
  background-color: #f59e0b !important;
  color: #ffffff !important;
}

/* Light Beam Shimmer Animation Across Button */
.uplift-submit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(25deg);
  animation: upliftShimmer 3.5s infinite;
  pointer-events: none;
}

@keyframes upliftShimmer {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  30%, 100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.uplift-submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.6), 0 6px 16px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ffd447 0%, #ffad14 50%, #e07d00 100%);
}

.uplift-btn-icon-badge {
  background: rgba(6, 23, 56, 0.12);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #061738;
  flex-shrink: 0;
}

.uplift-btn-arrow {
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}

.uplift-submit-btn:hover .uplift-btn-arrow {
  transform: translateX(5px);
}

.uplift-form-footer-trust {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--uplift-blue-dark);
  text-align: center;
  font-weight: 800;
}

/* ==========================================
   3. INSTAGRAM PROMOTION SECTION
   ========================================== */
.uplift-insta-section {
  padding: 85px 0;
  background-color: var(--uplift-white);
  border: none;
}

.uplift-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px auto;
}

.uplift-section-subtitle {
  color: var(--uplift-blue);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 8px;
  display: block;
}

.uplift-section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
  line-height: 1.3;
}

.uplift-insta-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  overflow: hidden;
  box-shadow: var(--uplift-shadow-card);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
}

.uplift-insta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--uplift-shadow-floating);
}

.uplift-insta-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--uplift-white);
  border: none;
}

.uplift-insta-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.uplift-insta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: var(--uplift-blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uplift-insta-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--uplift-white);
}

.uplift-insta-user-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.uplift-insta-verified-badge {
  color: #3897f0;
  font-size: 0.88rem;
}

.uplift-insta-user-info span {
  font-size: 0.78rem;
  color: var(--uplift-text-muted);
  font-weight: 600;
}

.uplift-insta-icon {
  font-size: 1.9rem;
  background: -webkit-linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uplift-insta-post-img-container {
  width: 100%;
  background-color: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uplift-insta-post-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.uplift-insta-card:hover .uplift-insta-post-img {
  transform: scale(1.03);
}

.uplift-insta-footer {
  padding: 20px 24px;
  background-color: var(--uplift-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border: none;
}

.uplift-insta-follow-btn {
  background: var(--uplift-blue-gradient);
  color: var(--uplift-white);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(12, 82, 212, 0.25);
  border: none;
}

.uplift-insta-follow-btn:hover {
  color: var(--uplift-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 82, 212, 0.4);
}

/* ==========================================
   4. SEO & AGE ELIGIBILITY SECTION
   ========================================== */
.uplift-eligibility-section {
  padding: 85px 0;
  background-color: var(--uplift-white);
}

.uplift-age-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  box-shadow: var(--uplift-shadow-card);
  overflow: hidden;
  margin-top: 32px;
  border: none;
}

.uplift-table-custom {
  width: 100%;
  margin-bottom: 0;
}

.uplift-table-custom th {
  background: var(--uplift-blue-dark);
  color: var(--uplift-yellow);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 20px 24px;
  border: none;
}

.uplift-table-custom td {
  padding: 20px 24px;
  vertical-align: middle;
  font-size: 0.96rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--uplift-blue-dark);
}

.uplift-table-custom tr:nth-child(even) {
  background-color: rgba(12, 82, 212, 0.03);
}

.uplift-category-badge {
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  border: none;
}

/* Mobile Eligibility Age Cards (< 768px) */
.uplift-mobile-age-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  box-shadow: var(--uplift-shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(12, 82, 212, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uplift-mobile-age-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--uplift-shadow-card);
}

.uplift-mobile-age-header {
  background: var(--uplift-blue-dark);
  padding: 12px 16px;
  border-bottom: 2px solid var(--uplift-yellow);
}

.uplift-mobile-age-header .uplift-category-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--uplift-yellow);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
}

.uplift-mobile-age-body {
  padding: 16px;
}

.uplift-age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.uplift-age-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: var(--uplift-offwhite);
  padding: 8px 4px;
  border-radius: 8px;
}

.uplift-age-label {
  font-size: 0.7rem;
  color: var(--uplift-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.uplift-age-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--uplift-blue-dark);
}

/* Qualification Note Cards */
.uplift-qual-card {
  padding: 26px;
  background-color: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  box-shadow: var(--uplift-shadow-soft);
  border: none;
  transition: transform 0.25s ease;
}

.uplift-qual-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--uplift-shadow-card);
}

/* ==========================================
   5. SYLLABUS & EXAM PATTERN SECTION
   ========================================== */
.uplift-pattern-section {
  padding: 85px 0;
  background-color: var(--uplift-white);
  border: none;
}

.uplift-stage-card {
  background: var(--uplift-white);
  padding: 34px 30px;
  border-radius: var(--uplift-radius-md);
  box-shadow: var(--uplift-shadow-card);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: none;
}

.uplift-stage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--uplift-shadow-floating);
}

.uplift-stage-number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--uplift-yellow-gradient);
  color: var(--uplift-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  border: none;
}

.uplift-stage-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--uplift-blue-dark);
  margin-bottom: 12px;
}

.uplift-stage-desc {
  font-size: 0.95rem;
  color: var(--uplift-text-muted);
  font-weight: 400;
}

/* ==========================================
   6. FAQ ACCORDION SECTION
   ========================================== */
.uplift-faq-section {
  padding: 85px 0;
  background-color: rgba(12, 82, 212, 0.02);
  border: none;
}

.uplift-accordion-item {
  background-color: var(--uplift-white);
  border-radius: var(--uplift-radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--uplift-shadow-soft);
  border: none;
}

.uplift-accordion-button {
  background-color: var(--uplift-white);
  color: var(--uplift-blue-dark);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 20px 26px;
  border: none;
}

.uplift-accordion-button:not(.collapsed) {
  background-color: var(--uplift-blue-dark);
  color: var(--uplift-yellow);
  box-shadow: none;
}

.uplift-accordion-body {
  padding: 22px 26px;
  color: var(--uplift-text-main);
  font-weight: 400;
  font-size: 0.96rem;
}

/* ==========================================
   7. FOOTER SECTION
   ========================================== */
.uplift-footer {
  background-color: var(--uplift-white);
  color: var(--uplift-blue-dark);
  padding: 75px 0 35px 0;
  border: none;
  box-shadow: 0 -10px 40px rgba(6, 23, 56, 0.03);
}

.uplift-footer-logo {
  height: 100px;
  width: auto;
  padding: 4px 0;
  margin-bottom: 22px;
}

.uplift-footer-about {
  color: var(--uplift-text-muted);
  font-size: 0.94rem;
  font-weight: 400;
  margin-bottom: 22px;
}

.uplift-footer-title {
  color: var(--uplift-blue-dark);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.uplift-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--uplift-blue-dark);
  font-size: 0.94rem;
  font-weight: 500;
}

.uplift-footer-contact-item i {
  color: var(--uplift-blue);
  font-size: 1.15rem;
  margin-top: 3px;
}

.uplift-footer-bottom {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  color: var(--uplift-text-muted);
  font-size: 0.88rem;
  font-weight: 400;
}

/* Floating Mobile Sticky CTA */
.uplift-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--uplift-blue-dark);
  padding: 12px 18px;
  z-index: 999;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.2);
  border: none;
}

@media (max-width: 768px) {
  .uplift-mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}

/* ==========================================
   9. COMPREHENSIVE RESPONSIVE DESIGN (320px TO 1200px+)
   ========================================== */

/* Prevent horizontal overflow on all screen sizes */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Missing utility class used in HTML */
.max-w-700 {
  max-width: 700px;
}

/* Hero logo responsive sizing */
.uplift-hero-logo {
  height: clamp(55px, 10vw, 90px);
  width: auto;
}

/* Tablet & Medium Screens (max-width: 991px) */
@media (max-width: 991px) {
  .uplift-hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
  }
  .uplift-hero-banner {
    padding: 55px 0 65px 0;
  }
  .uplift-section-title {
    font-size: 2.1rem;
  }
  .uplift-header-phone {
    font-size: 0.92rem;
  }
  .uplift-nav-links {
    display: none;
  }
}

/* Mobile Portrait & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 110px !important;
    padding-bottom: 85px !important; /* Prevents sticky bottom bar overlap */
  }
  .uplift-hero-content {
    text-align: center;
  }
  .uplift-hero-title {
    font-size: 1.85rem;
    line-height: 1.35;
    margin: 0 auto 24px auto;
  }
  .uplift-hero-title .uplift-highlight-blue {
    display: inline-block;
    padding: 4px 14px;
    margin: 0 4px 6px 4px;
    font-size: 0.95em;
  }
  .uplift-badge-announcement {
    margin: 0 auto 24px auto;
    font-size: 0.8rem;
    text-align: center;
    max-width: 100%;
    align-self: center;
  }
  .uplift-hero-tag {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
  .uplift-hero-slogan {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .uplift-hero-video-box {
    margin-top: 15px;
  }
  .uplift-price-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .uplift-feature-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto 24px auto;
  }
  .uplift-feature-pill {
    justify-content: center;
  }
  .uplift-rating-bar {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
  .uplift-section-title {
    font-size: 1.8rem;
  }
  .uplift-section-header {
    margin-bottom: 35px;
  }
  .uplift-form-card {
    padding: 24px 18px;
    margin-top: 20px;
  }
  .uplift-form-title {
    font-size: 1.4rem;
  }
  .uplift-submit-btn {
    font-size: 1.15rem;
    padding: 14px;
  }
  .uplift-location-banner {
    padding: 30px 20px;
    text-align: center;
  }
  .uplift-location-banner .text-lg-end {
    text-align: center !important;
    margin-top: 15px;
  }
  /* Fix location CTA button overflow on mobile */
  .uplift-location-banner .uplift-submit-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  .uplift-mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
  }
  /* Modal max-height scroll for very short device screens */
  #autoLeadModal .modal-dialog {
    margin: 0.5rem auto;
  }
  #autoLeadModal .modal-content {
    max-height: 95dvh;
    overflow-y: auto;
  }
  /* YouTube Shorts: limit tall aspect-ratio on mobile */
  .uplift-shorts-iframe-container {
    aspect-ratio: 9 / 14 !important;
    max-height: 480px;
    overflow: hidden;
  }
  /* Timeline status badge: allow wrapping */
  .uplift-timeline-stage-box .d-flex.flex-wrap {
    row-gap: 6px;
  }
  /* Header logo fix at small screen */
  .uplift-header-logo {
    height: 48px !important;
  }
}


/* Small Mobile Screens (max-width: 576px) */
@media (max-width: 576px) {
  .uplift-wa-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
    gap: 5px;
  }
  .uplift-hero-title {
    font-size: 1.65rem;
  }
  .uplift-badge-announcement {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .uplift-price-container {
    padding: 16px 10px;
  }
  .uplift-price-card {
    padding: 12px 6px;
    text-align: center;
  }
  .uplift-batch-name {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .uplift-card-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
  }
  .uplift-new-price {
    font-size: 1.25rem;
  }
  .uplift-old-price {
    font-size: 0.78rem;
  }
  .uplift-save-badge {
    font-size: 0.65rem;
    padding: 3px 4px;
    white-space: nowrap;
  }
  .uplift-trust-item {
    font-size: 0.78rem;
    gap: 6px;
  }
  .uplift-trust-item i {
    font-size: 1rem;
  }
  .uplift-google-rating-badge {
    padding: 10px 16px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .uplift-table-custom th,
  .uplift-table-custom td {
    padding: 12px 10px;
    font-size: 0.82rem;
  }
  .uplift-category-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  .uplift-qualify-yes-box,
  .uplift-qualify-no-box {
    padding: 22px 16px;
  }
  .uplift-qualify-list li {
    font-size: 0.88rem;
    gap: 8px;
  }
}

/* Extra-Small Mobile Devices (320px to 380px - iPhone SE, Galaxy Fold 320px) */
@media (max-width: 380px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .uplift-hero-title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .uplift-hero-tag {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .uplift-price-container {
    padding: 12px 6px;
  }
  .uplift-batch-name {
    font-size: 0.78rem;
  }
  .uplift-new-price {
    font-size: 1.15rem;
  }
  .uplift-form-card {
    padding: 16px 10px;
  }
  .uplift-form-input, .uplift-form-select {
    padding: 10px 12px 10px 36px;
    font-size: 0.85rem;
  }
  .uplift-submit-btn {
    font-size: 0.95rem;
    padding: 11px;
  }
  .uplift-header-logo {
    height: 42px !important;
  }
  .uplift-wa-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .uplift-trust-item span {
    font-size: 0.7rem;
  }
}

/* ==========================================
   8. TRUST STRIP & META ADS CONVERSION ADDONS
   ========================================== */
.uplift-trust-strip {
  background: #061738 !important;
  color: #ffffff !important;
  padding: 20px 0;
  border-top: 3px solid #ffc928 !important;
  border-bottom: 1px solid rgba(255, 201, 40, 0.25);
  box-shadow: 0 4px 20px rgba(6, 23, 56, 0.15);
}

.uplift-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff !important;
}

.uplift-trust-item i {
  color: #ffc928 !important;
  font-size: 1.3rem;
}

/* 5-Step System Cards */
.uplift-system-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 30px 24px;
  box-shadow: var(--uplift-shadow-card);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(12, 82, 212, 0.06);
}

.uplift-system-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--uplift-shadow-floating);
  border-color: var(--uplift-blue);
}

.uplift-system-step-num {
  display: inline-block;
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.uplift-system-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--uplift-blue-dark);
  margin-bottom: 10px;
}

/* Course Breakdown Cards */
.uplift-breakdown-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 28px;
  box-shadow: var(--uplift-shadow-soft);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.uplift-breakdown-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--uplift-shadow-card);
}

.uplift-breakdown-icon {
  width: 52px;
  height: 52px;
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Why Uplift Cards */
.uplift-why-card {
  background: var(--uplift-offwhite);
  border-radius: var(--uplift-radius-md);
  padding: 28px;
  height: 100%;
  border: 1px solid rgba(12, 82, 212, 0.08);
  transition: all 0.3s ease;
}

.uplift-why-card:hover {
  background: var(--uplift-white);
  box-shadow: var(--uplift-shadow-card);
  transform: translateY(-4px);
}

/* Google Reviews & Proof Block */
.uplift-google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--uplift-white);
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: var(--uplift-shadow-soft);
  margin-bottom: 30px;
  text-decoration: none;
  color: var(--uplift-blue-dark);
  transition: transform 0.2s ease;
}

.uplift-google-rating-badge:hover {
  transform: translateY(-2px);
  color: var(--uplift-blue);
}

.uplift-google-stars {
  color: #f59e0b;
  font-size: 1.1rem;
}

.uplift-review-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 26px;
  box-shadow: var(--uplift-shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.uplift-reviewer-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.uplift-reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--uplift-blue-gradient);
  color: var(--uplift-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Qualification Section (Is this for you?) */
.uplift-qualify-yes-box {
  background: rgba(16, 185, 129, 0.05);
  border: 2px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--uplift-radius-md);
  padding: 34px 28px;
  height: 100%;
}

.uplift-qualify-no-box {
  background: rgba(239, 68, 68, 0.04);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--uplift-radius-md);
  padding: 34px 28px;
  height: 100%;
}

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

.uplift-qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--uplift-blue-dark);
}

.uplift-qualify-list.yes-list i {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 2px;
}

.uplift-qualify-list.no-list i {
  color: #ef4444;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Karaikudi Campus Block */
.uplift-location-banner {
  background: var(--uplift-dark-gradient);
  color: var(--uplift-white);
  border-radius: var(--uplift-radius-lg);
  padding: 45px 35px;
  box-shadow: var(--uplift-shadow-floating);
  position: relative;
  overflow: hidden;
}

.uplift-location-badge {
  background: var(--uplift-gold-gradient);
  color: var(--uplift-blue-dark);
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.uplift-map-card {
  background: var(--uplift-white);
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.uplift-map-card iframe {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* ==========================================
   ULTRA-PREMIUM TNUSRB RECRUITMENT TIMELINE HUB
   ========================================== */
.uplift-seal-rounded-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--uplift-offwhite);
  border: 2px solid rgba(12, 82, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.uplift-seal-rounded-badge img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.uplift-dates-tnusrb-seal {
  height: 65px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: inline-block !important;
  margin: 0 auto !important;
  transition: transform 0.35s ease;
}

.uplift-dates-tnusrb-seal:hover {
  transform: scale(1.08) rotate(3deg);
}

.uplift-bulletin-white-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-lg);
  padding: 32px 28px;
  box-shadow: 0 15px 45px rgba(6, 23, 56, 0.07);
  border: 1px solid rgba(12, 82, 212, 0.1);
  border-top: 4px solid var(--uplift-blue);
  position: relative;
}

.uplift-timeline-dashboard-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-lg);
  padding: 32px 28px;
  box-shadow: 0 15px 45px rgba(6, 23, 56, 0.07);
  border: 1px solid rgba(12, 82, 212, 0.1);
  position: relative;
}

.uplift-timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 24px;
  border-left: 2px dashed rgba(12, 82, 212, 0.25);
}

.uplift-timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.uplift-timeline-icon-badge {
  position: absolute;
  left: -20px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--uplift-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(12, 82, 212, 0.35);
  z-index: 2;
}

.uplift-timeline-icon-badge.expected {
  background: linear-gradient(135deg, #0c52d4 0%, #1a6cff 100%);
}

.uplift-timeline-icon-badge.tba {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

.uplift-timeline-stage-box {
  background: var(--uplift-offwhite);
  border-radius: var(--uplift-radius-md);
  padding: 16px 20px;
  border: 1px solid rgba(12, 82, 212, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.uplift-timeline-stage-box:hover {
  transform: translateX(5px);
  background: var(--uplift-white);
  border-color: var(--uplift-blue);
  box-shadow: 0 8px 25px rgba(12, 82, 212, 0.1);
}

/* High Contrast Timeline Status Badges */
.uplift-timeline-stage-box .uplift-status-badge.expected {
  background: rgba(217, 119, 6, 0.08);
  color: #b45309;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: none;
}

.uplift-timeline-stage-box .uplift-status-badge.tba {
  background: rgba(12, 82, 212, 0.08);
  color: var(--uplift-blue);
  border: 1px solid rgba(12, 82, 212, 0.25);
  box-shadow: none;
}

/* Press Bulletin Dark Navy Card */
.uplift-press-bulletin-card {
  background: linear-gradient(135deg, #061738 0%, #0c52d4 100%);
  color: #ffffff;
  border-radius: var(--uplift-radius-lg);
  padding: 30px 24px;
  border: 2px solid #ffc928;
  box-shadow: 0 15px 40px rgba(6, 23, 56, 0.25);
  position: relative;
  overflow: hidden;
}

.uplift-press-bulletin-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 201, 40, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
   ========================================== */
.uplift-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uplift-whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

/* Pulsing Outer Glow Ring */
.uplift-whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: upliftWAPulse 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes upliftWAPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Hover Tooltip */
.uplift-whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #061738;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.uplift-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #061738;
}

.uplift-whatsapp-float:hover .uplift-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 768px) {
  .uplift-whatsapp-float {
    bottom: 75px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .uplift-whatsapp-tooltip {
    display: none;
  }
}

/* ==========================================
   COURSE FEATURES & SIDE COMPARISON PRICING SECTION
   ========================================== */
.uplift-course-feature-item {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 20px;
  border: 1px solid rgba(12, 82, 212, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.uplift-course-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--uplift-shadow-soft);
  border-color: var(--uplift-blue);
}

.uplift-course-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--uplift-blue-light);
  color: var(--uplift-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.uplift-side-price-card {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  padding: 22px 20px;
  border: 2px solid rgba(12, 82, 212, 0.12);
  box-shadow: var(--uplift-shadow-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uplift-side-price-card.featured {
  border-color: var(--uplift-gold);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  box-shadow: 0 10px 30px rgba(255, 201, 40, 0.2);
}

.uplift-side-price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--uplift-shadow-card);
}

/* Pricing Tab Switcher */
.uplift-pricing-box {
  background: var(--uplift-white);
  border-radius: var(--uplift-radius-md);
  box-shadow: var(--uplift-shadow-soft);
  border: 1px solid rgba(12, 82, 212, 0.1);
}

.uplift-pricing-box .nav-pills .nav-link {
  color: var(--uplift-text-muted);
  background: transparent;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.uplift-pricing-box .nav-pills .nav-link.active {
  background: var(--uplift-blue);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(12, 82, 212, 0.25);
}

.uplift-pricing-box .nav-pills .nav-link:hover:not(.active) {
  background: rgba(12, 82, 212, 0.06);
  color: var(--uplift-blue);
}

/* ==========================================
   AUTHENTIC WINDING HIGHWAY ROADMAP SECTION
   ========================================== */
.uplift-roadmap-section {
  background: linear-gradient(180deg, #061738 0%, #0f172a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.uplift-highway-sign {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 12px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  font-family: var(--uplift-font-heading);
}

.uplift-road-track-container {
  position: relative;
  padding: 40px 0;
}

/* Central Highway Asphalt Lane */
.uplift-asphalt-road {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  background: #1e293b;
  border-left: 2px solid #475569;
  border-right: 2px solid #475569;
  z-index: 1;
}

.uplift-asphalt-road::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: repeating-linear-gradient(180deg, #ffc928, #ffc928 15px, transparent 15px, transparent 30px);
}

/* Individual Milestone Row */
.uplift-road-step-row {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}

.uplift-road-step-row:last-child {
  margin-bottom: 0;
}

/* Milestone Pin Badge */
.uplift-road-pin-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c52d4 0%, #1a6cff 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffc928;
  box-shadow: 0 0 22px rgba(12, 82, 212, 0.4);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.uplift-road-pin-badge.start-pin {
  background: linear-gradient(135deg, #ffc928 0%, #f59e0b 100%);
  color: #061738;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 201, 40, 0.8);
}

.uplift-road-pin-badge.final-exam {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border-color: #ffc928;
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.95);
}

/* Milestone Card Box */
.uplift-road-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--uplift-radius-md);
  padding: 24px 22px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.uplift-road-step-row:hover .uplift-road-card {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--uplift-yellow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.uplift-road-step-row:hover .uplift-road-pin-badge {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 35px rgba(255, 201, 40, 0.9);
}

.uplift-road-card.final-highlight {
  background: linear-gradient(135deg, rgba(255, 201, 40, 0.18) 0%, rgba(12, 82, 212, 0.3) 100%);
  border: 2px solid var(--uplift-gold);
}

@media (max-width: 991px) {
  .uplift-asphalt-road {
    left: 8.333% !important;
    transform: translateX(-50%) !important;
    display: block !important;
  }

  .uplift-road-step-row {
    margin-bottom: 50px;
  }

  .uplift-road-pin-badge {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
    margin: 0 auto !important;
  }

  .uplift-road-card {
    text-align: left !important;
    padding: 22px 20px;
    margin-left: 15px;
  }

  .uplift-road-card .d-flex {
    justify-content: flex-start !important;
  }

  .uplift-road-card h3 {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .uplift-submit-btn {
    font-size: 0.9rem !important;
    padding: 14px 10px !important;
    white-space: nowrap !important;
    letter-spacing: 0.2px !important;
    gap: 6px !important;
  }

  .uplift-trust-strip {
    padding: 16px 8px !important;
  }

  .uplift-trust-item {
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    gap: 8px !important;
  }

  .uplift-trust-item i {
    font-size: 1.1rem !important;
  }

  .uplift-asphalt-road {
    left: 8.333% !important;
    transform: translateX(-50%) !important;
    width: 10px !important;
    display: block !important;
  }

  .uplift-road-pin-badge {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    border-width: 2px;
    margin: 0 auto !important;
  }

  .uplift-road-card {
    padding: 18px 16px !important;
    margin-left: 10px !important;
  }

  .uplift-road-step-row {
    margin-bottom: 42px !important;
  }

  .uplift-highway-sign {
    padding: 8px 16px;
  }

  .uplift-highway-sign span {
    font-size: 0.92rem !important;
  }

  /* Allow recruitment section top badge to wrap on small mobile */
  .uplift-section-header .badge {
    white-space: normal !important;
    display: inline-block !important;
    line-height: 1.4 !important;
  }

  .uplift-timeline-dashboard-card {
    padding: 20px 14px !important;
  }

  .uplift-timeline-list {
    margin-left: 12px !important;
  }

  .uplift-timeline-item {
    padding-left: 32px !important;
  }

  .uplift-timeline-icon-badge {
    width: 32px !important;
    height: 32px !important;
    left: -16px !important;
    font-size: 0.85rem !important;
  }

  /* Reduce padding on announcement bar left label on mobile to save space */
  .uplift-ticker-label {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .uplift-top-badge {
    padding: 3px 6px !important;
  }
}

/* ==========================================
   YOUTUBE SHORTS VIDEO SHOWCASE SECTION
   ========================================== */
.uplift-shorts-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.uplift-shorts-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2) !important;
}

/* ==========================================
   TAMIL & ENGLISH LANGUAGE CONTRAST BADGES
   ========================================== */
.uplift-lang-tamil {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.uplift-lang-english {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #0c52d4 0%, #1a6cff 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12, 82, 212, 0.4);
}

.uplift-lang-pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Hero Online/Offline highlight */
.uplift-hero-mode-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.uplift-mode-online {
  background: linear-gradient(135deg, #0c52d4 0%, #1a6cff 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(12, 82, 212, 0.4);
}

.uplift-mode-offline {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
}

/* ==========================================
   PRICING FEATURE TAGS (INCLUDED / ADDON)
   ========================================== */
.uplift-feature-tag-included {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}

.uplift-feature-tag-addon {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}

/* ==========================================
   HIGHWAY SIGN — PREMIUM DARK REDESIGN
   ========================================== */
.uplift-highway-sign {
  background: linear-gradient(135deg, #061738 0%, #0c52d4 100%) !important;
  color: #ffffff !important;
  border: 2px solid #ffc928 !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 10px 30px rgba(6, 23, 56, 0.5) !important;
}

/* ==========================================
   EXPERT FACULTY & MENTORS PANEL
   ========================================== */
.uplift-faculty-section {
  padding: 85px 0;
  background-color: var(--uplift-white);
}

.uplift-faculty-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 10px;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.uplift-faculty-card:hover {
  transform: translateY(-5px);
}

.uplift-faculty-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  background-color: var(--uplift-offwhite);
  border: 3px solid rgba(12, 82, 212, 0.08);
  box-shadow: 0 8px 20px rgba(6, 23, 56, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.uplift-faculty-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uplift-faculty-card:hover .uplift-faculty-img-wrapper img {
  transform: scale(1.08);
}

.uplift-faculty-card:hover .uplift-faculty-img-wrapper {
  border-color: var(--uplift-blue);
  box-shadow: 0 10px 25px rgba(12, 82, 212, 0.2);
  transform: scale(1.02);
}

/* ==========================================
   CAMPUS GALLERY CARD STYLES
   ========================================== */
.uplift-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background-color: var(--uplift-offwhite);
  border: 1px solid rgba(12, 82, 212, 0.08);
  box-shadow: 0 8px 25px rgba(6, 23, 56, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.uplift-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uplift-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(12, 82, 212, 0.12);
}

.uplift-gallery-card:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .uplift-faculty-img-wrapper {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 767px) {
  .uplift-faculty-card {
    padding: 20px 16px;
    border-radius: 16px;
    max-width: 290px;
    margin: 0 auto;
  }
  .uplift-faculty-card h4 {
    font-size: 1.05rem !important;
  }
  .uplift-faculty-img-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 12px !important;
  }
}

/* ==========================================
   TNPSC CUSTOM PREMIUM DESIGN EXTENSIONS
   ========================================== */
.uplift-tnpsc-emerald-badge {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.uplift-exam-tag-g1 {
  background-color: rgba(12, 82, 212, 0.1);
  color: #0c52d4;
  border: 1px solid rgba(12, 82, 212, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.uplift-exam-tag-g2 {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.uplift-exam-tag-g4 {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.uplift-exam-tag-jd {
  background-color: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.uplift-tnpsc-gold-card {
  border: 2px solid #ffc928 !important;
  box-shadow: 0 15px 40px rgba(255, 201, 40, 0.18), 0 5px 15px rgba(6, 23, 56, 0.05) !important;
}

.uplift-tnpsc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(6, 23, 56, 0.04) 0%, rgba(12, 82, 212, 0.08) 100%);
  border: 1px solid rgba(12, 82, 212, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--uplift-blue-dark);
}

.uplift-samacheer-card {
  background: #ffffff;
  border: 1px solid rgba(12, 82, 212, 0.12);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(6, 23, 56, 0.04);
}

.uplift-samacheer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(12, 82, 212, 0.1);
  border-color: var(--uplift-blue);
}

.uplift-seo-hub-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(12, 82, 212, 0.1);
  box-shadow: 0 10px 30px rgba(6, 23, 56, 0.05);
  padding: 32px;
}

/* ==========================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVE SUITE
   Mobile (<576px), Tablet (576px-991px), Laptop (992px-1199px), Desktop (>=1200px)
   ========================================== */

/* 1. Large Laptops & Desktops (>= 1200px) */
@media (min-width: 1200px) {
  body {
    padding-top: 115px !important;
  }
  section[id], div[id] {
    scroll-margin-top: 135px;
  }
}

/* 2. Medium Laptops & Tablets in Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  body {
    padding-top: 110px !important;
  }
  section[id], div[id] {
    scroll-margin-top: 125px;
  }
  .uplift-nav-links {
    gap: 1.2rem !important;
  }
  .uplift-nav-item {
    font-size: 0.85rem;
  }
  .uplift-hero-title {
    font-size: 2.2rem !important;
  }
}

/* 3. Tablets in Portrait & Mobile Devices (< 992px) */
@media (max-width: 991px) {
  body {
    padding-top: 102px !important;
  }
  section[id], div[id] {
    scroll-margin-top: 110px;
  }
  .uplift-header-logo {
    height: 42px;
    width: auto;
  }
  .uplift-hero-content {
    padding-top: 1rem;
  }
  .uplift-hero-form-card {
    margin-top: 1.5rem;
  }
  .uplift-seo-hub-card {
    padding: 20px !important;
  }
}

/* 4. Small Mobile Devices (< 576px) */
@media (max-width: 575px) {
  body {
    padding-top: 92px !important;
  }
  section[id], div[id] {
    scroll-margin-top: 98px;
  }
  .uplift-top-bar {
    padding: 4px 0 !important;
    font-size: 0.75rem !important;
  }
  .uplift-top-badge {
    padding: 2px 6px !important;
    font-size: 0.65rem !important;
  }
  .uplift-ticker-item {
    padding: 3px 10px !important;
    font-size: 0.75rem !important;
    gap: 6px !important;
  }
  .uplift-status-badge {
    font-size: 0.65rem !important;
    padding: 1px 6px !important;
  }
  .uplift-header {
    padding: 10px 0 !important;
  }
  .uplift-header-logo {
    height: 36px;
    width: auto;
  }
  .uplift-wa-btn {
    padding: 7px 12px !important;
    font-size: 0.78rem !important;
  }
  .uplift-header-call-btn {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 50px;
    background: rgba(12, 82, 212, 0.08);
    color: var(--uplift-blue);
    font-weight: 700;
  }
  .uplift-hero-banner {
    padding: 25px 0 35px !important;
  }
  .uplift-hero-badge {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
  }
  .uplift-hero-form-card {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }
  /* Prevent iOS Safari automatic input zooming */
  .uplift-form-input, 
  .uplift-custom-select-trigger, 
  select, 
  input[type="text"], 
  input[type="tel"] {
    font-size: 16px !important;
  }
  .uplift-section-title {
    font-size: 1.45rem !important;
  }
  .uplift-section-subtitle {
    font-size: 0.75rem !important;
  }
  /* Responsive Tables */
  .table-responsive {
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(12, 82, 212, 0.1);
  }
  .uplift-table-custom th, 
  .uplift-table-custom td {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
  }
  /* Modal popup scrollability */
  .uplift-modal-card {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px !important;
  }
  /* WhatsApp Floating Button & Sticky Mobile Bar */
  .uplift-whatsapp-float {
    bottom: 75px !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
  }
  .uplift-whatsapp-tooltip {
    display: none !important;
  }
  .uplift-mobile-sticky-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--uplift-blue-dark);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
  }
}

/* 5. Floating Bar Visibility on Desktop */
@media (min-width: 768px) {
  .uplift-mobile-sticky-bar {
    display: none !important;
  }
  .uplift-whatsapp-float {
    bottom: 25px !important;
    right: 25px !important;
  }
}





