site-nav {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #000;
}

.nav-inner {
  max-width: 100%;         /* aligns with your content */
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;              /* control logo size */
  display: block;
}

/* Links container takes right 50% */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  width: auto;
  margin-left: auto;         /* push links to the right */
  padding-left: 70px;
}

.nav-links li a {
  text-decoration: none;
  color: #4e5196;
  font-family: "Chakra","Arial",sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.nav-links li a:hover {
  text-decoration: underline;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #4e5196;
}

@media (max-width: 900px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #000;
  }

  .nav-links li {
    margin: 15px 0;
  }
  .nav-links li a {
   padding-left: 10px;
   }

  .nav-links.active {
    display: flex;
  }
}
.top-text-banner{
 background-color: #EAEAEA;
}
.top-text-inner{
 font-family: "Chakra","Arial",sans-serif;
 color: #565656;
 background-color: #EAEAEA;
  align-items: flex-start;   /* moves content toward the top */
  justify-content: center;   /* keeps it horizontally centered */
  background-position: center;
  width: 60%;          /* takes up 40% of the screen */
  margin: 0 auto; 
}
.evidence{
 background-color: #2ba9db;
  color: white;
  padding: 20px 30px 20px 30px;
  text-decoration: none;
  font-weight:bold;
  font-size: 14px;
  border-radius: 8px;
  display: block;        /* makes it behave like a block */
  width: fit-content;    /* keeps it tight around text */
  margin: 20px auto; 
  border: 0px;
  outline:none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.banner-title {
 font-family: "Chakra","Arial",sans-serif;
 font-size: 31px;

}
.body-title {
 font-family: "Chakra","Arial",sans-serif;
 font-size: 31px;
 color: #565656;

}

.hero-banner {
  background-image: url('banner-image.jpg'); /* replace with your image */
  background-size: cover;
  align-items: flex-start;   /* moves content toward the top */
  justify-content: center;   /* keeps it horizontally centered */
  background-position: center;
  /*padding: 10px 150px 50px; */
  padding: 20px 10%; /* 10% of screen width on sides */
  text-align: center;
  background-color: #4e5196;
  color:#fff;
}

.hero-banner .hero-content {
  max-width: 800px;
  margin: auto;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-banner p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #2ba9db;
  color: white;
  padding: 20px 30px 20px 30px;
  text-decoration: none;
  font-weight:bold;
  font-size: 14px;
  border-radius: 8px;
}
.btn-primary:hover {
  background-color: #4e5196; /* darker blue */
  color: #ffffff;            /* optional, keeps text white */
}

.hero-card {
  display: grid;
  grid-template-columns: 2fr 3fr; /* 1/3 text, 2/3 image */
  margin: 0 auto;
  background-color: #EAEAEA;
  border-radius: 8px;
  width: 100%;
  max-width: 1020px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.hero-card-image {
  height: 400px;
  overflow:hidden;
  
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: bottom;
 
}
.hero-card-text {
  color: #4e5196;
  font-family: "Chakra","Arial",sans-serif;
  padding: 20px 15px 10px 15px;
  display:flex;
  flex-direction:column;
  justify-content:center;


}
@media (max-width: 768px) {
  .hero-card {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-card-image {
    height: 200px;
  }

}

.hero-banner-inner {
  max-width: 1000px;      /* match your card width */
  margin: 0 auto;         /* center horizontally */
}

.banner-title {
  text-align: left;       /* align with card */
  margin-bottom: 20px;    /* spacing between title and card */
}

.cards-section {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* align to top instead of center */
  padding: 40px 20px;      /* space above and below section */
  background-color: #f5f5f5;
  width:100%;
  min-height: auto;        /* remove 100vh */
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;                             /* spacing between cards */
  width: 100%;                           /* fill the wrapper */
  max-width: 1020px;                     /* same as banner card */
  margin: 0 auto;                        /* center horizontally */
}
.card {
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 100%; /* ensure card fills its grid column */
}
.cards-section-inner {
  max-width: 1020px; /* same width as banner card */
  width:100%;
  margin: 0 auto;     /* center horizontally */
  text-align: left; /* center the heading (optional) */
}

.card-image {
  height:160px;
  overflow: hidden; /* ensures image stays inside card */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills image area without distortion */
  transition: transform 0.5s ease; /* smooth zoom */
  display: block;
  object-position: center; /* crop from center */
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically in 40% area */
  align-items: flex-start; /* left-aligned */
  font-family:"Chakra","Arial",sans-serif;
  font-size: 18px;
  color: #4e5196;
}

.card-content2 {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically in 40% area */
  align-items: flex-start; /* left-aligned */
  font-family: "Chakra","Arial",sans-serif;
}


.card-content h3 {
  margin: 0 0 10px 0;
  font-family: "Chakra","Arial",sans-serif;
}

.card-content p {
  margin: 0 0 15px 0;
  font-family: "Chakra","Arial",sans-serif;
  line-height: 1.5;
}

.card-content .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
  font-family: "Chakra","Arial",sans-serif;
}

.card-link {
  display: block;
  width: 100%;
  text-decoration: none; /* remove underline */
  color: inherit;        /* inherit text color */
  font-family: "Chakra","Arial",sans-serif;
}

.card-link:hover .card-image img {
  transform: scale(1.1); /* zoom in 10% on hover */
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}


.full-width-section {
  width: 100%;                   
  height: 450px;                 /* full viewport height */
  display: flex;                  
  justify-content: center;        /* center card horizontally */
  align-items: center;            /* center card vertically */
  
  background-image: url('/images/fullwidthTransparent.jpg');  /* your image path */
  background-size: cover;         /* image covers entire section */
  background-position: center;    /* center the image */
  background-repeat: no-repeat;   /* prevent tiling */
  position: relative;             /* for overlay if needed */
}

.full-width-card {
  max-width: 600px;                 
  background-color: rgba(255, 255, 255, 0.85); /* semi-transparent */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  font-family: "Chakra","Arial",sans-serif;
  line-height: 1.8;
  color: #565656;
}
.full-width-section-plain {
  width: 100%;                   
  height: 400px;                 /* full viewport height */
  display: flex;                  
  justify-content: center;        /* center card horizontally */
  align-items: center;            /* center card vertically */

  
  background-image: url('/images/basicBlue.jpg');  /* your image path */
  background-size: cover;         /* image covers entire section */
  background-position: center;    /* center the image */
  background-repeat: no-repeat;   /* prevent tiling */
  position: relative;             /* for overlay if needed */
            
}

.full-width-card-plain {
  max-width: 600px;                 
  background-color: rgba(255, 255, 255, 0.85); /* semi-transparent */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  font-family: "Chakra","Arial",sans-serif;
  line-height: 1.8;
  color: #565656;
}




.full-width-card-section2 {
  width: 100%;             /* full width of screen */
  background-color: #f5f5f5;
  padding: 0;         /* vertical spacing */
}

.full-width-card2 {
  display: flex;          /* side-by-side layout */
  width: 100%;            /* full width of the screen */
  height: 400px;
  max-width: none;        /* remove max-width constraint */
  margin: 0;              /* remove auto centering */
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  font-family: "Chakra","Arial",sans-serif;
  line-height: 1.8;
  color: #565656;
}
.subscribeButton{
  background-color: #9ec53b;
  padding: 20px 30px;        /* 10px left & right, 8px top & bottom */
  border-radius: 10px;    /* makes the edges fully rounded */
  border: none;
  color: white;
  font-family: "Chakra","Arial",sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;    /* ensures perfect centering */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

}
.card-image2 {
  flex: 3;                  /* 75% width */
  overflow: hidden;
}

.card-image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease; /* optional hover zoom */
}

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

.card-text2 {
  flex: 1;                  /* 25% width */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
   align-items: center;         /* horizontal centering */
  text-align: center;    
  font-family: "Chakra","Arial",sans-serif;
  line-height: 1.8;
}


.site-footer {
  width: 100%;
  background-color: #4e5196;
  color: #fff;
  padding: 20px 0;
}

.footer-inner {
  max-width: 100%;     /* align with banner/cards */
  margin: 0 auto;
  text-align: left;       /* left-align the text */
  font-family: "Chakra","Arial",sans-serif;
}
.footer-link {
  color: white;                 /* link color */
  text-decoration: none;
  margin-left: 20px;
  font-family: "Chakra","Arial",sans-serif;
}

.footer-link:hover {
  text-decoration: underline;      /* hover effect */
}