@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --ink-900: #163047;
  --ink-800: #214563;
  --ink-700: #2f587a;
  --accent-500: #f28c45;
  --accent-400: #f6a96f;
  --accent-100: #fff1e5;
  --sand-100: #f7f2eb;
  --sand-200: #efe5d8;
  --mint-100: #e3f0ec;
  --white-strong: rgba(255, 255, 255, 0.88);
  --white-soft: rgba(255, 255, 255, 0.72);
  --border-soft: rgba(22, 48, 71, 0.12);
  --border-strong: rgba(22, 48, 71, 0.18);
  --shadow-soft: 0 20px 55px rgba(21, 38, 58, 0.12);
  --shadow-strong: 0 28px 80px rgba(21, 38, 58, 0.18);
  --text-main: #1f2d3d;
  --text-muted: #5d6e7f;
  --surface: rgba(255, 255, 255, 0.75);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, sans-serif !important;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(242, 140, 69, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(47, 88, 122, 0.12), transparent 26%),
    linear-gradient(180deg, #f7efe6 0%, #f9fbfd 42%, #f4f8fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
.sliderTitle,
.gallary {
  margin: 0;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

p,
li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

ul {
  padding-left: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

hr {
  margin: 0 !important;
  border: 0;
  border-top: 1px solid rgba(22, 48, 71, 0.08);
}

.hidden {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(42px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.title {
  color: var(--ink-900);
}

.section-shell {
  width: min(1200px, calc(100% - 1.5rem));
  margin: 0 auto 2rem;
}

.surface-panel {
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--white-strong), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-intro p {
  max-width: 40rem;
  margin: 0.85rem 0 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(242, 140, 69, 0.12);
  color: var(--ink-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-500), #ffbd8a);
}

/* Navbar */

header.sticky-top {
  top: 0;
  padding-top: 1rem;
}

nav.NAVBAR1 {
  width: min(1200px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0.6rem 0.85rem !important;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 55px rgba(22, 48, 71, 0.12);
  backdrop-filter: blur(18px);
}

nav.NAVBAR1 .container-fluid {
  padding: 0;
  gap: 1rem;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 140px;
  filter: drop-shadow(0 6px 14px rgba(21, 38, 58, 0.14));
}

.NAVBAR1 .navbar-toggler {
  border: 1px solid rgba(22, 48, 71, 0.12);
  border-radius: 16px;
  padding: 0.5rem 0.7rem;
}

.NAVBAR1 .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 140, 69, 0.18);
}

.NAVBAR1 .nav-item {
  opacity: 0;
  transform: translateY(-16px);
  animation: navFadeIn 0.55s ease forwards;
}

.NAVBAR1 .nav-item:nth-child(1) {
  animation-delay: 0.08s;
}

.NAVBAR1 .nav-item:nth-child(2) {
  animation-delay: 0.16s;
}

.NAVBAR1 .nav-item:nth-child(3) {
  animation-delay: 0.24s;
}

.NAVBAR1 .nav-item:nth-child(4) {
  animation-delay: 0.32s;
}

.NAVBAR1 .nav-item:nth-child(5) {
  animation-delay: 0.4s;
}

.NAVBAR1 .nav-item:nth-child(6) {
  animation-delay: 0.48s;
}

.NAVBAR1 .nav-link {
  position: relative;
  padding: 0.9rem 1rem !important;
  color: var(--ink-900) !important;
  font-size: 0.78rem;
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.NAVBAR1 .nav-link:hover,
.NAVBAR1 .nav-link:focus-visible {
  color: var(--accent-500) !important;
}

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

.NAVBAR1 .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-500), #ffd1a9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

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

/* Hero */

.hero-shell {
  width: min(1240px, calc(100% - 1rem));
  margin: 1.1rem auto 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas: "copy media";
  gap: 1.25rem;
  align-items: start;
}

.hero-carousel {
  grid-area: media;
  align-self: start;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(22, 48, 71, 0.1), rgba(22, 48, 71, 0.18));
}

.hero-slide {
  position: relative;
  min-height: 620px;
}

.hero-slide img {
  width: 100%;
  height: 620px;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 26, 39, 0.06) 0%, rgba(11, 26, 39, 0.62) 100%);
}

.hero-slide-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 30rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(10, 24, 37, 0.55);
  backdrop-filter: blur(14px);
}

.hero-slide-label {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-caption h3 {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.2;
}

.hero-slide-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 620px;
  padding: 0;
}

.hero-panel,
.hero-stats {
  pointer-events: auto;
}

.hero-panel {
  max-width: none;
  min-height: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 253, 0.88));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--ink-900);
  font-size: clamp(2.6rem, 4.4vw, 4.35rem);
}

.hero-panel p {
  max-width: 34rem;
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--accent-500), #ffb980);
  color: #11273c;
  box-shadow: 0 16px 36px rgba(242, 140, 69, 0.35);
}

.hero-btn.primary:hover,
.hero-btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(242, 140, 69, 0.42);
}

.hero-btn.secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
}

.hero-btn.secondary:hover,
.hero-btn.secondary:focus-visible {
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-stat {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(21, 38, 58, 0.08);
  backdrop-filter: blur(16px);
}

.hero-stat .number {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 800;
}

.hero-stat p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.carousel-indicators {
  bottom: 1.3rem;
  margin-bottom: 0;
  gap: 0.6rem;
}

.carousel-indicators [data-bs-target] {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.45);
}

.carousel-indicators .active {
  background: var(--accent-500);
  transform: scale(1.12);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: auto;
  bottom: 1.5rem;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 5.9rem;
}

.carousel-control-next {
  right: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-size: 42%;
  backdrop-filter: blur(14px);
}

/* Ticker */

.ticker-wrapper {
  width: min(1100px, calc(100% - 2rem));
  margin: 2rem auto 4rem;
  position: relative;
  z-index: 3;
}

.ticker {
  overflow: hidden;
  padding: 0.95rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(22, 48, 71, 0.12);
  color: var(--ink-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

/* Homepage overview */

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 1.3rem;
  margin-bottom: 4rem;
}

.overview-card,
.insight-card,
.impact-card,
.cta-band {
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.overview-card:hover,
.insight-card:hover,
.impact-card:hover,
.cta-band:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 140, 69, 0.22);
  box-shadow: 0 24px 56px rgba(21, 38, 58, 0.14);
}

.overview-card {
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

.overview-card p {
  margin: 0.95rem 0 0;
  max-width: 58ch;
}

.insight-column {
  display: grid;
  gap: 1.3rem;
}

.insight-card {
  padding: 1.5rem;
}

.insight-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

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

.insight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.insight-list li + li {
  margin-top: 0.9rem;
}

.insight-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), #ffd5b4);
}

.impact-section {
  margin-bottom: 4rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.impact-card {
  min-height: 100%;
  padding: 1.5rem;
}

.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 140, 69, 0.18), rgba(47, 88, 122, 0.12));
  color: var(--accent-500);
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(242, 140, 69, 0.08);
}

.impact-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.18rem;
}

.impact-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* Project slider */

.custContainer {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 4rem;
}

.titleAndControls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.controls {
  display: flex;
  gap: 0.8rem;
}

.controls > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--ink-900);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.controls > *:hover {
  transform: translateY(-2px);
  color: var(--ink-900);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.85);
}

.customSlider {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}

.customSlider::-webkit-scrollbar {
  height: 0.6rem;
}

.customSlider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 88, 122, 0.18);
}

.projectLink {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
}

.sliderComp {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(21, 38, 58, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.projectLink:hover .sliderComp,
.projectLink:focus-visible .sliderComp {
  transform: translateY(-5px);
  border-color: rgba(242, 140, 69, 0.22);
  box-shadow: 0 26px 54px rgba(21, 38, 58, 0.16);
}

.imgContainer {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, rgba(22, 48, 71, 0.06), rgba(22, 48, 71, 0.14));
}

.sliderImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.projectLink:hover .sliderImage,
.projectLink:focus-visible .sliderImage {
  transform: scale(1.06);
}

.colorOverlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(11, 26, 39, 0.02), rgba(11, 26, 39, 0.86));
}

.projectBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compComment {
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.projectMeta {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projectCopy {
  padding: 1.2rem 1.2rem 1.35rem;
}

.projectCopy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Presence gallery */

.gallery {
  padding: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 4rem;
}

.headingAndViewAll {
  display: block;
  margin-bottom: 1.5rem;
}

.view,
.re-border {
  display: none;
}

.gallery .nav {
  gap: 0.85rem;
  margin: 0 0 2rem !important;
}

.gallery .nav-item {
  flex: 1 1 280px;
}

.gallery .nav-link {
  display: block;
  padding: 1rem 1.25rem !important;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 18px;
  background: rgba(247, 242, 235, 0.55);
  color: var(--ink-900) !important;
}

.gallery .nav-link p {
  color: inherit;
}

.gallery .nav-pills .nav-item .active {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700)) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 35px rgba(21, 38, 58, 0.18);
}

.gallary-link {
  color: var(--ink-900) !important;
}

.picture {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.picture a {
  display: block;
}

.picture a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.picture:hover a img,
.picture a:focus-visible img {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

/* Affiliations */

.affiliations {
  margin-bottom: 4rem;
}

.logosCont {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.logos > * {
  width: 100%;
  height: 120px;
  margin: 0;
  padding: 1rem;
  object-fit: contain;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(21, 38, 58, 0.06);
}

.cta-shell {
  margin-bottom: 5rem;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.cta-band h2 {
  margin-bottom: 0.7rem;
}

.cta-band p {
  margin: 0;
}

/* Footer */

footer {
  padding: 0 0.75rem 1.8rem;
  color: #ffffff;
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.78) !important;
}

footer .section-1,
footer .section-2 {
  width: min(1200px, 100%);
  margin: 0 auto;
  background: linear-gradient(135deg, #18324a, #284f6f);
}

footer .section-1 {
  border-radius: 32px 32px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
}

footer .section-2 {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 32px 32px;
}

footer .section-1 img {
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(11, 26, 39, 0.2));
}

footer .footer-blurb {
  margin: 0;
  max-width: 34rem;
}

footer .text-uppercase,
.footercontact {
  color: #ffffff !important;
  letter-spacing: 0.1em;
}

footer .footerList {
  padding: 0;
}

footer .footerList li + li {
  margin-top: 0.45rem;
}

footer .footerList a:hover,
footer .footerList a:focus-visible {
  color: #ffffff !important;
}

footer hr {
  display: none;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
}

.footer-contact-line span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-line span + span {
  position: relative;
  padding-left: 1rem;
}

.footer-contact-line span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}

.copyright {
  width: min(1200px, 100%);
  margin: 0 auto;
  border-radius: 0 0 32px 32px;
  background: #ece4d8 !important;
}

.copyright p {
  margin: 0;
  color: var(--ink-900) !important;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Inner pages */

main.AboutUs,
main.ContactUs,
main.MissionHtml,
main.ProjectsHtml {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 2rem auto 0 !important;
  padding-bottom: 2rem;
}

main.AboutUs > .container-fluid,
.ContactUs .address,
.MissionHtml .vision,
.MissionHtml .mission,
.ProjectsHtml .projectsCards,
.PartnersCard {
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
}

main.AboutUs > .container-fluid + .container-fluid,
.MissionHtml .vision + .mission {
  margin-top: 1.25rem;
}

main.ContactUs > h2,
main.MissionHtml > h2,
main.ProjectsHtml > h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

main.ContactUs > hr,
main.MissionHtml > hr,
main.ProjectsHtml > hr {
  display: none;
}

.AboutUs {
  margin-top: 2rem;
}

.AboutUs h2,
.ContactUs h2,
.MissionHtml h2 {
  color: var(--ink-900);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.AboutUs p,
.AboutUs ul,
.ContactUs p,
.MissionHtml p,
.MissionHtml ul {
  font-size: 1rem;
  line-height: 1.85;
}

.contentPageIntro {
  margin-bottom: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-soft);
}

.contentPageTitle {
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.contentPageIntro p {
  max-width: 48rem;
  margin: 0;
}

.aboutHeroCard {
  overflow: hidden;
}

.aboutHeroCard .contentPageTitle + p {
  margin-top: 0.95rem;
}

.aboutHeroCard p + p {
  margin-top: 0.95rem;
}

.aboutContentCol p {
  margin-bottom: 0.95rem;
}

.aboutContentCol ul,
.partnersPage ul {
  margin-bottom: 0;
}

.AboutUs .row,
.ProjectsHtml .row {
  align-items: stretch;
}

.AboutUs .mainImg,
.mainImg,
.mainImg_2 {
  width: min(100%, 620px);
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(21, 38, 58, 0.12);
  object-fit: cover;
}

.AboutUs .mainImgPortrait {
  width: min(100%, 320px);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(21, 38, 58, 0.12);
}

.AboutUs .container-fluid .row .col-1 img {
  width: 56px;
}

.MissionHtml .vision p,
.MissionHtml .mission p {
  margin-bottom: 0;
}

.MissionHtml .vision i,
.MissionHtml .mission i {
  color: var(--accent-500);
}

.ContactUs h2 {
  font-weight: 800;
}

.ContactUs a {
  color: var(--ink-800);
  text-decoration: underline !important;
}

.ContactUs i,
.MissionHtml i {
  margin-right: 0.7rem;
  font-size: 1.35rem;
}

.ContactUs iframe {
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(21, 38, 58, 0.12);
}

.contact-page {
  width: min(1240px, calc(100% - 1rem)) !important;
  margin: 1.2rem auto 0 !important;
  padding-bottom: 3rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  margin-bottom: -3.2rem;
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 23, 34, 0.76) 0%, rgba(10, 23, 34, 0.46) 45%, rgba(10, 23, 34, 0.2) 100%),
    url("images/STEP_sliderPic_5.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: clamp(2rem, 4vw, 3.3rem);
}

.contact-hero-content .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contact-hero-content .section-kicker::before {
  background: linear-gradient(135deg, #ffddb9, #f28c45);
}

.contact-hero-content h1 {
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.contact-hero-content p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.contact-highlight {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto 4rem;
  overflow: hidden;
  border: 1px solid rgba(22, 48, 71, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  box-shadow: 0 22px 60px rgba(21, 38, 58, 0.12);
}

.contact-highlight-block {
  padding: 2rem 2.4rem;
}

.contact-highlight-block + .contact-highlight-block {
  border-left: 1px solid rgba(22, 48, 71, 0.12);
}

.contact-highlight-label {
  margin-bottom: 0.9rem;
  color: var(--ink-800);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-highlight-block h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
}

.contact-highlight-link {
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 800;
}

.contact-highlight-link:hover,
.contact-highlight-link:focus-visible {
  color: var(--accent-500);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-copy,
.contact-form-card,
.contact-map-card {
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow-soft);
}

.contact-copy {
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.contact-copy > p {
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.contact-divider {
  width: 100%;
  height: 1px;
  margin: 1.7rem 0;
  background: linear-gradient(90deg, rgba(242, 140, 69, 0.38), rgba(22, 48, 71, 0.08));
}

.contact-info-cards {
  display: grid;
  gap: 1rem;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  background: rgba(247, 242, 235, 0.52);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 140, 69, 0.18), rgba(47, 88, 122, 0.1));
  color: var(--accent-500);
  font-size: 1.1rem;
}

.contact-info-card h3,
.contact-social h3,
.contact-map-copy h2 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
}

.contact-info-card p,
.contact-social p,
.contact-map-copy p {
  margin: 0;
}

.contact-info-card a {
  color: var(--ink-800);
  text-decoration: underline !important;
}

.contact-social {
  margin-top: 1.8rem;
}

.contact-social-showcase {
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 69, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 235, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 16px 40px rgba(21, 38, 58, 0.08);
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0;
  align-items: center;
}

.contact-social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 28px rgba(21, 38, 58, 0.18);
  font-size: 2rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  overflow: hidden;
}

.contact-social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 40%);
  pointer-events: none;
}

.contact-social-links a::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 12%;
  width: 42%;
  height: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(2px);
  pointer-events: none;
}

.contact-social-links a i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  transform: translateY(-4px) scale(1.04);
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 34px rgba(21, 38, 58, 0.24);
  filter: saturate(1.08);
}

.social-x {
  background: linear-gradient(135deg, #0f1012, #1f2329 58%, #080909);
}

.social-linkedin {
  background: linear-gradient(135deg, #0758a7, #0a66c2 55%, #3895ff);
}

.social-facebook {
  background: linear-gradient(135deg, #1459c7, #1877f2 55%, #5bb0ff);
}

.social-tiktok {
  background:
    radial-gradient(circle at 28% 26%, rgba(37, 244, 238, 0.28), transparent 22%),
    radial-gradient(circle at 72% 74%, rgba(254, 44, 85, 0.28), transparent 24%),
    linear-gradient(135deg, #060606, #181818);
}

.social-instagram {
  background: linear-gradient(135deg, #5b36b7, #c536a4 42%, #f04d4d 70%, #fcb045);
}

.social-youtube {
  background: linear-gradient(135deg, #d90b0b, #ff1d1d 58%, #ff5e5e);
}

.contact-social-handle {
  margin: 1.2rem 0 0;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.contact-form-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  color: var(--ink-800);
  font-size: 0.96rem;
  font-weight: 700;
}

.contact-form label span {
  color: #d26a2d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(22, 48, 71, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-size: 0.98rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 140, 69, 0.5);
  box-shadow: 0 0 0 0.22rem rgba(242, 140, 69, 0.12);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-submit {
  margin-top: 0.5rem;
  width: fit-content;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #6bb300, #95d13a);
  color: #173100;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(107, 179, 0, 0.22);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
}

.contact-form-note {
  margin-top: 0.25rem;
  font-size: 0.88rem;
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.2rem;
}

.contact-map-copy {
  padding: 1.2rem 1rem 1.2rem 0.6rem;
}

.contact-map-frame {
  min-height: 100%;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.ProjectsHtml .projectsCards .column .card {
  overflow: hidden;
  border: 1px solid rgba(22, 48, 71, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(21, 38, 58, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ProjectsHtml .projectsCards .column:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(21, 38, 58, 0.14);
}

.ProjectsHtml .projectsCards .card .card-footer {
  border-top: 1px solid rgba(22, 48, 71, 0.08);
  background-color: #ffffff;
}

.ProjectsHtml .projectsCards .column .projectImage {
  width: 140px;
  padding: 1.5rem;
}

.projectListingIntro {
  max-width: 52rem;
  margin-bottom: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow-soft);
}

.projectListingIntro h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.projectListingIntro p {
  margin: 0;
  max-width: 48rem;
}

.projectCardLink {
  display: block;
  height: 100%;
}

.ProjectsHtml .projectsCards {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ProjectsHtml .projectsCards .column .card {
  height: 100%;
}

.projectCardImage {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.projectCardTitle {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.projectCardSummary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.projectCardMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.projectCardMeta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(242, 140, 69, 0.12);
  color: var(--ink-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.projectDetailPage {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 2rem auto 0;
  padding-bottom: 3rem;
}

.projectDetailCard {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow-soft);
}

.projectDetailIntro {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.projectDetailIntro h1 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.projectDetailSummary {
  margin: 0;
  font-size: 1.02rem;
}

.projectDetailMeta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.projectMetaItem {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(247, 242, 235, 0.56);
}

.projectMetaItem strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.96rem;
  line-height: 1.5;
}

.projectMetaLabel {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projectDetailBody {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.projectDetailCopy {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.projectDetailCopy p {
  margin: 0;
}

.projectDetailCopy p + p {
  margin-top: 1rem;
}

.projectLeadText {
  color: var(--ink-800);
  font-size: 1.02rem;
  font-weight: 700;
}

.projectDetailHighlights {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(22, 48, 71, 0.1);
}

.projectDetailHighlights h3 {
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
}

.projectDetailHighlights ul {
  margin: 0;
  padding-left: 1.1rem;
}

.projectDetailHighlights li + li {
  margin-top: 0.45rem;
}

.projectDetailMedia {
  display: grid;
  gap: 1rem;
}

.projectDetailImage,
.projectDetailImagePortrait {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(21, 38, 58, 0.1);
  object-fit: cover;
}

.projectDetailImage {
  aspect-ratio: 16 / 11;
}

.projectDetailImagePortrait {
  aspect-ratio: 4 / 5;
}

.projectDetailEmpty {
  margin: 0;
  color: var(--ink-800);
  font-size: 1rem;
}

.homeRedirectPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

.redirectCard {
  width: min(560px, 100%);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.redirectCard h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.redirectCard p {
  margin: 0 0 1.4rem;
}

/* Responsive */

@media (max-width: 991px) {
  .hero-shell {
    display: block;
  }

  .NAVBAR1 .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border: 1px solid rgba(22, 48, 71, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-slide,
  .hero-slide img {
    min-height: 540px;
    height: 540px;
  }

  .hero-slide-caption {
    max-width: 28rem;
  }

  .hero-copy {
    min-height: 0;
    margin-top: -2.5rem;
    padding-inline: 1rem;
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .overview-grid,
  .impact-grid,
  .cta-band,
  .contact-layout,
  .contact-map-card,
  .contact-highlight,
  .projectDetailBody,
  .projectDetailMeta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-highlight {
    width: calc(100% - 1rem);
    margin-bottom: 3rem;
  }

  .contact-highlight-block + .contact-highlight-block {
    border-left: 0;
    border-top: 1px solid rgba(22, 48, 71, 0.12);
  }

  .section-intro,
  .titleAndControls {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  header.sticky-top {
    padding-top: 0.75rem;
  }

  nav.NAVBAR1 {
    width: calc(100% - 1rem);
    border-radius: 22px;
  }

  .hero-shell {
    width: calc(100% - 1rem);
  }

  .hero-slide,
  .hero-slide img {
    min-height: 460px;
    height: 460px;
  }

  .hero-slide-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1rem;
  }

  .hero-panel {
    border-radius: 26px;
  }

  .hero-panel h1 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .carousel-control-prev,
  .carousel-control-next {
    bottom: 1.1rem;
  }

  .carousel-control-prev {
    right: 4.8rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .ticker-wrapper {
    width: calc(100% - 1rem);
    margin-top: 1.35rem;
  }

  .ticker {
    font-size: 0.69rem;
    line-height: 1.6;
    letter-spacing: 0.12em;
  }

  .section-shell,
  main.AboutUs,
  main.ContactUs,
  main.MissionHtml,
  main.ProjectsHtml,
  .projectDetailPage {
    width: calc(100% - 1rem);
  }

  .contentPageIntro {
    border-radius: 26px;
  }

  .contact-page {
    width: calc(100% - 1rem) !important;
  }

  .contact-hero {
    min-height: 340px;
    margin-bottom: -2.4rem;
  }

  .contact-hero-content h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .contact-map-card {
    gap: 0.6rem;
  }

  .projectListingIntro,
  .projectDetailCard,
  .projectDetailCopy {
    border-radius: 26px;
  }

  .contact-map-copy {
    padding: 0.8rem 0.4rem 0.2rem;
  }

  .gallery .nav {
    margin: 0 0 1.5rem !important;
  }

  .AboutUs .container-fluid .row .col-1 {
    display: none;
  }

  .AboutUs .container-fluid .row .col-10,
  .AboutUs .container-fluid .row .col-lg-6,
  .AboutUs .container-fluid .row .col {
    width: 100%;
    flex: 0 0 100%;
  }

  footer {
    padding-inline: 0.5rem;
  }

  footer .section-1,
  footer .section-2,
  .copyright {
    width: 100%;
  }

  .footer-contact-line {
    gap: 0.55rem;
  }

  .footer-contact-line span + span {
    padding-left: 0.8rem;
  }
}

@media (max-width: 575px) {
  .hero-slide,
  .hero-slide img {
    min-height: 380px;
    height: 380px;
  }

  .hero-slide-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    border-radius: 20px;
  }

  .hero-slide-caption h3 {
    font-size: 1.15rem;
  }

  .hero-slide-caption p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-panel,
  .hero-stat,
  .overview-card,
  .insight-card,
  .impact-card,
  .custContainer,
  .gallery,
  .logosCont,
  .cta-band,
  .contact-copy,
  .contact-form-card,
  .contact-map-card,
  .contact-highlight,
  .ContactUs .address,
  .MissionHtml .vision,
  .MissionHtml .mission,
  .ProjectsHtml .projectsCards,
  .contentPageIntro,
  .redirectCard,
  main.AboutUs > .container-fluid {
    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-hero {
    min-height: 300px;
    margin-bottom: -2rem;
    border-radius: 24px;
  }

  .contact-highlight-block,
  .contact-copy,
  .contact-form-card {
    padding: 1.3rem;
  }

  .contact-social-showcase {
    padding: 1rem;
  }

  .contact-social-links a {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1rem;
    font-size: 1.65rem;
  }

  .contact-social-handle {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .contact-map-frame iframe {
    min-height: 320px;
  }

  .projectDetailImage,
  .projectDetailImagePortrait {
    border-radius: 22px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-copy {
    margin-top: -1.5rem;
    padding-inline: 0.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .controls {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hidden {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
