/* bootstrap strat */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #fff;
}

p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
  line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}


input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pe-50px {
  padding-right: 50px;
}

.px-80 {
  padding: 0 80px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */



:root {
  --font-p: 'Inter', sans-serif;
  --p-color: #fff;
  --gray: #555555;
  --black: #000000;
  --sec-color: #0c3b5f;
  --background: #ffffff;
  --yellow: #f6b552;
  --light: #e6baba;
  --dark: #1484ad;
  --l-yellow: #f1c582;
  --d-yellow: #e99922;
  --orange: #da7b0e;

  --lb-reg: "Libre Baskerville", serif;
  --lb-bold: "Libre Baskerville", serif;
}

.lb-reg {
  font-family: var(--lb-reg);
  font-weight: 400;
}

.lb-bold {
  font-family: var(--lb-bold);
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--dark);
  border-radius: 6px;
  border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--sec-color);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--dark) var(--background);
}

@supports (-ms-overflow-style: none) {
  * {
    -ms-overflow-style: scrollbar;
  }
}


a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-p);
  background-color: var(--background);
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.site-header {
  background-color: transparent;
}

#masthead2 {
  background-color: var(--background);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 999999;

  /* Base gradient */
  background: linear-gradient(270deg, var(--orange), var(--d-yellow), var(--yellow), var(--l-yellow));
  overflow: hidden;
  border-radius: 0 50px 50px 0;
  transition: width 0.12s ease-out;
}

/* Glowing sweep animation moving left -> right */
.scroll-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.9),
      transparent);

  animation: sweep 1.8s infinite linear;
  filter: blur(4px);
}

/* Soft glow pulsation */
.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  opacity: 0.4;
  filter: blur(8px);
  animation: glowPulse 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sweep {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.9;
  }
}


@keyframes pulseGlow {
  from {
    box-shadow: 0 0 6px var(--yellow);
  }

  to {
    box-shadow: 0 0 18px var(--yellow);
  }
}

.site-header,
#masthead2 {
  color: var(--black);
  transition: all 0.4s ease;
  backdrop-filter: none;
}

/* Main menu links only */
.nav>li>a {
  font-family: var(--font-p);
  font-weight: 500;
  color: var(--black) !important;
  font-size: clamp(15px, 3vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;

}

.nav>li>a:hover {
  color: var(--dark) !important;
}

.nav>li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--dark);
  transition: width 0.3s ease-in-out;
}

/* hover expands from center */
.nav>li>a:hover::after {
  width: 100%;
}



/* Active state */
.nav>li.current-menu-item>a,
.nav>li.current_page_item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current_page_ancestor>a {
  color: var(--dark) !important;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  width: 100%;
  color: var(--dark);
}


.nav>li.menu-item-has-children:hover>a::after {
  color: var(--dark);
}




/* Dropdown arrow */
.nav>li.menu-item-has-children {
  position: relative;
}

.nav>li.menu-item-has-children::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 14px;
  margin-left: 6px;
  position: relative;
  top: -2px;
  color: var(--background);
  background-color: transparent !important;
  transition: color 0.3s ease;
}

/* hover color change */
.nav>li.menu-item-has-children:hover::after {
  color: var(--l-brown);
}


.menu-gap {
  gap: 1.6rem;
}



.nav .sub-menu {
  background-color: var(--l-brown);
  border: 2px solid var(--l-brown);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  position: absolute;
  z-index: 999;
  margin: 0;
  top: 180%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled .sub-menu {
  top: 155%;
}

.nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav li.menu-item-has-children {
  position: relative;
}

.nav li.menu-item-has-children:hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 130px;
  background: transparent;
  pointer-events: auto;
  z-index: 998;
}



.nav li {
  position: relative;
}

.nav .sub-menu li {
  list-style: none;
}

.nav .sub-menu a {
  font-family: var(--font-sb);
  font-weight: 500;
  font-size: 17px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu a:hover {
  color: var(--background) !important;
  background-color: #49241f4f;
}

.nav .sub-menu li.current-menu-item>a,
.nav .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--brown);
}

.nav .sub-menu .sub-menu {
  background-color: var(--l-brown);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav .sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .sub-menu .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav .sub-menu .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

.nav .sub-menu .sub-menu li.current-menu-item>a,
.nav .sub-menu .sub-menu li.current_page_item>a {
  color: var(--background) !important;
  background-color: var(--brown);
}


@media (min-width: 1250px) {
  .menu-gap {
    gap: 1.6rem;
  }
}

@media (min-width: 1650px) {
  .menu-gap {
    gap: 2.5rem;
  }
}

@media (min-width: 1900px) {
  .menu-gap {
    gap: 3.8rem;
  }
}

.custom-logo {
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.custom-logo {
  transition: all 0.3s ease-in-out;
}

.site-header .custom-logo {
  width: 312px;
  padding: 20px 0 !important;
}

.site-header.scrolled .custom-logo {
  width: 250px;
  padding: 10px 0 !important;
}

#masthead2 .custom-logo {
  width: 220px;
  padding: 20px 0;
}

#masthead2.scrolled .custom-logo {
  width: 180px;
  padding: 15px 0;
}

#masthead.scrolled::after,
#masthead2.scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 230, 211);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

#masthead,
#masthead2 {

  z-index: 10;
}



.button1 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--sec-color) !important;
  border: 2px solid var(--sec-color) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 3vw, 22px) !important;
  border-radius: 50px !important;
  background-color: var(--background) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 200px;
  min-height: 60px;
}

.button1::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--sec-color) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button1:hover {
  color: var(--background) !important;
  border: 2px solid var(--sec-color) !important;
  background-color: transparent !important;
}

.button1:hover::before {
  width: 500px !important;
}


.button2 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--background) !important;
  border: 2px solid var(--dark) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 3vw, 22px) !important;
  border-radius: 50px !important;
  background-color: var(--dark) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 200px;
  min-height: 60px;
}

.button2::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--black) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button2:hover {
  color: var(--background) !important;
  border: 2px solid var(--black) !important;
  background-color: transparent !important;
}

.button2:hover::before {
  width: 500px !important;
}

.button3 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--sec-color) !important;
  border: 2px solid var(--yellow) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 3vw, 22px) !important;
  border-radius: 50px !important;
  background-color: var(--yellow) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease, border 0.4s ease !important;
  cursor: pointer !important;
  min-width: 200px;
  min-height: 60px;
}

.button3::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--black) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button3:hover {
  color: var(--background) !important;
  border: 2px solid var(--black) !important;
  background-color: var(--black) !important;
}

.button3:hover::before {
  width: 500px !important;
}

.button4 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--background) !important;
  border: 2px solid var(--dark) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 3vw, 22px) !important;
  border-radius: 50px !important;
  background-color: var(--dark) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 200px;
  min-height: 60px;
}


.button4:hover {
  color: var(--sec-color) !important;
  border: 2px solid var(--yellow) !important;
  background-color: var(--yellow) !important;
}

.wpcf7-contact-submit-wrapper p {
  width: 100%;
}


.main-heading {
  font-family: var(--lb-bold);
  color: var(--sec-color);
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 700;
}




/* Home design */

.home-hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: #0d2d51;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0c3b5f;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0px);
  transform: scale(1.02);
  z-index: 0;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(0, 0, 0, 0.63) 60%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
}

.home-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.home-hero-content .row {
  flex: 1;
}

.home-hero-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 160px;
  display: flex;
  align-items: center;
}

.home-hero-heading {
  font-size: clamp(32px, 5vw, 60px);
  color: #d9806f;
  /* 	color:#f6b552; */
  line-height: 1.2;
  font-family: var(--lb-bold);
  font-weight: 900;
  text-shadow: 1px 1px 0 #9e4f428c, -1px 1px 0 #9e4f42c4, 1px -1px 0 #9e4f428f, -1px -1px 0 #9e4f4278, 0 6px 14px rgba(0, 0, 0, 0.35);
}

.home-hero-subheading h2 {
  font-family: var(--font-p);
  font-size: clamp(22px, 3vw, 40px);
  color: #ffffff;
  font-weight: 700;

  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.6);
}

.home-hero-subheading p {
  font-family: var(--font-p);
  font-size: clamp(17px, 3vw, 25px);
  color: #f5f5f5;
  font-weight: 500;

  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero-button-primary {
  background: linear-gradient(135deg, #0c7bb5, #0c3b5f);
  color: #fff;
  box-shadow: 0 15px 35px rgba(12, 123, 181, 0.35);
}

.hero-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(12, 123, 181, 0.45);
  color: #fff;
}

.hero-button-outline {
  border-color: #0c3b5f;
  color: #0c3b5f;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.hero-button-outline:hover {
  background: #0c3b5f;
  color: #fff;
  transform: translateY(-2px);
}

.home-hero-silhouette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;

}

.home-hero-silhouette img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.2;
}

.home-hero-swiper,
.home-hero-swiper .swiper-wrapper,
.home-hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-hero-swiper .swiper-slide {
  position: relative;
}

.home-hero-bg-slide {
  display: none;
}



.counter-heading {
  font-family: var(--lb-bold);
  font-weight: 700;
  color: var(--sec-color);
  font-size: clamp(20px, 3vw, 28px);
}

.counter-card {
  background: #fff7f2;
  border-radius: 16px;
  padding: 20px 40px;
  min-height: 150px;
  box-shadow: 0 10px 25px rgba(12, 59, 95, 0.24);
}

.counter-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0c7bb5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.counter-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.counter-number {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(35px, 4vw, 65px);
  color: #0c3b5f;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.1;
}

.counter-number {
  position: relative;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.counter-value,
.counter-suffix {
  display: inline-block;
  white-space: nowrap;
}


.counter-suffix {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(35px, 4vw, 65px);
}

.counter-label {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(17px, 3vw, 20px);
  color: var(--sec-color);
  margin-top: 0px;
  text-align: center;
}

@media (max-width: 1400px) {
  .counter-card {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .counter-card {
    text-align: center;
    justify-content: center;
  }

  .counter-card {
    padding: 18px 30px;
  }

  .button3 {
    min-width: 140px;
    min-height: 45px;
  }
}

.tan-divider {
  width: 80%;
  height: 2px;
  border-radius: 50%;
  background-color: #d8c2a3;
  margin: 40px auto 20px;
  opacity: 0.8;
}

/* Mission Section */
.mission-section {
  background: #fff;
}

.mission-title {
  font-family: var(--lb-bold);
  color: var(--sec-color);
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 700;
}

.mission-lead p {
  font-family: var(--font-p);
  color: #000;
  font-size: clamp(17px, 3vw, 24px);
  line-height: 1.5;
}

.mission-lead small {
  font-family: var(--font-p);
  color: #000;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.3;
}

.mission-body {
  font-family: var(--font-p);
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.mission-btn {
  padding: 12px 28px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(12, 59, 95, 0.15);
}

.mission-btn:hover {
  box-shadow: 0 12px 28px rgba(12, 59, 95, 0.2);
}

.mission-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(12, 59, 95, 0.25);
}

@media (max-width: 991.98px) {
  .mission-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .mission-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575.98px) {
  .mission-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}



/* Featured Initiative */
.featured-initiative-section {
  background-image: linear-gradient(rgba(12, 60, 96, 0.88), rgba(12, 60, 96, 0.88));
  position: relative;
  overflow: hidden;
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-initiative-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
  opacity: 0.15;
}

.featured-initiative-section .container {
  position: relative;
  z-index: 2;
}

.featured-title {
  font-family: var(--lb-bold);
  color: #fff;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 50px);
}

.featured-slider-wrapper {
  position: relative;
  overflow: visible;
}

.featured-initiative-swiper {
  padding: 22px 0 50px;
  overflow: visible;
}

.featured-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  padding: clamp(20px, 4vw, 32px);
  position: relative;
  width: 90%;
  gap: clamp(16px, 4vw, 28px);
  align-items: center;
  overflow: visible;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}

.featured-project-name {
  font-family: var(--lb-bold);
  color: #2d434f;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 35px);
}

.featured-subheading {
  font-family: var(--font-p);
  color: #000;
  font-size: clamp(14px, 3vw, 18px);
}

.featured-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.featured-quote p,
.featured-quote div {
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 22px);
  color: #000;
  line-height: 1.3;
}

.featured-quote .quote-icon i {
  font-size: 25px;
  color: #cccccc;
}

.quote-icon {
  color: var(--yellow);
  font-family: var(--lb-bold);
  font-size: 30px;
  position: absolute;
}

.quote-icon-left {
  left: -8px;
  top: -16px;
}

.quote-icon-right {
  right: -8px;
  bottom: -20px;
}

.featured-link {
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(16px, 3vw, 20px);
  color: #1383ad;
  text-decoration: underline;
}

.featured-link:hover {
  color: var(--sec-color);
  text-decoration: underline !important;
}

.featured-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.featured-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  height: auto;
}

.featured-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.featured-prev,
.featured-next {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 45%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 3px solid #f6b552;
  background: #f6b552;
  color: #0c3b5f;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 5;
  overflow: hidden;
}

.featured-prev::after,
.featured-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e5c480;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.25s ease;
  z-index: -1;
}

.featured-prev:hover::after,
.featured-next:hover::after {
  transform: scale(1);
}

.featured-prev:hover,
.featured-next:hover {
  color: #0c3b5f;
  border-color: #e7a013;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.featured-prev {
  left: 10px;
}

.featured-next {
  right: 10px;
}

.featured-slider-wrapper,
.featured-initiative-swiper,
.featured-initiative-swiper .swiper-wrapper,
.featured-initiative-swiper .swiper-slide,
.featured-card {
  height: 100%;
}

.featured-initiative-swiper .swiper-wrapper {
  align-items: stretch;
}

/* Pagination */
.featured-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.featured-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: none !important;
}

.featured-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 0;
  background: var(--yellow);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
}

.featured-pagination .swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
}



/* Ways To Give */
.ways-section {
  background: #fff;
}

.ways-subtitle p {
  font-family: var(--font-p);
  color: #2d434f;
  font-size: clamp(15px, 3vw, 18px);
}

.ways-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(12, 59, 95, 0.12);
  padding: clamp(18px, 3vw, 26px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ways-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(12, 59, 95, 0.16);
}

.ways-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.ways-card-title {
  font-family: var(--font-p);
  font-weight: 700;
  color: #2c2927;
  font-size: clamp(18px, 3vw, 23px);
}

.ways-card-text p {
  font-family: var(--font-p);
  color: #000;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.5;
}

.ways-card-btn {
  min-width: 150px !important;
  min-height: 44px !important;
  padding: 10px 18px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
}

.ways-card .fa-arrow-up-right-from-square {
  font-size: 14px;
}

.ways-card .button2 {
  color: #fff !important;
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}

.ways-card .button2::before {
  background-color: #0a6a9e !important;
}

.ways-card .button2:hover {
  color: #fff !important;
  border-color: #0a6a9e !important;
}

@media (max-width: 767.98px) {
  .ways-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.donorBox_link {
  font-family: var(--lb-bold);
  font-weight: 600;
  color: var(--dark);
}

/* Stories of Impact */
.stories-section {
  position: relative;
  overflow: hidden;
}

.stories-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.stories-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 125, 168, 0.8);
}

.stories-section .container {
  position: relative;
  z-index: 2;
}

.stories-title {
  font-family: var(--lb-bold);
  color: #fff;
  font-size: clamp(28px, 4vw, 36px);
}

.stories-slider-wrapper {
  position: relative;
}

.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  min-height: 240px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.story-overlay {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
  pointer-events: none;
}

.story-overlay-left {
  top: -10px;
  left: -10px;
  width: 180px;
  height: 180px;
}

.story-overlay-right {
  right: -30px;
  top: 0;
  width: 260px;
  bottom: 0;
}

.story-contents {
  position: relative;
  z-index: 2;
}

.story-quote-icon i {
  color: #0ba3b7;
  font-size: clamp(30px, 4vw, 60px);
  margin-bottom: 12px;
}

.story-text p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.7;
}

.story-author {
  font-family: var(--font-p);
  font-weight: 700;
  color: #2d434f;
  font-size: clamp(15px, 3vw, 18px);
}

.stories-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.stories-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.stories-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff;
  transition: width 0.25s ease, height 0.25s ease;
}


.stories-pagination .swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
}


.stories-swiper {
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .stories-swiper .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  .story-card {
    min-height: 0;
  }
}

/* Partners */
.partners-section {
  background: #fff;
}

.partners-title {
  font-family: var(--lb-bold);
  color: var(--sec-color);
  font-size: clamp(26px, 4vw, 34px);
}

.partners-subtitle {
  max-width: 900px;
  margin: 0 auto;
}

.partners-subtitle p {
  font-family: var(--font-p);
  color: #2d434f;
  font-size: clamp(14px, 3vw, 18px);
}

.partner-card {
  background: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(12, 59, 95, 0.1);
  min-height: 115px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border: 2px solid var(--yellow);
  box-shadow: 0 12px 30px rgba(12, 59, 95, 0.14);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 60, 96, 0.88), rgba(12, 60, 96, 0.88));
}

.newsletter-section .container {
  position: relative;
  z-index: 2;
}

.newsletter-card {
  padding: clamp(22px, 4vw, 32px);
}

.newsletter-title {
  font-family: var(--lb-bold);
  color: var(--sec-color);
  font-size: clamp(26px, 4vw, 34px);
}

.newsletter-subtitle p {
  font-family: var(--font-p);
  color: var(--yellow);
  font-size: clamp(15px, 3vw, 18px);
}

.newsletter-form .wpcf7-form {
  display: grid;
  gap: 14px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"],
.newsletter-form input[type="tel"],
.newsletter-form textarea {
  width: 100%;
  border: 1px solid #d6e2eb;
  border-radius: 50px;
  padding: 12px 14px;
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #868686;
  background: #f8fbfd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 60px;
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="tel"]::placeholder,
.newsletter-form textarea::placeholder {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #868686;
  opacity: 1;
}


.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="tel"]:focus,
.newsletter-form textarea:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(12, 123, 181, 0.18);
  outline: none;
}

.newsletter-input {
  height: 50px;
  border-radius: 35px;
  padding-left: 18px;
  font-size: 16px;
  border: none;
}

.newsletter-row {
  margin-top: 25px;
}

.wpcf7-response-output {
  display: block;
  background: #e6ffed;
  /* soft green background */
  border: 1px solid #34d399;
  /* green border */
  color: #065f46;
  /* dark green text */
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  line-height: 1.6;
  /* spacing for <br> lines */
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease forwards;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid red !important;
  color: red;
}

/* Latest Posts */
.latest-posts-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-posts-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 542px;
  height: 190px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}


@media (max-width: 991.98px) {
  .latest-posts-overlay {
    width: 360px;
    height: 150px;
  }
}

.latest-posts-section .container {
  position: relative;
  z-index: 2;
}

.latest-posts-slider {
  overflow: visible;
}

.latest-posts-slider .swiper-wrapper {
  padding: 50px 0;
}

.latest-post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 20px rgba(12, 59, 95, 0.16);
  padding: clamp(16px, 3vw, 24px);
  gap: 18px;
}

.latest-post-card {
  height: auto !important;
  overflow: hidden;
}

.latest-post-card>* {
  flex-shrink: 0 !important;
}


.latest-post-thumb img {
  width: 170px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: -10px 10px 34px rgba(0, 0, 0, 0.12);
  /* aspect-ratio: 1/1.6; */
}

.latest-post-content {
  flex: 1;
  padding: 0px 30px 20px;
}

.latest-post-heading {
  font-family: var(--lb-bold);
  color: #2d434f;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
}

.latest-post-excerpt {
  font-family: var(--font-p);
  color: #2d434f;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.6;
}

.latest-post-link {
  font-family: var(--font-p);
  font-weight: 700;
  color: #0c3b5f;
  text-decoration: underline;
}

.latest-post-link:hover {
  color: #0a6a9e;
}

.latest-posts-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.latest-posts-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sec-color);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: none !important;
}

.latest-posts-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 0;
  background: var(--yellow);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
}

.latest-posts-pagination .swiper-pagination-bullet-active::after {
  width: 8px;
  height: 8px;
}

/* ✅ Add this to make active outer border yellow */
.latest-posts-pagination .swiper-pagination-bullet-active {
  border-color: var(--yellow) !important;
}


@media (max-width: 767.98px) {
  .latest-post-card {
    flex-direction: column;
    text-align: center;
  }

  .latest-post-thumb img {
    width: 100%;
    height: 250px;
  }

  .latest-post-content {
    align-items: center;
  }

  .latest-posts-slider .swiper-wrapper {
    padding: 0;
  }

  .latest-posts-overlay {
    width: 319px;
    height: 77px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  float: none !important;
  transform: none !important;
}


/* Inner Banner section */

.inner-banner-title {
  font-size: clamp(33px, 4vw, 74px);
  color: #d9806f;
  line-height: 1.2;
  font-family: var(--lb-bold);
  font-weight: 900;
  text-shadow: 1px 1px 0 #9e4f428c, -1px 1px 0 #9e4f42c4, 1px -1px 0 #9e4f428f, -1px -1px 0 #9e4f4278, 0 6px 14px rgba(0, 0, 0, 0.35);
}

.inner-banner {
  position: relative;
  width: 100%;
  height: 55vh;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.inner-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
  z-index: 1;
}

.overlay-white-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75)15%, rgba(255, 255, 255, 0.05)60%, rgba(255, 255, 255, 0)100%);
  z-index: 2;
}

.overlay-left-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(111, 138, 154, 0.4), rgba(111, 138, 154, 0));
  z-index: 3;
}

.overlay-bottom-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(172, 200, 216, 0.57) 0%, rgba(172, 200, 216, 0.05) 25%, rgba(172, 200, 216, 0.00) 40%, rgba(255, 255, 255, 0.40) 100%);
  z-index: 4;
}


.overlay-bottom-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.overlay-bottom-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.4;
}

.inner-banner-content {
  position: relative;
  z-index: 6;
}

@media(max-width: 768px) {
  .inner-banner {
    height: 230px;
    padding-bottom: 25px;
  }

  .inner-banner-content h1 {
    font-size: 45px;
  }
}

@media(max-width: 480px) {
  .inner-banner {
    height: 180px;
    padding-bottom: 20px;
  }

  .inner-banner-content h1 {
    font-size: 35px;
  }
}



/* Impact Stories page */




















/* Contact Page */


.contact-intro-section {
  background: #fff9f4;
}

.contact-details-card {
  max-width: 520px;
  color: #0c3b5f;
}

.contact-info-title {
  font-family: var(--lb-bold);
  font-weight: 700;
  color: #0c3b5f;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-info-subtitle p {
  font-family: var(--font-p);
  color: #000;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
}

.contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e6f3fa;
  color: #0c7bb5;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-text a,
.contact-info-text p {
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 18px);
  color: #0c3b5f;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 0;
}

.contact-info-text p {
  color: #2d434f;
  font-weight: 600;
}

.contact-info-text a:hover {
  color: var(--black);
}

.contact-info-divider {
  width: 100%;
  height: 1px;
  background: #e3d9ce;
  margin: 15px 0;
}

.contact-form-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
  background: #0c4e78;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 50px rgba(12, 59, 95, 0.2);
}

.contact-form-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 64, 100, 0.92) 0%, rgba(9, 64, 100, 0.95) 100%);
}

.contact-form-inner {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
}

.contact-form-title {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 6px;
  color: #d8e9f5;
  text-align: left;
}

.contact-form-subtitle {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #d8e9f5;
  margin-bottom: 18px;
  line-height: 1.55;
  text-align: left;
}

.contact-form-wrapper .wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(175, 214, 236, 0.7);
  border-radius: 999px;
  padding: 14px 18px;
  color: #fff !important;
  font-family: var(--font-p);
  font-size: 16px;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 26px;
  padding-top: 14px;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: #d8e9f5;
  opacity: 0.9;
  font-family: var(--font-p);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #51b7e1;
  background: rgba(255, 255, 255, 0.185);
  box-shadow: 0 0 0 3px rgba(81, 183, 225, 0.3);
}

.contact-form-wrapper input[type="submit"] {
  width: 100%;
  background: #22a7c8;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(34, 167, 200, 0.35);
  transition: all 0.25s ease;
}

.contact-form-wrapper input[type="submit"]:hover {
  background: #1b90b0;
  box-shadow: 0 12px 28px rgba(34, 167, 200, 0.45);
}

/* About us page */


.about-us-section {
  background: #fff9f4;
}

.who-we-are-section {
  background: #fff9f4;
}

.who-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 59, 95, 0.12);
}

.who-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-content .main-heading {
  color: #0c3b5f;
}

.who-description p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.65;
  margin-bottom: 16px;
}

.highlight-section {
  background: linear-gradient(to bottom, #fff9f4 0%, #fff9f4 50%, #fff 50%, #fff 100%);
}

.highlight-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 18px 36px rgba(12, 59, 95, 0.14);
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.highlight-color-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 60, 96, 0.8);
}

.highlight-overlay-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.highlight-overlay-img img {
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.highlight-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}


.highlight-content h2 {
  font-family: var(--lb-bold);
  color: #fff;
  font-size: clamp(22px, 5vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight-content p {
  font-family: var(--font-p);
  color: #fff;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
  margin-bottom: 0;
}

.bottom-highlight-section {
  background: #fff;
}

.bottom-text .main-heading {
  color: #0c3b5f;
}

.about-bottom-heading p {
  color: var(--sec-color);
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
}


.bottom-description p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.65;
  margin-bottom: 18px;
}

.bottom-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(12, 59, 95, 0.12);
}

.bottom-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-desc h2 {
  color: var(--sec-color);
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 15px;
}

.timeline-desc p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.7;
  margin-bottom: 12px;
}


.bottom-strip-section {
  background: #fdf6ef;
}

.bottom-strip-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.bottom-strip-divider {
  width: 1px;
  height: auto;
  background: #c7c7c7;
}

.bottom-strip-desc h2 {
  color: var(--sec-color);
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 15px;
}

.bottom-strip-desc p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 991.98px) {
  .bottom-strip-divider {
    display: none;
  }

  .bottom-strip-logo {
    text-align: center;
  }
}

/* Ways to give design */

.top-section-desc h2 {
  color: var(--sec-color);
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 15px;
}

.top-section-desc p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.7;
  margin-bottom: 12px;
}


.ways-to-give-section {
  background: linear-gradient(180deg,
      #fff9f4 0%,
      #fff9f4 50%,
      #ffffff 100%);
}

.impact-module {
  background: #fff4eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.impact-module h3 {
  font-family: var(--lb-bold);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--sec-color);
  text-align: center;
}

.impact-module-desc p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: center;
}

.impact-module .button3 {
  min-height: 30px;
  max-height: 44px !important;
  font-size: clamp(14px, 3vw, 18px) !important;
}

.impact-link:hover {
  text-decoration: underline;
}

.bottom-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bottom-section .container {
  position: relative;
  z-index: 2;
}

.bottom-section-desc h2 {
  color: var(--background);
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 15px;
}

.bottom-section-desc p {
  font-family: var(--font-p);
  color: var(--yellow);
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 12px;
}



.donation-frame {
  position: relative;
  border: 16px solid #0c7bb5;
  border-radius: 18px;
  padding: 12px;
  background: #0c7bb5;
  box-shadow: 0 18px 40px rgba(12, 59, 95, 0.18);
}

.donation-frame-inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: clamp(18px, 3vw, 28px);
  min-height: 420px;
  overflow: hidden;
}

.donation-logo img {
  max-width: 240px;
  height: auto;
  display: inline-block;
}

.donation-divider {
  width: 100%;
  height: 1px;
  background: #d9e8f1;
}

.donation-iframe-wrapper {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}


.donation-iframe-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

.donation-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
  opacity: 0.8;
  z-index: 1;
}

.donation-overlay img {
  width: 150px;
  height: auto;
  display: block;
}

/* Posts Grid */
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(12, 59, 95, 0.08);
  overflow: hidden;
  border: 1px solid #ececec;
}

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

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

.blog-card-body {
  padding: 16px;
}

.blog-card-date {
  font-family: var(--font-p);
  font-size: 14px;
  color: #7a7a7a;
  letter-spacing: 0.01em;
}

.blog-card-title a {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(17px, 3vw, 19px);
  color: #2d434f;
  line-height: 1.3;
}

.blog-card-title a:hover {
  color: #a34c25;
}

.blog-card-excerpt {
  font-family: var(--font-p);
  font-size: 15px;
  color: #2d434f;
  line-height: 1.6;
}

.blog-card-link {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 15px;
  color: #a34c25;
  text-decoration: none;
}

.blog-card-link:hover {
  color: #7c360e;
  text-decoration: underline;
}

.single-post-section {
  background: #fff9f4;
}

.single-post-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(12, 59, 95, 0.08);
  overflow: hidden;
  border: 1px solid #f1e9df;
}

.single-post-thumb {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/2;
}

.single-post-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.single-post-body {
  padding: clamp(20px, 3vw, 32px);
}

.single-post-date {
  font-family: var(--font-p);
  font-size: 14px;
  color: #7a7a7a;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.single-post-content p {
  font-family: var(--font-p);
  color: #2d434f;
  line-height: 1.75;
  font-size: clamp(16px, 3vw, 18px);
}

.single-post-content p {
  margin-bottom: 1.1em;
}

.single-post-nav {
  padding: 12px 0 0 0;
  border-top: 1px solid #e5e5e5;
}

.single-nav-item .nav-subtitle {
  display: block;
  font-family: var(--font-p);
  font-size: 13px;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.single-nav-item .nav-title {
  display: inline-block;
  font-family: var(--font-p);
  font-weight: 700;
  color: #a34c25;
  font-size: 16px;
}

.single-nav-item a:hover .nav-title {
  color: #7c360e;
}

.sitemap-section {
  background: #fff;
}

.sitemap-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.sitemap-title {
  font-family: var(--lb-bold);
  color: #0c3b5f;
  font-size: clamp(20px, 4vw, 26px);
  text-transform: uppercase;
}

.sitemap-subtitle {
  font-family: var(--font-p);
  font-weight: 700;
  color: #0c3b5f;
  font-size: 16px;
  margin-bottom: 8px;
}

.sitemap-list ul {
  list-style: none;
  padding-left: 0;
}

.sitemap-list ul ul {
  margin-left: 18px;
}

.sitemap-list a {
  font-family: var(--font-p);
  font-size: 16px;
  color: #2d434f;
  position: relative;
  padding-left: 12px;
  display: inline-block;
}

.sitemap-list a::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #0c8ab8;
  font-size: 10px;
  top: 2px;
}

.sitemap-list a:hover {
  color: #0c8ab8;
}

.sitemap-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(12, 59, 95, 0.08);
}

.sitemap-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .donation-frame {
    border-width: 4px;
  }

  .donation-frame-inner {
    min-height: 0;
    padding: 16px;
  }

  .donation-iframe-wrapper iframe {
    min-height: 520px;
  }
}

.mission-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(12, 59, 95, 0.08);
  padding: 26px 22px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mission-card-icon img {
  max-width: 75px;
  max-height: 75px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.mission-card-title {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 25px);
  color: #000;
}

.mission-card-text,
.mission-card-text p {
  font-family: var(--font-p);
  color: #2d434f;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.55;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(12, 59, 95, 0.14);
}


/* Board of directors page */

.board-section {
  background: #fdf6ef;
  /* padding: 50px 20px 80px !important; */
  overflow: visible;
}

.board-section .container {
  max-width: 1420px !important;
}

.board-filter {
  border-bottom: 2px solid #e6d7c7;
  padding-bottom: 6px;
}

.board-member-title {
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 30px);
  text-align: left;
  margin: 30px 0 10px;
  color: var(--sec-color);
}


.board-filter-btn {
  background: none;
  border: none;
  font-family: var(--lb-bold);
  font-weight: 700;
  font-size: clamp(12px, 4vw, 30px);
  color: #000;
  position: relative;
  padding: 4px 0;
}

.board-filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #0c3b5f;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.board-filter-btn.active {
  color: #0c3b5f;
}

.board-filter-btn.active::after {
  width: 100%;
}

.board-grid {
  margin-top: 10px;
  padding-bottom: 20px;
  overflow: visible;
}

.board-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(12, 59, 95, 0.08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f1e9df;
  padding: 16px 16px 18px;
  transition: all 0.3s ease;
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(12, 59, 95, 0.14);
}


.board-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 240px;
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
}

.board-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}


.board-card-body {
  padding: 16px;
  text-align: center;
}

.board-name {
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  color: #2c2927;
  margin-bottom: 6px;
}

.board-designation {
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(14px, 3vw, 18px);
  color: #1383ac;
  margin-bottom: 8px;
}

.board-details p {
  font-family: var(--font-p);
  font-size: clamp(14px, 3vw, 18px);
  color: #000;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {

  .board-card-image {
    min-height: 220px;
  }
}

.map-iframe-wrapper {
  height: 450px;
}

.map-iframe-wrapper iframe {
  width: 100vw;
  height: 100%;
}

/* Trauma Training Section */

.trauma-top-section {
  background: #fff9f4;
}

.trauma-top-section-heading {
  font-family: var(--font-p);
  font-size: clamp(21px, 3vw, 30px);
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 12px;
}

.trauma-top-section-desc p {
  font-family: var(--font-p);
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Navy Trains Section */
.navy-trains-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #0c3c60;
}

.navy-trains-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
  opacity: 0.42;
}

.navy-trains-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 60, 96, 0.9);
  opacity: 0.42;
}

.navy-trains-section .container {
  position: relative;
  z-index: 2;
}


.navy-trains-desc p {
  color: #fff9f4;
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 18px);
  line-height: 30px;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.navy-trains-card {
  padding: 40px 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 5px 30px rgba(1, 50, 68, 0.12));
  background-color: #bbe3f1;
  border-bottom: 3px solid #e8f1f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    border-color 0.3s ease;
}

.navy-trains-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0px 12px 20px rgba(236, 236, 236, 0.22));
  border-bottom-color: var(--sec-color);
}


.navy-trains-card-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.navy-trains-card-title {
  color: var(--dark);
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(21px, 3vw, 28px);
}

.navy-trains-card-text p {
  color: #000;
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 30px;
}

.navy-trains-bottom-text p {
  color: #fff9f4;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.program-action-box {
  background: #d8715ccb;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  color: #fff;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-action-box h1 {
  font-family: var(--lb-bold);
  color: var(--background);
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  margin: 25px 0 15px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.program-action-box h3,
.program-action-box h4 {
  color: #fff;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.program-action-box p {
  color: #fff;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.core-experiences {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.core-experience-item {
  display: flex;
  align-items: center;
  color: #e8f3ff;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.45;
}

.core-experience-item i {
  color: #ffffff;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}


.who-trains-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.who-trains-copy h1 {
  font-family: var(--lb-bold);
  color: var(--background);
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  margin: 5px 0 15px;
}

.who-trains-copy h2,
.who-trains-copy h3 {
  color: #fff9f4;
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 12px;
}

.who-trains-copy p,
.who-trains-copy li {
  color: #fff9f4;
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(15px, 3vw, 18px);
  line-height: 30px;
}

.who-trains-copy ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.who-trains-copy li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.who-trains-copy li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff9f4;
}

.philantrophy_matters_desc h3 {
  color: #000000;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 12px;
}

.philantrophy_matters_desc p {
  color: #000000;
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.difference-section {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* FULL overlay */
.difference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      #d9806f 0%,
      rgba(217, 128, 111, 0.75) 50%,
      rgba(217, 128, 111, 0.55) 100%);
  z-index: 1;
}

/* Content stays above overlay */
.difference-overlay {
  position: relative;
  z-index: 2;
}

.difference-section .row {
  max-width: 1200px;
  margin: auto;
}

.difference-left,
.difference-right {
  color: #ffffff;
}

.difference-left h1,
.difference-left h2 {
  font-family: var(--lb-bold);
  color: var(--background);
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  margin: 5px 0 15px;
}

.difference-right {
  font-size: 16px;
  line-height: 1.7;
}

.difference-right p {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(18px, 3vw, 24px);
  line-height: clamp(28px, 3vw, 30px);
  margin-bottom: 30px;
}


.difference-right h3 {
  color: #fff;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(21px, 3vw, 30px);
  line-height: clamp(30px, 3vw, 44px);
  margin-bottom: 12px;
}


@media (max-width: 991.98px) {
  .navy-trains-card {
    height: 100%;
  }

  .who-trains-here {
    padding: 18px;
  }

  .difference-section {
    background-attachment: scroll;
    min-height: 450px;
  }
}

@media (max-width: 575.98px) {
  .navy-trains-section {
    padding: 50px 0;
  }

  .navy-trains-card {
    padding: 18px 16px;
  }

  .difference-section {
    background-attachment: scroll;
    min-height: 450px;
  }
}

/* Footer Design */

.counter-section {
  background: linear-gradient(to bottom, #fff9f4 0%, #fff9f4 30%, #fff 90%, #fff 100%);
}


.lag-footer .footer-main {
  background-color: #0c3c60;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 0 40px;
  position: relative;
}

.lag-footer .footer-title {
  font-size: clamp(17px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--lb-bold);
}

.lag-footer .footer-list {
  padding-left: 0;
  margin: 0;
}

.lag-footer .footer-list li+li {
  margin-top: 10px;
}

.lag-footer .footer-list a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.lag-footer .footer-list a:hover {
  color: var(--yellow);
  opacity: 1;
}

.lag-footer .footer-donate-btn {
  background: #f5a623;
  border: none;
  border-radius: 8px;
  color: #0c3c60;
  font-weight: 700;
  min-width: 160px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lag-footer .footer-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lag-footer .social-circle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lag-footer .social-circle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

.lag-footer .social-circle i {
  font-size: 16px;
}

.lag-footer .social-circle.social-facebook:hover {
  background: linear-gradient(45deg, #3b5998, #1877f2, #00a2ff);
  border-color: transparent;
}

.lag-footer .social-circle.social-instagram:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-color: transparent;
}

.lag-footer .social-circle.social-youtube:hover {
  background: linear-gradient(135deg, #ff0000, #c70000);
  border-color: transparent;
}

.lag-footer .social-circle.social-twitter:hover {
  background: linear-gradient(135deg, #0f0f0f, #222);
  border-color: transparent;
}

.lag-footer .social-circle.social-linkedin:hover {
  background: linear-gradient(45deg, #0a66c2, #0077b5, #004182);
  border-color: transparent;
}

.lag-footer .footer-contact li {
  margin-bottom: 12px;
  color: #fff;
  align-items: center;
}

.lag-footer .footer-contact a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.lag-footer .footer-contact a:hover {
  color: var(--yellow);
  opacity: 1;
}

.lag-footer .footer-contact {
  padding-left: 0;
  margin: 0;
}

.lag-footer .contact-icon {
  color: #fff;
  min-width: 42px;
  min-height: 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lag-footer .foundation-note {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.lag-footer .footer-bottom {
  background: #0a6c97;
  color: #fff;
  padding: 14px 0;
}

.lag-footer .footer-bottom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.lag-footer .footer-bottom-menu li a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
}

.lag-footer .footer-bottom-menu li {
  position: relative;
}

.lag-footer .footer-bottom-menu li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.7);
  margin-left: 10px;
}

.lag-footer .footer-bottom-menu li a:hover {
  color: var(--yellow);
  opacity: 1;
}

@media (max-width: 767.98px) {
  .lag-footer .footer-main {
    padding: 50px 0 30px;
  }

  .lag-footer .footer-brand {
    text-align: center;
  }

  .lag-footer .footer-bottom-menu {
    justify-content: center;
    gap: 10px;
  }

  .lag-footer .footer-bottom-menu li:not(:last-child)::after {
    margin-left: 10px;
  }
}




.error-404-content p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 18px);
  color: #2d434f;
  line-height: 1.65;
  margin-bottom: 18px;
}


/* ================================
   FOOTER COPYRIGHT BOTTOM
================================ */

.footer-copyright-bottom {
  background-color: #07273f;
  /* deep navy */
  color: #ffffff;
  font-size: clamp(12px, 3vw, 15px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* inner spacing */
.footer-copyright-bottom .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* copyright text */
.footer-copyright-bottom .copyright,
.footer-copyright-bottom p {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(12px, 3vw, 15px);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.footer-copyright-bottom .copyright a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(12px, 3vw, 15px);
  color: #f5a623;
  transition: all 0.3s ease-in-out;
}

.footer-copyright-bottom .copyright a:hover {
  color: #e15e1d;
}

/* links */
.footer-copyright-bottom a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(12px, 3vw, 15px);
  color: #f5a623;
  transition: all 0.3s ease-in-out;
}

/* hover accent */
.footer-copyright-bottom a:hover {
  color: #e15e1d;
}



/* ================================
   RESPONSIVE
================================ */

@media (max-width: 767px) {
  .footer-copyright-bottom {
    text-align: center;
  }

  .footer-copyright-bottom p {
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .footer-copyright-bottom {
    font-size: 14px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 0px !important;
  height: 0px !important;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form br {
  display: none !important;
}

.common-form br {
  display: none !important;
}