/* ============================================================
   ZION BETHESDA INSTITUTE OF MEDICAL SCIENCE
   Main Stylesheet — style.css
   ============================================================ */

/* ── IMPORTS & VARIABLES ── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2448;
  --navy-mid: #1e4580;
  --navy-light: #2a5a9b;
  --orange: #e8831a;
  --orange-hov: #d0700e;
  --orange-pale: #fdf0e3;
  --blue: #4a90d9;
  --blue-light: #6aaae8;
  --blue-pale: #eaf3fc;
  --white: #ffffff;
  --off-white: #f8fafd;
  --gray-100: #f0f4f9;
  --gray-200: #dde6f0;
  --gray-400: #8fa3bf;
  --gray-600: #4a5e78;
  --text: #1a2a3a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 6px 28px rgba(26, 58, 107, 0.14);
  --shadow-lg: 0 16px 56px rgba(26, 58, 107, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
}


.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container,
.container-fluid {
  overflow-x: hidden;
  overflow-y: hidden;

}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── FLOATING ICON ── */


.floating-icon {
  position: fixed;
  bottom: 100px !important;
  right: 23px;
  z-index: 1000;
  display: inline-block;
  width: 65px;
}



.floating-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  object-fit: contain !important;
}

.floating-icon img:hover {
  transform: scale(1.1);
}

/* ── SECTION HELPERS ── */
.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-label::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  margin-bottom: 10px;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.text-center .section-label {
  justify-content: center;
}

.text-center .section-label::before,
.text-center .section-label::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 3px;
  margin: 16px 0 28px;
}

.divider.center {
  margin: 16px auto 28px;
}

.bg-off {
  background: var(--off-white);
}

.bg-navy {
  background: var(--navy-dark);
}

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 14px 34px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background: var(--orange-hov);
  border-color: var(--orange-hov);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 131, 26, 0.38);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50px;
  padding: 14px 34px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 107, 0.32);
}

/* ── TOPBAR ── */
#topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#topbar a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

#topbar a:hover {
  color: var(--orange);
}

#topbar .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

#topbar .contact-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

#topbar .contact-items span {
  display: flex;
  align-items: center;
  gap: 6px;
}

#topbar .contact-items i {
  color: var(--orange);
  font-size: 0.8rem;
}

#topbar .social-links {
  display: flex;
  gap: 10px;
}

#topbar .social-links a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.25s;
}

#topbar .social-links a:hover {
  background: var(--orange);
  color: white;
}

/* ── NAVBAR ── */
#mainNav {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(26, 58, 107, 0.1);
  transition: all 0.35s;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  box-shadow: 0 4px 32px rgba(26, 58, 107, 0.18);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  text-decoration: none;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  border: 3px solid var(--orange);
  flex-shrink: 0;
}

.brand-text-name {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.brand-text-tag {
  font-size: 0.65rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-link-item {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 26px 13px !important;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  transition: all 0.28s;
  opacity: 0;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--orange) !important;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  left: 13px;
  right: 13px;
  opacity: 1;
}

.dropdown-menu {
  border: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
}

.dropdown-item {
  font-size: 0.84rem;
  padding: 9px 20px;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--orange-pale);
  color: var(--orange);
  padding-left: 26px;
}

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: 50px;
  padding: 10px 22px !important;
  font-weight: 600;
  margin-left: 6px;
  border: 2px solid var(--orange);
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--orange) !important;
}

.navbar-toggler {
  border: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8831A' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO SECTION ── */
#hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(130deg,
      var(--navy-dark) 0%,
      var(--navy) 45%,
      var(--navy-mid) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 30%,
      rgba(74, 144, 217, 0.18) 0%,
      transparent 55%),
    radial-gradient(circle at 20% 80%,
      rgba(232, 131, 26, 0.12) 0%,
      transparent 45%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 131, 26, 0.15);
  border: 1px solid rgba(232, 131, 26, 0.4);
  color: #f5a54a;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-pill i {
  font-size: 0.85rem;
}

#hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 22px;
}

#hero h1 em {
  color: var(--orange);
  font-style: normal;
}

#hero .hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.8;
}

.hero-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.hero-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-badge-float {
  position: absolute;
  z-index: 3;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatBadge 3.2s ease-in-out infinite;
}

.hero-badge-float.b1 {
  bottom: 60px;
  left: -30px;
}

.hero-badge-float.b2 {
  top: 50px;
  right: -24px;
}

.hero-badge-float .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-float .ico.orange {
  background: linear-gradient(135deg, var(--orange), #d0700e);
}

.hero-badge-float strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-family: var(--font-display);
}

.hero-badge-float span {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb.o1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.2), transparent 70%);
  top: -80px;
  right: -80px;
}

.hero-orb.o2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
      rgba(232, 131, 26, 0.18),
      transparent 70%);
  bottom: 40px;
  right: 180px;
}

@keyframes floatBadge {

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

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


.loader-container {
  position: fixed;
  inset: 0;
  background: #f4f4f9;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s ease;
}

.pulsing-logo {
  width: 120px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* After loading */
.loader-container.loaded .logo-wrapper {
  top: 20px;
  left: 20px;
  transform: scale(0.6);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    scale: 0.9;
    opacity: 0.7;
  }

  50% {
    scale: 1.05;
    opacity: 1;
  }

  100% {
    scale: 0.9;
    opacity: 0.7;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .pulsing-logo {
    width: 90px;
  }

  .loader-container.loaded .logo-wrapper {
    top: 12px;
    left: 12px;
    transform: scale(0.5);
  }
}

/* ── ABOUT SNAPSHOT ── */
.about-img-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.about-stat-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-stat-badge.ab1 {
  bottom: 32px;
  right: -28px;
}

.about-stat-badge.ab2 {
  top: 32px;
  left: -28px;
}

.about-stat-badge .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-stat-badge .ico.orange {
  background: var(--orange-pale);
  color: var(--orange);
}

.about-stat-badge .ico.navy {
  background: var(--blue-pale);
  color: var(--navy);
}

.about-stat-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.about-stat-badge small {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.about-feature-row:last-child {
  border-bottom: none;
}

.about-feature-row .f-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--blue-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-feature-row h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  font-size: 0.92rem;
}

.about-feature-row p {
  font-size: 0.84rem;
  color: var(--gray-400);
  margin: 0;
  line-height: 1.55;
}

/* ── COURSE CARDS ── */
.course-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
  cursor: pointer;
}

.course-card-img {
  overflow: hidden;
  position: relative;
}

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

.course-card:hover .course-card-img img {
  transform: scale(1.06);
}

.course-card-img .course-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.course-card:hover .course-card-icon {
  background: var(--navy);
  color: white;
}

.course-card-body h4 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.course-card-body p {
  font-size: 0.85rem;
  flex: 1;
  margin-bottom: 18px;
}

.course-meta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.course-meta-row span {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.btn-course {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-course:hover {
  background: var(--orange);
}

/* ── FACILITIES ── */
.facility-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}

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

.facility-card:hover::before {
  transform: scaleY(1);
}

.facility-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.facility-card:hover .facility-ico {
  transform: scale(1.1) rotate(-4deg);
}

.facility-card h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.facility-card p {
  font-size: 0.85rem;
  margin: 0;
}

.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.facility-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.quote-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4.5rem;
  color: rgba(232, 131, 26, 0.08);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: var(--orange);
  margin-bottom: 14px;
  font-size: 0.9rem;
  gap: 2px;
  display: flex;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.76rem;
  color: var(--gray-400);
}

/* ── NEWS CARDS ── */
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
  cursor: pointer;
}

.news-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.news-card:hover .news-card-img img {
  transform: scale(1.07);
}

.news-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  color: white;
}

.news-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.76rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.news-date i {
  color: var(--orange);
}

.news-card-body h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}

.news-card-body p {
  font-size: 0.82rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.news-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}

.news-read-more:hover {
  gap: 10px;
  color: var(--orange-hov);
}

/* ── CONTACT QUICK INFO ── */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
}

.contact-ico.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-hov));
}

.contact-ico.blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.contact-info-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.contact-info-card p {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.65;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(130deg, var(--orange) 0%, #c9700d 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='35'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section h2 {
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-cta-white {
  background: white;
  color: var(--orange);
  border: 2px solid white;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-white:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* ── COUNTER STRIP ── */
.counter-strip {
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0;
}

.counter-item {
  text-align: center;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.counter-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  display: block;
}

.counter-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 10px 0;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}

.footer-brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hov));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.footer-brand-name {
  font-family: var(--font-display);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-about {
  font-size: 0.84rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-heading {
  font-family: var(--font-body);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

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

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.footer-links a::before {
  content: "›";
  color: var(--orange);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.83rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 52px;
  font-size: 0.78rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-badge i {
  color: var(--orange);
}

/* ── PLACEHOLDER IMAGES ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  height: 100px;
}

.img-placeholder i {
  font-size: 2.5rem;
  opacity: 0.4;
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(232, 131, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--orange-hov);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  max-width: 320px;
  transform: translateX(200%);
  opacity: 0;
  transition: all 0.4s;
}

#toast.show {
  transform: translateX(0);
  opacity: 1;
}

#toast i {
  color: var(--orange);
  font-size: 1.1rem;
}

/* ── UTILITIES ── */
.text-orange {
  color: var(--orange) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.bg-orange {
  background: var(--orange) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .nav-link-item {
    padding: 12px 16px !important;
  }

  .nav-link-item::after {
    display: none;
  }

  .hero-badge-float.b1,
  .hero-badge-float.b2 {
    display: none;
  }

  .about-stat-badge.ab1,
  .about-stat-badge.ab2 {
    display: none;
  }

  .counter-divider {
    display: none;
  }

  .hero-stats {
    gap: 22px;
  }

  #hero {
    min-height: auto;
    padding: 72px 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .section-pad-sm {
    padding: 48px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  #topbar {
    font-size: 0.7rem;
  }

  #topbar .contact-items {
    gap: 10px;
  }
}