body {
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
  font-size: 1.05rem;
  color:#222;
}

h1, h2, h3, .navbar-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

:root {
  --primary-color: #002855;
  --secondary-color: #fbc02d;
  --text-color: #333;
}

.navbar {
  background-color: var(--primary-color) !important;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary-color) !important;
}

.hero {
  background: url("../images/background.jpg") top/cover no-repeat;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

section {
  scroll-margin-top: 80px; /* or the exact height of your header/navbar */
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.partner-logos img {
  max-height: 50px;
  margin: 10px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  filter: none;
  opacity: 1;
}

.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 0;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

#countdown {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.section-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbc02d, #002855);
  margin: 3rem auto;
  border-radius: 2px;
}

.founders-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: flex-start;
}

.founders-row .founder-card {
  background: #fff;
  border: 1px solid #e1e8ef;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,44,85,0.07);
  padding: 1.75rem 1.5rem 1.25rem 1.5rem;
  margin: 15px;
  flex: 1 1 28%;      /* Approximately 3 per row with spacing */
  min-width: 320px;
  max-width: 32%;
  box-sizing: border-box;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.founder-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  color: #002855;
}

.founder-title {
  font-size: 1rem;
  /* text-transform: uppercase; */
  color: #fbc02d;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.founder-location {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.founder-card p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .founders-row .founder-card {
    max-width: 45%;
    min-width: 280px;
    flex: 1 1 45%;
  }
}
@media (max-width: 800px) {
  .founders-row .founder-card {
    max-width: 90%;
    min-width: 95%;
    flex: 1 1 95%;
  }
  .founders-row {
    justify-content: center;
  }
}

/* Add a hover effect for elevation */
.founders-row .founder-card:hover {
  box-shadow: 0 12px 24px rgba(0,44,85,0.15);
  z-index: 2;
}

#founding-members .bg-light .founders-row .founder-card {
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0,44,85,0.08);
}

/* Hide mobile text by default */
.mobile-text {
  display: none;
}
/* Show desktop text by default */
.desktop-text {
  display: inline;
}

/* When on screens 768px or less (typical mobile) */
@media only screen and (max-width: 768px) {
  .mobile-text {
    display: inline;
  }
  .desktop-text {
    display: none;
  }
}

.highlight-international {
  color: #EFBF04; 
  font-weight: bold; 
  font-size: 1.012em;
}

.ticker-container {
  background: linear-gradient(90deg, #002855, #001f4d);
  color: #fbc02d;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.ticker-wrap {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 30s linear infinite;
  padding-right: 3rem;
}

/* .ticker-move > span {
  display: inline-block;
  padding-right: 3rem;
  user-select: none;
} */
.ticker-move > span {
  display: inline-flex !important;
  align-items: center;
  /* gap: 6px;*/
  padding-right: 3rem;
  padding: 0;
  user-select: none;
  /* width: 66;
  height: 66; */
}

.ticker-container:hover .ticker-wrap,
.ticker-container:focus-within .ticker-wrap {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.sectionticker {
  scroll-margin-top: 80px; /* or the exact height of your header/navbar */
  padding-top: 6rem;
  padding-bottom: 0rem;
  text-align: center;
}
