:root {
  --primary-green: #6DD046;
  --dark-green: #489C3C;
  --primary-blue: #465eac;
  --dark-blue: #303872;
  --accent-red: #E22634;
  --text-dark: #212529;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}
.lazy-blur {
  filter: blur(20px);
  transition: filter 0.4s ease-out;
}
.lazy-loaded {
  filter: blur(0);
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.body-content{
  padding-top: 86px;
}
.navbar {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-brand img {
  height: 70px;
  width: auto;
}
nav a.navbar-brand {
  margin: 0px;
  padding: 0px;
}
nav.navbar {
  padding: 8px 0px;
}
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:hover:before{
  content: "";
  width: calc(100% - 25px);
  background-color: #2E3871;
  height: 2px;
  position: absolute;
  bottom: 0px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-video {
  display: block;
  width: 101%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0.5px 0.5px 0.5px 0.5px); /* trims half pixel from all sides */
  border: 0;
  outline: 0;
}
.hero-content .hero-title {
  color: var(--primary-green);
  text-transform: capitalize;
}
.hero-content .hero-subtitle {
  color: var(--text-dark);
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.hero-title .highlight-text {
  color: #fff;
  background-color: #2E3871;
  padding: 0px 5px;
  display: inline-block;
}
.highlight-text .green-dot{
  color: #6DD046;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
section.section.hero-banner-section {
  padding: 1.7rem 0px 1.7rem;
}
section.section.hero-banner-section .hero-video-container{
  padding-top: 0px;
  margin-top: -20px;
  overflow: hidden;
}
section.section.hero-banner-section .hero-video-container.full-banner-video{
  margin-top: 20px;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  border: none;
  color: white;
  padding: 13px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  line-height: normal;
  border: 2px solid var(--primary-green);
  font-size: 16px;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: #fff;
}
.btn-outline-custom {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  padding: 13px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  line-height: normal;
  font-size: 16px;
}
.btn-outline-custom:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: white;
  transform: translateY(-2px);
}
.hero-banner-section .btn-outline-custom, .hero-banner-section .btn-primary-custom{
  padding: 9px 25px;
}
.section {
  padding: 2rem 0;
  position: relative;
}
.section.cta-section.section {
  padding-bottom: 0px;
  padding-top: 30px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 0px;
  color: var(--dark-green);
}
.section-title.font-size29{
  font-size: 2.9rem
}
.section-title.title-blue{
  color: var(--dark-blue);
}
.section-title:has(+ .section-subtitle) {
  margin-bottom: 15px;
}
p.color-green.section-subtitle{
  color: var(--dark-green);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 0px;;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 35px 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid #bfbfbf;
}
.feature-card-content {
  flex: 1;
}
.feature-card button {
  margin-top: auto;
}
.feature-description{
  margin-bottom: 0px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}
.feature-icon img{
  /* width: 100%;
  height: 100%; */
  object-fit: contain;
}
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7em;
  font-weight: 600;
  margin-bottom: 0rem;
  text-align: center;
  transition: all 0.2s ease-in;
  color: #465eac;
}
.feature-card:hover h3.feature-title {
  color: var(--dark-green);
}
.feature-description {
  color: var(--text-dark);
  text-align: center;
  line-height: 1.6;
}
.problem-section {
  background: var(--bg-light);
}
.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-red);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--text-light);
  font-weight: 500;
}
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.form-control-custom {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.70rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}
.form-control-custom:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(109, 208, 70, 0.1);
  outline: none;
}
.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  padding-top: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 0px;
  border: 1px solid #bfbfbf;
}
.testimonials-section .section-subtitle{
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.testimonial-card::before {
  position: absolute;
  top: -45px;
  left: 15px;
  font-size: 5rem;
  color: #eaebf1;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f10d";
  margin-left: 0px;
  z-index: 1;
  line-height: normal;
  opacity: 1;
}
.testimonial-text {
  margin-bottom: 15px;
  color: var(--text-dark);
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}
.footer-link {
  color: rgba(255, 255, 255);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--dark-green);
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 5px;
  padding: 11px 9px;
}
.social-link:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-2px);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
.fade-in-up-delay-1 {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.fade-in-up-delay-2 {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.cta-section-link{
  text-decoration: none;
}
.contact-card{
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #bfbfbf;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: none;
  outline-offset: none;
}
.condidate-row .box {
  width: calc(33.33% - 10px);
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.box-content{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.condidate-row {
  gap: 15px;
  flex-wrap: wrap;
}
h3.box-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 5px;
  color: var(--dark-green);
}
.box-image {
  height: 150px;
}
.box-image img{
  height: 100%;
}
.condidate-row .btn {
  font-size: 14px;
  padding: 10px 15px;
}
.contact-box{ 
  border: 1px solid #E2E8F0;
  color: #2E3871;
}
.contact-box i , .contact-box .text-primary{
  color: #2E3871!important;
}
.contact-box span{
  word-break: break-all;
  font-size: 15px;
}
textarea.form-control{
  height: 65px;
}
.feature-card a , .contact-card a {
  text-decoration: none;
}
.gradient-bg{
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green)); 
  color: white;
}
.light-bg{
  background: var(--bg-light);
}
.green-bg{
  background: var(--primary-green); 
  color: white;
}
.problem-column{
  max-width: 600px;
  margin: 0 auto;
}
.single-column{
  padding-bottom: 0px;
  text-align: center;
}
.single-column img{
  padding-bottom: 15px;
}
.single-column .section-subtitle{
  font-size: 18px;
  padding-bottom: 15px;
}
.single-column .section-subtitle .color-green{
  color: var(--primary-green);
}
.solution-section-column-max p {
  font-size: 20px;
}
.text-right{
  text-align: right!important;
}
.solution-section-columns{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.solution-section-column-min{
  width: calc(35% - 35px);
}
.solution-section-column-max{
  width: calc(65% - 35px);
}
.single-column-min img.img-fluid {
  max-height: 200px;
}
.nav-button button.btn, .nav-button a.btn {
  padding: 10px 15px;
  margin: 0px 10px;
  font-size: 14px;
}
.nav-button button.btn:last-child , .nav-button a.btn:last-child {
  margin-right: 0px;
}
body .navbar-toggler:focus{
  box-shadow: none;
}
.footer-contact-info img {
  width: 60px;
}
.informattion a {
  color: #fff;
  text-decoration: none;
}
.informattion h4{
  font-size: 20px;
}
.informattion h5{
  font-size: 18px;
  margin-bottom: 0px;
}
.column-title{
  font-size: 24px;
}
.footer-logo-col img{
  max-height: 130px;
}
.footer-contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer-contact-info a p {
  margin-bottom: 0px;
  line-height: normal;
}
.solution-section .solution-section-columns{
  padding-bottom: 0px;
}
body .row{
  margin: 0px;
}
.contact-section .col-lg-8 {
  padding: 0px;
}
.max-height-300px{
  max-height: 300px;
  height: 100%;
}
.max-width-300px{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.max-width-200px {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}
.max-width-300px img , .max-width-200px img , .max-height-300px img{
  object-fit: contain;
}
.max-width-300px img {
  width: 300px;
  height: 300px;
}
.max-width-200px img {
  width: 150px;
  height: auto;
}
.max-height-300px img{
  height: 300px;
  width: auto;
}
.desktop-none{
  display: none!important;
}
.margin-bottom-15{
  margin-bottom: 20px;
}
.banner-title{
  text-transform: capitalize;
  font-size: 3.3rem;
  max-width: 1180px;
  padding: 0px 20px;
  margin: 0 auto;
}
.responsive-menu .btn{
  display: none;
}
.nominate-section{
  padding-top: 0px;
}
.hero-banner-section{
  padding-bottom: 0px !important;
}
body .container.max-width-800{
  max-width: 800px;
}
body .container .max-width-600{
  max-width: 655px
}
.max-width-655{
  max-width: 655px;
  margin-left: auto;
  margin-right: auto;
}
p.section-heading {
  font-size: 1.25rem;
  margin-top: 15px;
}


@media (min-width: 1400px) {
  body .container-xxl, body .container-xl, body .container-lg, body .container-md, body .container-sm, body .container {
    max-width: 1180px;
  }
}
@media screen and (max-width:1200px){
  .container-md, .container-sm, .container{
    max-width: 100%!important;
    padding: 0px 30px;
  }
  body .col-lg-8{
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .nav-button a.btn{
    margin: 0px 8px;
  }
  .nav-link {
    padding: 8px 8px !important;
  }
}
@media screen and (max-width: 991px) {
  .responsive-menu .btn{
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
  }
  .nav-button{
    display: none;
  }
  body .col-lg-8 , .representatives-column-max , .representatives-column-min{
    width: 100%;
  }
  .representatives-column-max.change-order{
    order: 1;
  }
  .representatives-column-max{
    text-align: center;
  }
  .condidate-row .box{
    width: calc(50% - 20px);
  }
  .testimonials-section .col-lg-4{
    margin-top: 40px;
  }
  .hero-content .hero-title {
    font-size: 58px;
  }
  .section-title{
    font-size: 40px;
  }
  .navbar-toggler{
    border: none;
  }
  .navbar-brand img{
    height: 45px;
  }
  .body-content{
    padding-top: 60px;
  }
  span.navbar-toggler-icon.open {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(33, 37, 41, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6 L24 24 M6 24 L24 6'/%3E%3C/svg%3E");
  }
  .footer .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer .row .col-md-6{
    width: 100%;
    text-align: center !important;
  }
  .nav-button a.btn{
    margin: 7px 0px;
  }
  .nav-link{
    border-bottom: 1px solid #E2E8F0;
    border-radius: 0px;
  }
  .nav-link:hover:before{
    content: none;
  }
  section.section.hero-banner-section .hero-video-container{
    padding-top: 0px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 767px) {
  section.nominate-section{
    padding-top: 0px;
  }
  .section-title.font-size29{
    margin-bottom: 15px;
  }
  .hero-banner-section{
    padding-bottom: 10px !important;
  }
  .responsive-menu .btn{
    display: none;
  }
  .nav-button {
    display: block;
  }
  .contact-section .col-md-6{
    width: 100%;
    padding-bottom: 30px;
  }
  .contact-section .col-md-6:last-child{
    padding-bottom: 0px;
  }
  .condidate-row .box , .cta-section .col-lg-3.col-md-4 , .solution-section-column-min , .solution-section-column-max {
    width: 100%;
  }
  .cta-section .col-lg-3.col-md-4{
    text-align: center;
  }
  .cta-section .col-lg-8.d-flex {
    flex-wrap: wrap;
  }
  .section.cta-section.section{
    padding: 40px 0px;
  }
  .container-md, .container-sm, .container{
    padding: 0px 10px;
  }
  .hero-content .hero-title {
    font-size: 42px;
  }
  .section-title , .section-title.font-size29{
    font-size: 35px;
  }
  .footer .row{
    grid-template-columns: repeat(1 , 1fr);
    text-align: center;
  }
  .footer-contact-info , .social-icon{
    justify-content: center;
  }
  .problem-column{
    gap: 30px;
  }
  .solution-section-column-max{
    text-align: center;
  }
  .cta-section-link .cta-section p{
    text-align: center;
  }
  .hero-video {
    object-position: center center;
  }
  .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
  .feature-card , .contact-card{
    padding: 2rem;
    margin-bottom: 0rem;
    height: auto;
  }
  .change-order{
    order: 1;
  }
  .nominate-section .col-lg-6:first-child{
    margin-bottom: 20px;
  }
  .cta-section .col-lg-8.d-flex {
    justify-content: center;
  }
  .hero-banner-section .mt-4 {
    margin-top: 15px !important;
  }
  .feature-card:hover h3.feature-title {
    color: #465eac;
  }
  .footer-link:hover {
    color: #fff;
  }
  section.section.hero-banner-section .hero-video-container{
    padding-top: 0px;
    margin-top: 0px;
  }
  .desktop-none{
    display: flex!important;
  }
  video.mobile-none{
    display: none;
  }
  video.desktop-none{
    display: block!important;
  }
  section.section.hero-banner-section{
    padding-top: 1.1rem;
    padding-bottom: 20px!important;
  }
  .nominate-section .section-title.font-size29{
    margin-bottom: 20px;
  }
  .testimonials-section .section-subtitle{
    margin-bottom: 0;
    padding-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
  }
}
@media screen and (max-width: 400px) {
  .condidate-row .btn{
    font-size: 12px;
  }
  .mobile-w-100 img{
    max-width: 100% !important;
  }
  
}
.terms-section {
  font-size: 15px;
  line-height: normal;
  padding-bottom: 15px;
}
.terms-section p{
  margin-bottom: 10px;
}
.terms-section h1.section-heading {
  font-size: 26px;
  font-weight: 700;
  margin: 15px 0px 10px;
}
.terms-section h2.section-subheading {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0px 10px;
}
.terms-section h3.section-subheading {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0px 10px;
}
.terms-section p a{
  word-break: break-all!important;
}