/* ============================================================
   Pointer Holdings – Main Stylesheet
   ============================================================
   Design Tokens:
   - Navy 950: #051526
   - Navy 900: #0b2b4a
   - Navy 800: #0f3a63
   - Navy 700: #164c7e
   - Brand Blue: #1e5fae
   - Brand Teal: #12a594
   - Brand Green: #4caf50
   - Brand Sky: #7fb8e0
   ============================================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: #fbfcfd;
  color: #0b2b4a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
}

::selection {
  background-color: #12a594;
  color: #ffffff;
}

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

a {
  text-decoration: none;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #90a9c4;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1e5fae;
}

/* --- Keyframes --- */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ken-burns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.animate-ken-burns {
  animation: ken-burns 9s ease-out forwards;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.hidden {
  display: none !important;
}

/* --- Section Shared Styles --- */
.section-header {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #12a594;
}

.section-title {
  margin-top: 0.5rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.875rem;
  line-height: 1.25;
  color: #0b2b4a;
}
@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.6rem;
  }
}
.section-title .accent,
.section-title span {
  background: linear-gradient(135deg, #034e9f, #8ec543);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.section-tag-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  color: rgba(11, 43, 74, 0.65);
}

/* --- Header --- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.5s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(11, 43, 74, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
}
@media (min-width: 1024px) {
  .header-inner {
    padding: 0.5rem 0;
  }
}

.header-logo img {
  max-height: 75px;
  max-width: 100px;
  padding: 5px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color 0.2s;
  color: rgba(11, 43, 74, 0.8);
  padding: 30px 5px;
}
.header-nav a:hover {
  color: #1e5fae;
}
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  position: relative;
}
.dropdown-chevron {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}
.nav-dropdown-trigger:hover .dropdown-chevron,
.nav-dropdown.is-active .dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown.is-active > .nav-dropdown-trigger {
  color: #0b2b4a;
  font-weight: 600;
}
.nav-dropdown.is-active > .nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0b2b4a;
  border-radius: 1px;
}
.mega-dropdown {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(11, 43, 74, 0.08);
  box-shadow: 0 8px 30px rgba(11, 43, 74, 0.1), 0 1px 3px rgba(11, 43, 74, 0.06);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.35s;
  pointer-events: none;
}
.nav-dropdown.is-active .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-dropdown-inner {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}
.mega-dropdown-heading {
  flex-shrink: 0;
  min-width: 160px;
}
.mega-dropdown-heading h3 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b2b4a;
  line-height: 1.3;
}
.mega-dropdown-line {
  display: block;
  width: 36px;
  height: 3px;
  background: #12a594;
  border-radius: 2px;
  margin-top: 1rem;
}
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  flex: 1;
}
.mega-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mega-dropdown-col:not(:last-child) {
  border-right: 1px solid rgba(11, 43, 74, 0.08);
  padding-right: 2rem;
}
.mega-dropdown-col:not(:first-child) {
  padding-left: 2rem;
}
.mega-dropdown-col a {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(11, 43, 74, 0.75);
  line-height: 1.5;
  padding: 0.6rem 0;
  transition: color 0.2s, padding-left 0.25s;
  letter-spacing: 0;
}
.mega-dropdown-col a:hover {
  color: #12a594;
  padding-left: 0.35rem;
}
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(11, 43, 74, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s;
}
.mobile-dropdown-trigger:hover {
  color: #1e5fae;
}
.mobile-dropdown-trigger .dropdown-chevron {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-dropdown.is-active .mobile-dropdown-trigger .dropdown-chevron {
  transform: rotate(180deg);
}
.mobile-dropdown.is-active .mobile-dropdown-trigger {
  color: #1e5fae;
  font-weight: 600;
}
.mobile-dropdown-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(30, 95, 174, 0.2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              margin 0.3s ease;
}
.mobile-dropdown-panel.hidden {
  display: flex !important;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.mobile-dropdown-panel:not(.hidden) {
  max-height: 600px;
  opacity: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.mobile-dropdown-panel a {
  font-size: 0.875rem;
  color: rgba(11, 43, 74, 0.7);
  padding: 0.45rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-dropdown-panel a:hover {
  color: #1e5fae;
  padding-left: 0.35rem;
}
.header-investor-btn {
  display: none;
}
@media (min-width: 1024px) {
  .header-investor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #034e9f, #8ec543);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(30, 95, 174, 0.2);
    transition: transform 0.2s;
  }
}
.header-investor-btn:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #12a594, #8ec543);
  color: #fff;
}
.header-investor-btn svg {
  transition: transform 0.2s;
}
.header-investor-btn:hover svg {
  transform: translate(2px, -2px);
}
.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: none;
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}
.menu-toggle.is-dark svg {
  color: #0b2b4a;
}
.menu-toggle.is-light svg {
  color: #0b2b4a;
}
.mobile-menu {
  border-top: 1px solid rgba(11, 43, 74, 0.05);
  background: #ffffff;
  padding: 1.5rem;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(11, 43, 74, 0.8);
  transition: color 0.2s;
}
.mobile-menu .mobile-dropdown-panel a {font-size: 0.875rem;}
.mobile-menu a:hover {
  color: #1e5fae;
}
.mobile-menu .mobile-investor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #051526;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease-out;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide .overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #051526, rgba(5, 21, 38, 0.6), rgba(5, 21, 38, 0.2));
}
.hero-slide .overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 21, 38, 0.8), rgba(5, 21, 38, 0.25), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem 1.5rem 4rem;
}
@media (min-width: 640px) {
  .hero-content {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 6rem;
  }
}

.hero-text {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-title,
.hero-richtext h1 {
  margin-top: 1.5rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.1;
  color: #ffffff;
}
@media (min-width: 640px) {
  .hero-title,
  .hero-richtext h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title,
  .hero-richtext h1 {
    font-size: 3.75rem;
  }
}
/* CMS-authored headings mark the accent words with a bare <span>. */
.hero-title .accent,
.hero-richtext h1 span {
  background: linear-gradient(135deg, #7fb8e0, #12a594, #4caf50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-copy,
.hero-richtext p {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 640px) {
  .hero-copy,
  .hero-richtext p {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Stats Bar --- */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats-bar {
    margin-top: 4rem;
    padding: 2rem;
  }
}

.stat-value {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
}
@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 640px) {
  .stat-label {
    font-size: 0.75rem;
  }
}

/* --- Hero Controls --- */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-controls {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .hero-controls {
    right: 2.5rem;
  }
}

.hero-nav {
  display: none;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  z-index: 20;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .hero-nav {
    left: 2.5rem;
    display: flex;
  }
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  outline: none;
}

.hero-nav-line {
  height: 2px;
  transition: all 0.5s;
}
.hero-nav-btn.is-active .hero-nav-line {
  width: 2.5rem;
  background: #ffffff;
}
.hero-nav-btn:not(.is-active) .hero-nav-line {
  width: 1rem;
  background: rgba(255, 255, 255, 0.4);
}
.hero-nav-btn:not(.is-active):hover .hero-nav-line {
  background: rgba(255, 255, 255, 0.7);
}

/* --- Control Button --- */
.control-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  cursor: pointer;
  background: none;
  transition: background 0.2s;
}
.control-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.control-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- About Section --- */
.about-section {
  padding: 2rem 0;
  background: #fbfcfd;
}
@media (min-width: 640px) {
  .about-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .about-section {
    padding: 4rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image-col {
  position: relative;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(11, 43, 74, 0.2);
}
.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (min-width: 640px) {
  .about-image-wrap img {
    height: 520px;
  }
}
.about-image-wrap .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 38, 0.5), transparent);
}

.about-floating-card {
  position: absolute;
  bottom: -2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(11, 43, 74, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .about-floating-card {
    left: 2.5rem;
  }
}
.about-floating-card .number {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.875rem;
  color: #1e5fae;
}
.about-floating-card .label {
  max-width: 7rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.025em;
  color: rgba(11, 43, 74, 0.6);
}

.about-text-col .section-tag {
  color: #12a594;
}
.about-text-col h2 {
  margin-top: 1rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.875rem;
  line-height: 1.25;
  color: #0b2b4a;
}
@media (min-width: 640px) {
  .about-text-col h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .about-text-col h2 {
    font-size: 2.6rem;
  }
}
.about-text-col h2 .accent,
.about-text-col h2 span {
  background: linear-gradient(135deg, #034e9f, #8ec543);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.about-text-col p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 24px;
  color: rgba(11, 43, 74, 0.7);
}
.about-text-col p + p {
  margin-top: 1rem;
}

.about-points {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-point .point-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  background: rgba(30, 95, 174, 0.1);
  color: #034e9f;
  flex-shrink: 0;
}
.about-point .point-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(11, 43, 74, 0.8);
}

.about-text-col .about-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  /* background: linear-gradient(135deg, #034e9f, #12a594); */
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(30, 95, 174, 0.2);
  transition: transform 0.2s;
}
.about-text-col .about-cta:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #12a594, #8ec543);
}

/* --- Pitch Your Vision Section --- */
.pitch-section {
  padding: 2rem 0;
  background: #F4F7FA;
}
@media (min-width: 640px) {
  .pitch-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .pitch-section {
    padding: 4rem 0;
  }
}

.pitch-section .section-header {
  max-width: 52rem;
}
.pitch-section .section-desc {
  margin-top: 1.25rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  line-height: 1.75;
}

.pitch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .pitch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pitch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.pitch-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(11, 43, 74, 0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s;
  overflow: hidden;
}
.pitch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e5fae, #12a594);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pitch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 43, 74, 0.1),
              0 8px 16px rgba(11, 43, 74, 0.06);
  border-color: rgba(30, 95, 174, 0.15);
}
.pitch-card:hover::before {
  transform: scaleX(1);
}

.pitch-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 95, 174, 0.08), rgba(18, 165, 148, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5fae;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s,
              color 0.3s;
}
.pitch-card:hover .pitch-card-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, #034e9f, #8ec543);
  color: #ffffff;
}

.pitch-card-title {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b2b4a;
  margin-bottom: 0.5rem;
}

.pitch-card-desc {
  font-size: 0.9rem;
  color: rgba(11, 43, 74, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pitch-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e5fae;
  border-top: 1px solid rgba(11, 43, 74, 0.08);
  padding-top: 1rem;
  transition: color 0.3s, gap 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pitch-card-link svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pitch-card-link:hover {
  color: #12a594;
  gap: 0.75rem;
}
.pitch-card-link:hover svg {
  transform: translateX(3px);
}

/* --- Leadership Section --- */
.leadership-section {
  padding: 2rem 0;
  background: #f6f9fb;
}
@media (min-width: 640px) {
  .leadership-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .leadership-section {
    padding: 4rem 0;
  }
}

.leadership-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}

.leader-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.leader-card:hover {
  transform: translateY(-4px);
}

.leader-card .leader-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
}
.leader-card .leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.leader-card:hover .leader-avatar img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.leader-card .leader-info {
  padding-top: 0.875rem;
}
.leader-card .leader-info .leader-name {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0b2b4a;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .leader-card .leader-info .leader-name {
    font-size: 1.1rem;
  }
}
.leader-card .leader-info .leader-role {
  margin-top: 0.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(11, 43, 74, 0.5);
}

/* --- Leader Detail Modal --- */
@keyframes leader-modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes leader-overlay-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

#leaderModal .modal-backdrop {
  animation: leader-overlay-fade-in 0.3s ease both;
}

.leader-modal-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
  animation: leader-modal-slide-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 768px) {
  .leader-modal-wrapper {
    flex-direction: row;
    max-height: 85vh;
  }
}

.leader-modal-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .leader-modal-content {
    flex-direction: row;
  }
}

/* Photo side */
.leader-modal-photo {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #2d2d2d;
}
@media (min-width: 768px) {
  .leader-modal-photo {
    width: 42%;
    height: auto;
    min-height: 480px;
  }
}
.leader-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Detail side */
.leader-modal-detail {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .leader-modal-detail {
    padding: 2.5rem 0.75rem 2.5rem 2rem;
  }
}

.leader-modal-detail .leader-modal-name {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2b4a;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .leader-modal-detail .leader-modal-name {
    font-size: 1.75rem;
  }
}
.leader-modal-detail .leader-modal-role {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(11, 43, 74, 0.5);
}
.leader-modal-detail .leader-modal-divider {
  width: 36px;
  height: 3px;
  background: #1e5fae;
  border-radius: 2px;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.leader-modal-detail .leader-modal-bio {
  font-size: 14px;
  line-height: 20px;
  color: rgba(11, 43, 74, 0.7);
}
.leader-modal-detail .leader-modal-bio p {
  margin-bottom: 14px; text-align: justify; line-height: 18px; font-weight: 400;
}
.leader-modal-detail .leader-modal-bio p:last-child {
  margin-bottom: 0;
}
.leader-modal-detail .leader-modal-bio ul{padding-left: 15px;}
.leader-section-title{font-size: 16px !important;}
.leader-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.leader-skill-badge {
  display: inline-block;
  min-width: 10px;
  padding: 2px 7px;
  font-size: 0.75rem;
  color: #2e3192;
  vertical-align: middle;
  background-color: #dbe6f7;
  border-radius: 50px;
  font-weight: 400 !important;
  line-height: 14px;
}

/* Dark navigation strip */
.leader-modal-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #2d2d2d;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .leader-modal-nav {
    flex-direction: column;
    width: 52px;
  }
}

.leader-nav-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 48px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
@media (min-width: 768px) {
  .leader-nav-btn {
    width: 52px;
    height: 52px;
  }
}
.leader-nav-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.leader-modal-nav .nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .leader-modal-nav .nav-divider {
    width: 20px;
    height: 1px;
    margin: 0 auto;
  }
}

/* --- Companies Section --- */
.companies-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  background: #051526;
}
@media (min-width: 640px) {
  .companies-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .companies-section {
    padding: 4rem 0;
  }
}

.companies-section .bg-gradient-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b2b4a, rgba(30, 95, 174, 0.9), rgba(18, 165, 148, 0.8));
  /* background: #066235; */
}
.companies-section .bg-dot-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
  background-size: 28px 28px;
}
.companies-section .content-wrapper {
  position: relative;
}

.companies-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .companies-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.companies-header .section-tag {
  color: #bedb97;
}
.companies-header .section-title {
  color: #ffffff;
}
.companies-header .section-title .accent,
.companies-header .section-title span {
  font-style: italic;
  /* color: #8ec543;
  background: none;
  -webkit-text-fill-color: #8ec543; */
  background: linear-gradient(135deg, #12a594, #8ec543);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.companies-header p {
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  .companies-header p {
    text-align: right;
  }
}

.companies-list {
  margin-top: 3.5rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.company-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
}
@media (min-width: 640px) {
  .company-item {
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }
}
.company-item:not(.is-last) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.company-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.company-index {
  width: 2rem;
  flex-shrink: 0;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 640px) {
  .company-index {
    width: 2.5rem;
    font-size: 1.125rem;
  }
}

.company-details {
  min-width: 0;
  flex: 1;
  text-align: left;
}
.company-details .name {
  display: block;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.125rem;
  color: #ffffff;
}
@media (min-width: 640px) {
  .company-details .name {
    font-size: 1.25rem;
  }
}
.company-details .tagline {
  display: none;
  margin-top: 0.125rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) {
  .company-details .tagline {
    display: block;
  }
}

.company-sector-tag {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .company-sector-tag {
    display: inline-block;
  }
}

.company-arrow {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s;
}
.company-item:hover .company-arrow {
  background: #4caf50;
  transform: rotate(45deg);
}

/* --- Sectors Section --- */
.sectors-section {
  padding: 2rem 0;
  background: #fbfcfd;
}
@media (min-width: 640px) {
  .sectors-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .sectors-section {
    padding: 4rem 0;
  }
}

.sectors-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sector-card {
  position: relative;
  height: 20rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(11, 43, 74, 0.05);
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.sector-card:hover {
  box-shadow: 0 25px 50px -12px rgba(11, 43, 74, 0.2);
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.sector-card:hover img {
  transform: scale(1.1);
}
.sector-card .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 38, 0.9), rgba(5, 21, 38, 0.3), rgba(5, 21, 38, 0.1));
  transition: opacity 0.3s;
}

.sector-badge {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.sector-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
}
.sector-info h3 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  color: #ffffff;
}
.sector-info p {
  max-height: 0;
  overflow: hidden;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: all 0.3s;
}
.sector-card:hover .sector-info p {
  max-height: 4rem;
  opacity: 1;
}
.sector-info .explore-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #bedb97;
}
.sector-info .explore-link svg {
  transition: transform 0.3s;
}
.sector-card:hover .explore-link{color: #8ec543;}
.sector-card:hover .explore-link svg {
  transform: translateX(0.25rem);
}

/* --- Global Map Section --- */
.global-section {
  padding: 2rem 0;
  background: #ffffff;
}
@media (min-width: 640px) {
  .global-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .global-section {
    padding: 4rem 0;
  }
}

.global-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .global-grid {
    grid-template-columns: 1.6fr 1fr;
  }
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(11, 43, 74, 0.08);
  background: linear-gradient(135deg, #eef4fa, #e4f4ef);
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .map-container {
    padding: 1rem;
  }
}

.map-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.map-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.pin-ring {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  animation: pulse-ring 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pin-dot {
  position: relative;
  display: inline-flex;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* --- Office Highlight --- */
.office-highlight {
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #034e9f, #12a594);
  color: #ffffff;
  margin-bottom: 1rem;
}
.office-highlight .office-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7fb8e0;
}
.office-highlight h3 {
  margin-top: 0.5rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.5rem;
}
.office-highlight p {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Office List --- */
.office-list {
  display: grid;
  max-height: 18rem;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}
@media (min-width: 640px) {
  .office-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .office-list {
    grid-template-columns: 1fr;
  }
}

.office-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.75rem;
  border: 1px solid rgba(11, 43, 74, 0.08);
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  width: 100%;
  font: inherit;
}
.office-btn:hover {
  border-color: rgba(30, 95, 174, 0.2);
  background: rgba(11, 43, 74, 0.03);
}
.office-btn.is-active {
  border-color: rgba(30, 95, 174, 0.3);
  background: rgba(30, 95, 174, 0.05);
}
.office-btn .city {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b2b4a;
}
.office-btn .country {
  font-size: 0.75rem;
  color: rgba(11, 43, 74, 0.5);
}

.office-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

/* --- Featured Projects Section --- */
.projects-section {
  padding: 2rem 0;
  background: #ffffff;
}
@media (min-width: 640px) {
  .projects-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .projects-section {
    padding: 4rem 0;
  }
}

.projects-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .projects-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.projects-header p {
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(11, 43, 74, 0.6);
}
@media (min-width: 1024px) {
  .projects-header p {
    text-align: right;
  }
}

.projects-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(11, 43, 74, 0.05);
  transition: all 0.3s;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
}
.project-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 25px 50px -12px rgba(11, 43, 74, 0.2);
}
.project-card.is-featured {
  grid-column: 1;
}
@media (min-width: 768px) {
  .project-card.is-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.project-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.project-card.is-featured .project-media {
  height: 20rem;
}
@media (min-width: 768px) {
  .project-card.is-featured .project-media {
    height: 100%;
  }
}
.project-card:not(.is-featured) .project-media {
  height: 16rem;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.project-card:hover .project-media img {
  transform: scale(1.1);
}
.project-media .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 38, 0.9), rgba(5, 21, 38, 0.25), transparent);
}

.project-tags {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  display: flex;
  gap: 0.5rem;
}
.project-tags .tag {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.project-tags .tag.tag-green {
  background: rgba(76, 175, 80, 0.9);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.project-arrow-icon {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.project-card:hover .project-arrow-icon {
  transform: rotate(45deg);
  background: #ffffff;
  color: #0b2b4a;
}

.project-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
}
.project-info h3 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  color: #ffffff;
}
@media (min-width: 640px) {
  .project-info h3 {
    font-size: 1.5rem;
  }
}
.project-info .location {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.project-meta {
  margin-top: 0.75rem;
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.project-meta strong {
  font-weight: 600;
  color: #ffffff;
}

/* --- News Section --- */
.news-section {
  padding: 2rem 0;
  background: #f6f9fb;
}
@media (min-width: 640px) {
  .news-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .news-section {
    padding: 4rem 0;
  }
}

.news-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .news-header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.news-header .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e5fae;
  transition: color 0.2s;
}
.news-header .view-all-link:hover {
  color: #12a594;
}

.news-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-featured {
  grid-column: 1;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(11, 43, 74, 0.05);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .news-featured {
    grid-column: span 2;
  }
}
.news-featured .media {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .news-featured .media {
    height: 24rem;
  }
}
.news-featured .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.news-featured:hover .media img {
  transform: scale(1.05);
}
.news-featured .media .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 38, 0.9), rgba(5, 21, 38, 0.3), transparent);
}
.news-featured .content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.75rem;
}
.news-featured .meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7fb8e0;
}
.news-featured .meta .separator-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}
.news-featured .meta .date {
  color: rgba(255, 255, 255, 0.6);
}
.news-featured .content h3 {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
}
@media (min-width: 640px) {
  .news-featured .content h3 {
    font-size: 1.875rem;
  }
}
.news-featured .content p {
  margin-top: 0.5rem;
  max-width: 32rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-item {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(11, 43, 74, 0.05);
  background: #fbfcfd;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.news-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(11, 43, 74, 0.1);
}
.news-item .thumbnail {
  width: 6rem;
  height: 6rem;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}
.news-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-item:hover .thumbnail img {
  transform: scale(1.1);
}
.news-item .item-text .item-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1e5fae;
}
.news-item .item-text h4 {
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1rem;
  line-height: 1.3;
  color: #0b2b4a;
}
.news-item .item-text .item-date {
  margin-top: 0.25rem;
  display: block;
  font-size: 0.75rem;
  color: rgba(11, 43, 74, 0.45);
}

/* --- Testimonials Section --- */
.testimonials-section {
  position: relative;
  overflow: hidden;
  /* background: #0b2b4a; */
  background: #066235;
  padding: 6rem 0;
}
@media (min-width: 640px) {
  .testimonials-section {
    padding: 7rem 0;
  }
}

.testimonials-section .blur-circle-left {
  position: absolute;
  pointer-events: none;
  left: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(18, 165, 148, 0.2);
  filter: blur(64px);
}
.testimonials-section .blur-circle-right {
  position: absolute;
  pointer-events: none;
  right: -6rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(30, 95, 174, 0.3);
  filter: blur(64px);
}

.testimonials-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .testimonials-inner {
    padding: 0 2.5rem;
  }
}
.testimonials-inner .section-tag {
  color: #bedb97;
}
.testimonials-inner .quote-icon {
  margin: 2rem auto 0;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(18, 165, 148, 0.7);
}
.testimonials-inner .quote-text {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.625;
  color: #ffffff;
}
@media (min-width: 640px) {
  .testimonials-inner .quote-text {
    font-size: 1.5rem;
  }
}
.testimonials-inner .quote-author {
  margin-top: 2rem;
  font-weight: 600;
  color: #ffffff;
}
.testimonials-inner .quote-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  transition: all 0.3s;
}
.testimonial-dot.is-active {
  width: 1.5rem;
  background: #4caf50;
}

/* --- Partners Section --- */
.partners-section {
  border-top: 1px solid rgba(11, 43, 74, 0.05);
  border-bottom: 1px solid rgba(11, 43, 74, 0.05);
  background: #ffffff;
  padding: 3.5rem 0;
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(11, 43, 74, 0.4);
}

.partners-track-wrap {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
}
.partners-track-wrap .fade-edge-left {
  position: absolute;
  pointer-events: none;
  inset: 0 auto 0 0;
  z-index: 10;
  width: 4rem;
  background: linear-gradient(to right, #ffffff, transparent);
}
.partners-track-wrap .fade-edge-right {
  position: absolute;
  pointer-events: none;
  inset: 0 0 auto auto;
  z-index: 10;
  width: 4rem;
  background: linear-gradient(to left, #ffffff, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  animation: marquee 30s linear infinite;
}
.partners-track span {
  white-space: nowrap;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  color: rgba(11, 43, 74, 0.3);
  transition: color 0.2s;
}
.partners-track span:hover {
  color: #1e5fae;
}

/* --- Contact Section --- */
.contact-section {
  padding: 2rem 0;
  background: #ffffff;
}
@media (min-width: 640px) {
  .contact-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .contact-section {
    padding: 4rem 0;
  }
}

.contact-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0b2b4a, #1e5fae, #12a594);
  /* background: #066235; */
  box-shadow: 0 25px 50px -12px rgba(11, 43, 74, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-col {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .contact-info-col {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .contact-info-col {
    padding: 4rem;
  }
}
.contact-info-col .section-tag {
  color: #bedb97;
}
.contact-info-col h2 {
  margin-top: 1rem;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .contact-info-col h2 {
    font-size: 2.5rem;
  }
}
.contact-info-col h2 .accent,
.contact-info-col h2 span {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-style: italic;
  font-weight: 700;
  /* color: #7fb8e0; */
  background: linear-gradient(135deg, #12a594, #8ec543);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-info-col p {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-details a,
.contact-details .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: #ffffff;
}
.contact-details .icon-wrap {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contact-details a:hover .icon-wrap {
  background: rgba(255, 255, 255, 0.2);
}

.contact-form-wrap {
  background: #f8fafc;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .contact-form-wrap {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .contact-form-wrap {
    padding: 4rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}
.form-group input,
.form-group textarea {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #0b2b4a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e5fae;
  box-shadow: 0 0 0 3px rgba(30, 95, 174, 0.1);
}
.form-group textarea {
  resize: none;
}

.btn-submit {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  /* background: linear-gradient(135deg, #0b2b4a, #12a594); */
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 15px -3px rgba(30, 95, 174, 0.2);
  transition: all 0.2s;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(30, 95, 174, 0.3);
  background: linear-gradient(135deg, #12a594, #8ec543);
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
  text-align: center;
}
.contact-success svg {
  width: 3rem;
  height: 3rem;
  color: #4caf50;
}
.contact-success h3 {
  margin-top: 1rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  color: #0b2b4a;
}
.contact-success p {
  margin-top: 0.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(11, 43, 74, 0.6);
}

/* --- Footer --- */
footer {
  background: #051526;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e5fae, #12a594, #7fb8e0, #12a594, #1e5fae);
  background-size: 200% 100%;
  animation: footer-gradient-shift 8s ease infinite;
}
@keyframes footer-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  footer .container {
    padding: 0 2.5rem;
  }
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-wrap img{max-height: 60px; max-width: 60px;}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .top {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.logo-text .bottom {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}
.logo-text.light .top {
  color: #ffffff;
}
.logo-text.light .bottom {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: 3rem;
  }
}

footer .logo-wrap + p {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Social Links */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-socials a:hover {
  background: rgba(142, 197, 67, 0.2);
  border-color: rgb(142 197 67 / 50%);
  color: #8ec543;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 95, 174, 0.15);
}

/* Footer Section Headings */
footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.875rem;
}
footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #034e9f, #8ec543);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Footer Navigation Links */
footer ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}
footer ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
footer ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #8ec543, transparent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
footer ul a:hover {
  color: #8ec543;
  transform: translateX(4px);
}
footer ul a:hover::after {
  width: calc(100% - 20px);
}

/* Footer Nav Arrow Icon */
.footer-nav-arrow {
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}
footer ul a:hover .footer-nav-arrow {
  opacity: 1;
  transform: translateX(2px);
  color: #8ec543;
}

/* Footer Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.footer-contact-item:hover {
  color: #8ec543;
  transform: translateX(3px);
}
.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(30, 95, 174, 0.12);
  color: #12a594;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 1px;
}
.footer-contact-item:hover .footer-contact-icon {
  background: rgba(30, 95, 174, 0.25);
  color: #8ec543;
  box-shadow: 0 0 12px rgba(18, 165, 148, 0.15);
  transform: scale(1.08);
}

/* Newsletter */
footer .newsletter {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
footer .newsletter:focus-within {
  border-color: rgba(30, 95, 174, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 16px rgba(30, 95, 174, 0.1);
}
footer .newsletter input {
  min-width: 0;
  flex: 1;
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #ffffff;
  outline: none;
  border: none;
  font-family: inherit;
}
footer .newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
footer .newsletter button {
  /* background: linear-gradient(135deg, #034e9f, #12a594); */
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s, box-shadow 0.3s;
}
footer .newsletter button:hover {
  transform: scale(1.03);
  opacity: 0.95;
  box-shadow: 0 4px 15px rgba(30, 95, 174, 0.3);
  background: linear-gradient(135deg, #12a594, #8ec543);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-bottom .links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  position: relative;
}
.footer-bottom .links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-bottom .links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom .links a:hover::after {
  width: 100%;
}

/* --- Logo Component --- */
.logo-component {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-component .logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-component .logo-text-group .logo-name {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.logo-component .logo-text-group .logo-subtitle {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.logo-component .logo-text-group.is-dark .logo-name {
  color: #0b2b4a;
}
.logo-component .logo-text-group.is-dark .logo-subtitle {
  color: #1e5fae;
}
.logo-component .logo-text-group.is-light .logo-name {
  color: #ffffff;
}
.logo-component .logo-text-group.is-light .logo-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (min-width: 640px) {
  .modal-overlay {
    padding: 1.5rem;
  }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(5, 21, 38, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@media (min-width: 640px) {
  .modal-backdrop {
    background: rgba(5, 21, 38, 0.75);
  }
}

.modal-body-wrapper {
  position: relative;
  max-height: 88vh;
  width: 100%;
  overflow-y: auto;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.modal-body-wrapper.max-w-company {
  max-width: 48rem;
}
.modal-body-wrapper.max-w-project {
  max-width: 56rem;
}

.modal-image-area {
  position: relative;
  width: 100%;
  min-height: 14rem;
}
@media (min-width: 640px) {
  .modal-image-area {
    min-height: 16rem;
  }
}
.modal-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.modal-image-area .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 21, 38, 0.85), rgba(5, 21, 38, 0.1), transparent);
}

.modal-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  right: 1.5rem;
}
.modal-caption .modal-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal-caption h3 {
  margin-top: 0.75rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
}
@media (min-width: 640px) {
  .modal-caption h3 {
    font-size: 1.875rem;
  }
}
.modal-caption p {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
}
.modal-image-area .gallery-nav {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.modal-image-area .gallery-dot {
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-bottom: 1px solid rgba(11, 43, 74, 0.05);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .modal-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.modal-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}
.modal-stat-item .stat-icon {
  width: 1rem;
  height: 1rem;
  color: #1e5fae;
}
.modal-stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: rgba(11, 43, 74, 0.45);
}
.modal-stat-item .stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b2b4a;
}

.modal-text-content {
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .modal-text-content {
    padding: 2rem;
  }
}
.modal-text-content h4 {
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.125rem;
  color: #0b2b4a;
}
.modal-text-content p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(11, 43, 74, 0.7);
}
.modal-text-content ul {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .modal-text-content ul.two-column {
    grid-template-columns: 1fr 1fr;
  }
}
.modal-text-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(11, 43, 74, 0.75);
}
.modal-text-content li .check-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: #12a594;
}
.modal-text-content .modal-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #034e9f, #8ec543);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(30, 95, 174, 0.2);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.modal-text-content .modal-cta:hover {
  transform: scale(1.03);
}

/*======================================
   Clients Logo CSS
========================================*/
.client-logo {
  background-color: #F4F7FA;
  padding: 30px 0; position: relative;
  z-index: 1;
}
.client-slider {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;  */
}

  @media only screen and (max-width: 991px) {
    .client-logo {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .client-logo .single-logo {
    background: #fff; padding: 7px 20px; background: #fff; border-radius:9px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.048);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.048); text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; margin: 12px; cursor: pointer;}
  .client-logo .single-logo a{display: block; text-align: center;}
  .client-logo .single-logo img{max-height: 60px !important; margin-left: auto; margin-right: auto;
          -webkit-transition: all 0.4s ease-in-out; transition: all 0.4s ease-in-out;}
  .client-logo .slick-dots{position: absolute;
      right: 15px; bottom: 120%; z-index: 1;}
  .client-logo .single-logo:hover {
        -webkit-filter: opacity(1) grayscale(0);
        filter: opacity(1) grayscale(0);
        border-color: #fcce31; transform: translateY(-0.25rem); 
        box-shadow: 0 20px 25px -5px rgba(11, 43, 74, 0.1); }
  .client-logo .single-logo img{filter: grayscale(0%); -webkit-filter: grayscale(0%); transition: all 0.2s;}
  .client-logo .single-logo:hover img{
    /* filter: grayscale(100%); -webkit-filter: grayscale(100%);  */
    transform: translateY(0rem);}
    @media only screen and (max-width: 767px) {
      .client-logo .single-logo {
        width: 25%;
        text-align: center; } 
      }

      .social_head {
  position: fixed;
  right: 0;
  top: 160px;
  z-index: 3;
  padding: 0px;
}
.social_head li {
  position: relative;
  list-style-type: none;
  margin-top: 5px;
}
.social_head li a {
  display: block;
  padding: 6px;
  background: #fff;
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  border: 1px solid #12a594;
  border-radius: 100%;
  margin-right: 10px;
  color: #12a594;
}
.social_head li a:hover {
  background: linear-gradient(135deg, #034e9f, #8ec543);
  border-color: #fff;
  color: #fff;
}
/* --- Missing-image placeholder (rendered by the <Media> component) --- */
.media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #e8edf2;
  background-image: linear-gradient(135deg, #eef2f6 0%, #dfe6ed 100%);
}

/* --- Contact form validation feedback --- */
.contact-error {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #c0392b;
}

.btn-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}
