*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

/* Local font: Made Tommy */
@font-face {
  font-family: 'Made Tommy';
  src: url('fonts/MADE TOMMY Regular_PERSONAL USE.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font fallback */
  --font-fallback: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Color system */
  --color-primary-500: #171B34;
  --color-primary-darker: #080912;
  --color-secondary-300: #84EBDD;

  /* Text colors */
  --text-base: #FFFFFF;
  --text-sub-600: #525866;
  --text-sub-400: #99A0AE;
  --text-strong-950: #0E121B;

  /* Strokes */
  --stroke-soft-300: #CACFD8;
  --stroke-soft-200: #E1E4EA;
}

/* Apply base font and colors */
body {
  font-family: 'Made Tommy', var(--font-fallback);
  color: var(--text-base);
}

/* Material Symbols accessibility */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'wght' 400;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.hero_section {
  width: 100%;
  height: 100vh;
}

.footer_section {
  background-color: var(--color-secondary-300);
  /* background-image: url(/image/Footer\ Section\ BG.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover; */
  width: 100%;
  height: auto;
  position: relative;
}

.footer_carousel{
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background-color: var(--color-secondary-300);
}

.footer_carousel_track {
  display: flex;
  flex-direction: row;
  column-gap: 2.875rem;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (2.875rem / 2)));
  }
}

.footer_carousel_content{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  align-items: center;
}

.ready_txt{
  font-size: 3rem;
  font-weight: 100;
  line-height: 2rem;
  color: var(--text-strong-950);
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  line-height: 1; /* ensure consistent vertical alignment */
}

.car_btn_grp{
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.star_img{
  width: 3.5rem;
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  padding: 0.5rem;
}

.star_img img{
  width: 100%;
  height: 100%;
  color: var(--text-base);
}

.car_btn_link{
  text-decoration: none;
}

.car_btn{
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-base);
}

.car_btn:hover{
  background-color: var(--color-primary-500);
}

.car_btn p{
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  text-overflow: ellipsis; /* show ellipsis when text is too long */
  line-height: 1; /* ensure consistent vertical alignment */
}

.footer_spacing_cont{
  width: 100%;
  height: 100%;
  padding: 2.5rem;
}

.cont_wrapper{
  background-color: var(--color-primary-500);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  position: relative; /* create positioning context for the image */
  overflow: visible;  /* allow the image to be visible if it extends outside */
}

.top_cont{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
}

.footer_cont_left{
  width: 40rem;
  height: auto;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  position: relative; /* create positioning context for the image */
  overflow: visible;  /* allow the image to be visible if it extends outside */
}

.div_img{
  width: 8rem;
  height: auto;
}

.div_img img{
  position: absolute; /* position the image at the top-right */
  top: 0;
  right: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer_logo_sum{
  width: 14rem;
  height: auto;
}

.footer_logo_sum{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 80%;
}

.footer_logo_sum p{
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: var(--text-sub-400);
}

.footer_logo{
  width: 14rem;
  height: auto;
}

.footer_logo_sum img{
  width: 100%;
  height: auto;
}

.footer_form{
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.footer_form_title{
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  align-items: start;
}

.footer_form_title img{
  margin-top: 10px;
}

.newsletter{
  width: 80%;
  height: 2.5rem;
  border: 1px solid var(--stroke-soft-300);
  border-radius: 10px;
  padding: 0 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-sub-400);
}

.footer_form_checkbox{
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  align-items: start;
}

.consent{
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--stroke-soft-300);
  border-radius: 1rem;
  margin-top: 1px;
}

.consent:checked{
  background-color: var(--color-secondary-300);
  border: none;
}

.green_txt{
  color: var(--color-secondary-300);
  cursor: pointer;
}

.footer_form_title p{
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-base);
}

.footer_form_btn_grp{
  width: auto;
  display: flex;
  flex-direction: row;
  padding: 2.5rem 0;
}

.footer_star_img{
  width: 3.5rem;
  height: 3rem;
  background-color: var(--color-secondary-300);
  border-radius: 10px;
  padding: 0.5rem;
  border: solid 2px var(--text-base);
}

.footer_star_img img{
  width: 100%;
  height: 100%;
  color: var(--text-base);
}

.submit_btn{
  height: 3rem;
  background-color: var(--color-secondary-300);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-strong-950);
  border: solid 2px var(--text-base);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.submit_btn:hover{
  background-color: var(--text-base);
  color: var(--color-primary-500);
  border: solid 2px var(--text-base);
}

.footer_cont_right{
  width: 60rem;
  height: auto;
  padding: 8rem 2.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.footer_links{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer_links_grp{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.footer_links_grp p{
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-sub-600);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.f_link{
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-sub-400);
}

.f_link:hover{
  color: var(--color-secondary-300);
  transition: color 0.3s ease;
}

.footer_socials{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  column-gap: 1.5rem;
  margin-top: 1rem;
}

.bottom_cont{
  width: 95%;
  height: auto;
  border-top: 1px solid var(--text-sub-600);
  padding: 4rem 0rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: center;
}

.copy_rght{
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-sub-600);
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
}

.imp_links{
  text-decoration: none;
  color: var(--text-sub-600);
}

.imp_links:hover{
  color: var(--color-secondary-300);
  transition: color 0.3s ease;
}

.legal_links{
  display: flex;
  flex-direction: row;
  column-gap: 1.5rem;
  align-items: center;
}

.go_up{
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-darker);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-base);
  margin-left: 2rem;
}

.go_up:hover{
  background-color: var(--color-secondary-300);
  color: var(--color-primary-500);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cont_img{
  width: 10rem;
  height: auto;
}

.cont_img img{
  position: absolute; /* position the image at the top-right */
  top: 0;
  right: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

/* .footer_pattern{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: -1;
} */



/* Responsive Design */


@media (max-width: 1200px) {

.footer_section {
    width: 100%;
    padding: 1rem;
    overflow: hidden;
  }

  .footer_carousel {
    flex-direction: row;
    row-gap: 1rem;
    padding: 1rem 0;
    /* overflow-x: auto; */
  }

  .footer_carousel_content{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  align-items: center;
}

.ready_txt{
  font-size: 2rem;
  font-weight: 100;
  line-height: 2rem;
  color: var(--text-strong-950);
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  line-height: 1; /* ensure consistent vertical alignment */
}

.car_btn_grp{
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.star_img{
  width: 3.5rem;
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  padding: 0.5rem;
}

.star_img img{
  width: 100%;
  height: 100%;
  color: var(--text-base);
}

.car_btn_link{
  text-decoration: none;
}

.car_btn{
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-base);
}

.car_btn:hover{
  background-color: var(--color-primary-500);
}

.car_btn p{
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  text-overflow: ellipsis; /* show ellipsis when text is too long */
  line-height: 1; /* ensure consistent vertical alignment */
}

.footer_spacing_cont{
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.cont_wrapper{
  position: relative; /* create positioning context for the image */
  overflow: visible;  /* allow the image to be visible if it extends outside */
}

  .top_cont {
    flex-direction: column;
  }


  .div_img{
  width: 4rem;
  height: auto;
}

.div_img img{
  position: absolute;
  bottom: -20px;
  left: 36%;
  top: auto;
  transform: rotate(90deg);
  transform-origin: bottom right;
  max-width: 120%;
  height: auto;
  display: block;
}


  .footer_cont_left,
  .footer_cont_right {
    width: 100%;
    padding: 4rem 2rem;
    position: relative; /* create positioning context for the image */
    overflow: visible;  /* allow the image to be visible if it extends outside */     
  }

  .footer_logo_sum {
    width: 60%;
  }

  .footer_form {
    width: 60%;
  }

  .footer_form_title p {
    font-size: 1.5rem;
  }

  .newsletter {
    width: 100%;
  }

  .footer_links {
    flex-direction: column;
    row-gap: 2rem;
  }

  .bottom_cont {
    flex-direction: column;
    row-gap: 1rem;
    align-items: flex-start;
  }

  .cont_img{
    position: absolute; /* position the image at the top-right */
    bottom: 50%;
    right: 0;
    width: 20rem;
    height: auto;
    display: block;
  }

  .bottom_cont{
    width: 90%;
    height: auto;
    border-top: 1px solid var(--text-sub-600);
    padding: 2rem 0rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-self: center;
  }

  .copy_rght{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    align-items: center;
  }

  .legal_links{
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .go_up{
    position: absolute;
    top: 10px;
    right: 20px;
  }
} 



@media (max-width: 768px) {

  .footer_section {
    width: 100%;
    padding: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }

  .footer_carousel {
    flex-direction: row;
    row-gap: 1rem;
    padding: 1rem 0;
    /* overflow-x: auto; */
  }

  .footer_carousel_content{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  align-items: center;
}

.ready_txt{
  font-size: 2rem;
  font-weight: 100;
  line-height: 2rem;
  color: var(--text-strong-950);
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  line-height: 1; /* ensure consistent vertical alignment */
}

.car_btn_grp{
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.star_img{
  width: 3.5rem;
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  padding: 0.5rem;
}

.star_img img{
  width: 100%;
  height: 100%;
  color: var(--text-base);
}

.car_btn_link{
  text-decoration: none;
}

.car_btn{
  height: 3rem;
  background-color: var(--text-strong-950);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  column-gap: 0.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-base);
}

.car_btn:hover{
  background-color: var(--color-primary-500);
}

.car_btn p{
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap; /* keep text on a single line */
  overflow: hidden; /* hide overflowing text */
  text-overflow: ellipsis; /* show ellipsis when text is too long */
  line-height: 1; /* ensure consistent vertical alignment */
}

.footer_spacing_cont{
  width: 100%;
  height: 100%;
  padding: 0rem;
}

.cont_wrapper{
  position: relative; /* create positioning context for the image */
  overflow: visible;  /* allow the image to be visible if it extends outside */
}

  .top_cont {
    flex-direction: column;
  }


  .div_img{
  width: 4rem;
  height: auto;
}

.div_img img{
  position: absolute;
  bottom: -20px;
  left: 36%;
  transform: rotate(90deg);
  transform-origin: bottom right;
  max-width: 120%;
  height: auto;
  display: block;
}


  .footer_cont_left{
    width: 100%;
    padding: 4rem 2rem;
    position: relative; /* create positioning context for the image */
    overflow: visible;  /* allow the image to be visible if it extends outside */
    
  }


  .footer_cont_right {
    width: 100%;
    padding: 4rem 2rem;
    position: relative; /* create positioning context for the image */
    overflow: visible;  /* allow the image to be visible if it extends outside */  
      
  }

  .footer_logo_sum {
    width: 100%;
  }

  .footer_form {
    width: 100%;
  }

  .footer_form_title p {
    font-size: 1.5rem;
  }

  .newsletter {
    width: 100%;
  }

  .footer_links {
    flex-direction: column;
    row-gap: 2rem;
  }

  .bottom_cont {
    flex-direction: column;
    row-gap: 1rem;
    align-items: flex-start;
  }

  .cont_img{
    position: absolute; /* position the image at the top-right */
    bottom: 50%;
    right: 0;
    width: 20rem;
    height: auto;
    display: block;
  }

  .bottom_cont{
    width: 90%;
    height: auto;
    border-top: 1px solid var(--text-sub-600);
    padding: 2rem 0rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-self: center;
  }

  .copy_rght{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    align-items: center;
  }

  .legal_links{
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
    justify-content: center;
  }

  .go_up{
    position: absolute;
    top: 10px;
    right: 20px;
  }

  /* .footer_pattern{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
} */

}