* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    /* padding-top: 70px;  */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F3FBF6;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    padding: 0px 30px;
}

.navbar .logo img {
    width: 150px;
    height: auto;
}

.navbar .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-menu li {
    display: inline;
}

.navbar .nav-menu li a {
    color: #828080;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400px;
    line-height: 24px;
}

.navbar .nav-menu li a:hover {
    color: #2E2E2E;
}

.navbar .get-started a button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, background-color 0.3s ease;
}
.navbar .get-started a button.show {
    transform: translateX(0);
}

.navbar .get-started a button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}
.button-link{
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}
.navbar .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 5px 20px;
    }
    .hamburger {
        display: block;
        color: #4CAF50;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none !important;
        background-color: #F3FBF6;
    }

    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu li {
        text-align: center;
        padding: 10px 0;
    }

    .get-started {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        display: none;
    }

    .navbar .get-started a button {
        transform: translateX(0); 
    }
    .get-started.show {
        display: block;
    }
}

#about {
    padding: 20px 0px;
    font-size: 18px;
    background-color: #F3FBF6;
    margin-top: 60px;
}
.whatsapp_text{
    color: rgb(37, 212, 102);
    margin: 0;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500px;
}
.whatsapp_text svg {
    margin: 0;
    padding: 0;
    margin-right: 10px;
}
.whatsapp_divider {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
}

.whatsapp_divider_left {
    width: 60%;
}
.whatsapp_divider_left h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}
h2 .break {
    display: block;
}
.whatsapp_divider_left h2 .text_green {
    color: #25D366;
}
.whatsapp_description{
    margin: 20px 0px;
}
.whatsapp_divider_right {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rotateImage 20s ease-in-out infinite;
}
.whatsapp_divider_right img {
    width: 80%;
    max-width: 380px;
    height: auto;
    transition: transform 0.3s ease;
}
@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.button-container {
    display: flex;
    gap: 20px;
    align-items: center;
}
.start-messaging-btn {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 40px;
    transition: transform 0.3s ease;
}
.background-color-green{
     background-color: #4CAF50;
     color: white;
}
.background-color-white{
     background-color: white;
     color: black;
     border: 1px solid silver;
}
.arrow-icon {
    margin-left: 10px;
    height: 20px;
    width: 20px;
    transition: transform 0.3s ease;
}
.start-messaging-btn:hover .arrow-icon {
    transform: translateX(5px);
}
.start-messaging-btn:hover {
    transform: translateY(-2px);
}
.whatsapp_stats{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
}
.stat{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.value{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.label{
   color: rgb(158, 158, 158);
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
}

@media (max-width: 768px) {
.whatsapp_divider {
   flex-direction: column;
}
.whatsapp_divider_left h2 {
   font-size: 2.5rem;
}
.whatsapp_divider_left {
   width: 100%;
}
.whatsapp_divider_right {
   flex-grow: 1;
   margin-top: 20px;
}
}
.customer_message {
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    text-align: center;
}
.customer_message h2{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    margin-top: 20px;
}
.customer_message p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(115, 115, 115);
    width: 70%;
    text-align: center;
    margin-top: 15px;
}

#whatsapp_points_section{
    display: flex;
    justify-content: center;
    background-color: #FAFAFA;
}
.whatsapp_points{
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    margin-bottom: 50px;
}
.whatsapp_points_indi{
    border: 1px solid rgb(235, 230, 230);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp_points_indi:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.whatsapp_points_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EEFCF3;
    padding: 20px;
    border-radius: 20px;
}
.whatsapp_points_icon svg{
    color: #25D466;
}
.whatsapp_points_title{
    display: flex;
    justify-content: center;
    margin: 15px 0px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: rgb(46, 46, 46);
    white-space: nowrap;
}
.whatsapp_points_desc{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
 .customer_message {
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
}
.customer_message h2{
    font-size: 2rem;
    line-height: 36px;
    font-weight: 700;
    margin-top: 0px;
    padding: 0px 5px;
}
.customer_message p{
    font-size: 16px;
    line-height: 24px;
    width: 90%;
}
.whatsapp_points{
    flex-direction: column;
    width: 90%;
}
}

.message_type {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    text-align: center;
}
.message_type h2{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    margin-top: 20px;
}
.message_type_color{
    color:rgb(37, 212, 102);
}
.message_type p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(115, 115, 115);
    width: 70%;
    text-align: center;
    margin-top: 15px;
}
@media (max-width: 768px) {
 .message_type {
    width: 100%;
    margin: 0px auto;
    padding-top: 10px;
}

.message_type h2{
    font-size: 2rem;
    line-height: 36px;
    font-weight: 700;
    margin-top: 0px;
    padding: 0px 5px;
}
.message_type p{
    font-size: 16px;
    line-height: 24px;
    width: 90%;
}
}
 
#message_types_section{
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}
.message_types{
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
    width: 95%
}

.message_types_section_indi {
  flex: 1;
  border: 1px solid rgb(235, 230, 230);
  border-radius: 20px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message_types_section_indi:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.message_types_section_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.message_types_section_indi:hover .message_types_section_icon {
  transform: scale(1.2);
}

.message_types_section_icon_sec {
    display: flex;
    align-items: center;
}


.message_types_purple{
  background: linear-gradient(135deg, #9468E9, #8F5AD2);
}
.message_types_pink{
  background: linear-gradient(135deg, #EE6A97, #E66A9C);
}
.message_types_green{
  background: linear-gradient(135deg, #23CA66, #0E8464);
}
.message_types_blue{
  background: linear-gradient(135deg, #61C3F6, #48A1F1);
}

.message_types_section_icon svg{
    color: #FFFFFF;
}
.message_types_title{
    margin: 20px 0px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: rgb(46, 46, 46);
}
.message_types_desc{
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
   color: rgb(115, 115, 115);
   padding-bottom: 10px;
}
.message_types_desc_ul{
   font-size: 14px;
   line-height: 20px;
   font-weight: 400;
   color: rgb(158, 158, 158);
   list-style-position: inside;
   padding-left: 0; 
   margin: 0; 
}
.message_types_desc_ul li {
  padding: 5px;
}
.message_types_desc_ul li::marker {
  color: #25D466;
}
.message_types_section_sample{
    background-color: #F9FaFB;
    border-radius: 15px;
    padding: 10px;
    margin: 5px 0px;
}
.message_types_sample_title{
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: rgb(158, 158, 158);
    margin: 5px 0px;
}
.message_types_sample_desc{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(46, 46, 46);
}
@media (max-width: 768px) {
.message_types{   
    flex-direction: column;
    width: 90%
}
}

.gomewa {
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    text-align: center;
}
.gomewa h2{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    margin-top: 20px;
}
.gomewa p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(115, 115, 115);
    width: 60%;
    text-align: center;
    margin-top: 15px;
}
@media (max-width: 768px) {
.gomewa {
    width: 100%;
    margin: 0px auto;
    padding-top: 10px;
}
.gomewa h2{
    font-size: 2rem;
    line-height: 36px;
    font-weight: 700;
    margin-top: 0px;
    padding: 0px 5px;
}
.gomewa p{
    font-size: 16px;
    line-height: 24px;
    width: 90%;
}
}
#gomewa_section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
}
.gomewa_section_indi{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgb(235, 230, 230);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}
.gomewa_section_indi:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gomewa_section_icon_sec{
    width: 20%;
    height: 100%;
}
.gomewa_section_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background-color: #EEFCF3;
    transition: transform 0.3s ease;
}
.gomewa_section_indi:hover .gomewa_section_icon {
  transform: scale(1.1);
}
.gomewa_section_icon svg{
    color: #25D466;
}
.gomewa_section_detail{
   flex: 1;
   padding: 0;
   margin: 0;
}
.gomewa_section_detail_title{
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: rgb(46, 46, 46);
    margin-bottom: 10px;
}
.gomewa_section_detail_desc{
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    color: rgb(115, 115, 115);
}
@media (max-width: 768px) {
#gomewa_section {
  grid-template-columns: repeat(1, 1fr);
}
}

.customer_communication {
   background-color: #FAFAFA;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center; 
   padding: 50px 0px;
   text-align: center;
}
.customer_communication_background{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 97%;
    background: linear-gradient(135deg, #25D166, #0C7E64);
    border-radius: 10px;
}
.customer_communication h2{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-top: 20px;
}
.customer_communication p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    width: 70%;
    text-align: center;
    margin-top: 15px;
}
.customer_communication_button{
    padding: 15px 25px;
    background-color: #E8F5F0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: rgb(37, 212, 102);
    border: none;
    border-radius: 12px;
    margin: 20px 0px;
    transition: transform 0.3s ease;
}
.customer_communication_button:hover {
  transform: translateY(-2px);
  background-color: #c9eee0;
}
@media (max-width: 768px) {
.customer_communication h2{
    font-size: 2rem;
    margin-top: 20px;
    padding: 0px 5px;
}
.customer_communication p{
   width: 90%;
}
}

.trust {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    text-align: center;
}
.trust h2{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    margin-top: 20px;
}
.trust p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(115, 115, 115);
    width: 60%;
    text-align: center;
    margin-top: 15px;
}

#trust_section{
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}
.trust_cover{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.trust_indi{
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trust_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EEFCF3;
    padding: 20px;
    border-radius: 20px;
}
.trust_icon svg{
    color: #25D466;
}
.trust_title{
    text-align: center;
    margin-top: 15px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    white-space: nowrap;
}
.trust_subtitle{
    text-align: center;
    margin: 5px 0px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: rgb(46, 46, 46);
    white-space: nowrap;
}
.trust_desc{
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(158, 158, 158);
}
@media (max-width: 768px) {
.trust_cover{
    grid-template-columns: repeat(1, 1fr);  
}
.trust {
   width: 100%;
    margin: 0px auto;
    padding-top: 10px;
}
.gomewa p{
    font-size: 16px;
    line-height: 24px;
    width: 90%;
}
.trust h2{
    font-size: 2rem;
    line-height: 36px;
    padding: 0px 5px;
}
.trust p{
    font-size: 16px;
    line-height: 24px;
    width: 90%;
}
}
.connect {
    background-color: #F0FBF4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.connect_section{
    background-color: #FFFFFF;
    width: 70%;
    margin: 60px 0px;
    border-radius: 20px;
    padding-top: 60px;
}
.connect_text_section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.connect_text_section h2{
    text-align: center;    
}
.connect_text{
    border-radius: 20px;
    background-color: #EEFCF3;
    color: rgb(37, 212, 102);
    padding: 5px 10px;
    margin: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
}

.connect h2{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: rgb(46, 46, 46);
    margin: 20px 0px;

}
.connect p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(115, 115, 115);
    width: 70%;
    text-align: center;
}
.connect_point{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.connect_point_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 70%;
}
.connect_point_indi {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(115, 115, 115);
}
.connect_point_indi svg{
    color: #25D466;
}
.connect-button{
    margin: 50px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}
.connect_now{
 color: #FFFFFF;
 background-color: #25D466;
 padding: 10px 25px;
 border-radius: 5px;
 display: inline-flex;
 align-items: center; 
 cursor: pointer;
 transition: transform 0.3s ease;
}
.schedule_demo{
  border: 1px solid slategray;
  padding: 10px 25px;
  color: slategray;
  background-color: #fff;
  border-radius: 5px; 
  cursor: pointer;
  transition: transform 0.3s ease;
}
.connect_now:hover .arrow-icon {
    transform: translateX(5px);
}
.connect_now:hover, .schedule_demo:hover {
    transform: translateY(-2px);
}
.custom-line {
    border: none;
    height: 1px;
    background-color: #f8f4f4;
    width: 80%;
    margin: 40px auto;
}
.connect_footer_text{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(158, 158, 158);
    text-align: center; 
}
.connect_footer_point{
  display: flex;
  justify-content: center;
  gap: 30px;
   margin: 20px 0px 40px 0px;
}
.connect_footer_point_indi{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: rgb(158, 158, 158);
}

.connect_footer_point_indi svg{
   color: #25D466
}
@media (max-width: 768px) {
.connect {
   width: 100%;
}
.connect_section{
    width: 100%;
    margin: 30px 0px;
    padding-top: 20px;
}
.connect_text{
    border-radius: 20px;
    background-color: #EEFCF3;
    color: rgb(37, 212, 102);
    padding: 5px 10px;
    margin: 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
}
.connect p{
    width: 90%;
}
.connect_point_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
}
.connect_point_indi {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(115, 115, 115);
}
.connect_point_indi svg{
    color: #25D466;
}
.connect-button{
    margin: 50px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}
}

.footer {
  background-color: #f8f9fa;
  color: #2e2e2e;
  padding: 60px 20px;
}

.footer_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.footer_brand {
  flex: 1 1 300px;
}

.footer_logo {
  font-size: 28px;
  font-weight: 700;
  color: #25D366;
  margin-bottom: 10px;
}

.footer_tagline {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 10px;
  color: rgb(115, 115, 115);
}

.footer_partner {
  font-size: 14px;
  font-weight: 400;
  color: rgb(115, 115, 115);
  margin-top: 10px;
}


.footer_links {
  display: flex;
  gap: 40px;
  flex: 2 1 600px;
  flex-wrap: wrap;
}


.footer_column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.footer_column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_column ul li a {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgb(115, 115, 115);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer_column ul li a:hover {
  color: #25D366;
}

.footer_column ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgb(115, 115, 115);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer_column ul li:hover {
  color: #25D366;
}

.footer_bottom {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #666;
  background-color: #f1f1f1;
  line-height: 1.6;
}


@media (max-width: 600px) {
  .connect_point_section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .whatsapp_divider {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp_divider_left, .whatsapp_divider_right {
        width: 100%;
    }

    .whatsapp_divider_right img {
        width: 60%;
    }
}
