@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Silkscreen:wght@400;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');




* {
    margin:0; 
    padding: 0; 
    box-sizing: border-box; 
    text-decoration:none;  
    list-style: none; 
}

img{
    max-width:100%;
}

body {
    font-family:'Poppins'; 
    overflow-y: scroll;
}

.container{
    max-width:1200px;
    margin: 0 auto; 
}

.space-between-section {
  margin-bottom: 100px;
}



header {
  background:url(../img/header-img.png) no-repeat center center/cover;
  height: 100vh;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .1);
    z-index: 1000;
}

.nav-white {
  background-color: white;
  transition: background-color 0.3s ease;
}

.menu { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 24px; 
    color: #FFFFFF;
    font-weight: 600;
}

.logo-img {
    width: 55px; 
    margin:0; 
    padding: 0; 
    box-sizing: border-box;  
    list-style: none; 
}

.logo-container{
    display:flex;
    align-items: center;
}

.menu .nav-menu ul li {
    position:relative; 
    float:left; 
}

.menu .nav-menu ul li a {
    padding:20px; 
    font-weight: 500;
    color: #FFFFFF;
    display: block; 
}

.menu .nav-menu ul li a:hover{
    color: #d2f2f7!important;
}


.menu .nav-menu ul li a:hover {
    color: #019392;
}

.buttons a {
    background-color: #FFF;
    border-radius: 15px;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #00606C;
}

.buttons a:hover{
    background-color: #019392;
    color: #FFF;
}

#menu-toggle {
    display: none; 
}

.menu-icono {
    width: 55px; 
}

.menu label {
    cursor: pointer; 
    display:none; 
}

.log-in a{
    font-size: 17px;
    padding:20px; 
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
    justify-content: flex-end;
}

.register-login {
    display: flex;
    gap: 10px;
    align-items: center;
}



.header-content{
    padding-top: 100px;
    padding-bottom: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.header-content h2{
    background-color: #ffffff11;
    text-align: center;
    padding: 5px;
    font-size: 18px;
    font-weight: 700;
    color: #f3d9d9;
    border-radius: 15px;
    width: 250px;
}

.header-content h1 {
    color: #FFF;
    font-size: 50px;
    font-weight: 600;
}



.description-section {
    margin-top:50px;
}
  
.description-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
  
.description-text {
    flex: 1 1 500px;
}
  
.description-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}
  
.description-text .highlight {
    color: #019392;
}
  
.description-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
  
.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.description-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
  
.description-list li img {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}
  
.description-list li strong {
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 4px;
}
  
.description-list li p {
    margin: 0;
    color: #444;
    font-size: 15px;
}
  
.description-img {
    flex: 1 1 400px;
}
  
.description-img img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
}



.about-us-section {
    padding: 80px 0;
    background-color: white;
}

/*TITLE SEPARATOR*/


.separe-title{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    padding: 60px 0;
    font-size: 25px;
}

.separe-title .line {
    height: 1px;
    width: 25pc;
    background-color: #0f0e4b;
    margin-top: 20px;
}



.white{
    color: white;
}







.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.mission-container,
.vision-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    box-shadow: inset 0 0 22px 5px rgba(7, 7, 7, 0.151);
    border-radius: 20px;
}

.mission-container {
    flex-direction: row-reverse;
}

.mission-img,
.vision-img {
    flex: 1 1 300px;
    text-align: center;
}

.mission-img img,
.vision-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.mission-text,
.vision-text {
    flex: 3 0 60px;
}

.mission-text h3,
.vision-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #019392;
}

.mission-text p,
.vision-text p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
}



@media (max-width: 1000px) {
  
    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
        width: 30px;
        height: 30px;
    }

    .menu .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #019392;
        display: none;
    }

    .menu .nav-menu ul li {
        width: 100%;
    }

    #menu-toggle:checked ~ .nav-menu {
        display: initial;
    }

    .logo-container {
        display: none;
    }

    .menu .nav-menu ul li a:hover {
        color: #020202;
    }

    .header {
        padding: 50px 0 0 0;
    }

    .header-content {
        padding: 30px;
    }

    .description-section {
        padding: 20px;
    }

    

    .about-us-section {
        padding: 40px 20px;
    }
    
    .section-title h2::before,
    .section-title h2::after {
        width: 100%;
    }
    
    .mission-container,
    .vision-container {
        flex-direction: column;
    }
    
    .mission-img,
    .vision-img,
    .mission-text,
    .vision-text {
        width: 80%;
        flex: none;
    }

}


.how-it-works-section {
    background-color: #318C8B;
    padding: 60px 20px;
}

.section-title.white h2 {
    color: #fff;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
  width: 100%;
  border: #00000033 1px solid;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.card h3 {
    color: #00606C;
    font-size: 22px;
    margin-bottom: 15px;
}

.card ol {
  padding: 10px 20px;
  text-align: left;
  padding-left: 20px;
  color: #333;
  font-size: 15px;
}



.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px !important;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
  


  .contact-form {
    
    width: 500px;
  }
  .contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
  }
  
  
  .form-group.inline {
    flex-direction: row;
    align-items: center;
  }
  .form-group.inline span {
    margin-right: 12px; 
  }
  .form-group.inline label {
    margin-right: 16px;
    margin-bottom: 0;    
  }  
  .form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
  }
  .form-group input,
  .form-group textarea {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #019392;
  }
  .contact-form button {
    margin-top: 12px;
    background-color: #019392;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  .contact-form button:hover {
    background-color: #017f75;

  }
  .user-type-group .section-label {
    display: block;
    font-weight: 700; 
    margin-bottom: 8px;
    color: #333;
  }
  .user-type-group .inline-options {
    display: flex;
    gap: 24px;
  }
  .user-type-group .inline-options label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400; 
    margin-bottom: 0;
  }
  .user-type-group br {
    display: none;
  }
.contact-form .form-group label {
    font-weight: 700; 
  }
  .user-type-group .inline-options label {
    font-weight: 400;
  }
 
  .contact-info {
    width: 400px;
    height: 400px;
  }
  .info-card {
    background-color: #019392;
    color: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }
  .info-item i {
    font-size: 20px;
  }
  .info-item a {
    color: #fff;
    text-decoration: none;
  }
  .info-card .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  .social-icons a {
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
  }
  .social-icons a:hover {
    color: #fff !important;
  }

  .form-group textarea {
    resize: none;
  }
  
  @media (max-width: 768px) {
    .contact-section {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .contact-container {
      width: 100%;
    }
    .contact-info{
      height: 200px;
    }
  }

  

  .faq-section{
    padding: 0 20px;

  }

  .faq-container {
    max-width: 800px;
    margin: auto;
  }
  
  .faq-title,
  .section-title h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
  }
  
  .faq-item {
    background: #fff;
    border: 2px solid #00797b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq-number {
    background: #00797b;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
  }
  
  .faq-question {
    font-weight: bold;
    flex-grow: 1;
  }
  
  .faq-icon {
    font-size: 24px;
    color: #00797b;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    margin-top: 10px;
    color: #333;
    display: none;
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }


.benefits-section {
  padding: 0 20px 0 20px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  background-color: #ffffff;
}

.benefit-card:hover {
  transform: translateY(-10px);
  z-index: -100;
}

.benefit-card i {
  font-size: 30px;
  color: #00606C;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 18px;
  color: #00606C;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
}


.benefit-card.bg-blue {
  background-color: #C1EFFF;
}

.benefit-card.border-green {
  border: 2px solid #019392;
}


.footer-redesigned {
    background-color: #2C2C2C; 
    color: #E0E0E0; 
    padding: 60px 20px 0 20px; 
    margin-top: 80px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px; 
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #019392; 
}

.footer-column .footer-logo {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-column.about .about-text {
    margin-bottom: 20px;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info-footer a {
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.contact-info-footer a:hover {
    color: #019392;
}

.footer-column.links ul {
    padding: 0;
    list-style: none;
}

.footer-column.links li a {
    color: #E0E0E0;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}

.footer-column.links li a:hover {
    color: #019392;
    padding-left: 5px; 
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex-grow: 1;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    background-color: #019392;
    border: none;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #017f75;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #E0E0E0;
    font-size: 22px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #019392;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444; 
    font-size: 13px;
    color: #999;
}

.team-container {
    width: 100%;
    margin-top: 80px; 
    text-align: center;
}

.team-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #019392; 
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    background-color: #e2dfdf71;
    padding: 25px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: #00000033 1px solid;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.team-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover; 
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #00606C; 
    margin: 0 0 5px 0;
}

.team-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}
.about-main-content {
    display: flex;
    align-items: center;
    gap: 50px; 
    flex-wrap: wrap; 
    margin-bottom: 80px; 
}

.about-text-column {
    flex: 1; 
    min-width: 300px; 
}

.about-video-column {
    flex: 1;
    min-width: 300px;
}





.about-text-column .mission-text h3,
.about-text-column .vision-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #019392;
}
.video-product-section {
    width: 100%;
    margin-top: 80px;
    text-align: center;
    padding: 0 20px;
}

.video-container-wrapper {
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
}

.video-item {
    flex: 1; 
    min-width: 300px; 
    max-width: 48%;
    text-align: center; 
}

.video-product-title { 
    font-size: 28px;
    font-weight: 600;
    color: #019392;
    margin-bottom: 30px;
}

.video-wrapper {
    width: 100%;
    margin: 0 auto 50px auto;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
    text-align: center; 
}

@media (max-width: 768px) {
    .video-product-title {
        font-size: 24px;
    }
    .video-description {
        font-size: 14px;
        text-align: center; 
    }
    .video-item {
        max-width: 100%; 
    }
    .video-container-wrapper {
        flex-direction: column; 
        gap: 60px; 
    }
}
.about-text-column .mission-text p,
.about-text-column .vision-text p {
    font-size: 16px;
    line-height: 1.7;
    color: black;
}

@media (max-width: 992px) {
    .about-main-content {
        flex-direction: column; 
    }
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-photo {
        width: 80px;
        height: 80px;
    }

    .team-card h3 {
        font-size: 14px;
    }

    .team-card p {
        font-size: 12px;
    }
}
@media (max-width: 768px) {

  .header-content {
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .header-content h1 {
    font-size: 32px;
  }

  .header-content h2 {
    font-size: 14px;
    width: 100%;
  }

  .description-content {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .description-text, .description-img {
    flex: 1 1 100%;
    width: 100%;
  }

  .description-text h2 {
    font-size: 24px;
    text-align: center;
  }

  .description-text p,
  .description-list li p {
    font-size: 14px;
    text-align: justify;
  }

  .menu .nav-menu {
    z-index: 999;
  }

  .menu label {
    display: block;
  }

  .menu .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }

  .about-content {
    padding: 0 10px;
  }

  .section-title h2 {
    font-size: 24px;
    text-align: center;
  }

  .section-title h2::before,
  .section-title h2::after {
    display: none;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .faq-title {
    font-size: 20px;
  }

  .footer-image img {
    width: 10%;
    height: auto;
  }
  header {
    padding: 8px 0px; 
  }

}
