/* ═══════════════════════════════════════════════════════════
   CHAKRADHAR COLLEGE PORTAL — Theme V2 Corporate Premium
   Advanced Animated Corporate UI · Responsive 13" Laptops
   ═══════════════════════════════════════════════════════════ */

/* ─── Override Root Variables for New Theme ─── */
:root {
  --v2-primary: #0c1b33;
  --v2-primary-light: #162d50;
  --v2-accent: #2563eb;
  --v2-accent-light: #3b82f6;
  --v2-accent-glow: rgba(37, 99, 235, .15);
  --v2-gold: #d4a017;
  --v2-gold-light: #e8c547;
  --v2-surface: #f0f4f8;
  --v2-card: #ffffff;
  --v2-text: #1a1a2e;
  --v2-muted: #6b7b8d;
  --v2-border: #e0e6ed;
  --v2-success: #059669;
  --v2-danger: #dc2626;
  --v2-warning: #d97706;
  --v2-radius: 14px;
  --v2-radius-lg: 20px;
  --v2-shadow: 0 4px 24px rgba(0,0,0,.06);
  --v2-shadow-hover: 0 12px 40px rgba(0,0,0,.1);
  --v2-transition: all .3s cubic-bezier(.4,0,.2,1);
  --v2-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --v2-font-display: 'Poppins', 'Inter', sans-serif;
}

/* ─── Global Responsive Scaling for 13" Laptops ─── */
@media (max-width: 1440px) {
  html { font-size: 15px; }
}
@media (max-width: 1366px) {
  html { font-size: 14.5px; }
}
@media (max-width: 1280px) {
  html { font-size: 14px; }
  .container { max-width: 95% !important; }
}
@media (max-width: 1024px) {
  html { font-size: 13.5px; }
}

/* ─── Animated Background Pattern ─── */
body {
  background: var(--v2-surface) !important;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 5%, rgba(37,99,235,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 95%, rgba(37,99,235,.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212,160,23,.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { opacity: .7; }
  100% { opacity: 1; }
}

/* ─── Site Header Logo Section (Above Navbar) ─── */
.site-header-logo {
  background: #e85d04;
  padding: 12px 0;
}
.site-header-logo-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.site-header-logo-left {
  flex-shrink: 0;
  text-decoration: none;
  z-index: 1;
}
.site-header-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.site-header-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Header Admission Buttons (Right side of orange header) ─── */
.site-header-actions {
  margin-left: auto;
  padding-right: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  flex-shrink: 0;
}
.header-admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.header-admission-btn--primary {
  background: #fff;
  color: #e85d04;
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.header-admission-btn--primary:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
/* Footer Admission Button */
.footer-admission-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border: 2px solid rgba(232,93,4,.5);
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,93,4,.35);
  transition: all .3s ease;
  text-decoration: none;
  margin-top: 6px;
}
.footer-admission-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,4,.5);
  border-color: #ff8c00;
}
.site-header-college-name {
  font-family: var(--v2-font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: .04em;
  line-height: 1.15;
  text-transform: uppercase;
}
.site-header-college-sub {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .site-header-college-name { font-size: 1.5rem; }
  .site-header-logo-img { width: 65px; height: 65px; }
  .header-admission-btn { padding: 8px 16px; font-size: .76rem; }
}
@media (max-width: 768px) {
  .site-header-logo { padding: 10px 0; }
  .site-header-logo-inner { flex-direction: row; gap: 10px; flex-wrap: wrap; }
  .site-header-logo-center { position: static; transform: none; flex: 1; text-align: left; align-items: flex-start; }
  .site-header-logo-img { width: 48px; height: 48px; }
  .site-header-college-name { font-size: 1rem; line-height: 1.2; }
  .site-header-college-sub { font-size: .55rem; letter-spacing: .1em; }
  .header-admission-btn { padding: 7px 14px; font-size: .72rem; gap: 4px; }
  .header-admission-btn span { display: none; }
  .header-admission-btn i { font-size: .9rem; }
  .site-header-actions { gap: 6px; }
}
@media (max-width: 480px) {
  .site-header-logo { padding: 8px 0; }
  .site-header-logo-img { width: 38px; height: 38px; }
  .site-header-college-name { font-size: .82rem; letter-spacing: .02em; }
  .site-header-college-sub { font-size: .45rem; letter-spacing: .06em; }
  .header-admission-btn { padding: 6px 10px; font-size: .68rem; border-width: 1.5px; }
}
@media (max-width: 360px) {
  .site-header-logo-img { width: 32px; height: 32px; }
  .site-header-college-name { font-size: .72rem; }
  .site-header-college-sub { font-size: .4rem; }
  .header-admission-btn--outline { display: none; }
  .footer-admission-btn { padding: 10px 18px; font-size: .75rem; }
}

/* ─── Updates Ribbon (after hero slideshow) ─── */
.updates-ribbon {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f172a 100%);
  border-top: 3px solid #e85d04;
  border-bottom: 1px solid rgba(232,93,4,.2);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  clear: both;
  line-height: normal;
}

.home-page .updates-ribbon {
  margin-top: 0;
}
.updates-ribbon-inner {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.updates-ribbon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 12px 20px;
  flex-shrink: 0;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 28px;
}
.updates-ribbon-label i { font-size: .85rem; }
.updates-ribbon-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}
.updates-ribbon-scroll {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ribbon-scroll 40s linear infinite;
  gap: 0;
}
.updates-ribbon-item {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 500;
  padding: 0 10px;
}
.updates-ribbon-dot {
  color: #e85d04;
  font-size: .9rem;
  padding: 0 4px;
}
@keyframes ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .updates-ribbon-label { font-size: .62rem; padding: 10px 14px; padding-right: 22px; }
  .updates-ribbon-item { font-size: .7rem; }
}
@media (max-width: 480px) {
  .updates-ribbon-label span { display: none; }
  .updates-ribbon-label { padding: 8px 12px; padding-right: 18px; }
  .updates-ribbon-item { font-size: .65rem; }
}

/* ─── Notification Bell Dropdown Items ─── */
.rn-notif-drop {
  width: 340px !important;
  max-height: 420px;
  overflow-y: auto;
}
.rn-notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: .85rem;
  color: #1a1a2e;
  border-bottom: 2px solid rgba(232,93,4,.15);
  background: rgba(232,93,4,.03);
}
.rn-notif-header i { color: #e85d04; }
.rn-notif-list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,93,4,.25) transparent;
}
.rn-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .2s;
  cursor: default;
}
.rn-notif-item:hover { background: rgba(232,93,4,.04); }
.rn-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.rn-notif-body { flex: 1; min-width: 0; }
.rn-notif-title {
  font-size: .78rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rn-notif-meta {
  font-size: .65rem;
  color: #888;
  margin-top: 3px;
}
.rn-notif-empty {
  padding: 24px 16px;
  text-align: center;
  color: #999;
  font-size: .8rem;
}
.rn-notif-empty i {
  color: #4ade80;
  margin-right: 6px;
}
.rn-notif-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: .76rem;
  font-weight: 600;
  color: #e85d04 !important;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,.06);
  transition: background .2s;
}
.rn-notif-link:hover {
  background: rgba(232,93,4,.04);
  text-decoration: none;
}

/* ─── About Us Section (Modern) ─── */
.about-us-section {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.about-us-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(232,93,4,.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(26,26,46,.04) 0%, transparent 40%);
  pointer-events: none;
}
.about-us-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.about-shape--1 {
  width: 300px; height: 300px;
  background: #e85d04;
  top: -80px; right: -60px;
  animation: aboutFloat 12s ease-in-out infinite;
}
.about-shape--2 {
  width: 200px; height: 200px;
  background: #1a1a2e;
  bottom: -40px; left: -50px;
  animation: aboutFloat 15s ease-in-out infinite reverse;
}
.about-shape--3 {
  width: 120px; height: 120px;
  background: #e85d04;
  top: 40%; left: 50%;
  animation: aboutFloat 10s ease-in-out infinite 2s;
}
@keyframes aboutFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Header */
.about-us-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-us-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(232,93,4,.1), rgba(232,93,4,.05));
  color: #e85d04;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(232,93,4,.18);
  margin-bottom: 14px;
}
.about-us-tag i { font-size: .7rem; }
.about-us-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0;
  position: relative;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, #1a1a2e 0%, #e85d04 48%, #ff8c00 52%, #1a1a2e 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite;
}
@keyframes titleShine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}
.about-us-title::after { display: none; }
.about-us-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.about-ul-left, .about-ul-right {
  height: 3px;
  width: 70px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.about-ul-left {
  background: linear-gradient(90deg, transparent, #e85d04);
}
.about-ul-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: underlineSweep 2.5s ease-in-out infinite;
}
.about-ul-right {
  background: linear-gradient(90deg, #e85d04, transparent);
}
.about-ul-right::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: underlineSweepR 2.5s ease-in-out infinite;
}
@keyframes underlineSweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
@keyframes underlineSweepR {
  0% { right: -100%; }
  50% { right: 100%; }
  100% { right: 100%; }
}
.about-ul-diamond {
  color: #e85d04;
  font-size: .55rem;
  animation: diamondPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(232,93,4,.5));
}
@keyframes diamondPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; filter: drop-shadow(0 0 4px rgba(232,93,4,.5)); }
  50% { transform: scale(1.5) rotate(45deg); opacity: .7; filter: drop-shadow(0 0 8px rgba(232,93,4,.8)); }
}

/* Card */
.about-us-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
}
.about-card-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e85d04, #ff8c00, #fbbf24, #e85d04, #ff8c00);
  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  z-index: -1;
}
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.about-us-card-inner {
  display: flex;
  min-height: 460px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.about-us-image {
  flex: 0 0 46%;
  max-width: 46%;
  position: relative;
  overflow: hidden;
}
.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.about-us-card:hover .about-us-image img {
  transform: scale(1.05);
}
.about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.about-img-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
}
.about-badge-year {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.about-badge-label {
  font-size: .65rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Content panel */
.about-us-content {
  flex: 1;
  padding: 38px 40px 28px;
  background: linear-gradient(145deg, #c45200 0%, #e85d04 35%, #d04a00 100%);
  color: rgba(255,255,255,.96);
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .88rem;
  line-height: 1.88;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  position: relative;
  overflow: hidden;
}
.about-us-content::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 10rem;
  color: rgba(255,255,255,.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.about-us-content p {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about-us-content p:last-of-type {
  margin-bottom: 0;
}

/* Tabs inside red section */
.about-us-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: transparent;
}
.about-us-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-decoration: none;
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  font-weight: 600;
  transition: all .3s ease;
  text-align: center;
  border: none;
  background: transparent;
}
.about-us-tab:hover {
  color: #fff;
  transform: translateY(-4px);
}
.about-us-tab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e85d04;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 18px rgba(232,93,4,.2);
  transition: all .35s ease;
  border: 3px solid rgba(255,255,255,.25);
}
.about-us-tab:hover .about-us-tab-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,93,4,.4);
  background: linear-gradient(135deg, #fff, #fff3e0);
  border-color: rgba(255,255,255,.4);
}
.about-us-tab span {
  max-width: 80px;
  line-height: 1.3;
}

/* Stats strip */
.about-stats-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  margin-top: 0;
  padding: 36px 30px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  position: relative;
}
.about-stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,93,4,.2), rgba(232,93,4,.4), rgba(232,93,4,.2), transparent);
}
.about-stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.about-stat-number {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}
.about-stat-plus {
  color: #e85d04;
  font-size: 1.8rem;
}
.about-stat-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e85d04, #ff8c00);
  border-radius: 2px;
  margin: 10px auto;
}
.about-stat-label {
  font-size: .78rem;
  font-weight: 700;
  color: #e85d04;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Responsive */
@media (max-width: 992px) {
  .about-us-card-inner { flex-direction: column; min-height: auto; }
  .about-us-image { flex: none; max-width: 100%; height: 280px; }
  .about-us-content { padding: 28px 24px 24px; }
  .about-us-tabs { gap: 18px; }
  .about-stats-strip { border-radius: 0 0 16px 16px; padding: 28px 20px; }
}
@media (max-width: 768px) {
  .about-us-section { padding: 50px 0 40px; }
  .about-us-title { font-size: 2rem; }
  .about-us-tabs { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .about-us-tab { flex: 0 0 40%; }
  .about-us-tab-icon { width: 46px; height: 46px; font-size: 1.1rem; }
  .about-us-content { font-size: .82rem; padding: 22px 18px 20px; }
  .about-us-image { height: 220px; }
  .about-stat-number { font-size: 1.7rem; }
  .about-stat-label { font-size: .68rem; }
  .about-stat-item { min-width: 120px; }
  .about-shape--1 { width: 180px; height: 180px; }
  .about-shape--2 { width: 120px; height: 120px; }
  .about-shape--3 { display: none; }
}
@media (max-width: 480px) {
  .about-us-section { padding: 36px 0 30px; }
  .about-us-title { font-size: 1.6rem; }
  .about-us-header { margin-bottom: 28px; }
  .about-us-tag { font-size: .62rem; padding: 5px 14px; }
  .about-us-tab-icon { width: 40px; height: 40px; font-size: .95rem; border-width: 2px; }
  .about-us-tab { font-size: .66rem; gap: 6px; }
  .about-us-tab span { max-width: 68px; }
  .about-us-content { font-size: .76rem; padding: 16px 14px 18px; }
  .about-stat-number { font-size: 1.3rem; }
  .about-stat-plus { font-size: 1rem; }
  .about-stat-item { min-width: 100px; flex: 0 0 45%; }
  .about-stats-strip { padding: 22px 14px; gap: 14px; }
  .about-ul-left, .about-ul-right { width: 40px; }
}

/* ─── Enquire Now Sticky Button (Orange + Animated Border) ─── */
.enquiry-sticky-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: linear-gradient(180deg, #e85d04, #ff8c00);
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 20px 13px;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  transition: all .3s ease;
  overflow: hidden;
  border: none;
}
/* Animated shining border */
.enquiry-sticky-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(180deg, #fff, #fbbf24, #fff, #e85d04, #fff);
  background-size: 100% 400%;
  animation: enquiryShine 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
@keyframes enquiryShine {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 400%; }
}
/* Shimmer sweep */
.enquiry-sticky-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: rotate(30deg);
  animation: enquirySweep 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes enquirySweep {
  0% { transform: rotate(30deg) translateY(100%); }
  50%, 100% { transform: rotate(30deg) translateY(-100%); }
}
.enquiry-sticky-btn span {
  display: block;
  position: relative;
  z-index: 1;
}
.enquiry-sticky-btn:hover {
  background: linear-gradient(180deg, #d4520a, #e85d04);
  color: #fff;
  padding-right: 17px;
  box-shadow: -5px 0 30px rgba(232,93,4,.5);
  text-decoration: none;
}
@media (max-width: 768px) {
  .enquiry-sticky-btn { font-size: .68rem; padding: 16px 9px; }
}

/* ═══════════════════════════════════════════════════════════
   COURSES OFFERED — BIET-Style Layout
   ═══════════════════════════════════════════════════════════ */
.co-section {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 50%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Decorations */
.co-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.co-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .08;
}
.co-bg-blob--1 {
  width: 400px; height: 400px;
  background: #e85d04;
  top: -100px; right: -80px;
  animation: coBlobFloat 14s ease-in-out infinite;
}
.co-bg-blob--2 {
  width: 300px; height: 300px;
  background: #10b981;
  bottom: -60px; left: -50px;
  animation: coBlobFloat 18s ease-in-out infinite reverse;
}
.co-bg-blob--3 {
  width: 200px; height: 200px;
  background: #3b82f6;
  top: 40%; left: 30%;
  animation: coBlobFloat 12s ease-in-out infinite 3s;
}
.co-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,93,4,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: coGridDrift 20s linear infinite;
}
.co-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(232,93,4,.06);
}
.co-bg-ring--1 {
  width: 500px; height: 500px;
  top: -200px; left: -200px;
  animation: coRingPulse 8s ease-in-out infinite;
}
.co-bg-ring--2 {
  width: 350px; height: 350px;
  bottom: -120px; right: -120px;
  animation: coRingPulse 10s ease-in-out infinite 2s;
}
@keyframes coBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(.95); }
}
@keyframes coGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}
@keyframes coRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .4; }
}

/* Video Modal */
.co-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
}
.co-video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
  animation: coModalIn .3s ease;
}
.co-video-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: transform .2s;
}
.co-video-close:hover { transform: scale(1.2); }
.co-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.co-video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
@keyframes coModalIn {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.co-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.co-left { flex: 1; min-width: 0; }
.co-right {
  flex: 0 0 440px;
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.co-header { margin-bottom: 36px; }
.co-header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.co-header-link:hover .co-title,
.co-header-link:hover .co-tag-text,
.co-header-link:hover .co-tag-highlight,
.co-header-link:hover .co-subtitle {
  color: #e85d04;
}
.co-tag {
  display: inline-block;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.co-tag-text {
  color: #1a1a2e;
  text-decoration: underline;
  text-decoration-color: #e85d04;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.co-tag-highlight {
  color: #e85d04;
  text-decoration: underline;
  text-decoration-color: #e85d04;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.co-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.co-subtitle {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .92rem;
  color: #6b7b8d;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* Cards Grid */
.co-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

/* Card */
.co-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1.5px solid #eee;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.co-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,93,4,.1);
  border-color: #e85d04;
}
.co-card-accent {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #e85d04, #ff8c00);
  opacity: 0;
  transition: opacity .3s ease;
}
.co-card:hover .co-card-accent { opacity: 1; }
.co-card-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
}
.co-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}
.co-card-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.co-card-desc {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .8rem;
  color: #6b7b8d;
  line-height: 1.5;
  margin: 0 0 8px;
}
.co-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.co-chip {
  display: inline-block;
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .65rem;
  font-weight: 600;
  color: #e85d04;
  background: rgba(232,93,4,.06);
  border: 1px solid rgba(232,93,4,.15);
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: .02em;
}

/* Card entrance animation */
.co-card--anim {
  opacity: 0;
  transform: translateY(30px);
  animation: coCardIn .6s ease forwards;
  animation-delay: var(--card-delay, 0s);
}
@keyframes coCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Button */
.co-cta { margin-top: 8px; }
.co-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,93,4,.25);
  transition: all .3s ease;
}
.co-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,4,.4);
  color: #fff;
  text-decoration: none;
}

/* Right Image Collage */
.co-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-img-frame {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
}
.co-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
}
.co-img-frame:hover img { transform: scale(1.05); }
.co-img-frame--1 {
  width: 260px;
  height: 320px;
  top: 20px;
  left: 10px;
  z-index: 2;
  border: 3px solid #e85d04;
  animation: coImgFloat 8s ease-in-out infinite;
}
.co-img-frame--2 {
  width: 230px;
  height: 290px;
  top: 80px;
  right: 10px;
  z-index: 1;
  border: 3px solid rgba(232,93,4,.3);
  animation: coImgFloat 8s ease-in-out infinite 2s;
}
.co-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #e85d04;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  cursor: pointer;
  transition: all .3s ease;
  z-index: 3;
}
.co-play-btn:hover {
  background: #e85d04;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.co-connector {
  position: absolute;
  top: 0;
  right: 90px;
  width: 140px;
  height: 400px;
  border: 3px solid #e85d04;
  border-left: none;
  border-radius: 0 80px 80px 0;
  opacity: .15;
  z-index: 0;
}

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

/* Courses Responsive */
@media (max-width: 1200px) {
  .co-right { flex: 0 0 360px; min-height: 440px; }
  .co-img-frame--1 { width: 240px; height: 290px; }
  .co-img-frame--2 { width: 200px; height: 260px; }
}
@media (max-width: 992px) {
  .co-layout { flex-direction: column; gap: 40px; }
  .co-right { flex: none; width: 100%; min-height: 360px; display: flex; justify-content: center; }
  .co-img-frame--1 { position: relative; top: auto; left: auto; }
  .co-img-frame--2 { position: absolute; top: 40px; right: 10%; }
  .co-connector { display: none; }
  .co-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .co-section { padding: 50px 0 40px; }
  .co-cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .co-title { font-size: 1.8rem; }
  .co-right { min-height: 300px; }
  .co-img-frame--1 { width: 200px; height: 250px; }
  .co-img-frame--2 { width: 170px; height: 220px; top: 30px; }
  .co-play-btn { width: 48px; height: 48px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .co-section { padding: 36px 0 30px; }
  .co-title { font-size: 1.5rem; }
  .co-subtitle { font-size: .82rem; }
  .co-card-body { padding: 16px; gap: 10px; }
  .co-card-icon { width: 32px; height: 32px; font-size: .85rem; }
  .co-card-title { font-size: .92rem; }
  .co-card-desc { font-size: .72rem; }
  .co-chip { font-size: .58rem; padding: 2px 8px; }
  .co-right { min-height: 240px; }
  .co-img-frame--1 { width: 160px; height: 200px; }
  .co-img-frame--2 { width: 140px; height: 180px; top: 20px; right: 5%; }
  .co-btn { font-size: .8rem; padding: 10px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   CAMPUS EVENTS & CAMPUS LIFE — Premium Section
   ═══════════════════════════════════════════════════════════ */
.cel-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: #0a0a1a;
}

/* Premium Dark BG with Mesh Gradient + Animated Grid */
.cel-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.cel-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,106,42,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255,106,42,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,154,92,.04) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a1a 0%, #111128 50%, #0a0a1a 100%);
}
/* Animated grid lines */
.cel-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,42,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,42,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: celGridDrift 20s linear infinite;
}
@keyframes celGridDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px, 60px); }
}

.cel-bg-shape {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.cel-bg-shape--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,42,.18), transparent 70%);
  top: -150px; right: -100px;
  animation: celFloat 16s ease-in-out infinite;
}
.cel-bg-shape--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,154,92,.12), transparent 70%);
  bottom: -100px; left: -80px;
  animation: celFloat 20s ease-in-out infinite reverse;
}
.cel-bg-shape--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,106,42,.1), transparent 70%);
  top: 40%; left: 50%;
  animation: celFloat 14s ease-in-out infinite 3s;
}
@keyframes celFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25px,-20px) scale(1.08); }
}

/* Header */
.cel-header {
  text-align: center;
  margin-bottom: 36px;
}
.cel-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.02em;
}
.cel-underline {
  display: flex; justify-content: center; margin-top: 12px;
}
.cel-underline span {
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #FF6A2A, #ff9a5c);
  border-radius: 3px;
}

/* Tabs */
.cel-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.cel-tab {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: transparent;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all .3s ease;
  outline: none;
}
.cel-tab:hover {
  color: #FF6A2A;
  border-color: rgba(255,106,42,.5);
}
.cel-tab--active {
  color: #fff !important;
  background: linear-gradient(135deg, #FF6A2A, #e85d04) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(255,106,42,.3);
}

/* Panels */
.cel-panel {
  display: none;
  animation: celPanelIn .4s ease;
}
.cel-panel--active { display: block; }
@keyframes celPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Events: Horizontal Scroll ── */
.cel-scroll-wrap {
  position: relative;
  padding: 0 44px;
}
.cel-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  transition: all .25s ease;
}
.cel-scroll-btn:hover {
  background: #FF6A2A; color: #fff; border-color: #FF6A2A;
  box-shadow: 0 4px 20px rgba(255,106,42,.4);
}
.cel-scroll-btn--left { left: 0; }
.cel-scroll-btn--right { right: 0; }

.cel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 12px;
}
.cel-track::-webkit-scrollbar { display: none; }

/* Event Block */
.cel-event {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.cel-event:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,106,42,.2);
  border-color: rgba(255,106,42,.4);
}
.cel-event-img {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.cel-event-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 4s ease;
}
.cel-event:hover .cel-event-img img { transform: scale(1.08); }

.cel-event-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #FF6A2A, #ff9a5c);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.5);
}

.cel-event-date {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  text-align: center;
  line-height: 1;
  min-width: 44px;
}
.cel-date-day {
  display: block;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
}
.cel-date-mon {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #FF6A2A;
  margin-top: 2px;
}

.cel-event-info {
  padding: 14px 16px 16px;
}
.cel-event-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cel-event-desc {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Campus Life: Masonry Grid ── */
.cel-masonry {
  columns: 3;
  column-gap: 20px;
}
.cel-life-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}
.cel-life-item--tall .cel-life-img { min-height: 320px; }

.cel-life-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 200px;
}
.cel-life-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 5s ease;
  min-height: 200px;
}
.cel-life-item:hover .cel-life-img img { transform: scale(1.06); }

.cel-life-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s ease;
}
.cel-life-item:hover .cel-life-overlay { opacity: 1; }

.cel-life-overlay h4 {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  transform: translateY(10px);
  transition: transform .4s ease;
}
.cel-life-item:hover .cel-life-overlay h4 { transform: translateY(0); }

.cel-life-overlay p {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
  transform: translateY(10px);
  transition: transform .4s ease .05s;
}
.cel-life-item:hover .cel-life-overlay p { transform: translateY(0); }

/* Entrance animation */
.cel-life-item--anim {
  opacity: 0;
  transform: translateY(30px);
  animation: celLifeIn .5s ease forwards;
  animation-delay: calc(var(--li-delay, 0) * .1s);
}
@keyframes celLifeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* View All link */
.cel-view-all {
  display: inline-flex;
  align-items: center;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #FF6A2A;
  text-decoration: none;
  padding: 10px 28px;
  border: 2px solid #FF6A2A;
  border-radius: 50px;
  transition: all .3s ease;
}
.cel-view-all:hover {
  background: #FF6A2A;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,106,42,.3);
  text-decoration: none;
}

/* Bottom Arrow */
.cel-arrow-down {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.cel-arrow-down i {
  font-size: 1.4rem;
  color: rgba(255,255,255,.3);
  animation: celArrowBounce 2s ease-in-out infinite;
}
@keyframes celArrowBounce {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .cel-masonry { columns: 2; }
  .cel-title { font-size: 2.1rem; }
}
@media (max-width: 768px) {
  .cel-section { padding: 50px 0 40px; }
  .cel-title { font-size: 1.7rem; }
  .cel-tabs { gap: 8px; }
  .cel-tab { font-size: .78rem; padding: 8px 20px; }
  .cel-event { flex: 0 0 190px; }
  .cel-event-img { height: 110px; }
  .cel-scroll-wrap { padding: 0 36px; }
  .cel-masonry { columns: 2; column-gap: 14px; }
  .cel-life-item { margin-bottom: 14px; }
  .cel-life-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .cel-section { padding: 36px 0 30px; }
  .cel-title { font-size: 1.4rem; }
  .cel-tab { font-size: .7rem; padding: 7px 16px; }
  .cel-event { flex: 0 0 170px; }
  .cel-event-img { height: 100px; }
  .cel-event-title { font-size: .8rem; }
  .cel-event-info { padding: 10px 12px 12px; }
  .cel-scroll-btn { width: 32px; height: 32px; font-size: .9rem; }
  .cel-scroll-wrap { padding: 0 28px; }
  .cel-masonry { columns: 1; }
  .cel-view-all { font-size: .78rem; padding: 8px 22px; }
}

/* ═══ EXAMINATIONS & RESULTS SECTION (ar-*) ═══ */
.ar-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: #f8f8fc;
}

/* Premium BG with animated mesh + orbs */
.ar-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.ar-bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255,106,42,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(255,106,42,.05) 0%, transparent 50%),
    linear-gradient(180deg, #f8f8fc 0%, #fff 40%, #f8f8fc 100%);
}
/* Animated diagonal lines */
.ar-bg-line {
  position: absolute;
  width: 1px;
  height: 200%;
  background: linear-gradient(180deg, transparent, rgba(255,106,42,.08), transparent);
  transform: rotate(25deg);
  animation: arLineDrift 12s ease-in-out infinite;
}
.ar-bg-line--1 { left: 15%; top: -50%; animation-delay: 0s; }
.ar-bg-line--2 { left: 50%; top: -50%; animation-delay: 4s; }
.ar-bg-line--3 { left: 82%; top: -50%; animation-delay: 8s; }
@keyframes arLineDrift {
  0%, 100% { opacity: .3; transform: rotate(25deg) translateY(0); }
  50% { opacity: .7; transform: rotate(25deg) translateY(40px); }
}
/* Floating orbs */
.ar-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.ar-bg-orb--1 {
  width: 300px; height: 300px;
  background: rgba(255,106,42,.06);
  top: -100px; right: -80px;
  animation: celFloat 18s ease-in-out infinite;
}
.ar-bg-orb--2 {
  width: 200px; height: 200px;
  background: rgba(255,154,92,.05);
  bottom: -60px; left: -60px;
  animation: celFloat 22s ease-in-out infinite reverse;
}

/* Header */
.ar-header {
  text-align: center;
  margin-bottom: 36px;
}
.ar-tag {
  display: inline-block;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #FF6A2A;
  background: rgba(255,106,42,.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.ar-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -.02em;
}
.ar-underline {
  display: flex; justify-content: center; margin-top: 12px;
}
.ar-underline span {
  display: block; width: 60px; height: 3px;
  background: linear-gradient(90deg, #FF6A2A, #ff9a5c);
  border-radius: 3px;
}

/* Tabs */
.ar-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.ar-tab {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #6b7b8d;
  background: transparent;
  border: 2px solid #e0e6ed;
  border-radius: 50px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all .3s ease;
  outline: none;
}
.ar-tab:hover {
  color: #FF6A2A;
  border-color: #FF6A2A;
}
.ar-tab--active {
  color: #fff !important;
  background: linear-gradient(135deg, #FF6A2A, #e85d04) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(255,106,42,.3);
}

/* Panels */
.ar-panel {
  display: none;
  animation: arPanelIn .4s ease;
}
.ar-panel--active { display: block; }
@keyframes arPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Exams: Timeline List ── */
.ar-exam-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ar-exam-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: #fff;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .35s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: arRowIn .5s ease forwards;
  animation-delay: calc(var(--ar-delay, 0) * .12s);
}
.ar-exam-row:first-child { border-radius: 16px 16px 0 0; }
.ar-exam-row:last-child { border-radius: 0 0 16px 16px; border-bottom: none; }
.ar-exam-row:only-child { border-radius: 16px; }
@keyframes arRowIn {
  to { opacity: 1; transform: translateX(0); }
}
.ar-exam-row:hover {
  border-left-color: #FF6A2A;
  background: #fffaf6;
  box-shadow: 0 4px 20px rgba(255,106,42,.08);
  transform: translateX(4px);
}
.ar-exam-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,106,42,.1), rgba(255,106,42,.05));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #FF6A2A;
  transition: all .3s ease;
}
.ar-exam-row:hover .ar-exam-icon {
  background: linear-gradient(135deg, #FF6A2A, #e85d04);
  color: #fff;
  transform: scale(1.08);
}
.ar-exam-body {
  flex: 1; min-width: 0;
}
.ar-exam-name {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 3px;
}
.ar-exam-desc {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .8rem;
  color: #6b7b8d;
  margin: 0;
  line-height: 1.5;
}
.ar-exam-date {
  flex-shrink: 0;
  text-align: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, #FF6A2A, #e85d04);
  border-radius: 12px;
  min-width: 68px;
}
.ar-exam-day {
  display: block;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ar-exam-month {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  margin-top: 3px;
}

/* ── Results: Animated List (no cards) ── */
.ar-results-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ar-result-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .35s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: arRowIn .5s ease forwards;
  animation-delay: calc(var(--ar-delay, 0) * .12s);
}
.ar-result-item:first-child { border-radius: 16px 16px 0 0; }
.ar-result-item:last-child { border-radius: 0 0 16px 16px; border-bottom: none; }
.ar-result-item:only-child { border-radius: 16px; }
.ar-result-item:hover {
  border-left-color: #FF6A2A;
  background: #fffaf6;
  box-shadow: 0 4px 20px rgba(255,106,42,.08);
  transform: translateX(4px);
}

/* SVG Ring for percentage */
.ar-result-percent {
  position: relative;
  width: 72px; height: 72px;
  flex-shrink: 0;
}
.ar-ring {
  width: 72px; height: 72px;
  transform: rotate(-90deg);
}
.ar-ring-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 6;
}
.ar-ring-fill {
  fill: none;
  stroke: #FF6A2A;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: calc(264 - (264 * var(--pct, 0)) / 100);
  transition: stroke-dashoffset 1.5s ease;
  animation: arRingDraw 1.5s ease forwards;
  animation-delay: calc(var(--ar-delay, 0) * .2s + .3s);
}
@keyframes arRingDraw {
  from { stroke-dashoffset: 264; }
}
.ar-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 800;
  color: #FF6A2A;
}

.ar-result-body {
  flex: 1; min-width: 0;
}
.ar-result-title {
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.ar-result-desc {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .8rem;
  color: #6b7b8d;
  margin: 0 0 8px;
  line-height: 1.5;
}
.ar-result-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ar-stat {
  font-family: var(--v2-font, 'Inter', sans-serif);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}
.ar-stat--pass {
  color: #059669;
  background: rgba(5,150,105,.08);
}
.ar-stat--total {
  color: #FF6A2A;
  background: rgba(255,106,42,.08);
}

/* Result external link */
.ar-result-link {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FF6A2A, #e85d04);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 3px 12px rgba(255,106,42,.2);
}
.ar-result-link:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,106,42,.35);
  color: #fff;
  text-decoration: none;
}

/* View All */
.ar-view-all {
  display: inline-flex;
  align-items: center;
  font-family: var(--v2-font-display, 'Poppins', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #FF6A2A;
  text-decoration: none;
  padding: 10px 28px;
  border: 2px solid #FF6A2A;
  border-radius: 50px;
  transition: all .3s ease;
}
.ar-view-all:hover {
  background: #FF6A2A;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,106,42,.3);
  text-decoration: none;
}

/* AR Responsive */
@media (max-width: 768px) {
  .ar-section { padding: 50px 0 40px; }
  .ar-title { font-size: 1.8rem; }
  .ar-tabs { gap: 8px; }
  .ar-tab { font-size: .78rem; padding: 8px 20px; }
  .ar-exam-row { padding: 16px 18px; gap: 14px; flex-wrap: wrap; }
  .ar-exam-date { padding: 6px 12px; min-width: auto; }
  .ar-exam-day { font-size: 1rem; }
  .ar-result-item { padding: 16px 18px; gap: 14px; flex-wrap: wrap; }
  .ar-result-percent { width: 56px; height: 56px; }
  .ar-ring { width: 56px; height: 56px; }
  .ar-ring-num { font-size: .76rem; }
}
@media (max-width: 480px) {
  .ar-section { padding: 36px 0 30px; }
  .ar-title { font-size: 1.4rem; }
  .ar-tab { font-size: .7rem; padding: 7px 16px; }
  .ar-exam-row { padding: 14px; gap: 12px; }
  .ar-exam-icon { width: 36px; height: 36px; font-size: .9rem; border-radius: 8px; }
  .ar-exam-name { font-size: .85rem; }
  .ar-result-item { padding: 14px; gap: 12px; }
  .ar-result-percent { width: 48px; height: 48px; }
  .ar-ring { width: 48px; height: 48px; }
  .ar-ring-num { font-size: .68rem; }
  .ar-result-link { width: 34px; height: 34px; font-size: .85rem; }
  .ar-view-all { font-size: .78rem; padding: 8px 22px; }
}

/* ─── Hero Image-Only Slideshow ─── */
.hero-v2 {
  position: relative !important;
  overflow: visible !important;
  min-height: 0 !important;
  height: auto !important;
  clip-path: none !important;
  z-index: 1;
  display: block;
  margin: 0 !important;
  width: 100%;
  line-height: 0;
}

.home-page .hero-v2 {
  margin-top: 0 !important;
}

.hero-v2-carousel {
  position: relative !important;
  width: 100%;
  overflow: hidden !important;
  min-height: 0 !important;
  height: auto !important;
}

.hero-v2-slide {
  display: block !important;
  width: 100% !important;
  background: none !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  inset: auto !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity .65s ease, visibility .65s ease !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
  z-index: 0;
}

.hero-v2-slide.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  z-index: 1;
}

.hero-v2-slide:first-child.active {
  position: relative !important;
}

.hero-slide-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center top !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top;
}

.hero-slide-placeholder {
  width: 100%;
  min-height: 320px;
  height: auto;
  background: linear-gradient(135deg, #e85d04, #d4a017);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  padding: 2rem;
}
.hero-slide-placeholder h2 {
  color: #fff;
  font-family: var(--v2-font-display);
  font-weight: 800;
  font-size: 2rem;
}
.hero-v2-overlay { display: none !important; }
.hero-v2-container { display: none !important; }
.hero-v2-grid { display: none !important; }
.hero-v2-left { display: none !important; }
.hero-v2-right { display: none !important; }

/* Arrow Buttons */
.hero-v2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.4);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-v2-arrow:hover {
  background: #e85d04;
  border-color: #e85d04;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(232,93,4,.4);
}
.hero-v2-arrow--prev { left: 20px; }
.hero-v2-arrow--next { right: 20px; }

/* Dot Indicators */
.hero-v2-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 15;
  padding: 6px 14px;
  background: rgba(0,0,0,.3);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-v2-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero-v2-indicator:hover {
  background: rgba(255,255,255,.8);
}
.hero-v2-indicator.active {
  background: #e85d04;
  width: 28px;
  border-radius: 10px;
}
.hero-v2-counter { display: none; }

/* ═══ Application Form Modal (Popup) ═══ */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shineSwipe {
  0%   { left: -100%; }
  100% { left: 100%; }
}
.app-form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.app-form-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.app-form-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 96vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 25px 60px rgba(0,0,0,.18),
    0 0 0 1px rgba(232,93,4,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(40px) scale(.96);
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  opacity: 0;
}
.app-form-modal::-webkit-scrollbar { display: none; }
.app-form-modal-overlay.show .app-form-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
/* White shine effect */
.app-form-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(232,93,4,.04) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  z-index: 0;
}
.app-form-modal::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  pointer-events: none;
  z-index: 0;
}
.app-form-modal-overlay.show .app-form-modal::after {
  animation: shineSwipe .8s .4s ease-out forwards;
}

/* Close Button */
.app-form-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.06);
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.app-form-modal-close:hover {
  background: #e85d04;
  color: #fff;
  transform: rotate(90deg);
}

/* Modal Header */
.app-form-modal-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.app-form-modal-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(232,93,4,.25);
}
.app-form-modal-header h4 {
  font-family: var(--v2-font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin: 0 0 2px;
}
.app-form-modal-header p {
  font-size: .7rem;
  color: #888;
  margin: 0;
}

/* Modal Body */
.app-form-modal-body {
  position: relative;
  z-index: 1;
  padding: 14px 20px 18px;
}

/* ─── Form Fields (White Theme) ─── */
.af-field { margin-bottom: 10px; }
.af-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.af-field input,
.af-field select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: .8rem;
  color: #222;
  background: #fafafa;
  transition: border-color .3s, box-shadow .3s, background .3s;
  outline: none;
}
.af-field input:focus,
.af-field select:focus {
  border-color: #e85d04;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}
.af-field input::placeholder { color: #aaa; }
.af-field select { color: #888; }
.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.af-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color .3s, box-shadow .3s;
}
.af-phone-wrap:focus-within {
  border-color: #e85d04;
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}
.af-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: 700;
  color: #e85d04;
  background: rgba(232,93,4,.04);
  border-right: 1px solid #e0e0e0;
  font-size: .78rem;
}
.af-phone-wrap input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  padding: 8px 12px;
}

/* Captcha */
.af-captcha-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.af-captcha-display {
  padding: 6px 12px;
  background: #f5f5f5;
  border: 1px dashed #ccc;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e85d04;
  user-select: none;
  min-width: 85px;
  text-align: center;
}
.af-captcha-refresh {
  border: none;
  background: none;
  color: #e85d04;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: transform .3s;
}
.af-captcha-refresh:hover { transform: rotate(180deg); color: #ff8c00; }
.af-captcha-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: .8rem;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.af-captcha-input:focus {
  border-color: #e85d04;
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}

/* Consent */
.af-consent {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0;
  cursor: pointer;
}
.af-consent input[type="checkbox"] {
  accent-color: #e85d04;
  margin-top: 2px;
  flex-shrink: 0;
}
.af-consent span {
  font-size: .65rem;
  color: #888;
  line-height: 1.3;
}

/* Submit Button */
.af-submit {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(135deg, #e85d04, #ff8c00);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232,93,4,.3);
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.af-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shineSwipe 2.5s ease-in-out infinite;
}
.af-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,93,4,.5);
}

/* Note & Success */
.af-note {
  font-size: .62rem;
  color: #aaa;
  text-align: center;
  margin: 6px 0 0;
}
.af-success {
  text-align: center;
  padding: 30px 20px;
}
.af-success i {
  font-size: 3rem;
  color: #e85d04;
  margin-bottom: 12px;
}
.af-success h6 {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.af-success p {
  color: #888;
  font-size: .85rem;
}

/* Modal & Slideshow Responsive */
@media (max-width: 991px) {
  .hero-v2-arrow { width: 40px; height: 40px; }
  .hero-v2-arrow--prev { left: 12px; }
  .hero-v2-arrow--next { right: 12px; }
}
@media (max-width: 768px) {
  .app-form-modal { max-width: 95%; }
  .app-form-modal-body { padding: 12px 14px 16px; }
  .af-row { grid-template-columns: 1fr; gap: 0; }
  .hero-v2-arrow { width: 34px; height: 34px; }
  .hero-v2-arrow svg { width: 18px; height: 18px; }
  .app-form-modal-header { padding: 14px 14px 10px; }
  .app-form-modal-header h4 { font-size: .95rem; }
  .app-form-modal-icon { width: 36px; height: 36px; font-size: .95rem; margin-bottom: 6px; }
  .af-field { margin-bottom: 8px; }
  .af-label { font-size: .62rem; margin-bottom: 2px; }
  .af-field input, .af-field select { padding: 7px 10px; font-size: .76rem; }
  .af-submit { padding: 9px 12px; font-size: .78rem; }
}
@media (max-width: 480px) {
  .hero-slide-placeholder { height: 200px; }
  .app-form-modal-body { padding: 10px 12px 14px; }
  .af-field input, .af-field select { padding: 6px 8px; font-size: .74rem; border-radius: 6px; }
  .af-captcha-display { padding: 5px 8px; font-size: .9rem; min-width: 70px; }
  .af-captcha-input { padding: 6px 8px; font-size: .74rem; }
  .af-submit { padding: 8px 10px; font-size: .75rem; border-radius: 8px; }
  .af-consent span { font-size: .6rem; }
  .af-note { font-size: .55rem; }
}

/* ─── Topbar Responsive ─── */
@media (max-width: 1366px) {
  .topbar { font-size: .68rem; }
  .topbar-inner { padding: 4px 0; gap: 10px; }
  .topbar-contact { gap: 10px; }
}
@media (max-width: 1024px) {
  .topbar-contact { display: none !important; }
  .topbar-ticker { margin: 0 !important; }
}

/* ─── Navbar White Background Override ─── */
.rn {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.rn--scrolled {
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.rn-link {
  color: #1a1a2e !important;
}
.rn-link:hover,
.rn-link--active,
.rn-link--open {
  color: #e85d04 !important;
}
.rn-link::after {
  background: linear-gradient(90deg, #e85d04, #d4a017) !important;
}
.rn-bell-btn {
  color: #1a1a2e;
}
.rn-bell-btn:hover {
  background: rgba(0,0,0,.05);
  color: #e85d04;
}
.rn-bell--active .rn-bell-btn {
  color: #e85d04;
}
.rn-bell-badge {
  border-color: #fff;
}
.rn-profile-btn {
  color: #fff;
  background: linear-gradient(135deg, #e85d04, #ff8c00) !important;
  border: 1.5px solid rgba(255,255,255,.25) !important;
  box-shadow: 0 3px 12px rgba(232,93,4,.3);
  transition: all .3s ease;
}
.rn-profile-btn:hover {
  background: linear-gradient(135deg, #d4520a, #e85d04) !important;
  border-color: rgba(255,255,255,.4) !important;
  box-shadow: 0 5px 18px rgba(232,93,4,.4);
  transform: translateY(-1px);
}
.rn-profile-name {
  color: #fff;
}
.rn-avatar-fallback {
  background: linear-gradient(135deg, #fff, #ffecd2) !important;
  color: #e85d04 !important;
  border: 2px solid rgba(255,255,255,.5) !important;
  font-weight: 800 !important;
}
.rn-avatar {
  border: 2px solid rgba(255,255,255,.5) !important;
}
.rn-avatar-dot {
  border-color: #e85d04;
}
.rn-profile-btn .rn-chev {
  color: rgba(255,255,255,.7);
}
.rn-auth-btn--outline {
  color: #e85d04;
  border-color: #e85d04;
}
.rn-auth-btn--outline:hover {
  background: rgba(232,93,4,.08);
  color: #e85d04;
  border-color: #e85d04;
}
.rn-auth-btn--solid {
  background: linear-gradient(135deg, #e85d04, #d4a017);
  color: #fff;
}
.rn-auth-btn--solid:hover {
  color: #fff;
}
.rn-hamburger span {
  background: #1a1a2e !important;
}

/* ─── Navbar Responsive for Laptops ─── */
@media (max-width: 1366px) {
  .rn-inner { min-height: 56px; padding: 0 16px; }
  .rn-brand-name { font-size: 1rem !important; }
  .rn-brand-sub { font-size: .52rem !important; }
  .rn-logo { width: 38px; height: 38px; border-radius: 10px; }
  .rn-logo i { font-size: 1.1rem; }
  .rn-link { padding: 16px 10px; font-size: .78rem; }
  .rn-auth-btn { padding: 6px 16px; font-size: .76rem; }
  .rn-profile-name { font-size: .78rem; }
}
@media (max-width: 1280px) {
  .rn-link { padding: 14px 8px; font-size: .74rem; gap: 3px; }
  .rn-profile-name { display: none; }
  .rn-menu { gap: 0; }
}

/* ─── Mobile Menu White Override ─── */
@media (max-width: 1199px) {
  .rn-inner {
    justify-content: flex-end !important;
  }
  .rn-hamburger {
    background: rgba(0,0,0,.04) !important;
    border-color: rgba(0,0,0,.08) !important;
    order: 10;
  }
  .rn-hamburger:hover {
    background: rgba(232,93,4,.08) !important;
  }
  .rn-actions {
    margin-left: auto;
  }
  .rn-menu {
    background: #fff !important;
    border-top: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.12) !important;
  }
  .rn-link {
    color: #1a1a2e !important;
    padding: 12px 20px !important;
    font-size: .88rem !important;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }
  .rn-link:hover,
  .rn-link--active {
    color: #e85d04 !important;
    background: rgba(232,93,4,.04) !important;
  }
  .rn-mega, .rn-drop {
    background: #f8f8f8 !important;
    border-color: rgba(0,0,0,.06) !important;
    box-shadow: none !important;
  }
  .rn-mega a, .rn-drop a {
    color: #333 !important;
  }
  .rn-mega a:hover, .rn-drop a:hover {
    color: #e85d04 !important;
    background: rgba(232,93,4,.04) !important;
  }
}
@media (max-width: 768px) {
  .rn-inner { min-height: 50px; padding: 0 12px; }
  .rn-actions { gap: 6px; }
  .rn-auth-btn { padding: 5px 12px; font-size: .72rem; }
  .rn-hamburger { width: 34px; height: 34px; padding: 6px; }
  .rn-profile-btn { padding: 4px 8px 4px 4px !important; gap: 6px !important; }
  .rn-profile-name { font-size: .72rem; }
}
@media (max-width: 480px) {
  .rn-inner { min-height: 46px; padding: 0 10px; }
  .rn-auth-btn--outline { display: none; }
  .rn-auth-btn--solid { padding: 5px 10px; font-size: .7rem; }
  .rn-hamburger { width: 32px; height: 32px; }
  .rn-profile-btn { padding: 3px 6px 3px 3px !important; gap: 5px !important; }
  .rn-profile-name { font-size: .68rem; }
  .rn-bell-btn { width: 32px; height: 32px; font-size: 1rem; }
}

/* ─── Enhanced Card Animations ─── */
.v2-card,
.admin-card,
.sd-card,
.sd-stat-card,
.admin-stat {
  transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s cubic-bezier(.4,0,.2,1) !important;
  will-change: transform;
}
.v2-card:hover,
.admin-stat:hover,
.sd-stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--v2-shadow-hover) !important;
}

/* ─── Animated Entrance for Cards ─── */
@keyframes v2CardIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.admin-stat,
.sd-stat-card,
.admin-card,
.sd-card {
  animation: v2CardIn .5s cubic-bezier(.4,0,.2,1) both;
}
.admin-stat:nth-child(2), .sd-stat-card:nth-child(2) { animation-delay: .06s; }
.admin-stat:nth-child(3), .sd-stat-card:nth-child(3) { animation-delay: .12s; }
.admin-stat:nth-child(4), .sd-stat-card:nth-child(4) { animation-delay: .18s; }
.admin-stat:nth-child(5) { animation-delay: .24s; }

/* ─── Glassmorphism Utility ─── */
.v2-glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5);
}

/* ─── Premium Button Styles ─── */
.btn-v2-primary {
  background: linear-gradient(135deg, var(--v2-accent), #1d4ed8);
  color: #fff;
  border: none;
  padding: .65rem 1.5rem;
  border-radius: var(--v2-radius);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--v2-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37,99,235,.25);
}
.btn-v2-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-22deg);
  transition: left .6s ease;
}
.btn-v2-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,.35);
}
.btn-v2-primary:hover::before { left: 150%; }

.btn-v2-outline {
  background: transparent;
  color: var(--v2-accent);
  border: 2px solid var(--v2-accent);
  padding: .6rem 1.4rem;
  border-radius: var(--v2-radius);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--v2-transition);
}
.btn-v2-outline:hover {
  background: var(--v2-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.25);
}

.btn-v2-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: var(--v2-radius);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--v2-transition);
  box-shadow: 0 4px 15px rgba(220,38,38,.2);
}
.btn-v2-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220,38,38,.3);
}

/* ─── Admin Dashboard Responsive ─── */
@media (max-width: 1366px) {
  .dashboard-wrapper { min-height: calc(100vh - 56px); }
  .sidebar { width: 230px !important; }
  .dashboard-content { margin-left: 230px !important; }
  .sidebar-brand { padding: 12px 14px !important; }
  .sidebar-brand-icon { width: 32px !important; height: 32px !important; font-size: .9rem !important; }
  .sidebar-brand-text { font-size: .88rem !important; }
  .sidebar-brand-text small { font-size: .56rem !important; }
  .sidebar-nav .nav-link { padding: 8px 14px !important; font-size: .78rem !important; }
  .sidebar-nav .nav-link i { font-size: .85rem !important; }
  .admin-stat { padding: 14px 10px !important; }
  .admin-stat-icon { width: 38px !important; height: 38px !important; }
  .admin-stat-icon i { font-size: 1rem !important; }
  .admin-stat-value { font-size: 1.3rem !important; }
  .admin-stat-label { font-size: .62rem !important; }
  .admin-stats { gap: 10px !important; }
}
@media (max-width: 1280px) {
  .sidebar { width: 210px !important; }
  .dashboard-content { margin-left: 210px !important; }
  .admin-stats { flex-wrap: wrap !important; }
}

@media (max-width: 1200px) {
  .dashboard-wrapper { display: block !important; }
  .sidebar {
    width: 100% !important;
    max-width: 100% !important;
    transform: translateX(-100%) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    box-shadow: 20px 0 60px rgba(0,0,0,.15) !important;
  }
  .sidebar.show { transform: translateX(0) !important; }
  .dashboard-content {
    margin-left: 0 !important;
    padding: 0 0.95rem 1.5rem !important;
  }
  #sidebarToggle { display: inline-flex !important; }
  .sidebar-search-input { width: 100% !important; }
  .sidebar-brand-text { font-size: .98rem !important; }
  .sidebar-nav .nav-link { padding: .75rem .95rem !important; font-size: .82rem !important; }
  .admin-topbar { padding: .9rem 1rem !important; }
  .admin-topbar-actions { width: auto !important; justify-content: flex-end !important; flex-wrap: wrap !important; gap: .75rem !important; margin-left: auto !important; }
  .admin-topbar-title { width: auto !important; flex: 1 1 360px !important; }
  .admin-tab { padding: 11px 14px !important; font-size: .78rem !important; }
}
@media (max-width: 1024px) {
  .dashboard-content { padding: 0 1rem 1.4rem !important; }
  .admin-dashboard-page { width: 100% !important; max-width: 100% !important; }
  .admin-stats { grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)) !important; }
  .admin-body { padding: .95rem !important; gap: .85rem !important; }
  .admin-topbar { padding: .9rem .95rem !important; }
  .admin-content-panel-title { font-size: 1.45rem !important; }
  .admin-content-table-wrap { max-height: calc(100vh - 300px) !important; }
}
@media (max-width: 992px) {
  .dashboard-content { padding: 0 .85rem 1.2rem !important; }
  .admin-topbar { padding: .8rem .85rem !important; }
  .admin-content-panel-title { font-size: 1.35rem !important; }
  .admin-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important; }
  .admin-body { padding: .9rem !important; }
  .sidebar-nav { padding: .65rem .9rem 1.2rem !important; }
  .sidebar-brand { padding: 1rem 1rem !important; }
  .sidebar-nav .nav-link { font-size: .8rem !important; }
  .sidebar-user-name { font-size: .8rem !important; }
  .sidebar-user-role { font-size: .66rem !important; }
  .admin-tab { padding: 10px 12px !important; font-size: .76rem !important; }
}
@media (max-width: 768px) {
  .sidebar-nav { padding: .75rem 1rem 1.25rem !important; }
  .sidebar-nav .nav-link { padding: .7rem .85rem !important; font-size: .78rem !important; }
  .sidebar-user { padding: .9rem 1rem !important; }
  .sidebar-user-name { font-size: .78rem !important; }
  .sidebar-user-role { font-size: .64rem !important; }
  .admin-stats { grid-template-columns: repeat(auto-fit, minmax(136px, 1fr)) !important; gap: 10px !important; }
  .admin-stat { min-height: 88px !important; padding: .7rem .75rem !important; }
  .admin-stat-icon { width: 32px !important; height: 32px !important; }
  .admin-tab { padding: 10px 12px !important; font-size: .75rem !important; }
  .admin-topbar { flex-wrap: wrap !important; gap: .75rem !important; padding: .85rem .9rem !important; }
  .admin-topbar-actions { width: 100% !important; justify-content: flex-end !important; }
  .admin-topbar-title h4 { font-size: 1rem !important; }
  .admin-topbar-title small { font-size: .72rem !important; }
  .admin-notif-dropdown { width: min(92vw, 320px) !important; right: 0 !important; }
  .admin-content-panel-title { font-size: 1.2rem !important; }
  .admin-form-grid { grid-template-columns: 1fr !important; }
  .admin-modal-form .admin-form-grid { grid-template-columns: 1fr !important; }
  .admin-modal-card { width: min(96vw, 640px) !important; padding: .85rem !important; }
  .admin-content-table-wrap { max-height: calc(100vh - 270px) !important; }
}
@media (max-width: 576px) {
  .admin-stats { grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)) !important; }
  .admin-body { padding: .8rem !important; }
  .dashboard-content { padding: 0 .75rem 1rem !important; }
  .sidebar-nav .nav-link { padding: .65rem .75rem !important; font-size: .72rem !important; }
  .sidebar-search-input { font-size: .78rem !important; }
  .sidebar-user { padding: .85rem 1rem !important; }
  .admin-tab { padding: 9px 10px !important; font-size: .72rem !important; }
  .admin-topbar { padding: .7rem .75rem !important; }
  .admin-topbar-actions { justify-content: flex-end !important; gap: .55rem !important; }
}

/* ─── Sidebar Logo Fix for Laptop ─── */
.sidebar-brand {
  position: sticky;
  top: 0;
  z-index: 10;
  background: inherit;
}
.sidebar-brand-icon {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.sidebar-brand:hover .sidebar-brand-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ─── Footer Fixes ─── */
.royal-footer {
  background: linear-gradient(180deg, #0a0f1f 0%, #060a14 100%) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer-bottom small {
  color: rgba(255,255,255,.55) !important;
  font-size: .78rem;
}
.footer-bottom small a {
  color: var(--v2-gold-light) !important;
  font-weight: 600;
}
/* Fix footer logo text visibility */
.royal-footer .footer-contact-item {
  color: rgba(255,255,255,.65) !important;
}
.royal-footer p.text-muted {
  color: rgba(255,255,255,.5) !important;
}
.footer-links a {
  color: rgba(255,255,255,.55) !important;
  transition: var(--v2-transition);
}
.footer-links a:hover {
  color: var(--v2-gold-light) !important;
  padding-left: 6px;
}
/* Social icon button styling */
.social-icon {
  width: 40px; height: 40px;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6) !important;
  font-size: 1rem;
  transition: var(--v2-transition);
}
.social-icon:hover {
  background: var(--v2-accent) !important;
  color: #fff !important;
  border-color: var(--v2-accent) !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

/* ─── Enhanced Modal / Popup Styles ─── */
.admin-modal-overlay,
.v2-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: v2OverlayIn .25s ease;
}
@keyframes v2OverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.admin-modal-card,
.v2-modal-card {
  background: #fff;
  border-radius: var(--v2-radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  max-width: 640px;
  width: min(640px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  animation: v2ModalSlide .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
@keyframes v2ModalSlide {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.admin-modal-header,
.v2-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--v2-border);
  background: linear-gradient(135deg, rgba(37,99,235,.04), transparent);
}
.admin-modal-header h5,
.v2-modal-header h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--v2-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-modal-close,
.v2-modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,.04);
  cursor: pointer;
  transition: var(--v2-transition);
  color: var(--v2-muted);
  font-size: 1rem;
}
.admin-modal-close:hover,
.v2-modal-close:hover {
  background: rgba(220,38,38,.08);
  color: var(--v2-danger);
  transform: rotate(90deg);
}

/* ─── Edit / Delete Popup Modal ─── */
.v2-edit-modal-body {
  padding: 24px;
}
.v2-edit-modal-body .admin-form-field {
  margin-bottom: 16px;
}
.v2-edit-modal-body label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--v2-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.v2-edit-modal-body input,
.v2-edit-modal-body select,
.v2-edit-modal-body textarea {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--v2-border);
  border-radius: 10px;
  font-size: .88rem;
  transition: var(--v2-transition);
  background: #fafbfc;
}
.v2-edit-modal-body input:focus,
.v2-edit-modal-body select:focus,
.v2-edit-modal-body textarea:focus {
  border-color: var(--v2-accent);
  box-shadow: 0 0 0 3px var(--v2-accent-glow);
  outline: none;
  background: #fff;
}
.v2-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--v2-border);
  background: #fafbfc;
  border-radius: 0 0 var(--v2-radius-lg) var(--v2-radius-lg);
}

/* Delete confirmation modal */
.v2-delete-confirm {
  text-align: center;
  padding: 32px 24px;
}
.v2-delete-confirm-icon {
  width: 64px; height: 64px;
  background: rgba(220,38,38,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--v2-danger);
  animation: v2DeletePulse 1.5s ease-in-out infinite;
}
@keyframes v2DeletePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220,38,38,.15); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(220,38,38,0); }
}
.v2-delete-confirm h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--v2-text);
  margin-bottom: 8px;
}
.v2-delete-confirm p {
  color: var(--v2-muted);
  font-size: .88rem;
  margin-bottom: 24px;
}

/* ─── Banner / Hero Section V2 ─── */
.v2-hero {
  position: relative;
  background: linear-gradient(135deg, #0c1b33 0%, #162d50 50%, #1a3a5c 100%);
  overflow: hidden;
  padding: 0;
}
.v2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(37,99,235,.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212,160,23,.08) 0%, transparent 50%);
  animation: v2HeroBG 15s ease-in-out infinite alternate;
}
@keyframes v2HeroBG {
  0% { opacity: .6; }
  100% { opacity: 1; }
}
.v2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(37,99,235,.015) 80px, rgba(37,99,235,.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(37,99,235,.015) 80px, rgba(37,99,235,.015) 81px);
  pointer-events: none;
}

/* ─── Page Header Banner ─── */
.v2-page-banner {
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.v2-page-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 60%);
  border-radius: 50%;
  animation: v2BannerOrb 10s ease-in-out infinite alternate;
}
@keyframes v2BannerOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 20px) scale(1.1); }
}
.v2-page-banner::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,160,23,.06) 0%, transparent 60%);
  border-radius: 50%;
}
.v2-page-banner h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}
.v2-page-banner p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  position: relative;
  z-index: 1;
}
.v2-page-banner .v2-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.v2-page-banner .v2-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.v2-page-banner .v2-breadcrumb a:hover {
  color: var(--v2-gold-light);
}

/* ─── Animated Content Sections ─── */
.v2-section {
  padding: 3rem 0;
  position: relative;
}
.v2-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v2-text);
  margin-bottom: .5rem;
  position: relative;
  display: inline-block;
}
.v2-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--v2-accent), var(--v2-gold));
  border-radius: 2px;
  margin-top: 8px;
}
.v2-section-subtitle {
  color: var(--v2-muted);
  font-size: .9rem;
  margin-bottom: 2rem;
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ─── Stagger Children Animation ─── */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.stagger.stagger-active > * { opacity: 1; transform: translateY(0); }
.stagger.stagger-active > *:nth-child(1) { transition-delay: .05s; }
.stagger.stagger-active > *:nth-child(2) { transition-delay: .1s; }
.stagger.stagger-active > *:nth-child(3) { transition-delay: .15s; }
.stagger.stagger-active > *:nth-child(4) { transition-delay: .2s; }
.stagger.stagger-active > *:nth-child(5) { transition-delay: .25s; }
.stagger.stagger-active > *:nth-child(6) { transition-delay: .3s; }

/* ─── Content Page Cards ─── */
.v2-content-card {
  background: var(--v2-card);
  border-radius: var(--v2-radius-lg);
  box-shadow: var(--v2-shadow);
  overflow: hidden;
  transition: var(--v2-transition);
  border: 1px solid transparent;
}
.v2-content-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--v2-shadow-hover);
  border-color: rgba(37,99,235,.1);
}
.v2-content-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.v2-content-card:hover .v2-content-card-img {
  transform: scale(1.05);
}
.v2-content-card-body {
  padding: 1.25rem;
}
.v2-content-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-text);
  margin-bottom: .5rem;
}
.v2-content-card-body p {
  color: var(--v2-muted);
  font-size: .85rem;
  line-height: 1.6;
}

/* ─── Admin Table Enhancement ─── */
.admin-table {
  border-collapse: separate;
  border-spacing: 0;
}
.admin-table thead th {
  background: linear-gradient(135deg, #f8fafc, #f0f4f8) !important;
  font-size: .7rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  color: var(--v2-muted) !important;
  padding: 12px 14px !important;
  border-bottom: 2px solid var(--v2-border) !important;
  position: sticky;
  top: 0;
  z-index: 2;
}
.admin-table tbody td {
  padding: 10px 14px !important;
  border-bottom: 1px solid #f0f4f8 !important;
  font-size: .83rem !important;
  transition: background .2s;
}
.admin-table tbody tr {
  transition: background .2s;
}
.admin-table tbody tr:hover td {
  background: rgba(37,99,235,.03) !important;
}
/* Edit/Delete action buttons in table */
.v2-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--v2-transition);
  border: none;
  cursor: pointer;
  background: none;
}
.v2-action-btn-edit {
  color: var(--v2-accent);
  background: rgba(37,99,235,.06);
}
.v2-action-btn-edit:hover {
  background: var(--v2-accent);
  color: #fff;
  transform: translateY(-1px);
}
.v2-action-btn-delete {
  color: var(--v2-danger);
  background: rgba(220,38,38,.06);
}
.v2-action-btn-delete:hover {
  background: var(--v2-danger);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Admin Badge Enhancement ─── */
.admin-badge {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.admin-badge-green {
  background: rgba(5,150,105,.08);
  color: var(--v2-success);
}
.admin-badge-red {
  background: rgba(220,38,38,.08);
  color: var(--v2-danger);
}

/* ─── Change Password Enhanced UI ─── */
.change-password-section {
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 100%) !important;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
}
.change-password-card {
  border-radius: var(--v2-radius-lg) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.2) !important;
  overflow: hidden;
}
.change-password-header {
  background: linear-gradient(135deg, var(--v2-accent), #1d4ed8) !important;
  padding: 2rem 1.5rem !important;
}
.change-password-header h1 {
  font-size: 1.4rem !important;
  color: #fff !important;
}
.change-password-body {
  padding: 2rem !important;
}
.change-password-body .form-group input {
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
  border: 1.5px solid var(--v2-border) !important;
  transition: var(--v2-transition) !important;
}
.change-password-body .form-group input:focus {
  border-color: var(--v2-accent) !important;
  box-shadow: 0 0 0 3px var(--v2-accent-glow) !important;
}

/* ─── Auth Pages (Login, Register) Enhancement ─── */
.auth-container {
  border-radius: var(--v2-radius-lg) !important;
  overflow: hidden;
}
@media (max-width: 1366px) {
  .auth-container {
    max-width: 850px !important;
  }
  .auth-left {
    padding: 2rem !important;
  }
  .auth-left h2 {
    font-size: 1.6rem !important;
  }
  .auth-left-icon {
    width: 65px !important;
    height: 65px !important;
    font-size: 2rem !important;
    margin-bottom: 18px !important;
  }
  .auth-right {
    padding: 2rem !important;
  }
}

/* ─── Floating Particles (decorative) ─── */
.v2-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.v2-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(37,99,235,.15);
  border-radius: 50%;
  animation: v2Float linear infinite;
}
@keyframes v2Float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ─── Page Transition Wrapper ─── */
main {
  animation: v2PageIn .4s cubic-bezier(.4,0,.2,1);
}
@keyframes v2PageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Loading Skeleton ─── */
.v2-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: v2Shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes v2Shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── Tooltip ─── */
.v2-tooltip {
  position: relative;
  cursor: help;
}
.v2-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--v2-primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}
.v2-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Notification/Toast Enhancement ─── */
.toast {
  border-radius: 14px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,.15) !important;
  animation: v2ToastIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes v2ToastIn {
  from {
    opacity: 0;
    transform: translateX(40px) scale(.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ─── Form Enhancements ─── */
.form-control,
.form-select {
  border-radius: 10px !important;
  border: 1.5px solid var(--v2-border) !important;
  padding: .6rem 1rem !important;
  transition: var(--v2-transition) !important;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--v2-accent) !important;
  box-shadow: 0 0 0 3px var(--v2-accent-glow) !important;
}

/* ─── Scrollbar Redesign ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(37,99,235,.2);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(37,99,235,.4);
}

/* ═══════════════════════════════════════════════════════════
   CONTENT PAGES — Corporate Premium Overrides
   ═══════════════════════════════════════════════════════════ */

/* ─── Page Header / Breadcrumb Banner ─── */
.page-header {
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 50%, var(--v2-accent) 100%) !important;
  padding: 3rem 0 2.5rem !important;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--v2-gold) !important;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  top: -100px; right: -50px;
  border-radius: 50%;
  animation: v2OrbFloat 8s ease-in-out infinite;
}
.page-header::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,160,23,.1) 0%, transparent 70%);
  bottom: -60px; left: 10%;
  border-radius: 50%;
  animation: v2OrbFloat 10s ease-in-out infinite reverse;
}
.page-header h2,
.page-header .display-6 {
  color: #fff !important;
  font-family: var(--v2-font-display) !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,.75) !important;
  text-decoration: none;
  transition: color .2s;
}
.page-header .breadcrumb-item a:hover {
  color: var(--v2-gold-light) !important;
}
.page-header .breadcrumb-item.active {
  color: var(--v2-gold) !important;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.5) !important;
}

/* ─── Premium Card Enhancements ─── */
.premium-card {
  background: var(--v2-card) !important;
  border: 1px solid var(--v2-border) !important;
  border-radius: var(--v2-radius) !important;
  box-shadow: var(--v2-shadow) !important;
  transition: var(--v2-transition) !important;
  animation: v2CardIn .5s ease both;
  overflow: hidden;
}
.premium-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--v2-shadow-hover) !important;
  border-color: var(--v2-accent-light) !important;
}
.premium-card img {
  transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}
.premium-card:hover img {
  transform: scale(1.05) !important;
}

/* ─── Premium Section Background ─── */
.premium-page-bg {
  background: var(--v2-surface) !important;
}
.premium-section {
  padding: 3rem 0 !important;
}

/* ─── Decorative Orbs ─── */
.deco-orb {
  opacity: .4;
  filter: blur(60px);
  animation: v2OrbFloat 12s ease-in-out infinite;
}

/* ─── Royal Card Overrides ─── */
.royal-card {
  background: var(--v2-card) !important;
  border: 1px solid var(--v2-border) !important;
  border-radius: var(--v2-radius) !important;
  box-shadow: var(--v2-shadow) !important;
  transition: var(--v2-transition) !important;
  animation: v2CardIn .5s ease both;
}
.royal-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: var(--v2-shadow-hover) !important;
}
.royal-card.icon-card {
  text-align: center;
  padding: 2rem 1.5rem !important;
}
.royal-card.icon-card i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--v2-accent), var(--v2-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
  transition: transform .3s;
}
.royal-card.icon-card:hover i {
  transform: scale(1.15) rotate(-5deg);
}

/* ─── Section Headings ─── */
.section h2,
.section-dark h2,
.premium-section h2 {
  font-family: var(--v2-font-display) !important;
  font-weight: 700 !important;
  color: var(--v2-primary) !important;
  position: relative;
  display: inline-block;
}
.section-dark h2 {
  color: #fff !important;
}

/* ─── Section Dark Override ─── */
.section-dark {
  background: linear-gradient(135deg, var(--v2-primary), var(--v2-primary-light)) !important;
}

/* ─── Stat Cards (Home page) ─── */
.stat-item,
.stat-card {
  background: var(--v2-card) !important;
  border-radius: var(--v2-radius) !important;
  box-shadow: var(--v2-shadow) !important;
  transition: var(--v2-transition) !important;
  border: 1px solid var(--v2-border) !important;
}
.stat-item:hover,
.stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--v2-shadow-hover) !important;
}

/* ─── CTA Banner ─── */
.section-dark .btn,
.cta-banner .btn {
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: .6rem 1.8rem !important;
  transition: var(--v2-transition) !important;
}

/* ─── Premium Form (Contact page) ─── */
.premium-form .form-control,
.premium-form .form-select {
  background: var(--v2-card) !important;
  border: 1.5px solid var(--v2-border) !important;
  border-radius: 10px !important;
  padding: .7rem 1rem !important;
}
.premium-form .form-control:focus,
.premium-form .form-select:focus {
  border-color: var(--v2-accent) !important;
  box-shadow: 0 0 0 3px var(--v2-accent-glow) !important;
}
.premium-form .btn-primary,
.premium-form [type="submit"] {
  background: linear-gradient(135deg, var(--v2-accent), var(--v2-accent-light)) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: .7rem 2rem !important;
  transition: var(--v2-transition) !important;
}
.premium-form .btn-primary:hover,
.premium-form [type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.25) !important;
}

/* ─── Gallery Cards ─── */
.premium-card .card-img-overlay,
.premium-card .hover-overlay {
  background: linear-gradient(0deg, rgba(12,27,51,.8) 0%, transparent 60%) !important;
  transition: opacity .3s !important;
}

/* ─── Student Dashboard Overrides ─── */
.sd-header {
  background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 50%, var(--v2-accent) 100%) !important;
  border-radius: var(--v2-radius-lg) !important;
}
.sd-stat-card {
  border-radius: var(--v2-radius) !important;
  border: 1px solid var(--v2-border) !important;
  box-shadow: var(--v2-shadow) !important;
  transition: var(--v2-transition) !important;
}
.sd-stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--v2-shadow-hover) !important;
}
.sd-section-card {
  border-radius: var(--v2-radius) !important;
  border: 1px solid var(--v2-border) !important;
  box-shadow: var(--v2-shadow) !important;
}

/* ─── Employee Dashboard Overrides ─── */
.employees-dashboard .royal-card.icon-card {
  border-top: 3px solid var(--v2-accent) !important;
}
.employees-dashboard .royal-card.icon-card:nth-child(2) {
  border-top-color: var(--v2-gold) !important;
}
.employees-dashboard .royal-card.icon-card:nth-child(3) {
  border-top-color: var(--v2-success) !important;
}

/* ─── Auth Pages Shared Overrides ─── */
.auth-page {
  background: linear-gradient(135deg, #0c1b33 0%, #162d50 40%, #0c1b33 100%) !important;
}
.auth-page .card,
.auth-page .auth-card {
  background: rgba(255,255,255,.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: var(--v2-radius-lg) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.3) !important;
  animation: v2CardIn .6s ease both;
}
.auth-page h2,
.auth-page h3,
.auth-page .card-title {
  font-family: var(--v2-font-display) !important;
  color: #fff !important;
}
.auth-page .form-control {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: #fff !important;
}
.auth-page .form-control:focus {
  background: rgba(255,255,255,.12) !important;
  border-color: var(--v2-accent-light) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.25) !important;
}
.auth-page .form-control::placeholder {
  color: rgba(255,255,255,.4) !important;
}
.auth-page .btn-primary,
.auth-page [type="submit"] {
  background: linear-gradient(135deg, var(--v2-accent), #4f46e5) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: .7rem 2rem !important;
  transition: var(--v2-transition) !important;
}
.auth-page .btn-primary:hover,
.auth-page [type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.35) !important;
}
.auth-page a {
  color: var(--v2-accent-light) !important;
}
.auth-page a:hover {
  color: var(--v2-gold-light) !important;
}

/* ─── Scroll Reveal on Content Pages ─── */
.v2-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.v2-reveal.v2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive Tweaks for 13" Content Pages ─── */
@media (max-width: 1440px) {
  .premium-section { padding: 2.5rem 0 !important; }
  .page-header { padding: 2.5rem 0 2rem !important; }
}
@media (max-width: 1366px) {
  .premium-card { border-radius: 12px !important; }
  .royal-card { border-radius: 12px !important; }
  .section { padding: 2.5rem 0 !important; }
}
@media (max-width: 1280px) {
  .page-header { padding: 2rem 0 1.5rem !important; }
  .premium-section { padding: 2rem 0 !important; }
}
@media (max-width: 768px) {
  .page-header { padding: 1.5rem 0 !important; }
  .premium-section { padding: 1.5rem 0 !important; }
}

/* ─── Staggered Card Entrance ─── */
.premium-card:nth-child(1) { animation-delay: 0s; }
.premium-card:nth-child(2) { animation-delay: .08s; }
.premium-card:nth-child(3) { animation-delay: .16s; }
.premium-card:nth-child(4) { animation-delay: .24s; }
.premium-card:nth-child(5) { animation-delay: .32s; }
.premium-card:nth-child(6) { animation-delay: .40s; }
.royal-card:nth-child(1) { animation-delay: 0s; }
.royal-card:nth-child(2) { animation-delay: .1s; }
.royal-card:nth-child(3) { animation-delay: .2s; }

/* ─── Floating Orb Animation (shared) ─── */
@keyframes v2OrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ─── Print Optimizations ─── */
@media print {
  .topbar, .rn, .modern-footer, .royal-footer, .sidebar { display: none !important; }
  main { padding: 0 !important; }
  body::before { display: none; }
}
