/* ============================================================
   DESIGN SYSTEM – Justice & Liberty Foundation
   Premium Legal NGO — Dark Navy + Gold + Ivory
   Font: Calibri (system font) throughout
============================================================ */
:root {
  --primary: #064a9f;
  --primary-dark: #043070;
  --primary-light: #e8f1fb;
  --accent: #C9A96E;
  --accent-light: #F0E4C8;
  --teal: #30C7B5;
  --ivory: #F5F3EE;
  --surface: #0D1F3C;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6b7a8e;
  --border: #dbe7f5;
  --shadow: rgba(6, 74, 159, 0.12);
  --ff-heading: Calibri, 'Segoe UI', Arial, sans-serif;
  --ff-body: Calibri, 'Segoe UI', Arial, sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

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

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

.container {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================================================
   NAVBAR
============================================================ */
.gold-nav {
  background: linear-gradient(135deg, rgba(6, 40, 100, 0.97) 0%, rgba(4, 48, 112, 0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0 !important;
  transition: all 0.4s ease;
}

.gold-nav.scrolled {
  background: rgba(6, 30, 80, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(201, 169, 110, 0.35);
}

.gold-nav .container {
  padding: 0 24px;
  max-width: 1280px;
}

.navbar-brand {
  padding: 14px 0;
}

.brand-logo {
  width: 218px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.3));
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.05);
}

.nav-item {
  margin-left: 4px;
}

.nav-link {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 28px 14px !important;
  position: relative;
  transition: color 0.3s ease !important;
}

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

.nav-link:hover {
  color: #fff !important;
}

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

.nav-link.active {
  color: var(--accent) !important;
}

.donate-btn-nav {
  background: var(--accent) !important;
  color: var(--surface) !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  margin: 16px 0 16px 14px;
  transition: all 0.3s ease !important;
  display: inline-block;
}

.donate-btn-nav:hover {
  background: #e0bf80 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4) !important;
}

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

.nav-link.donate-btn-nav.active {
  background: var(--accent) !important;
  color: #fff !important;
}

/* ============================================================
   NAVBAR – MOBILE (≤991px)
============================================================ */
@media (max-width: 991px) {
  .gold-nav .container {
    padding: 0 16px;
  }

  .navbar-brand {
    padding: 10px 0;
  }

  .brand-logo {
    width: 160px;
    height: 36px;
  }

  .navbar-collapse {
    background: rgba(6, 20, 60, 0.98);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 12px 0 16px;
    animation: slideDown 0.3s ease;
  }

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

  .nav-item {
    margin-left: 0;
  }

  .nav-link {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 11px 20px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

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

  .nav-link:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-link.active {
    color: var(--accent) !important;
    background: rgba(201, 169, 110, 0.08);
  }

  .donate-btn-nav {
    margin: 14px 20px 4px;
    padding: 10px 22px !important;
    display: inline-block;
    width: auto;
    font-size: 12px !important;
  }

  .navbar-toggler {
    border: 1px solid rgba(201, 169, 110, 0.5);
    padding: 6px 10px;
    border-radius: 4px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
    outline: none;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================================
   HOME HERO
============================================================ */
.home-section {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--surface);
}

.home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/lady-justice-statue.jpg');
  background-size: cover;
  background-position: center;
  animation: heroBgCycle 18s ease-in-out infinite;
  z-index: 0;
}

@keyframes heroBgCycle {
  0%, 25% {
    background-image: url('../images/lady-justice-statue.jpg');
  }
  33%, 58% {
    background-image: url('../images/jlf_home_images.jpg');
  }
  66%, 91% {
    background-image: url('../images/jlf_home3_images.jpg');
  }
  100% {
    background-image: url('../images/lady-justice-statue.jpg');
  }
}

.home-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 3;
}

.home-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 920px;
  margin-top: 72px;
}

.justice-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.7),
    0 4px 18px rgba(0,0,0,0.6),
    0 0 35px rgba(0,0,0,0.4);
  -webkit-text-stroke: 1px rgba(0,0,0,0.5);
  letter-spacing: 4px;
  line-height: 1.05;
  text-transform: uppercase;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.justice-title span {
  display: block;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-content p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroReveal 1s ease 1.2s both;
}

.hero-scroll-indicator span {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(0.6);
  }
}

.slide-up {
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* HOME HERO – MOBILE */
@media (max-width: 576px) {
  .home-section {
    min-height: 100dvh;
    height: 100dvh;
  }

  .home-content {
    margin-top: 60px;
    padding: 0 20px;
  }

  .justice-title {
    letter-spacing: 2px;
    line-height: 1.1;
  }

  .justice-title span {
    letter-spacing: 3px;
    margin-bottom: 12px;
  }

  .home-content p {
    font-size: 15px;
    margin-top: 16px;
    line-height: 1.6;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .scroll-line {
    height: 36px;
  }
}

/* ============================================================
   HOME ABOUT
============================================================ */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory);
  min-height: 480px;
}

.left {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.left h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 24px;
  margin-top: 0;
}

.divider-homeabout {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 28px;
  border-radius: 2px;
}

.left p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: justify;
  margin-left: 0;
  margin-bottom: 0;
}

.dropcap::first-letter {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 36px;
  float: left;
  line-height: 0.78;
  padding-right: 2px;
  margin-top: 1px;
  color: var(--primary);
  font-weight: 700;
}

.about-right {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.about-right::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-right img {
  width: 100%;
  margin-top: 60px;
  height: 72%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-right:hover img {
  transform: scale(1.04);
}

/* HOME ABOUT – MOBILE */
@media (max-width: 768px) {
  .home-about {
    grid-template-columns: 1fr;
  }

  .left {
    padding: 48px 20px;
  }

  .left p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-right {
    min-height: 260px;
  }

  .about-right img {
    margin-top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   NEWS / PRINCIPLES
============================================================ */
.news-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #fff;
}

.news-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.news-image img {
  width: 95%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-image:hover img {
  transform: scale(1.05);
}

.news-content {
  padding: 72px 80px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  color: #fff;
}

.news-content h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 53px);
  font-weight: 650;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.divider-news {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 28px;
  border-radius: 2px;
}

.principles ul {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0;
}

.principles ul li {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 2px;
}

.news-content p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-top: 0;
  text-align: justify;
}

.news-content p::first-letter {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 30px;
  float: left;
  line-height: 0.78;
  padding-right: 2px;
  margin-top: 1px;
  color: var(--white);
}

/* NEWS – MOBILE */
@media (max-width: 768px) {
  .news-section {
    grid-template-columns: 1fr;
  }

  .news-image {
    min-height: 240px;
    order: -1;
  }

  .news-image img {
    width: 100%;
    height: 100%;
  }

  .news-content {
    padding: 40px 20px;
  }

  .news-content p {
    font-size: 15px;
    max-width: 100%;
  }

  .principles ul {
    gap: 8px;
  }
}

/* ============================================================
   PUBLICATIONS CTA
============================================================ */
.publications-section {
  position: relative;
  padding: 120px 24px;
  background: url('../images/publication.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.publications-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 40, 0.78);
}

.publications-section .content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.publications-section h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.divider-public {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.divider-public.small {
  width: 40px;
  opacity: 0.5;
  margin: 28px auto;
}

.publications-section p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
}

.read-more-public {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 50px;
  background: var(--primary);
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.read-more-public:hover {
  background: #e0bf80;
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* PUBLICATIONS CTA – MOBILE */
@media (max-width: 576px) {
  .publications-section {
    padding: 70px 20px;
    background-attachment: scroll;
  }

  .publications-section h2 {
    letter-spacing: 2px;
    font-size: 24px;
  }

  .publications-section p {
    font-size: 15px;
  }

  .read-more-public {
    padding: 12px 30px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* ============================================================
   VOLUNTEER
============================================================ */
.volunteer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--ivory);
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.volunteer-form {
  padding: 80px 72px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.volunteer-form h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 8px;
}

.divider-volunter {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 36px;
  border-radius: 2px;
  margin-top: 8px;
}

.volunteer-form label {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.volunteer-form input,
.volunteer-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #7c8aa0;
  background: #fff;
  border-radius: 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  outline: none;
}

.volunteer-form input:focus,
.volunteer-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 74, 159, 0.08);
}

.volunteer-form textarea {
  resize: none;
  min-height: 110px;
}

.volunteer-form button {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volunteer-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.volunteer-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.volunteer-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.volunteer-image img {
  margin-top: 60px;
  width: 90%;
  height: 80%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.8s ease;
}

.volunteer-image:hover img {
  transform: scale(1.04);
}

/* VOLUNTEER – MOBILE */
@media (max-width: 768px) {
  .volunteer-section {
    grid-template-columns: 1fr;
  }

  .volunteer-form {
    padding: 48px 20px;
    order: 2;
  }

  .volunteer-form h2 {
    font-size: 28px;
  }

  .volunteer-form input,
  .volunteer-form textarea {
    padding: 12px 14px;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .volunteer-form button {
    padding: 15px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .volunteer-image {
    min-height: 260px;
    order: 1;
  }

  .volunteer-image img {
    margin-top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================================================
   DONATE HERO CTA
============================================================ */
.donate-hero {
  position: relative;
  min-height: 550px;
  background: url('../images/donate.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.donate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.donate-mini {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  opacity: 0.9;
}

.donate-overlay h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 36px;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
}

.donate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6, 74, 159, 0.4);
  color: #fff;
}

/* DONATE HERO CTA – MOBILE */
@media (max-width: 768px) {
  .donate-hero {
    background-attachment: scroll;
    min-height: 340px;
  }

  .donate-overlay {
    padding: 48px 20px;
  }

  .donate-overlay h1 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .donate-mini {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .donate-btn {
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer-section {
  background: var(--surface);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 0;
  border-top: 3px solid var(--accent);
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-name h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  margin-left: -20px;
}

.footer-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

.footer-quick-links h5 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
}

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

.footer-quick-links ul li {
  margin-bottom: 4px;
}

.footer-quick-links ul li a {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-quick-links li a::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  position: static;
  color: var(--accent);
}

.footer-quick-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-quick-links ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-middle h4,
.footer-right h4,
.footer-right-si h4 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  margin-left: 0;
}

.footer-right h4 {
  margin-left: 0;
}

.footer-right-si h4 {
  margin-left: 0;
}

.footer-right {
  color: rgba(255, 255, 255, 0.85);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  margin-left: 0;
  padding: 8px 0;
  border-radius: 0;
}

.contact-item .icon {
  font-size: 16px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-social {
  margin-top: 20px;
  text-align: left;
}

.footer-social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* FOOTER – MOBILE */
@media (max-width: 768px) {
  .footer-section {
    padding: 36px 0 0;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .footer-name h3 {
    font-size: 16px;
    margin-left: 0;
  }

  .footer-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-quick-links h5,
  .footer-middle h4,
  .footer-right h4,
  .footer-right-si h4 {
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .footer-quick-links ul li a {
    font-size: 15px;
    justify-content: center;
  }

  .footer-social {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }

  .contact-item p {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 14px 16px;
  }
}

/* ============================================================
   ABOUT HERO (Who We Are page)
============================================================ */
.about-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/who_we_are.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.about-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 72px;
}

.about-content h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(38px, 7vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}

.about-content .highlight {
  color: var(--white);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT HERO – MOBILE */
@media (max-width: 768px) {
  .about-section {
    height: 60vh;
    min-height: 340px;
    background-attachment: scroll;
  }

  .about-content {
    padding: 0 20px 40px;
  }

  .about-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }
}

/* ============================================================
   ABOUT DETAILS
============================================================ */
.about-details {
  padding: 60px 80px;
  background: var(--ivory);
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.welcome-text {
  text-align: center;
  margin-bottom: 48px;
}

.welcome-text h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.welcome-text .underline {
  width: 80px;
  height: 3px;
  background: var(--accent);
  display: block;
  border-radius: 2px;
  margin: 0 auto;
}

.org-intro {
  max-width: 1100px;
  margin: 0 auto;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.org-intro p {
  margin-bottom: 24px;
}

/* ABOUT DETAILS – MOBILE */
@media (max-width: 768px) {
  .about-details {
    padding: 40px 20px;
  }

  .welcome-text {
    margin-bottom: 32px;
  }

  .welcome-text h2 {
    font-size: 26px;
  }

  .org-intro {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ============================================================
   PEOPLE SECTION
============================================================ */
.people-section {
  padding: 40px 80px;
  background: var(--surface);
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.people-grid {
  max-width: 1200px;
  margin: auto;
}

.person-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.card-body {
  flex: 1;
}

.card-body h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.card-qualification {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 25px;
  line-height: 1.6;
}

.accent-rule {
  width: 80px;
  height: 4px;
  background: #324a72;
  margin-bottom: 30px;
}

.card-body p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
  text-align: justify;
}

.card-photo {
  position: relative;
  width: 350px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  margin-top: -150px;
}

.card-photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 10px solid #ffffff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-photo:hover img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #324a72;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* PEOPLE – MOBILE */
@media (max-width: 768px) {
  .people-section {
    padding: 36px 20px;
    margin-top: 0;
  }

  .person-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .card-photo {
    order: 1;
    width: 200px;
    height: 200px;
    margin-top: 0;
    border-radius: 50%;
  }

  .card-photo img {
    height: 200px;
    border-width: 6px;
  }

  .card-body {
    order: 2;
  }

  .card-body h3 {
    font-size: 24px;
  }

  .card-body p {
    font-size: 15px;
  }

  .card-qualification {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .card-badge {
    bottom: 8px;
    padding: 4px 14px;
    font-size: 11px;
  }
}

/* ============================================================
   OUR NUMBERS
============================================================ */
.numbers-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/number_page.jpg') center/cover no-repeat fixed;
  color: #fff;
  margin-bottom: 5%;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.numbers-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.numbers-content h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.numbers-line {
  display: block;
  width: 70%;
  height: 1px;
  background: #fff;
  margin: 0 auto 80px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.number-box {
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.number-box:last-child {
  border-right: none;
}

.number-box h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.number-box p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* OUR NUMBERS – MOBILE */
@media (max-width: 768px) {
  .numbers-section {
    background-attachment: scroll;
    padding: 56px 20px;
    margin-bottom: 0;
  }

  .numbers-content h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .numbers-line {
    width: 80%;
    margin-bottom: 36px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .number-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px 20px;
  }

  .number-box:last-child {
    border-bottom: none;
  }

  .number-box h3 {
    font-size: 48px;
  }

  .number-box p {
    font-size: 15px;
  }
}

/* ============================================================
   CONTACT HERO
============================================================ */
.contact-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/contact-us3.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: flex-end;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
}

.contact-content .sub-title {
  display: block;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(14px, 4vw, 10px);
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-content h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(35px, 6vw, 70px);
  font-weight: 800;
  color: #ede9e9;
  line-height: 1.1;
}

/* CONTACT HERO – MOBILE */
@media (max-width: 576px) {
  .contact-hero {
    height: 320px;
    min-height: 280px;
    background-attachment: scroll;
  }

  .contact-content {
    padding: 0 20px 36px;
  }

  .contact-content .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .contact-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-line-section {
  padding: 60px 80px;
  background: #f9f9f9;
}

.contact-line-section h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 60px);
  font-weight: 700;
  color: var(--surface);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-line-section .contact-underline {
  display: inline-block;
  width: 500px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}

.contact-wrap {
  background: #fff;
}

.contact-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  padding: 10px 40px 30px;
  margin-bottom: 10px;
}

.contact-left {
  max-width: 95%;
  max-height: 82%;
  margin-left: 20px;
  padding: 60px;
  background: #dde5ed;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  border-radius: 10px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-modern-form textarea {
  min-height: 120px;
  margin-top: 20px;
  resize: none;
}

.contact-modern-form input::placeholder,
.contact-modern-form textarea::placeholder {
  color: #9aa0a6;
  font-size: 15px;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus,
.contact-modern-form select:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 74, 159, 0.1);
}

.contact-modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}

.contact-btn {
  --gold: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 25px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  margin-top: 60px;
  width: fit-content;
  cursor: pointer;
}

.contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
  color: #fff;
}

.contact-right {
  max-height: 95%;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 0;
}

.round-badge {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
  margin-right: 10px;
  font-weight: 700;
}

.contact-right h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  display: flex;
  color: #fff;
  margin-bottom: 25px;
}

.contact-right h3 em {
  color: #5cdecd;
  font-style: italic;
}

.main-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin: -16px 0 30px;
  color: #fefdfd;
}

.mini-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: block;
}

.contact-right p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.right-image {
  position: relative;
  margin: 10px 0;
}

.right-image img {
  margin-top: -30px;
  width: 100%;
  height: 220px;
  border-radius: 3px;
  object-fit: cover;
}

.social-row {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #1f3349 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.social-row a:hover {
  background: var(--accent);
  color: #fff !important;
}

.right-bottom h4 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 23px;
  margin-bottom: 15px;
  color: #fff;
}

.right-bottom p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.8);
}

.right-bottom i {
  color: #5cdecd;
  margin-right: 10px;
  font-size: 17px;
  flex-shrink: 0;
}

/* CONTACT SECTION – MOBILE */
@media (max-width: 576px) {
  .contact-line-section {
    padding: 48px 20px;
  }

  .contact-line-section h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .contact-line-section .contact-underline {
    width: 140px;
    display: block;
    margin: 12px 0 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px 24px;
  }

  .contact-left {
    max-width: 100%;
    max-height: none;
    margin-left: 0;
    padding: 24px 20px;
    border-radius: 10px;
  }

  .contact-modern-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact-modern-form input,
  .contact-modern-form select {
    font-size: 15px;
  }

  .contact-modern-form textarea {
    margin-top: 0;
  }

  .contact-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 24px;
    border-radius: 24px;
  }

  .contact-right {
    padding: 28px 20px;
    border-radius: 10px;
  }

  .contact-right h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .main-title {
    font-size: 26px;
    margin: -8px 0 20px;
  }

  .right-image img {
    height: 170px;
    margin-top: 0;
  }

  .right-bottom h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .right-bottom p {
    font-size: 14px;
  }
}

/* ============================================================
   DONATE PAGE
============================================================ */
.donatebtn-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/donations.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.donatebtn-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 0 60px 80px;
}

.donatebtn-content h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* DONATE PAGE – MOBILE */
@media (max-width: 576px) {
  .donatebtn-hero {
    height: 320px;
    min-height: 280px;
    background-attachment: scroll;
  }

  .donatebtn-content {
    padding: 0 20px 32px;
  }

  .donatebtn-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}

.donation-details {
  background: var(--ivory);
  padding: 50px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.donation-box {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.donation-col {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}

.donation-col h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--surface);
  margin-bottom: 20px;
}

.donation-col p {
  display: flex;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
  line-height: 1.6;
  gap: 12px;
}

.donation-col p strong {
  width: 90px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--surface);
}

/* DONATION DETAILS – MOBILE */
@media (max-width: 576px) {
  .donation-details {
    padding: 40px 16px;
  }

  .donation-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .donation-col {
    padding: 24px 18px;
  }

  .donation-col h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .donation-col p {
    font-size: 14px;
  }
}

/* ============================================================
   EVENTS PAGE
============================================================ */
.events-hero {
  height: 100vh;
  min-height: 600px;
  background: url('../images/event.jpg') center/cover no-repeat fixed;
  position: relative;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.events-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.events-content {
  color: #fff;
  padding-left: 80px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.events-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 10px;
  opacity: 0.9;
  color: var(--white);
  font-weight: 600;
}

.events-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.events-list-section {
  background: var(--ivory);
  padding: 50px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.events-header {
  padding: 0 80px;
  margin-bottom: 40px;
}

.events-header h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--surface);
  margin-bottom: 20px;
}

.events-line {
  display: block;
  width: 500px;
  height: 2px;
  background: #000;
  margin: 0 0 40px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 80px;
}

.event-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}

.event-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow);
}

.event-img {
  position: relative;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-item:hover .event-img img {
  transform: scale(1.06);
}

.event-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  padding: 15px 15px 5px;
  line-height: 1.3;
}

.event-desc {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  color: #555;
  padding: 0 15px 20px;
  line-height: 1.6;
  text-align: justify;
}

/* EVENTS – TABLET */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px;
    gap: 20px;
  }

  .events-header {
    padding: 0 40px;
  }
}

/* EVENTS – MOBILE */
@media (max-width: 768px) {
  .events-hero {
    height: 320px;
    min-height: 260px;
    background-attachment: scroll;
  }

  .events-content {
    padding-left: 20px;
    padding-bottom: 40px;
  }

  .events-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .events-title {
    font-size: 36px;
  }

  .events-list-section {
    padding: 36px 0 48px;
  }

  .events-header {
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .events-header h2 {
    font-size: 24px;
  }

  .events-line {
    width: 100px;
    margin: 12px 0 24px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }

  .event-img img {
    height: 180px;
  }

  .event-title {
    font-size: 16px;
  }

  .event-desc {
    font-size: 13px;
  }
}

/* ============================================================
   WRITE-UPS / PUBLICATIONS PAGE
============================================================ */
.publications-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/publication-cta.jpg') center/cover no-repeat fixed;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.publications-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.publications-content {
  padding: 0 80px 80px;
  color: #fff;
  z-index: 2;
}

.publications-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 10px;
  color: var(--white);
  display: block;
}

.publications-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.case-studies-section {
  background: var(--ivory);
  padding: 50px 80px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.cs-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cs-heading {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 10px;
  grid-column: 1 / -1;
}

.cs-divider {
  width: 50%;
  height: 3px;
  background: #090909;
  margin-bottom: 20px;
  grid-column: 1 / -1;
  border-radius: 2px;
}

.cs-case {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e3edf7;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cs-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.cs-case-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a3a6c;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid #1a3a6c;
}

.cs-block {
  margin-bottom: 18px;
}

.cs-label {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a3a6c;
  background: #e8f0fb;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.cs-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2c3e60;
  text-align: justify;
  padding-left: 10px;
}

.cs-list {
  padding-left: 20px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2c3e60;
  text-align: justify;
}

.cs-list li {
  margin-bottom: 8px;
}

.cs-highlight {
  background: #e8f0fb;
  border-left: 4px solid #1a3a6c;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
}

/* PUBLICATIONS – MOBILE */
@media (max-width: 768px) {
  .publications-hero {
    height: 320px;
    min-height: 260px;
    background-attachment: scroll;
  }

  .publications-content {
    padding: 0 20px 44px;
  }

  .publications-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .publications-title {
    font-size: 36px;
  }

  .case-studies-section {
    padding: 36px 16px 48px;
  }

  .cs-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-case {
    padding: 18px;
  }

  .cs-case-title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .cs-heading {
    font-size: 24px;
  }

  .cs-divider {
    width: 50%;
  }

  .cs-text,
  .cs-list {
    font-size: 14px;
  }
}

/* ============================================================
   MEDIA / GALLERY PAGE
============================================================ */
.media-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('../images/gallery11.jpg') center/cover no-repeat fixed;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.media-content {
  color: #fff;
  padding: 0 80px 70px;
}

.media-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(38px, 7vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}

.gallery-section {
  background: var(--ivory);
  padding: 50px 0 50px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-heading {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--surface);
  margin-bottom: 30px;
}

.gallery-divider {
  width: 60%;
  height: 3px;
  background: #000;
  margin-bottom: 70px;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 20, 60, 0.82);
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 74, 159, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  margin-top: 0;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  padding-top: 80px;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 30px;
  right: 80px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close:hover {
  color: var(--accent);
}

/* GALLERY – TABLET */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* GALLERY – MOBILE */
@media (max-width: 768px) {
  .media-hero {
    height: 320px;
    min-height: 260px;
    background-attachment: scroll;
  }

  .media-content {
    padding: 0 20px 44px;
  }

  .media-title {
    font-size: 32px;
  }

  .gallery-section {
    padding: 48px 0 56px;
  }

  .gallery-section .container {
    padding: 0 16px;
  }

  .gallery-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .gallery-divider {
    width: 60%;
    margin-bottom: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .close {
    top: 16px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   ABOUT SPLIT SECTION
============================================================ */
.about-split-section {
  width: 100%;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  margin-top: 100px;
}

.about-split-wrap {
  display: flex;
  min-height: 100vh;
}

.about-split-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.about-split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 74, 159, 0.55), rgba(6, 74, 159, 0.1));
  z-index: 1;
}

.about-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s ease;
}

.about-split-image:hover img {
  transform: scale(1.06);
}

.about-split-content {
  flex: 1;
  background: linear-gradient(145deg, #064a9f, #043a7a);
  color: #fff;
  padding: 100px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-split-content::before {
  display: none;
}

.about-split-content * {
  position: relative;
  z-index: 1;
}

.about-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.about-main-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 25px;
}

.about-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #30C7B5, #6ee7d7);
  margin-bottom: 45px;
  border-radius: 5px;
}

.about-feature {
  display: flex;
  gap: 22px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-feature:last-of-type {
  border-bottom: none;
}

.about-icon {
  font-size: 28px;
  color: #30C7B5;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-icon i {
  color: #5cdecd;
}

.about-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: #e8f0ff;
}

.about-cta {
  margin-top: 35px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  width: fit-content;
  border-radius: 0;
}

.about-cta span {
  transition: transform 0.4s ease;
}

.about-cta:hover {
  background: #30C7B5;
  color: #003c36;
  border-color: #30C7B5;
}

.about-cta:hover span {
  transform: translateX(8px);
}

/* ABOUT SPLIT – TABLET/MOBILE */
@media (max-width: 992px) {
  .about-split-wrap {
    flex-direction: column;
    min-height: auto;
  }

  .about-split-image {
    min-height: 300px;
    flex: none;
  }

  .about-split-content {
    padding: 48px 24px 56px;
    flex: none;
  }

  .about-main-title {
    font-size: 28px;
  }

  .about-split-section {
    margin-top: 0;
  }

  .about-feature {
    margin-bottom: 28px;
    padding-bottom: 22px;
    gap: 16px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-cta {
    padding: 13px 28px;
    font-size: 14px;
  }
}

/* ============================================================
   ABOUT INTRO – EXPERTISE STYLE
============================================================ */
.about-intro-expertise {
  background: var(--ivory);
  padding: 100px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.expertise-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 12px;
}

.expertise-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 600;
  margin-bottom: 22px;
  color: #1c1c1c;
}

.expertise-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.expertise-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.expertise-card {
  background: #fff;
  padding: 45px 25px;
  border: 1px solid #e5e5e5;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.expertise-card::before,
.expertise-card::after {
  display: none;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 56px var(--shadow);
  background: var(--primary);
}

.expertise-card h4 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0 8px;
  color: #1c1c1c;
  transition: color 0.3s ease;
}

.expertise-card span {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.expertise-icon {
  font-size: 32px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.expertise-icon svg {
  width: 48px;
  height: 48px;
  transition: color 0.3s ease;
}

.expertise-card:hover h4,
.expertise-card:hover span,
.expertise-card:hover .expertise-icon,
.expertise-card:hover .expertise-icon svg {
  color: #fff;
}

.expertise-card.highlight {
  background: linear-gradient(145deg, rgba(6, 74, 159, 0.95), rgba(6, 74, 159, 0.85));
  border: none;
}

.expertise-card.highlight h4,
.expertise-card.highlight span,
.expertise-card.highlight .expertise-icon {
  color: #fff;
}

/* EXPERTISE – MOBILE */
@media (max-width: 576px) {
  .about-intro-expertise {
    padding: 56px 16px;
  }

  .expertise-title {
    font-size: 26px;
  }

  .expertise-text {
    font-size: 15px;
  }

  .expertise-card {
    padding: 32px 20px;
  }

  .expertise-card h4 {
    font-size: 18px;
  }
}

/* ============================================================
   PURPOSE SECTION
============================================================ */
.purpose-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.purpose-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.purpose-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--surface);
}

.purpose-title span {
  color: #30c7b5;
  font-style: italic;
}

.purpose-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.purpose-list {
  background: #fff;
  padding: 45px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.purpose-list.refined {
  background: #fff;
  padding: 50px 45px;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-left: none;
}

.purpose-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1f2f44;
  transition: all 0.3s ease;
}

.purpose-item:not(:last-child) {
  border-bottom: 1px dashed #e3e7ef;
}

.purpose-item:hover {
  padding-left: 10px;
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(6, 74, 159, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.icon-wrap i {
  font-size: 18px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.purpose-item:hover .icon-wrap {
  background: var(--primary);
}

.purpose-item:hover .icon-wrap i {
  color: #fff;
}

/* PURPOSE – MOBILE */
@media (max-width: 576px) {
  .purpose-section {
    padding: 56px 0;
  }

  .purpose-list.refined {
    padding: 28px 20px;
  }

  .purpose-list {
    padding: 28px 20px;
  }

  .purpose-title {
    font-size: 26px;
  }

  .purpose-text {
    font-size: 15px;
  }

  .purpose-item {
    font-size: 15px;
    padding: 14px 0;
  }
}

@media (max-width: 991px) {
  .purpose-list {
    margin-top: 40px;
  }

  .purpose-title {
    font-size: 32px;
  }
}

/* ============================================================
   FAQ / EXPERT SECTION
============================================================ */
.faq-expert-section {
  background: #f6f5f2;
  padding: 120px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.faq-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  padding: 0 20px;
}

.faq-images img {
  width: 100%;
  display: block;
  border-radius: 4px;
  height: 100%;
  object-fit: cover;
}

.img-bottom-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.experience-box {
  background: var(--primary);
  color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-box i {
  font-size: 34px;
  color: #5cdecd;
  margin-bottom: 18px;
}

.experience-box h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.faq-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #1f3349;
  text-transform: uppercase;
}

.faq-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  margin: 18px 0 40px;
}

.faq-title em {
  font-style: italic;
  color: var(--primary);
}

.faq-cta {
  margin-top: 45px;
  background: #efede5;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn {
  background: #1f3349;
  color: #fff;
  padding: 12px 28px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.faq-btn:hover {
  background: var(--accent);
  color: var(--surface);
}

/* FAQ – MOBILE */
@media (max-width: 992px) {
  .faq-expert-section {
    padding: 60px 20px !important;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0;
  }

  .faq-images img {
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
  }

  .img-bottom-row {
    margin-top: 16px;
    gap: 14px;
  }

  .experience-box {
    padding: 24px 20px;
  }

  .experience-box h3 {
    font-size: 18px;
  }

  .faq-title {
    font-size: 28px;
    margin: 14px 0 28px;
  }

  .faq-cta {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 28px 20px;
  }
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta {
  text-align: center;
  padding: 90px 20px 120px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.cta small {
  letter-spacing: 3px;
  font-size: 12px;
}

.cta h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  margin: 20px 0;
}

.cta .phone {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #d39a63;
}

.cta .or {
  margin: 20px 0;
  font-size: 18px;
}

.cta h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 40px;
}

.cta h2 span {
  color: var(--primary);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle.navy {
  background: var(--primary);
  color: #fff;
}

.circle.navy i {
  font-size: 40px;
}

.circle.navy:hover {
  background: #5cdecd;
  color: #fff;
  border: 4px solid #e9e9e9;
}

.connector {
  width: 140px;
  height: 1px;
  border-top: 1.5px dashed #cfcfcf;
  margin: 0 35px;
}

.step h4 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--primary);
  margin-top: 20px;
}

.step p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA – MOBILE */
@media (max-width: 768px) {
  .cta {
    padding: 56px 20px 72px;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .connector {
    display: none;
  }

  .step {
    max-width: 220px;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .circle.navy i {
    font-size: 30px;
  }

  .step h4 {
    font-size: 20px;
  }
}

/* ============================================================
   DISCLAIMER
============================================================ */
.disclaimer-bylaw {
  background: #f6f4ec;
  padding: 100px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.section-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary);
  font-style: italic;
}

.section-intro {
  color: #555;
  max-width: 520px;
  margin-bottom: 40px;
  font-size: 15.5px;
  line-height: 1.8;
}

.disclaimer-items {
  max-width: 600px;
}

.disclaimer-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.disclaimer-number {
  font-size: 18px;
  color: #999;
  min-width: 30px;
}

.disclaimer-item h4 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.disclaimer-item p {
  color: #555;
  line-height: 1.7;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 30px 0;
}

.disclaimer-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.disclaimer-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

/* DISCLAIMER – MOBILE */
@media (max-width: 992px) {
  .disclaimer-bylaw {
    padding: 60px 0;
  }

  .disclaimer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .disclaimer-items {
    margin: auto;
    max-width: 100%;
  }

  .disclaimer-item {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: left;
  }

  .disclaimer-image img {
    max-width: 80%;
    margin: auto;
  }

  .connector {
    display: none;
  }

  .section-intro {
    max-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .disclaimer-bylaw {
    padding: 48px 0;
  }

  .disclaimer-item h4 {
    font-size: 17px;
  }

  .disclaimer-item p {
    font-size: 14px;
  }
}

/* ============================================================
   FOUNDATION / INTRO SECTION
============================================================ */
.foundation-intro {
  background: #f6f4ec;
  padding: 90px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.intro-subtitle {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #1f2f44;
  display: block;
  margin-bottom: 12px;
}

.intro-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600;
  margin-bottom: 20px;
}

.intro-title span {
  color: var(--primary);
  font-style: italic;
}

.intro-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.intro-card {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  transition: 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-card i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.intro-card h5 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.intro-card p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* FOUNDATION – MOBILE */
@media (max-width: 991px) {
  .foundation-intro {
    padding: 56px 0;
  }

  .intro-title {
    font-size: 28px;
  }

  .intro-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro-card {
    padding: 20px;
  }
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section {
  position: relative;
  background: url('../images/law.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.blog-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.blog-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 15px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.blog-content h1 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(36px, 6vw, 65px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--accent);
  font-size: 18px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  color: #dcdcdc;
  padding: 0 8px;
}

.blog-grid {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.blog-card.refined {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.blog-card.refined:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card.refined:hover img {
  transform: scale(1.08);
}

.blog-img-wrap::after {
  display: none;
}

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-content-card {
  padding: 22px 20px 26px;
}

.blog-content-card h5 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1c1c1c;
  margin-bottom: 14px;
}

.read-more {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.read-more:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s ease;
}

.read-more:hover::after {
  width: 100%;
}

.blog-card {
  overflow: hidden;
  border-radius: 6px;
}

.blog-card img {
  transition: 0.4s ease;
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.blog-card img:hover {
  transform: scale(1.1);
}

.blog-img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.row {
  margin-top: 25px;
}

.about-page {
  position: relative;
  background: #fff;
  margin-top: 50px;
  overflow: hidden;
}

/* BLOG – MOBILE */
@media (max-width: 576px) {
  .blog-section {
    height: 60vh;
    min-height: 280px;
    background-attachment: scroll;
  }

  .blog-content h1 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active {
    font-size: 15px;
  }

  .blog-img-wrap img {
    height: 190px;
  }

  .blog-content-card h5 {
    font-size: 16px;
  }

  .blog-img {
    height: 220px;
    border-radius: 12px;
  }
}

/* ============================================================
   BLOG PURPOSE SECTION
============================================================ */
.blog-purpose-section {
  background: #f7f9fc;
  padding: 100px 0;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.section-tag {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

.section-text {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
  max-width: 520px;
}

.blog-purpose-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.blog-purpose-btn span {
  transition: transform 0.35s ease;
}

.blog-purpose-btn:hover {
  background: var(--primary);
  color: #fff;
}

.blog-purpose-btn:hover span {
  transform: translateX(6px);
}

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.purpose-card {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.purpose-card::before {
  display: none;
}

.purpose-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b2b55 40%, #000);
  opacity: 0.85;
  z-index: 0;
}

.purpose-icon,
.purpose-card h3,
.purpose-card p {
  position: relative;
  z-index: 1;
}

.purpose-icon {
  font-size: 34px;
  margin-bottom: 18px;
  color: #fff;
}

.purpose-card h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.purpose-card p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  color: #e0e0e0;
}

.purpose-card:hover {
  transform: translateY(-8px);
}

.purpose-cardss {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.purpose-cardss img {
  max-width: 100%;
  animation: floatBalance 6s ease-in-out infinite;
  transition: transform 0.6s ease, filter 0.6s ease;
}

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

.purpose-cardss:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(245, 193, 108, 0.5));
}

.animate-balance {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.9s ease;
}

.animate-balance.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* BLOG PURPOSE – MOBILE */
@media (max-width: 768px) {
  .blog-purpose-section {
    padding: 56px 0;
  }

  .purpose-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .purpose-card {
    padding: 28px 20px;
  }

  .purpose-card h3 {
    font-size: 18px;
  }

  .purpose-card p {
    font-size: 14px;
  }

  .section-text {
    font-size: 15px;
    max-width: 100%;
  }

  .purpose-cardss {
    padding: 20px;
  }
}

/* ============================================================
   PUBLICATION LIST & CTA
============================================================ */
.publication-list-section {
  background: #f7f9f6;
  padding: 50px 0 50px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.publication-list-section .container {
  margin: 0 auto;
  padding: 0 20px;
}

.publications-heading {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  margin-bottom: 35px;
}

.publications-divider {
  width: 700px;
  height: 3px;
  background: #000;
  margin-bottom: 80px;
  border-radius: 2px;
}

.coming-soon h3 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.coming-soon p {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  color: #6f6f6f;
  max-width: 550px;
  line-height: 1.6;
}

.publication-cta-section {
  position: relative;
  height: 450px;
  background: url('../images/publication.jpg') center/cover no-repeat fixed;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.publication-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.publication-cta-title {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 35px;
}

.publication-cta-btn {
  display: inline-block;
  padding: 16px 42px;
  background: var(--primary);
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #4159e0;
  transition: all 0.3s ease;
}

.publication-cta-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* PUBLICATION LIST CTA – MOBILE */
@media (max-width: 768px) {
  .publication-list-section {
    padding: 40px 0;
  }

  .publications-heading {
    font-size: 24px;
  }

  .publications-divider {
    width: 140px;
    margin-bottom: 36px;
  }

  .coming-soon h3 {
    font-size: 20px;
    text-align: center;
  }

  .coming-soon p {
    font-size: 14px;
    text-align: center;
    max-width: 100%;
  }

  .publication-cta-section {
    height: 300px;
    background-attachment: scroll;
  }

  .publication-cta-title {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .publication-cta-btn {
    padding: 12px 26px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* ============================================================
   ANIMATED BUTTONS
============================================================ */
.btn-know-more-animated {
  --gold: #fff;
  --navy: #0f2233;
  --offset: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background-color: transparent;
  color: #fff;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid #fff;
  box-shadow: var(--offset) var(--offset) 0 #fff;
  transition: all 0.3s ease;
  margin-top: 15px;
  width: fit-content;
}

.btn-know-more-animated:hover {
  box-shadow: calc(-1 * var(--offset)) calc(-1 * var(--offset)) 0 #fff;
}

.btn-know-more-animated .arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn-know-more-animated:hover .arrow {
  transform: translateX(6px);
}

.btn-about-animated {
  --gold: #064a9f;
  --offset: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--primary);
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid var(--primary);
  box-shadow: var(--offset) var(--offset) 0 var(--primary);
  transition: all 0.3s ease;
  margin-top: 15px;
  width: fit-content;
}

.btn-about-animated:hover {
  box-shadow: calc(-1 * var(--offset)) calc(-1 * var(--offset)) 0 var(--primary);
}

.btn-about-animated .arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.btn-about-animated:hover .arrow {
  transform: translateX(6px);
}

/* ANIMATED BUTTONS – MOBILE */
@media (max-width: 576px) {
  .btn-know-more-animated,
  .btn-about-animated {
    padding: 12px 24px;
    font-size: 14px;
    --offset: 4px;
  }
}

/* ============================================================
   CONTACT PAGE (get-in-touch alternative form)
============================================================ */
#contactus {
  background: #f4f7fb;
}

.contact-title h2 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  margin-top: 50px;
  font-size: 32px;
  color: #1c1c1c;
  line-height: 1.4;
}

.contact_sec .card {
  max-width: 500px;
  margin: auto;
  border-radius: 18px;
  padding: 22px;
  border: none;
  transition: all 0.3s ease;
  padding: 40px;
}

.contact_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.input-icon,
.input-iconms {
  position: absolute;
  left: 12px;
  top: 40px;
  font-size: 18px;
  color: var(--primary);
}

.input-with-icon {
  padding-left: 40px !important;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

textarea.input-with-icon {
  padding-top: 10px;
  min-height: 100px;
}

select.input-with-icon {
  padding-left: 40px !important;
  height: 40px;
}

.btn-primary {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  border: none;
  border-radius: 12px;
  padding: 20px 15px;
  transition: 0.3s;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.contact-side-img {
  border-radius: 15px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 20%;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpAnim 0.8s ease-out forwards;
}

@keyframes slideUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT ALT FORM – MOBILE */
@media (max-width: 576px) {
  .contact-title h2 {
    font-size: 22px;
    text-align: center;
    margin-top: 32px;
  }

  .contact_sec .card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .btn-primary {
    font-size: 15px;
    padding: 14px 12px;
  }

  .contact-side-img {
    margin-top: 20px;
    margin-bottom: 32px;
    border-radius: 16px;
    height: 240px;
  }
}

/* ============================================================
   MOBILE NAVBAR (≤991px — overrides)
============================================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-item {
    margin: 2px 0;
  }

  .navbar-nav .nav-link {
    padding: 11px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.04);
  }

  .navbar-nav .nav-link.active {
    color: var(--accent) !important;
    font-weight: 700 !important;
    background: rgba(201, 169, 110, 0.08);
  }

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

  .navbar-toggler {
    border: 1px solid rgba(201, 169, 110, 0.5) !important;
    outline: none;
    border-radius: 4px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
    outline: none;
  }
}

/* ============================================================
   MISC / UTILITY
============================================================ */
.found {
  color: #fff;
}

.brand-custom {
  padding: 5px 10px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.feature-box h5 {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}

.featureimg img {
  width: 60%;
}

@media (max-width: 992px) {
  .feature-box h5 {
    margin: 0px 0 8px !important;
  }

  .featureimg img {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .featureimg img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}