/*primary color*/
.bg-cream {
  background: linear-gradient(to top, #fdc926, #fff5d6, #ffffff);
}

/*font*/
body {
  font-family: "Poppins", sans-serif;
}

.bg-yellow-500 {
  background-color: #fdc926;
}
.text-yellow-500 {
  color: #fdc926;
}
.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 8px);
  }
  100% {
    transform: translate(0, -0px);
  }
}
.floating-4 {
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes floating-4 {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 8px);
  }
  100% {
    transform: translate(0, -0px);
  }
}
.text-darken {
  color: #3975c9;
}

.text-black {
  color: #000000;
}

.text-white {
  color: #ffffff;
}

.bg-blue-500 {
  background-color: #3975c9;
}

/* ------------------------------------------ */
* {
  box-sizing: border-box;
}

/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
} */

.statistics .cardContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates a 4-column layout */
    gap: 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 60px;
    /* background-color: yellowgreen; */
  }
  
.statistics .card {
    position: relative;
    flex-direction: column;
    width: 100%;
    background-color: white; 
    padding: 16px;
    text-align: center;
    border-width: 0cap;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 
    0px 4px 4px 0px rgba(0, 0, 0, 0),
    0px 6px 8px 0px rgba(0, 0, 0, 0.01),
    0px 8px 16px 0px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease; 
  }

  .statistics .counterData {
    font-size: 60px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    color: #555;
  }
  
.statistics .card:hover {
    transform: translateY(-15px); 
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.2); 
  }

.timeline {
  position: relative;
  width: 100%; /* or max-width: none; */
  margin-top: 24px;
  /* background-color: aqua; */
  justify-content: center;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #fdc926;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  /* margin-left: -30px; */
}

/* General styling for larger screens */
.containerTimeline {
  padding: 12px 20px;
  position: relative;
  width: 50%;
  display: flex;
  /* justify-content: auto; */
}
.containerTimeline.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 5px;
  width: 0;
  z-index: 1;
  left: +15px;
  border: medium solid #3975c9;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #3975c9;
}

.containerTimeline.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 5px;
  width: 0;
  z-index: 1;
  right: +15px;
  border: medium solid #3975c9;
  border-width: 10px 10px 10px 0;
  border-color: transparent #3975c9 transparent transparent;
}

.TimlineHeader {
  font-size: 48px;
  color: #3975c9;
  font-weight: normal;
  margin-bottom: 4px;
}

.TimlineSubHead {
  font-size: 54px;
  color: #fbbf24;
  font-weight: bold;
}

.TimlineTitle {
  font-size: 1.4rem !important;
  font-weight: bold !important;
  color: #000000 !important;
  line-height: 1.1 !important;
  margin-bottom: 0.4rem !important;
  padding: 0 !important;
}

.TimlineBody {
  font-size: 1.2rem !important;
  color: #292929 !important;
  line-height: 1.2 !important;
  padding: 0 !important;
}

.TimlineImg {
    height: 42px;
    width: 42px;
  }

  .containerTimeline.left {
    left: 0;
  }

  .containerTimeline.right {
    left: 50%;
  }

  .statistics{
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 40px;
    /* background-color: rgb(19, 223, 138); */
    justify-content: center;
  }

  .container-InfoParent{
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 40px;
    /* background-color: rgb(19, 223, 138); */
    justify-content: center;
  }
  .container-Timeline{
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 80px;
    margin-bottom: 80px;
    /* background-color: rgb(22, 77, 167); */
    justify-content: center;
  }

  .container-Testimonial{
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 40px;
    margin-bottom: 80px;
    /* background-color: aqua; */
    justify-content: center;
  }
  .formSub {
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 40px;
    padding: 0px, 24px, 0px, 24px;
    /* background-color: aqua; */
    justify-content: center;
  }
/* Media query for tablet and smaller screens */
@media (max-width: 768px) {
  .containerTimeline {
    padding: 8px 8px;
    position: relative;
    width: 50%;
    display: flex;
    /* justify-content: auto; */
  }

  .containerTimeline.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 2px;
    width: 0;
    z-index: 1;
    left: +8px;
    border: medium solid #3975c9;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #3975c9;
  }

  .containerTimeline.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 5px;
    width: 0;
    z-index: 1;
    right: +15px;
    border: medium solid #3975c9;
    border-width: 10px 10px 10px 0;
    border-color: transparent #3975c9 transparent transparent;
  }

  .TimlineHeader {
    font-size: 18px;
    color: #3975c9;
    font-weight: normal;
    margin-bottom: 4px;
  }

  .TimlineSubHead {
    font-size: 24px;
    color: #fbbf24;
    font-weight: bold;
  }

  .TimlineTitle {
    font-size: 0.7rem !important;
    font-weight: bold !important;
    color: #000000 !important;
    line-height: 1.1 !important;
    margin-bottom: 0.2rem !important;
    padding: 0 !important;
  }

  .TimlineBody {
    font-size: 0.6rem !important;
    color: #292929 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
  }

  .TimlineImg {
    height: 28px;
    width: 28px;
  }

  .containerTimeline.left {
    left: 0;
  }

  .containerTimeline.right {
    left: 50%;
  }


  .formSub {
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 20px;
    /* background-color: aqua; */
    justify-content: center;
  }
}

/* Media query for mobile phones */
@media (max-width: 480px) {
  .containerTimeline {
    padding: 2px 2px;
    position: relative;
    width: 50%;
    display: flex;
    /* justify-content: auto; */
  }

  .containerTimeline.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 2px;
    width: 0;
    z-index: 1;
    left: +12px;
    border: medium solid #3975c9;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #3975c9;
  }

  .containerTimeline.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 2px;
    width: 0;
    z-index: 1;
    right: +6px;
    border: medium solid #3975c9;
    border-width: 6px 6px 6px 0;
    border-color: transparent #3975c9 transparent transparent;
  }

  .TimlineHeader {
    font-size: 18px;
    color: #3975c9;
    font-weight: normal;
    margin-bottom: 4px;
  }

  .TimlineSubHead {
    font-size: 24px;
    color: #fbbf24;
    font-weight: bold;
  }

  .TimlineTitle {
    font-size: 0.7rem !important;
    font-weight: bold !important;
    color: #000000 !important;
    line-height: 1.1 !important;
    margin-bottom: 0.2rem !important;
    padding: 0 !important;
  }

  .TimlineBody {
    font-size: 0.6rem !important;
    color: #292929 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
  }

  .TimlineImg {
    height: 20px;
    width: 20px;
  }

  .containerTimeline.left {
    left: 0;
  }

  .containerTimeline.right {
    left: 50%;
  }

  .statistics .cardContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 6px;
    /* background-color: #fdc926; */
    margin-top: 40px;
    margin-bottom: 20px;
  }
   
  .statistics .card {
    position: relative;
    flex-direction: column;
    width: 100%;
    background-color: white; 
    padding: 16px;
    margin-bottom: 32px;
    text-align: center;
    border-width: 0cap;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 
    0px 4px 4px 0px rgba(0, 0, 0, 0),
    0px 6px 8px 0px rgba(0, 0, 0, 0.01),
    0px 8px 16px 0px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease; 
  }
  

  .statistics .counterData {
    font-size: 40px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    color: #555;
  }

  .statistics .card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  }
  

  .formSub {
    position: relative;
    width: 100%; /* or max-width: none; */
    margin-top: 10px;
    /* background-color: aqua; */
    padding-left:24px;
    padding-right:24px;
    justify-content: center;
  }
}

.content {
  padding: 10px; /* Adjust padding to give more space inside the box */
  width: 100%; /* Increase the width to occupy more space inside the container */
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  position: relative;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.content p {
  font-size: 16px;
  color: #555;
}

section.statistics {
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 28px;
}

section.statistics:before {
  position: absolute;
  content: "";
  background-image: url(../img/testimonials-left-dec.png);
  left: 0px;
  top: -140px;
  width: 593px;
  height: 352px;
  z-index: 1;
}

section.statistics:after {
  position: absolute;
  content: "";
  background-image: url(../img/testimonials-right-dec.png);
  right: 0px;
  bottom: -140px;
  width: 632px;
  height: 352px;
  z-index: -1;
}

.form-container {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

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

label {
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #007bff;
  outline: none;
}

.form-submit {
  width: 100%;
  padding: 12px;
  background-color: #3975c9;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #0056b3;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  background-color: #f5f5f5;
}

.form-group input:focus {
  background-color: #ffffff;
}

@media (max-width: 480px) {
  .form-container {
    padding: 15px;
    margin: 20px;
  }

  .form-title {
    font-size: 1.25rem;
  }

  section.statistics {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
  }
  
  section.statistics:before {
    position: absolute;
    content: "";
    background-image: url(../img/testimonials-left-dec.png);
    left: 0px;
    top: 0px;
    /* top: -140px; */
    width: 100%;
    z-index: 0;
  }
  
  section.statistics:after {
    position: absolute;
    content: "";
    background-image: url(../img/testimonials-right-dec.png);
    right: 0px;
    bottom: 0px;
    /* bottom: -140px; */
    width: 100%;
    z-index: -1;
  }
}

/* General styling for larger screens */
/* h1 {
  font-size: 2.25rem; 
  margin: 1rem 0; 
  font-weight: bold;
  line-height: 1.2; 
  color: #fbbf24;
}

h1 span {
  font-size: 4.3rem; 
  color: #333; 
} */

.leading-normal {
  font-size: 1.8rem;
  font-family: 'Times New Roman', Times, serif;

}

.header_title {
    font-size: 3.8rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
}

.header_subTitle {
    font-size: 2.8rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
}

.header_text_body {
    font-size: 0.9rem;
    color: #ddd;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
}

.button-join {
    width: 100%; /* Full width */
    background-color: #3975c9; /* Blue background */
    color: #ffffff; /* White text */
    font-size: 1.125rem; /* Text size for large screens */
    font-weight: bold; /* Bold font */
    border-radius: 9999px; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Vertical and horizontal padding */
    outline: none; /* No outline on focus */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
  }

  .infoContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding-left: 36px;
    padding-right: 36px;
    gap: 36px;
    margin-top: 68px;
    /* background-color: #fbbf24; */
  }

  .infoContainer-imgBody{
    flex: 1;
    /* background-color: #6e747a; */

  }

  .infoContainer-textBody{
    flex: 1;
    margin-top: 80px;
    margin-bottom: 80px;
    /* background-color: #6e747a; */
  }

  .infoContainer-textBodyOne {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 18px; 
    margin-top: 60px;
    /* background-color: #007bff; */
  }

  .infoContainer-textBodyTwo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 18px; 
    margin-top: 46px;
    /* background-color: #007bff; */

  }

  .infoContainer-textBodyThree{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 18px; 
    margin-top: 46px;
    /* background-color: #007bff; */
  }

  .infoTitle{
    font-size: 2.1rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoSubTitle{
    font-size: 2.7rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoBodyTitle{
    font-size: 1.1rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
  }
  .infoBody{
    font-size: 0.9rem;
    color: #585757;
    font-family: Arial, Helvetica, sans-serif;
  }

  .infoIcon {
    width: 1rem;
    height: 1rem;
  }
/* Media query for tablet and smaller screens */
@media (max-width: 768px) {
  /* h1 {
    font-size: 1.675rem;
    line-height: 1.1;
  }

  h1 span {
    font-size: 2.75rem;
  } */

  .leading-normal {
    font-size: 0.8rem; /* 4xl */
    font-family: 'Times New Roman', Times, serif;
  }

  .statistics .cardContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 60px;
    margin-bottom: 30px;
    /* background-color: rgb(195, 106, 42); */
  }
   
  .header_title {
    font-size: 1.8rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
    }

    .header_subTitle {
    font-size: 1.1rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
    }

  .header_text_body {
    font-size: 0.8rem; /* 4xl */
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    }

    .button-join {
    width: 100%; /* Full width */
    background-color: #3975c9; /* Blue background */
    color: #ffffff; /* White text */
    font-size: 1rem; /* Text size for large screens */
    font-weight: bold; /* Bold font */
    border-radius: 9999px; /* Rounded corners */
    padding: 0.65rem 1.2rem; /* Vertical and horizontal padding */
    outline: none; /* No outline on focus */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
  }

  .infoContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    padding-left: 36px;
    padding-right: 36px;
    gap: 36px;
    margin-top: 68px;
    /* background-color: #fbbf24; */
  }

  .infoContainer-imgBody{
    flex: 1;
  }

  .infoContainer-textBody{
    flex: 1;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .infoContainer-textBodyOne {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 20px;
    /* background-color: #007bff; */
  }

  .infoContainer-textBodyTwo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 5px;
    /* background-color: #007bff; */

  }

  .infoContainer-textBodyThree{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 5px;
    /* background-color: #007bff; */
  }

  .infoTitle{
    font-size: 1.8rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoSubTitle{
    font-size: 1.6rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoBodyTitle{
    font-size: 1rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
  }
  .infoBody{
    font-size: 0.7rem;
    color: #585757;
    font-family: Arial, Helvetica, sans-serif;
    }
    .infoIcon {
    width: 0.7rem;
    height: 0.7rem;
    }
    
}

/* Media query for mobile phones */
@media (max-width: 480px) {
  /* h1 {
    font-size: 1.5rem;
    margin: 0.5rem 0; 
  }

  h1 span {
    font-size: 2.6rem;
  } */

  .leading-normal {
    font-size: 1.2rem;
    font-family: 'Times New Roman', Times, serif;
  }

  .header_title {
    font-size: 2.3rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
    }

    .header_subTitle {
    font-size: 1.5rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
    }

  .header_text_body {
    font-size: 0.7rem; /* 4xl */
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    }

    .button-join {
    width: 100%; /* Full width */
    background-color: #3975c9; /* Blue background */
    color: #ffffff; /* White text */
    font-size: 1.125rem; /* Text size for large screens */
    font-weight: bold; /* Bold font */
    border-radius: 9999px; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Vertical and horizontal padding */
    outline: none; /* No outline on focus */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
  }

  .infoContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding-left: 26px;
    padding-right: 26px;
    gap: 6px;
    margin-top: 8px;
    /* background-color: #fbbf24; */
  }

  .infoContainer-imgBody{
    flex: 1;
  }

  .infoContainer-textBody{
    flex: 1;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .infoContainer-textBodyOne {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 20px;
    /* background-color: #007bff; */
  }

  .infoContainer-textBodyTwo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 5px;
    /* background-color: #007bff; */

  }

  .infoContainer-textBodyThree{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 9px; 
    margin-top: 5px;
    /* background-color: #007bff; */
  }

  .infoTitle{
    font-size: 1.6rem;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoSubTitle{
    font-size: 1.8rem;
    color: #fbbf24;
    font-family: 'Times New Roman', Times, serif;
  }

  .infoBodyTitle{
    font-size: 0.9rem;
    font-weight: bold;
    color: #3975c9;
    font-family: 'Times New Roman', Times, serif;
  }
  .infoBody{
    font-size: 0.7rem;
    color: #585757;
    font-family: Arial, Helvetica, sans-serif;
    }

    .infoIcon {
        width: 0.6rem;
        height: 0.6rem;
    }
}

