* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  overflow-y: scroll;
}

body {
  background: linear-gradient(180deg, #fafaf7 0%, #f7f6f2 50%, #f3f1eb 100%);
}
a {
  text-decoration: none;
}
/* #nav-container {
  width: 100% !important;
  background: white !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04) !important;
  position: fixed !important;
  top: 0 !important;
  z-index: 1000 !important;
} */
.container {
  width: 100%;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* ===== TOP NAV ===== */
.top-nav {
  background: #2c6570;
  padding: 0.6rem 10rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  gap: 0.5rem 1rem;
  font-family: "Source Sans 3", sans-serif;
}

.top-nav .left-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-nav .left-trust i {
  font-size: 1rem;
  color: #ffd966;
}

.top-nav .left-trust span a {
  font-weight: 500;
  color: #fff;
  opacity: 80%;
  transition: all ease 0.3s;
  font-size: 14px;
}
.top-nav .left-trust span a:hover {
  opacity: 100%;
}
.top-nav .right-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.top-nav .right-top a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-nav .right-top a:hover {
  color: #f0e6b0;
}
.top-nav .right-top .phone {
  font-weight: 500;
}
.top-nav .right-top .divider {
  opacity: 0.4;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: white;
  padding: 0.7rem 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);

  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  position: sticky; /* Add sticky */
  top: 0; /* Stick to top */
  z-index: 1000; /* High z-index */
  font-family: "Source Sans 3", sans-serif;
}
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

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

/* logo */
.left-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.left-logo img {
  height: 58px;
  width: auto;
  display: block;
}
.left-logo .logo-fallback {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3e47;
  background: #e8f0f2;
  padding: 0.2rem 1rem;
  border-radius: 40px;
}
.left-logo .logo-fallback span {
  color: #c8893d;
}

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: 0.2s;
  order: 3;
}

/* ===== CENTER NAV ===== */
.center-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}

.center-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.center-nav ul li {
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 40px;
  transition: 0.15s;
  font-weight: 500;
  color: #1f2e35;
  cursor: default;
}

.center-nav ul li a {
  text-decoration: none;
  color: #1f2e35;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.center-nav ul li a:hover {
  color: #d08700;
}

.center-nav ul li a i {
  font-size: 0.7rem;
  color: #6b7e86;
  transition: 0.2s;
}
.dropdown.open > a i {
  transform: rotate(180deg) !important;
}
.center-nav ul #dropdownAbout a {
  cursor: default !important;
}
.center-nav ul #dropdownServices a {
  cursor: default !important;
}
/* dropdown */
.dropdown .sub-items {
  display: none;
  position: absolute;
  top: 2.7rem;
  left: 0;
  background: white;
  min-width: 210px;
  padding: 0.6rem 0;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef3f5;
  z-index: 100;
  flex-direction: column;
  list-style: none;
}

.dropdown .sub-items li {
  padding: 0.4rem 1.2rem;
  border-radius: 0;
  width: 100%;
  cursor: pointer !important;
}
.dropdown .sub-items li a {
  font-weight: 400;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.2rem 0;
  display: block;
}
.dropdown .sub-items li:hover {
  background: #f0e6b0;
  color: #d08700;
}

/* show dropdown on hover (desktop) */
.dropdown.open .sub-items {
  display: flex !important;
}
/* ===== right button ===== */
.right-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.right-nav a {
  text-decoration: none;
}
.right-nav button {
  background: #c8893d;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.8rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.right-nav button:hover {
  opacity: 90%;
}
.left-logo .mobile-logo {
  display: none !important;
}

.left-logo .desktop-logo {
  display: block !important;
}

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

/* =========================================================
   BRIGHT EAGLE — MOBILE MENU
   ========================================================= */
@media (max-width: 1400px) {
  .top-nav {
    padding: 1rem 2rem;
  }
  .right-nav {
    display: none;
  }
  .main-nav {
    padding: 0.7rem 2rem;
  }
}
@media (max-width: 1136px) {
  #nav-container .main-nav.mobile-fixed {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;

    z-index: 9999999 !important;

    margin: 0 !important;

    background: #2c6570 !important;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
  }

  #nav-container .top-nav {
    position: relative !important;
  }
  .left-logo .desktop-logo {
    display: none !important;
  }

  .left-logo .mobile-logo {
    display: block !important;
    height: 60px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
  }
  /* =====================================================
       TOP BAR
       ===================================================== */

  .top-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;
    height: 32px !important;

    padding: 0 12px !important;

    background: #2c6570 !important;

    box-sizing: border-box !important;
  }

  /* Trust text */
  .top-nav .left-trust {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .top-nav .left-trust a {
    color: #ffffff !important;

    font-size: 11px !important;
    line-height: 1 !important;

    font-weight: 500 !important;

    text-decoration: none !important;
  }

  /* Right phone */
  .top-nav .right-top {
    display: flex !important;

    align-items: center !important;

    gap: 0 !important;

    margin: 0 !important;
  }

  /* Hide Client Portal + Careers */
  .top-nav .right-top .top-details,
  .top-nav .right-top .divider {
    display: none !important;
  }

  .top-nav .right-top .phone {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #fdc700 !important;

    font-size: 11px !important;
    font-weight: 700 !important;

    text-decoration: none !important;
  }

  /* =====================================================
       MAIN HEADER
       ===================================================== */

  .main-nav {
    position: relative !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    flex-wrap: wrap !important;

    width: 100% !important;

    min-height: 58px !important;

    padding: 7px 18px !important;

    background: #2c6570 !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;

    box-sizing: border-box !important;
  }

  /* =====================================================
       LOGO
       ===================================================== */

  .left-logo {
    order: 1 !important;

    display: flex !important;

    align-items: center !important;

    flex: 0 0 auto !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .left-logo a {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .left-logo img {
    display: block !important;

    width: auto !important;

    height: 43px !important;

    max-width: 175px !important;

    object-fit: contain !important;
  }

  /* =====================================================
       HAMBURGER
       IMPORTANT: .hamburger IS THE BUTTON
       ===================================================== */

  .hamburger {
    order: 2 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 35px !important;

    width: 35px !important;
    height: 35px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    color: #ffffff !important;

    font-size: 19px !important;

    cursor: pointer !important;
  }

  .hamburger:hover,
  .hamburger:focus,
  .hamburger:active {
    background: transparent !important;

    color: #ffffff !important;

    border: none !important;

    box-shadow: none !important;

    outline: none !important;
  }

  .hamburger i {
    color: #ffffff !important;

    font-size: 19px !important;
  }

  /* =====================================================
       CENTER NAV
       ===================================================== */

  .center-nav {
    order: 3 !important;

    display: none !important;

    flex: 0 0 100% !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #2c6570 !important;

    border: none !important;

    box-sizing: border-box !important;
  }

  .center-nav.open {
    display: block !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  /* =====================================================
       MAIN UL
       ===================================================== */

  .center-nav > ul {
    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 10px 12px 0 !important;

    gap: 0 !important;

    list-style: none !important;

    box-sizing: border-box !important;
  }

  /* =====================================================
       MAIN MENU ITEMS
       ===================================================== */

  .center-nav > ul > li {
    position: relative !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: stretch !important;

    justify-content: flex-start !important;

    width: 100% !important;

    min-height: 49px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;

    border-radius: 0 !important;

    box-sizing: border-box !important;
  }

  /* =====================================================
       MAIN LINKS
       ===================================================== */

  .center-nav > ul > li > a {
    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    width: 100% !important;

    min-height: 49px !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: 13px !important;

    line-height: 1.3 !important;

    font-weight: 600 !important;

    text-decoration: none !important;

    box-sizing: border-box !important;
  }

  .center-nav > ul > li > a:hover {
    color: #ffffff !important;

    background: transparent !important;
  }

  /* =====================================================
       DROPDOWN
       ===================================================== */

  .dropdown .sub-items {
    position: static !important;

    display: none !important;

    flex-direction: column !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 0 8px 0 !important;

    padding: 3px 0 5px 16px !important;

    background: transparent !important;

    border: none !important;

    border-left: 2px solid #c8893d !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    list-style: none !important;

    box-sizing: border-box !important;
  }

  /* OPEN */
  .dropdown.open .sub-items {
    display: flex !important;
  }

  /* =====================================================
       SUB ITEMS
       ===================================================== */

  .dropdown .sub-items li {
    display: block !important;

    width: 100% !important;

    min-height: 36px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
  }

  .dropdown .sub-items li a {
    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-height: 36px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 13px !important;

    line-height: 1.4 !important;

    font-weight: 500 !important;

    text-decoration: none !important;
  }

  .dropdown .sub-items li a:hover {
    color: #ffffff !important;

    background: transparent !important;
  }

  /* =====================================================
       DISABLE HOVER DROPDOWN
       ===================================================== */

  .dropdown:hover .sub-items {
    display: none !important;
  }

  .dropdown.open:hover .sub-items {
    display: flex !important;
  }

  /* =====================================================
       HIDE DESKTOP CTA BY DEFAULT
       ===================================================== */

  .right-nav {
    display: none !important;

    order: 4 !important;

    flex: 0 0 100% !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 12px 10px !important;

    box-sizing: border-box !important;
  }

  /* =====================================================
       SHOW REAL CTA WHEN MENU IS OPEN
       ===================================================== */

  .center-nav.open ~ .right-nav {
    display: block !important;
  }

  .right-nav a {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    text-decoration: none !important;
  }

  .right-nav button {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 100% !important;

    height: 40px !important;

    margin: 16px 0 0 0 !important;

    padding: 0 15px !important;

    background: #c8893d !important;

    border: none !important;

    border-radius: 4px !important;

    color: #ffffff !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    line-height: 1 !important;

    box-shadow: none !important;

    cursor: pointer !important;
  }

  .right-nav button:hover,
  .right-nav button:focus,
  .right-nav button:active {
    background: #c8893d !important;

    color: #ffffff !important;

    box-shadow: none !important;
  }

  /* =====================================================
       NO UNWANTED HOVER BACKGROUND
       ===================================================== */

  .center-nav li:hover,
  .center-nav a:hover {
    background: transparent !important;
  }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {
  .top-nav {
    height: 32px !important;

    padding: 0 12px !important;
  }

  .top-nav .left-trust a {
    font-size: 10px !important;
  }

  .top-nav .right-top .phone {
    font-size: 10px !important;
  }

  .main-nav {
    min-height: 57px !important;

    padding: 7px 12px !important;
  }

  .left-logo img {
    height: 40px !important;

    max-width: 165px !important;
  }

  .hamburger {
    flex-basis: 34px !important;

    width: 34px !important;
    height: 34px !important;
  }

  .center-nav > ul {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* values-section */
/* ===== VALUES SECTION – bg: #2C6570 ===== */
.values-section {
  background: #2c6570;
  padding: 1rem 1.5rem;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* no gap between cards, border lines act as separators */
}

/* each value card – icon left, text right */
.value-card {
  background: transparent;
  padding: 2rem 2rem 2rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
  min-height: 110px;
}

/* remove border from last card */
.value-card:last-child {
  border-right: none;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* icon – left side */
.value-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: #fdc700;
  width: 2.2rem;
  text-align: center;
  margin-top: 0.1rem;
}

/* text – right side */
.value-text {
  flex: 1;
}

.value-title a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

.value-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

/* ===== responsive ===== */
@media (max-width: 1136px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* border on right for 2-column layout */
  .value-card:nth-child(2n) {
    border-right: none;
  }
  .value-card:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* bottom border for rows */
  .value-card:nth-child(1),
  .value-card:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.8rem;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  .value-card:last-child {
    border-bottom: none;
  }
  .value-title {
    font-size: 1.05rem;
  }
  .value-desc {
    font-size: 0.9rem;
  }
  .value-icon {
    font-size: 1.5rem;
    width: 1.8rem;
  }
}

/* ===== OUR APPROACH SECTION ===== */
.approach-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* header */
.approach-header {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-header .badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: "Oswald", sans-serif;
}

.approach-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.approach-header h2 span {
  color: #c8893d;
}

.approach-header .subhead {
  font-size: 1.1rem;
  color: #3a5a67;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Source Sans 3", sans-serif;
}

/* grid – 4 columns */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: #ffffff;
  padding: 2rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f5f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.card-icon {
  font-size: 2rem;
  color: #c8893d;
  margin-bottom: 0.8rem;
  display: block;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e38;
  margin-bottom: 0.4rem;
  font-family: "Source Sans 3", sans-serif;
}

.card-desc {
  font-size: 0.95rem;
  color: #3a5a67;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .approach-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .approach-header h2 {
    font-size: 1.8rem;
  }
  .approach-header .subhead {
    font-size: 1rem;
  }
  .approach-card {
    padding: 1.5rem;
  }
}

/* ===== OUR SERVICES SECTION ===== */
.services-section {
  max-width: 100%;
  background-color: #fff;
  margin: 4rem auto;
  padding: 7rem 18rem;
}

/* header */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  gap: 1rem 2rem;
}

.services-header-left .badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-family: "Oswald", sans-serif;
}

.services-header-left h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.services-header-left h2 span {
  color: #c8893d;
}

.services-header-right a {
  text-decoration: none;
  font-weight: 600;
  color: #c8893d;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  font-family: "Source Sans 3", sans-serif;

  padding-bottom: 0.2rem;
}

.services-header-right a:hover {
  color: #2c6570;
  border-bottom-color: #2c6570;
}

.services-header-right a i {
  transition: 0.2s;
}
.services-header-right a:hover i {
  transform: translateX(4px);
}

/* grid – 4 columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem 1.8rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f5f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.service-icon {
  font-size: 2rem;
  color: #c8893d;
  margin-bottom: 0.8rem;
  display: block;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e38;
  margin-bottom: 0.6rem;
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  color: #3a5a67;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  flex: 1;
  margin-bottom: 1.2rem;
}

.service-link {
  text-decoration: none;
  font-weight: 600;
  color: #c8893d;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.2s;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.1rem;
  font-family: "Source Sans 3", sans-serif;
}

.service-link:hover {
  color: #c8893d;
  border-bottom-color: #c8893d;
}

.service-link i {
  transition: 0.2s;
}
.service-link:hover i {
  transform: translateX(4px);
}

/* ===== responsive ===== */
@media (max-width: 1300px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .services-header-left h2 {
    font-size: 2.2rem;
  }
  .services-section {
    max-width: 100%;
    background-color: #fff;
    margin: 4rem auto;
    padding: 7rem 2rem !important;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-header-left h2 {
    font-size: 1.8rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-title {
    font-size: 1.05rem;
  }
}

/* ===== WHO WE SERVE SECTION – left heading + text + button | right 4 boxes ===== */
.serve-section {
  max-width: 100%;
  padding: 4rem 18rem;
}

.serve-wrapper {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

/* ---- LEFT SIDE: heading, text, button ---- */
.serve-left {
  display: flex;
  width: 50%;
  flex-direction: column;
}

.serve-left .badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-family: "Oswald", sans-serif;
}

.serve-left h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.serve-left h2 span {
  color: #c8893d;
}

.serve-left .desc {
  font-size: 1.1rem;
  color: #3a5a67;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-family: "Source Sans 3", sans-serif;
}

.serve-left .approach-link {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  background: #13263a;
  padding: 0.7rem 2.2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.2s;
  align-self: flex-start;
  border: none;
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
  cursor: pointer;
}

.serve-left .approach-link:hover {
  --tw-brightness: brightness(90%);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,)
    var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,)
    var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.serve-left .approach-link i {
  transition: 0.2s;
}
.serve-left .approach-link:hover i {
  transform: translateX(4px);
}

/* ---- RIGHT SIDE: 4 info boxes (2x2 grid) ---- */
.serve-right {
  width: 50%;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.serve-box {
  background: #ffffff;
  padding: 2.5rem 1.5rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f5f8;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.serve-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.serve-box .box-icon {
  font-size: 1.6rem;
  color: #c8893d;
  margin-bottom: 0.5rem;
  display: block;
}
.serve-box .box-icon img {
  border-radius: 100px;
}

.serve-box .box-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e38;
  margin-bottom: 0.3rem;
  font-family: "Source Sans 3", sans-serif;
}

.serve-box .box-desc {
  font-size: 1rem;
  color: #3a5a67;
  line-height: 1.5;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .serve-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .serve-left {
    flex: 1 1 auto;
    text-align: left;
  }
  .serve-left .desc {
    max-width: 100%;
  }
  .serve-left h2 {
    font-size: 2.2rem;
  }
  .serve-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .serve-left h2 {
    font-size: 1.8rem;
  }
  .serve-left .desc {
    font-size: 1rem;
  }
  .serve-right {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .serve-box {
    padding: 1.2rem;
  }
}

/* ===== WHY CHOOSE US SECTION – image left, text right ===== */
.choose-section {
  max-width: 100%;
  padding: 0 18rem;
  background-color: #13263a;
}

.choose-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-direction: row-reverse;
  padding: 2.5rem 0;
}

/* ---- LEFT: IMAGE ---- */

/* ---- RIGHT: TEXT CONTENT ---- */
.choose-content {
  flex: 1;
  padding: 3rem 1.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.choose-content .badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8a9bb0;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-family: "Oswald", sans-serif;
}

.choose-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.choose-content h2 span {
  color: #c8893d;
}

.choose-content .intro-text {
  font-size: 1.05rem;
  color: #8a9bb0;
  line-height: 1.6;
  margin: 1.8rem 0;
  max-width: 540px;
  font-family: "Source Sans 3", sans-serif;
}

/* ---- 3 feature items (icon + text) ---- */
.feature-item {
  display: flex;
  gap: 1.8rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #c8893d;
  width: 2.2rem;
  text-align: center;
  margin-top: 0.1rem;
}
.feature-icon img {
  width: 5rem !important;
  height: 2.6rem !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

.feature-text .feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.1rem;
  font-family: "Source Sans 3", sans-serif !important;
}

.feature-text .feature-desc {
  font-size: 0.95rem;
  color: #8a9bb0 !important;
  font-family: "Source Sans 3", sans-serif !important;
  line-height: 1.5;
}

/* ---- bottom badge (Certified Woman-Owned) ---- */
.cert-badge {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1.5rem 0.5rem 1.2rem;
  border-radius: 40px;
  border: 1px solid #e2ebf0;
  align-self: flex-start;
}

.cert-badge i {
  font-size: 1.2rem;
  color: #2c6570;
}

.cert-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3e47;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .choose-wrapper {
    flex-direction: column;
  }
  .choose-image {
    flex: 0 0 700px;
    min-height: 260px;
    width: 100%;
  }
  .choose-image img {
    object-fit: cover;
  }
  .choose-content {
    padding: 2rem 2rem 2.5rem;
  }
  .choose-content h2 {
    font-size: 2rem;
  }
  .choose-content .intro-text {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .choose-content {
    padding: 1.5rem;
  }
  .choose-content h2 {
    font-size: 1.6rem;
  }
  .choose-content .intro-text {
    font-size: 0.95rem;
  }
  .feature-item {
    gap: 0.8rem;
  }
  .feature-icon {
    font-size: 1.2rem;
    width: 1.8rem;
  }
  .feature-text .feature-title {
    font-size: 0.95rem;
  }
  .feature-text .feature-desc {
    font-size: 0.88rem;
  }
  .choose-image {
    flex: 0 0 100%;
    min-height: 180px;
  }
  .cert-badge {
    padding: 0.4rem 1rem 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ===== CLIENT SUCCESS / TESTIMONIALS SECTION ===== */
.testimonials-section {
  max-width: 100%;
  padding: 4rem 22rem;
  background-color: #fff;
}

/* header */
.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-header .badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-family: "Oswald", sans-serif;
}

.testimonials-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.testimonials-header h2 span {
  color: #c8893d;
}

/* grid: 3 columns, 2 rows */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: linear-gradient(100deg, #fafaf8 100%, #f7f6f2 100%);

  padding: 1.8rem 1.8rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid #eee;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

/* quote icon */
.testimonial-card .quote-icon {
  font-size: 1.4rem;
  color: #c8893d;
  opacity: 0.6;
}
.star-img {
  padding-bottom: 5px;
}
.client-info h3 {
  margin-top: -10px;
  font-size: 19px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
}
/* testimonial text */
.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: #2b4a57;
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
  padding-top: 8px;
  margin-bottom: 1rem;
  font-family: "Source Sans 3", sans-serif;
}

/* client name / firm */
.testimonial-card .client-info {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a2e38;
  border-top: 1px solid #f0f5f8;
  padding-top: 0.8rem;
  margin-top: auto;
  font-family: "Source Sans 3", sans-serif;
}

.testimonial-card .client-info .firm {
  font-weight: 400;
  color: #3a5a67;
  display: block;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonials-header h2 {
    font-size: 1.8rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-card .testimonial-text {
    font-size: 0.9rem;
  }
}

/* ===== ABOUT US SECTION – image left, text right ===== */
.about-us {
  max-width: 100%;
  padding: 0rem 18rem;
}

.about-wrapper {
  display: flex;
  gap: 0rem;
  flex-direction: row-reverse;
}

/* ---- LEFT: IMAGE ---- */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  padding-top: 2rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- RIGHT: TEXT CONTENT ---- */
.about-content {
  flex: 1;
  padding: 3rem 0rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-family: "Oswald", sans-serif;
}

.about-content h2 {
  font-size: 3.4rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.about-content h2 span {
  color: #c8893d;
}

.about-content .intro-text {
  font-size: 1.05rem;
  color: #3a5a67;
  line-height: 1.6;
  margin-bottom: 0.4rem;
  max-width: 580px;
}

/* ---- founder info ---- */

.founder-avatar img {
  object-fit: cover;
}

/* ---- 3 feature items (icon + text) ---- */
.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #c8893d;
  width: 2.2rem;
  text-align: center;
  margin-top: 0.1rem;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.feature-text .feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e38;
  margin-bottom: 0.1rem;
  font-family: "Playfair Display", serif;
}

.feature-text .feature-desc {
  font-size: 0.95rem;
  color: #3a5a67;
  line-height: 1.5;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .about-wrapper {
    flex-direction: column !important;
  }

  .about-image {
    width: 30% !important;
    min-height: 260px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: -60px !important;

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

    order: 2 !important;

    text-align: center !important;
  }

  .about-image img {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;

    margin-left: auto !important;
    margin-right: auto !important;

    object-fit: cover !important;
    object-position: center center !important;
  }

  .about-content {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content .intro-text {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {
  .about-content {
    padding: 1.5rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .about-content .intro-text {
    font-size: 0.95rem;
  }

  .feature-item {
    gap: 0.8rem;
  }

  .feature-icon {
    font-size: 1.2rem;
    width: 1.8rem;
  }

  .feature-text .feature-title {
    font-size: 0.95rem;
  }

  .feature-text .feature-desc {
    font-size: 0.88rem;
  }

  /* CENTER IMAGE */
  .about-image {
    width: 70% !important;
    min-height: 180px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: -60px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .about-image img {
    width: 100% !important;
    height: auto !important;

    display: block !important;

    margin: 0 auto !important;

    object-fit: cover !important;
    object-position: center center !important;
  }

  .founder-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .founder-avatar {
    width: 100%;
    height: auto;
    font-size: 1.4rem;
  }
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.overview-section {
  max-width: 100%;
  background-color: #fff;
  margin: 4rem auto;
}

.overview-wrapper {
  padding: 5rem 18rem;
}

/* ---- header: badge + title + desc ---- */
.overview-header {
  margin-bottom: 2.5rem;
}

.overview-header .badge {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c8893d;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-family: "Oswald", sans-serif;
}

.overview-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.overview-header .desc {
  font-size: 1.05rem;
  color: #3a5a67;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 20px;
  font-family: "Source Sans 3", sans-serif;
}
.believe-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 600;
}
/* ---- main content: left (3 boxes grid) + right (text) ---- */
.overview-main {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  margin-top: 1rem;
}

/* LEFT: 3 boxes in a grid (3 columns) with left border */
.overview-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.overview-box {
  padding: 1.5rem 1.5rem 1.5rem 1.2rem;
  border-radius: 0 12px 12px 0;
  border-left: 4px solid #c8893d;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.overview-box .box-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Oswald", sans-serif;
  margin-bottom: 0.8rem;
}

.overview-box .box-title span {
  color: #c8893d;
}

.overview-box .box-desc {
  font-size: 1rem;
  color: #6a7282;
  line-height: 1.5;
  font-family: "Source Sans 3", sans-serif;
}

.overview-box .box-desc .highlight {
  font-weight: 600;
  color: #c8893d;
  padding-right: 5px;
}

/* RIGHT: text content */
.overview-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-right .col-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.overview-right .col-title span {
  color: #c8893d;
}

.overview-right p {
  font-size: 1rem;
  color: #2b4a57;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.overview-right p:last-child {
  margin-bottom: 0;
}

.overview-right .highlight-text {
  font-weight: 600;
  color: #1a2e38;
}

.overview-right .quote-text {
  font-size: 0.95rem;
  color: #3a5a67;
  font-style: italic;
  padding: 0.8rem 0 0.5rem 1.2rem;
  border-left: 3px solid #c8893d;
  margin-top: 0.5rem;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .overview-wrapper {
    padding: 2.5rem 2rem;
  }
  .overview-main {
    flex-direction: column;
    gap: 2rem;
  }
  .overview-left {
    flex: 1 1 auto;
    grid-template-columns: repeat(3, 1fr);
  }
  .overview-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .overview-left {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .overview-wrapper {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .overview-header h2 {
    font-size: 1.8rem;
  }
  .overview-header .desc {
    font-size: 0.95rem;
  }
  .overview-left {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .overview-box {
    padding: 1.2rem 1.2rem 1.2rem 1rem;
  }
  .overview-box .box-title {
    font-size: 0.95rem;
  }
  .overview-box .box-desc {
    font-size: 0.88rem;
  }
  .overview-right p {
    font-size: 0.95rem;
  }
  .overview-right .col-title {
    font-size: 1.1rem;
  }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  max-width: 100%;
  padding: 0 18rem;
}

/* ---- TOP: image left + content right ---- */
.founder-top {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* LEFT: IMAGE */
.founder-image {
  display: flex;
  align-items: baseline;
  margin-top: 50px;
  width: 40%;
}

.founder-image img {
  object-fit: cover;
  display: block;
}

/* RIGHT: CONTENT */
.founder-content {
  flex: 1;
  padding: 2.5rem 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
}

.founder-content .name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  color: #c8893d;
}
.founder-content .badge {
  color: #c8893d;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-content .title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2e38;
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-content p {
  font-size: 0.98rem;
  color: #2b4a57;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-family: "Source Sans 3", sans-serif;
}

.founder-content p:last-of-type {
  margin-bottom: 0;
}

/* ---- BOTTOM: 2 boxes (Mission & Vision) ---- */
.founder-bottom {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid #f0f5f8;
}

.mission-box,
.vision-box {
  padding: 2rem 2.5rem;
  background: linear-gradient(100deg, #fafaf8 100%, #f7f6f2 100%);
  border-radius: 10px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.mission-box .box-label,
.vision-box .box-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #2c6570;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.icon-diana {
  margin: 10px 0;
}
.mission-box .box-title,
.vision-box .box-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2e38;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.3rem;
}

.mission-box .box-title span,
.vision-box .box-title span {
  color: #c8893d;
}

.mission-box .box-desc,
.vision-box .box-desc {
  font-size: 0.95rem;
  color: #3a5a67;
  line-height: 1.6;
  font-family: "Source Sans 3", sans-serif;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .founder-top {
    flex-direction: column;
  }
  .founder-image {
    flex: 0 0 300px;
    min-height: 280px;
    width: 100%;
  }
  .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .founder-content {
    padding: 2rem 2rem;
  }
  .founder-content .name {
    font-size: 2rem;
  }
  .founder-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .founder-content {
    padding: 1.5rem;
  }
  .founder-content .name {
    font-size: 1.6rem;
  }
  .founder-content p {
    font-size: 0.92rem;
  }
  .founder-image {
    flex: 0 0 220px;
    min-height: 200px;
  }
  .founder-bottom {
    grid-template-columns: 1fr;
  }
  .mission-box {
    border-right: none;
    border-bottom: 1px solid #f0f5f8;
  }
  .mission-box,
  .vision-box {
    padding: 1.5rem;
  }
  .mission-box .box-title,
  .vision-box .box-title {
    font-size: 1.1rem;
  }
}
/* cta section css */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #faf8f4;

  background: url("images/bg-cta.png") center center / cover no-repeat !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  width: 100%;
  text-align: center;
}

/* Left Image */

.bg-left {
  position: absolute;
  left: -120px;
  bottom: 0;
  width: 520px;
  opacity: 0.1;
  z-index: 0;
}

/* Right Logo */

.bg-right {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  opacity: 0.08;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: auto;
}

.cta-icon {
  width: 64px;
  height: 64px;
  margin: auto;
  border-radius: 50%;
  background: #f5ebdc;
  color: #bf8a3c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 35px;
}

.cta-content h2 {
  font-size: 54px;
  line-height: 1.15;
  color: #1d2c47;
  margin-bottom: 28px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #68758a;
  max-width: 600px;
  margin: 0 auto 45px;
  font-family: "Source Sans 3", sans-serif;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #c38a3b;
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.35s;
  font-family: "Source Sans 3", sans-serif;
}

.cta-btn:hover {
  background: #a87531;
}

.cta-footer {
  margin-top: 40px;
  color: #6e7b8d;
  font-size: 18px;
  font-family: "Source Sans 3", sans-serif;
}

@media (max-width: 991px) {
  .bg-left {
    width: 300px;
    left: -80px;
  }

  .bg-right {
    width: 170px;
    right: -20px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .cta-content p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 80px 20px;
  }

  .bg-left,
  .bg-right {
    display: none;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* contact section */
.contact-section {
  padding: 100px 0;
}

.container-new {
  padding: 100px 18rem;
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: flex-start;
}

.contact-info {
  width: 42%;
}

.sub-title {
  color: #be8b3a;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.contact-info h2 {
  font-size: 42px;
  margin: 15px 0 25px;
  line-height: 1.2;
  color: #1b2940;
  font-family: "Playfair Display", serif;
}

.contact-info h2 span {
  color: #be8b3a;
}

.contact-info p {
  color: #5f6979;
  line-height: 1.9;
  margin-bottom: 35px;
  font-family: "Source Sans 3", sans-serif;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2eadb;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be8b3a;
  flex-shrink: 0;
}

.info-box span {
  font-size: 13px;
  color: #be8b3a;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}

.info-box p {
  margin: 5px 0 0;

  color: #354154;
}

.socials {
  margin-top: 35px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2eadb;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #be8b3a;
  text-decoration: none;
  margin-right: 10px;
}
.socials a:hover {
  background-color: #c98a3e;
  color: #fff;
}

.contact-form {
  width: 46%;
  background: #fff;
  padding: 45px 35px 45px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b2940;
  letter-spacing: 1px;
  font-family: "Oswald", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c58b3c;
  box-shadow: 0 0 0 3px rgba(197, 139, 60, 0.12);
}

textarea {
  height: 140px;
  resize: none;
}

button {
  width: 100%;
  padding: 16px;
  background: #be8b3a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Source Sans 3", sans-serif;
}
button:hover {
  background: #a87531;
}

.select-group {
  position: relative;
}

.select-group select {
  width: 100%;
  height: 48px;
  padding: 0 45px 0 15px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.select-group::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(8px);
  color: #666;
  pointer-events: none;
}
small {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #99a1af;
  font-family: "Source Sans 3", sans-serif;
}

@media (max-width: 991px) {
  .container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 38px;
  }
}

/* Footer Css */

.footer {
  background: #172334;
  color: #9da9bb;
  padding: 5rem 18rem;
  font-family: Arial, Helvetica, sans-serif;
}

/*=========================
TOP
=========================*/

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
  gap: 70px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 380px;
  margin-bottom: 25px;
}

.about p {
  font-size: 17px;
  line-height: 1.8;
  color: #8c99ab;
  max-width: 320px;
  font-family: "Source Sans 3", sans-serif;
}

.footer h4 {
  color: #d19a43;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

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

.footer ul li {
  margin-bottom: 18px;
}

.footer ul li a {
  color: #93a0b3;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.6;
  font-family: "Source Sans 3", sans-serif;
}

.footer ul li a:hover {
  color: #d19a43;
}
.footer ul a li:hover {
  color: #d19a43;
}

/*=========================
CONTACT
=========================*/

.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: #93a0b3;
}

.contact-list i {
  color: #d19a43;
  margin-top: 3px;
  width: 18px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  background: #c88d3d;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;

  transition: 0.35s;
}

.footer-btn:hover {
  background: #af772d;
  transform: translateY(-2px);
}

/*=========================
SOCIAL
=========================*/

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 18px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d19a43;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c88d3d;
  color: #fff;
}

/*=========================
BOTTOM
=========================*/

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 14px;
  color: #6f7d92;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #6f7d92;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

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

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-logo {
    width: 260px;
  }

  .about p {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }
}

/*  */
/* ================= legal & accessibility css ================= */
.lg-hero {
  background: linear-gradient(120deg, #2c4c54 0%, #35606b 45%, #2a4952 100%);
  padding: 90px 11rem 70px;
}
.lg-hero-eyebrow {
  color: #e0954f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Oswald", sans-serif;
}
.lg-hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: #fff;
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.lg-hero-desc {
  color: #b9c7ca;
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 22px;
}
.lg-hero-updated {
  color: #8aa0a5;
  font-size: 13px;
}

/* ================= BODY LAYOUT ================= */
.lg-body {
  background: #f4f2ec;
  padding: 60px 11rem 100px;
}
.lg-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 60px;
  align-items: start;
}

/* ---------- SIDEBAR ---------- */
.lg-sidebar {
  position: sticky;
  top: 30px;
}
.lg-contents-label {
  color: #c98a3e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: "Oswald", sans-serif;
}
.lg-nav {
  list-style: none;
  margin-bottom: 30px;
}
.lg-nav li {
  margin-bottom: 2px;
}
.lg-nav a {
  display: block;
  text-decoration: none;
  color: #4a4a4a;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  border-radius: 4px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  font-family: "Source Sans 3", sans-serif;
}
.lg-nav a:hover {
  background: #eceae3;
}
.lg-nav a.lg-active {
  color: #c98a3e;
  background: #efe6d8;
  border-left-color: #c98a3e;
}

.lg-question-card {
  background: #fff;
  border: 1px solid #e5e2dc;
  border-radius: 10px;
  padding: 22px;
}
.lg-question-card h4 {
  font-size: 15px;
  color: #1f2d3d;
  font-family: "Source Sans 3", sans-serif;

  margin-bottom: 8px;
}
.lg-question-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 14px;
  font-family: "Source Sans 3", sans-serif;
}
.lg-question-card a {
  color: #c98a3e;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  font-family: "Source Sans 3", sans-serif;
}
.lg-question-card a:hover {
  text-decoration: underline;
}

/* ---------- MAIN CONTENT ---------- */
.lg-content section {
  margin-bottom: 70px;
  scroll-margin-top: 30px;
}
.lg-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
  color: #1f2d3d;
  margin-bottom: 14px;
}
.lg-underline {
  width: 56px;
  height: 3px;
  background: #c98a3e;
  margin-bottom: 26px;
}
.lg-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 18px;
  font-family: "Source Sans 3", sans-serif;
}
.lg-content p strong {
  color: #1f2d3d;
}
.lg-content h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1f2d3d;
  margin: 26px 0 10px;
  font-family: "Oswald", sans-serif;
}
.lg-content ul {
  margin: 0 0 18px 20px;
  font-family: "Source Sans 3", sans-serif;
}
.lg-content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #4a4a4a;
  font-family: "Source Sans 3", sans-serif;
}
.white-box {
  padding: 30px 50px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px;
  margin: 30px 0;
}
.white-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
.white-box ul {
  list-style: none;
  list-style: none;
  text-decoration: none;
  margin: 0;
}
.white-box ul li {
  list-style: none;
  text-decoration: none;
  margin: 0;
}
.white-box li strong {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  color: #c98a3e;
  margin-right: 5px;
}
.white-box li a {
  color: #4a4a4a;
}
.center-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top {
  width: auto;
  background: none;
  border: 1px solid rgb(231, 221, 206);
  cursor: pointer;
  color: rgb(74, 89, 107);
  font-size: 13px;

  padding: 10px 24px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}
