/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #0B1F4D;
  --blue: #5FA8D3;
  --purple: #6C63FF;
  --orange: #F26522;
  --light-bg: #f8f9fb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #5FA8D3, #6C63FF);
  --gradient-btn: linear-gradient(135deg, #F26522, #e05010);
  --shadow: 0 10px 40px rgba(11, 31, 77, 0.12);
  --shadow-card: 0 4px 24px rgba(11, 31, 77, 0.10);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 80px 0;
}

/* ===== FLOATING HERO NAVBAR (homepage pill style) ===== */
#mainNav {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(11, 31, 77, 0.10);
  transition: var(--transition);
  padding: 10px 0;
}

/* On homepage, morph navbar into floating pill */
.page-home #mainNav {
  background: transparent;
  box-shadow: none;
  padding: 12px 0;
  top: 0;
}

.page-home #mainNav .container {
  background: #ffffff;
  border-radius: 60px;
  padding: 10px 24px;
  box-shadow: 0 4px 32px rgba(11, 31, 77, 0.18);
  max-width: 90%;
}

.page-home #mainNav .navbar-brand {
  padding: 0;
}

.page-home .nav-logo {
  height: 46px;
}

.page-home #mainNav .nav-link {
  color: #1a1a2e !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.page-home #mainNav .nav-link:hover {
  color: var(--navy) !important;
  background: rgba(11, 31, 77, 0.06);
}

.page-home #navToggleIcon {
  color: var(--navy) !important;
}

.btn-nav-register {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-nav-register:hover {
  background: #0f2960 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 31, 77, 0.3);
}

.navbar-toggler {
  border: none;
}

/* Standard navbar styles (all pages) */
.nav-logo {
  height: 52px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--orange) !important;
  background: rgba(242, 101, 34, 0.06);
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler i {
  color: var(--navy) !important;
  font-size: 1.3rem;
}

.btn-register {
  background: var(--gradient-btn);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
  transition: var(--transition);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.5);
  color: #fff !important;
}

/* ===== NEW HERO (SCREENSHOT DESIGN) ===== */
.hero-new {
  position: relative;
  width: 100%;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/images/gallery/background.webp');
  background-size: cover;
  background-position: center 30%;
  filter: blur(4px) brightness(0.82);
  transform: scale(1.06);
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 25, 65, 0.18) 0%,
      rgba(10, 25, 65, 0.08) 45%,
      rgba(10, 25, 65, 0.38) 100%);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 0;
  min-height: calc(88vh - 120px);
}

/* Container that holds all stacked text overlays */
.hero-texts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Each text overlay stacks full-area, fades in/out independently */
.hero-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-text-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-doctor-img {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-tagline-top {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: 'Poppins', sans-serif;
}

.hero-tagline-mid {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  margin-top: 4px;
}

.hero-tagline-mid strong {
  font-weight: 900;
  font-style: normal;
  color: #fff;
}

.hero-tagline-light {
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.hero-tagline-bot {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 4px;
}


.hero-doctor-img img {
  width: 100%;
  max-width: 920px;
  max-height: calc(88vh - 30px);
  height: auto;
  object-fit: contain;
  object-position: top;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.30));
  animation: doctorRise 2s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

@keyframes doctorRise {
  0% {
    opacity: 0;
    transform: translateY(120px);
    filter: drop-shadow(0 0 50px rgba(180, 210, 255, 0.8)) blur(6px);
  }

  40% {
    opacity: 0.7;
    filter: drop-shadow(0 0 25px rgba(180, 210, 255, 0.4)) blur(2px);
  }

  75% {
    filter: drop-shadow(0 0 10px rgba(180, 210, 255, 0.15)) blur(0px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
  }
}


/* Bottom Name Bar */
.hero-name-bar {
  position: relative;
  z-index: 3;
  background: #0B2A6B;
  border-radius: 50% 50% 0 0 / 120px 120px 0 0;
  margin-top: -120px;
  padding-top: 130px;
  padding-bottom: 0;
}

/* No pseudo-element needed — border-radius handles the arch */
.hero-name-bar::before {
  display: none;
}

/* Hide the SVG wave — not needed */
.hero-name-wave {
  display: none;
}

.hero-name-content {
  background: #0B2A6B;
  text-align: center;
  padding: 10px 20px 36px;
  position: relative;
  z-index: 1;
}

.hero-name-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin: -60px 0 10px 0;
  font-family: 'Poppins', sans-serif;
}

.hero-name-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

@keyframes nameFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 4px;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.5px;
  }
}

/* OLD HERO (kept for compatibility) */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1F4D 0%, #1a3570 50%, #0f2960 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(95, 168, 211, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(108, 99, 255, 0.12) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(242, 101, 34, 0.15);
  border: 1px solid rgba(242, 101, 34, 0.5);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(242, 101, 34, 0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: var(--gradient-btn);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 6px 25px rgba(242, 101, 34, 0.45);
  transition: var(--transition);
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(242, 101, 34, 0.55);
  color: #fff;
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  margin-left: 12px;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

.hero-img img {
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 650px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card:nth-child(2) {
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  animation-delay: 2s;
}

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card .fc-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.floating-card .fc-val {
  font-weight: 700;
  font-size: 1rem;
}

.card-pos-1 {
  top: -5%;
  right: -10%;
}

.card-pos-2 {
  bottom: -10%;
  right: -10%;
}

.card-pos-3 {
  bottom: 75%;
  left: -10%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== EVENT STRIP ===== */
.event-strip {
  background: var(--gradient);
  padding: 24px 0;
}

.event-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 8px 24px;
}

.event-strip-item i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.event-strip-item .es-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-strip-item .es-val {
  font-size: 1.1rem;
  font-weight: 700;
}

.event-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* ===== SECTION HEADINGS ===== */
.section-badge {
  display: inline-block;
  background: rgba(242, 101, 34, 0.1);
  color: var(--orange);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-btn);
  border-radius: 4px;
  margin: 16px 0;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 168, 211, 0.1), transparent 70%);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.about-img-badge .badge-txt {
  font-size: 0.75rem;
  opacity: 0.8;
}

.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

.about-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}

.about-stat .stat-num span {
  color: var(--orange);
}

.about-stat .stat-txt {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

/* ===== CARDS ===== */
.card-hover {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  background: #fff;
}

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

/* ===== WORKSHOP CARDS ===== */
.workshop-card img {
  height: 220px;
  object-fit: cover;
}

.workshop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-upcoming {
  background: var(--gradient-btn);
  color: #fff;
}

.badge-past {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.workshop-card .card-body {
  padding: 24px;
}

.workshop-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.workshop-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.workshop-meta span {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.workshop-meta i {
  color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy), #1a3570);
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  color: #fff;
  height: 100%;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.testimonial-author .t-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author .t-role {
  font-size: 0.75rem;
  opacity: 0.7;
}

.stars {
  color: var(--orange);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ===== FACULTY ===== */
.faculty-card {
  text-align: center;
}

.faculty-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  margin-bottom: 14px;
  transition: var(--transition);
}

.faculty-card:hover img {
  border-color: var(--orange);
  transform: scale(1.05);
}

.faculty-card .f-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.faculty-card .f-loc {
  font-size: 0.78rem;
  color: #888;
}

/* ===== GALLERY SLIDER ===== */
.gallery-slide {
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
}

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

/* ===== VENUE SECTION ===== */
.venue-section {
  position: relative;
  overflow: hidden;
}

.venue-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.venue-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 77, 0.9), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.venue-info {
  color: #fff;
}

.venue-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.venue-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===== NEWS / MEDIA ===== */
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card .news-body {
  padding: 20px;
  background: #fff;
}

.news-card .news-tag {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card .news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0;
}

.news-card .news-date {
  font-size: 0.78rem;
  color: #888;
}

/* ===== PARTNERS ===== */
.partners-section {
  background: var(--light-bg);
}

.partner-logo {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== FORMS ===== */
.form-section {
  background: var(--light-bg);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-control,
.form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(95, 168, 211, 0.15);
}

.btn-primary-custom {
  background: var(--gradient-btn);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
  width: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.45);
  color: #fff;
}

/* ===== AUTH PAGES ===== */
.auth-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1F4D, #1a3570);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  width: 100%;
  margin: auto;
}

.auth-logo {
  height: 60px;
  margin-bottom: 24px;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.auth-subtitle {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-link {
  color: var(--orange);
  font-weight: 600;
}

.auth-link:hover {
  color: var(--navy);
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #155724;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #721c24;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
}

/* ===== DASHBOARD ===== */
.dashboard-section {
  min-height: 100vh;
  background: var(--light-bg);
  padding: 100px 0 60px;
}

.dashboard-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.dash-stat-card {
  text-align: center;
  padding: 24px;
}

.dash-stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
}

.dash-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.dash-stat-card .stat-label {
  color: #888;
  font-size: 0.85rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #1a3570);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 12px auto 0;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.breadcrumb-custom a:hover {
  color: var(--orange);
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .current {
  color: #fff;
  font-weight: 600;
}

/* ===== WAVE DIVIDERS ===== */
.wave-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: #fff;
}

.footer-wave {
  margin-bottom: -2px;
}

.footer-body {
  background: var(--navy);
  padding: 60px 0 30px;
}

.footer-logo {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

.footer-contact li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

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

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  animation: float 3s ease-in-out infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ===== CAROUSEL / SLIDER ===== */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.carousel-indicators .active {
  background: var(--orange);
}

/* ===== CONTACT INFO ===== */
.contact-info-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.ci-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}

.ci-text .ci-label {
  font-size: 0.78rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ci-text .ci-val {
  font-size: 0.95rem;
  font-weight: 500;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:991px) {
  .hero {
    padding-top: 80px;
  }

  .hero-img {
    margin-top: 40px;
    text-align: center;
  }

  .hero-img img {
    max-width: 340px;
  }

  .floating-card {
    display: none;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width:767px) {
  .auth-card {
    padding: 32px 24px;
  }

  .about-img-badge {
    right: 0;
    bottom: 0;
  }

  .event-divider {
    display: none;
  }

  .btn-hero-outline {
    margin-left: 0;
    margin-top: 12px;
  }
}