@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,700,600,400");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@import url("https://px.animaapp.com/6917744f80e5e94014e4a300.6917745080e5e94014e4a303.SE4IyvE.hcp.png");

:root {
  --athens-gray: #e8edf4;
  --bunting: #0a1f44;
  --white: #ffffff;
  --font-family-nunito-sans: "Nunito Sans", sans-serif;
}

/* Fix for meyer-reset removing strong/b styling */
strong,
b {
  font-weight: 700;
}

html,
body {
  font-family: var(--font-family-nunito-sans);
  color: var(--bunting);
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.screen a {
  display: contents;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.mobile-header, .mobile-menu {
  display: none;
}

.container {
  max-width: 1035px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
  color: var(--bunting);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700 !important;
  color: var(--bunting);
}

body {
  color: var(--bunting);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--bunting);
  font-weight: 600;
  margin-left: 1rem;
}

.nav-link:hover {
  color: var(--scarpa-flow);
}



.mobile-menu a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  color: var(--primary-color);
}


/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  /* Added top padding for fixed navbar */
  background-color: var(--athens-gray);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: var(--font-size-m);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-custom {
  background-color: #4e5562;
  color: white;
  border: 0px;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
}

.btn-custom:hover {
  background-color: var(--bunting);
  color: white;
}

.hero-image {
  width: 100%;
  max-width: 435px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 128px 0;
  background-color: var(--scarpa-flow);
}

.features-wrapper {
  background-color: var(--athens-gray);
  border-radius: 10px;
  box-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.06),
    0px 4px 6px -1px rgba(0, 0, 0, 0.1),
    0px 0px 0px 1px #e5e0df;
  padding: 45px 60px;
}

.section-title {
  font-size: var(--font-size-xxxl);
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: var(--mercury);
  border: 1px solid var(--ghost);
  border-radius: 6px;
  padding: 17px;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-icon {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  object-fit: cover;
}

.feature-title {
  font-size: var(--font-size-l);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: var(--font-size-m);
  line-height: 1.6;
}

/* Get in Touch Section */
.get-in-touch-section {
  padding: 80px 0;
  background-color: var(--athens-gray);
}

.info-block {
  margin-bottom: 2rem;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.info-title {
  font-size: var(--font-size-l);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-image {
  width: 100%;
  max-width: 435px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Building Future Section */
.future-section {
  padding: 80px 0 20px 0px;
  background-color: white;
}

.footer-col-title {
  font-size: var(--font-size-l);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Footer Box */
.footer-box {
  background-color: #e2e5e8;
  border: 1px solid var(--ghost);
  border-radius: 6px;
  margin-top: 2rem;
}

.footer-box-row {
  display: flex;
  border-bottom: 1px solid var(--ghost);
}

.footer-box-col {
  flex: 1;
  padding: 20px;
}

.footer-box-col:first-child {
  border-right: 1px solid var(--ghost);
}

.footer-box-full {
  padding: 20px;
}

/* About Page Specifics */
.bg-dark-custom {
  background-color: var(--scarpa-flow);
  color: var(--white);
  padding: 80px 0;
}

.card-transparent {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 0px;
  color: var(--white);
  padding: 40px;
  border-radius: 4px;
  height: 100%;
  text-align: center;
}

.card-transparent .card-title {
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.card-transparent p {
  color: #e0e0e0;
  line-height: 1.6;
  text-align: left;
}

.core-values-section {
  padding: 80px 0;
  background-color: var(--scarpa-flow);
  color: var(--white);
}

.core-value-card {
  text-align: left;
  height: 100%;
}

.core-value-icon {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.core-value-title {
  font-size: var(--font-size-l);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.core-value-card p {
  color: #e0e0e0;
}

.governance-section {
  padding: 80px 0;
  background-color: var(--athens-gray);
}

.governance-card {
  background: transparent;
  padding: 0;
  height: 100%;
  box-shadow: none;
}

.governance-number {
  font-size: var(--font-size-m);
  font-weight: 400;
  color: var(--scarpa-flow);
  margin-bottom: 5px;
  text-shadow: none;
}

.governance-divider {
  height: 1px;
  background-color: var(--bunting);
  width: 100%;
  margin-bottom: 20px;
  opacity: 0.3;
}



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

.governance-card .feature-title {
  color: var(--bunting);
  font-size: var(--font-size-xl);
  margin-bottom: 15px;
}

.leadership-section {
  padding: 80px 0;
  background-color: #acb2bb;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 100px 0 40px;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .section-image {
    margin-top: 2rem;
    min-height: auto;
  }

  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .footer-box-row {
    flex-direction: column;
  }

  .footer-box-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--ghost);
  }
}

@media (max-width: 767px) {
  .features-wrapper {
    padding: 30px 20px;
  }

  .features-section {
    padding: 60px 0;
  }

  .card-transparent {
    padding: 20px;
  }

  .hero-section {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: var(--font-size-xxl);
  }

  .section-title {
    font-size: var(--font-size-xxl);
  }

  .bg-dark-custom,
  .core-values-section,
  .governance-section,
  .future-section {
    padding: 40px 0;
  }
}



body {
  font-family: var(--font-family-nunito);
  color: var(--bunting);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography matching styleguide */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.text-bunting {
  color: var(--bunting);
}

.text-white {
  color: var(--white);
}

.fs-title {
  font-size: 39.4px;
}

.fs-subtitle {
  font-size: 19.7px;
}

.fs-body {
  font-size: 15.8px;
}

.fs-nav {
  font-size: 14px;
}

/* Sections */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-scarpa-flow {
  background-color: var(--scarpa-flow);
}

/* Images */
.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  min-height: 400px;
}

/* Lists */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.custom-list li::before {
  content: "•";
  margin-right: 10px;
  font-weight: bold;
}

/* Contact Button */
.btn-contact {
  background-color: var(--bunting);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: background-color 0.3s;
}

.btn-contact:hover {
  background-color: #1a3a6e;
  color: var(--white);
}


.bg-bunting {
  background-color: var(--bunting);
}


.bg-athens-gray {
  background-color: var(--athens-gray);
}



/* Responsive adjustments */
@media (max-width: 991.98px) {

  *{
    line-height: 1.4 !important;
  }

  /* Hide desktop navbar on mobile */
  .navbar {
    display: none !important;
  }

  /* Mobile Header */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-header .logo img {
    height: 35px;
  }

  /* Menu Toggle Button */
  .menu-toggle {
    width: 30px;
    height: 21px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--bunting);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 999;
    padding: 20px;
    border-top: 1px solid #eee;
    display: block;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu nav a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    color: var(--bunting);
    text-decoration: none;
  }

  .mobile-menu nav a:hover {
    color: var(--scarpa-flow);
  }

  /* Add top padding for mobile header */
  .hero-section {
    padding-top: 100px;
  }



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

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-image {
    min-height: 300px;
    margin-top: 30px;
  }

  .order-lg-last {
    order: -1;
  }

  .future-section img{
    display: none;
  } 

  .future-section {
    
    padding-bottom: 0px;
  }

  /* Images on top for mobile if needed, or keep as is */
}