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

    body {
      background: #fff;
     /* overflow-x: hidden;*/
    }
   header {

      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 100;
    }
    
   nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
      align-items: center;
      font-size: 1.2rem;
      
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
     /* font-weight: bold;*/
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #00a899;
    }

    .btn-demo {
     text-decoration: none;
      font-weight: 600;
    }

    .btn-demo:hover {
       color:#18be9d;
    }

    .sign-in {
      border-radius: 6px;
      border: 1px solid #18be9d;
        background: #18be9d;
      color: white;
      padding: 8px 14px;
      font-weight: 500;
      text-decoration: none;
    
      transition: 0.3s;
    }

    .sign-in:hover {
      background: #e4e0e0;
      color:#18be9d;
    }
    /* ===== Hamburger Menu ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #333;
      margin: 4px;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ===== Mobile Nav ===== */
    @media (max-width: 992px) {
       
      nav ul {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: absolute;
        top: 70px;
        right: 40px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        width: 220px;
        padding: 15px;
      }

      nav ul.show {
        display: flex;
      }

      .hamburger {
        display: flex;
       
      }

     /* .btn-demo, .sign-in {
        display: none;
       
      }*/
      .logo1 img{
        width:200px;
      }
    }
 
 
 
    /* ===== Hero Section ===== */
    .hero-wrapper .ell1{
      height:300px;
      width:120px;
    }
     .hero-wrapper .ell2{
      height:140px;
      width:150px;
      margin-left: 0.5rem;
      
    }
     .hero-wrapper .ell3{
      
      height:50px;
      width:50px;
     
    }
    .hero {
      text-align: center;
      padding: 80px 20px;
    }

    .hero h1 {
      font-size: 2.8rem;
      color: #111;
      font-weight: 700;
      position: relative;
    }
    .hero h1 .connect{
      position: absolute;
      left:270px;
    }
    .hero h1 .meet_seem {
      color:#18be9d;
      
    }

    .hero p {
      font-size: 1.2rem;
      margin-top: 15px;
      color: #555;
    }

    .hero-buttons {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .btn-primary {
      background: #18be9d;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1.3rem;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background: #e4e0e0;
      color:#18be9d;
      color:#333;
      border:1px solid #18be9d;
      text-decoration: none;
    }

    .btn-outline {
      border: 2px solid #18be9d;
      color: #2c2c2c;
      background: transparent;
      padding: 10px 28px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.3s;
    }

    .btn-outline:hover {
      background: #e4e0e0;
      color: #2c2c2c;
      border:1px solid #18be9d;
    }
    .btn-icon{
       border:2px solid #18be9d;
       border-radius: 50%;
       width:2.5rem;
       height:2.5rem;
       background: none;
      margin:auto 0;
    }
    .btn-icon:hover{
      background: #e4e0e0;
    }
   
    
    /* Join / Create Buttons */
    .join-create {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }
   
    .join-btn, .create-btn {
    border: none;
      }
   .join-btn img, .create-btn img{
       height:3.5rem;
       width:9.5rem;
       border-radius: 40px;
      
       transition: transform 0.3s ease;
       box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
   }
    .join-btn img:hover, .create-btn img:hover {
      transform: scale(1.1);
    }

    /* Chatbot Box */
    .chatbot {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: white;
      width: 250px;
      height: 180px;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .chatbot input {
      border: none;
      border-top: 1px solid #ddd;
      padding: 8px;
      outline: none;
    }
    @media screen and (min-width:993px){
        .hero h1{
            font-size: 3rem;
        }
         .hero h1 .connect{
      position: absolute;
      left:280px;
    } 
    .hero p{
        font-size: 1.4rem;
    }
    .hero-buttons .btn-primary,  .hero-buttons .btn-outline{
       font-size: 1.5rem; 
    }
     .join-btn, .create-btn {
        margin-top: 1rem;
      }
       .join-btn img, .create-btn img {
        width:11rem;
        height:4rem;
       }
       .hero-wrapper .mobile1{
        width:250px;
         margin-top: 2rem;
       }
    }
    @media screen and (min-width:1024px) and (max-width:1400px){
   header{
    padding:60px 40px;
   }
   .hero-wrapper .col-8{
    width:60%;
   }
   .hero {
      
      padding: 80px 10px;
    }
    .hero h1 .connect{
      position: absolute;
      left:20px;
    } 
     .hero-wrapper .ell1{
      height:400px;
      width:150px;
    }
     .hero-wrapper .ell2{
      height:100px;
      width:100px;
      margin-left: 0.5rem;
      
    }
   
     .hero-wrapper .mobile1{
        width:225px;
        padding-right: 0;
        margin-right: 0;
        
       }
 }
 @media  screen and (min-width:1401px) {
   .hero-wrapper .ell1{
      height:400px;
      width:150px;
    }
    .hero-wrapper .ell2{
      height:120px;
      width:120px;
    
      
    }
    .hero-wrapper .ell3{
      height:50px;
      width:50px;
     
      
    }
 }
    @media screen  and (max-width:993px){
        .hero h1 .connect{
      position: absolute;
      left:20px;
    } 
   
    .hero-wrapper .ell2{
        width:80px;
         height:80px;
    }
     .hero-wrapper .ell3{
        width:40px;
        height:40px;
    }
    .hero-wrapper .mobile1{
       margin-top: 2.6rem;
        height:350px;
       width:170px;
      
    }
    .hero-wrapper .col-8{
    width:60%;
   }
    }
     
     @media screen  and (max-width:500px){
     
        .hero h1 .connect{
      position: absolute;
      left:0px;
    } 
     
     .hero h1 {
        font-size: 1.8rem;
     }
      .hero p{
        font-size: 1.1rem;
      }
      /*
     .hero-wrapper .ell1{
        width:100px;
         height:300px;
    }
    .hero-wrapper .ell2{
        width:40px;
         height:40px;
    }
     .hero-wrapper .ell3{
        width:15px;
        height:15px;
         margin-left: 0.5rem;
    }
    .hero-wrapper .mobile1{
        height:350px;
       width:40px;
    } */
     .logo1 img{
        width:160px;
      }
      .btn-primary{
        padding:0.6rem 0.8rem;

      }
      .btn-outline{
        padding:0.5rem 0.5rem
      }
       .btn-icon{
        width:2rem;
        height:2rem;
       }
    .join-create {
      gap: 10px;
      margin-top:30px;
      
    }
       .join-btn img, .create-btn img{
       height:2.9rem;
       width:7rem;
       border-radius: 40px;
      
      
   }
    }
@media screen and (max-width: 767px) {
  .ellipse1,
  .iphone1 {
    display: none !important;
  }
   /* Make hero section take full width */
  .hero-wrapper .col-8 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* Center everything cleanly */
  .hero {
    text-align: center;
    padding: 40px 40px;
  }

  /* Fix the absolute positioned 'Connect Privately' */
  
}


    /* macbook section styling */
     .MacBook{
        position: relative;  
       width:100%;
       height:550px;
     }
    .MacBook .macBook-img{
       width:100%;
        height:100%;
        object-fit: cover;
        display:block;
       
    }
   .desc-ellip-wrapper{
    position: absolute;
    top:120px;
    left:30px;
    z-index: 100px;

   }
   .desc-ellip-wrapper .description h1{
      color:#fff;
      letter-spacing: 0.1rem;
      font-size: 2rem;
   }
   .ellipse{
    position: relative;
    margin-top: 2rem;
     overflow-y: hidden;
  }
   .ellipse .ell4{
    width:5rem;
    
   }
    .ellipse .ell5{
    width:2.5rem;
    position: absolute;
    top:45%;
     left:35%;
   }
    .ellipse .ell6{
    width:1.5rem;
     position: absolute;
    top:20%;
    left:50%;
   }
   @media screen  and (min-width:993px){
     .MacBook{
         height:700px;
     }
      .desc-ellip-wrapper .description h1{
        font-size:3rem;
        letter-spacing: 0.2px;
        padding-left: 1rem;
      }
      .ellipse{
        margin-top: 3rem;
        padding-left: 1rem;
        overflow-y: hidden;
      }
     .ellipse .ell4{
    width:7rem;
   }
    .ellipse .ell5{
    width:3.5rem;
   left:40%;
   }
    .ellipse .ell6{
    width:2rem;
     left:55%;
   }
   }
  
 @media screen and (max-width:767px) {
     .MacBook{
        position: relative;
        width:100%;
        height:auto;
       
     }
     .desc-ellip-wrapper{
        position: absolute;
        top:20px;
        left:20px;
   }
    .desc-ellip-wrapper .description h1{
        font-size: 1.4rem;
        letter-spacing: 0.1px;
    }
     
   .ellipse .ell4{
    width:3.5rem;
  /*  position: absolute;
    bottom:20%;*/
    
   }
    .ellipse .ell5{
    width:1.5rem;
  
   }
    .ellipse .ell6{
    width:1rem;
   
   }
 }
@media screen and (max-width:767px) {
  .desc-ellip-wrapper{
        position: absolute;
        top:20px;
        left:15px;
   }
    .desc-ellip-wrapper .description h1{
        font-size: 1.4rem;
        letter-spacing: 0.1px;
        line-height: 1.1;
    }
}
 /* vision section styling */

 .vision-wrapper{
   margin-bottom: 2rem;
  
  /*  background-color: #18be9d;*/
 }
 .vision{
    margin-top:2rem;
 }
  .vision h1{
    font-size: 2rem;
    font-weight: bold;
    color:#18be9d;
     padding-top:5rem;
  }
  .vision p{
    font-size: 1.13rem;
   padding-left: 1rem;
    color:#3b3b3b;
   
  }
  .vision-image{
    height:30rem;
  }
 .vision-image img{
        width:100%;
       height:100%;
        object-fit: cover;
    }
   
  .vision{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     text-align: center;
  } 
  @media screen and (max-width:767px) {
    .vision{
    margin-top:2rem;
    text-align: center;
 }
 .vision h1{
    font-size: 1.6rem;
    padding-top:1rem;
  }
  .vision p{
    font-size: 1.02rem;
   padding-left: 0px;
   padding-top: 1rem;
   width:22rem;
   text-wrap: wrap;
  
  }
 .vision-wrapper .row {
    flex-direction: column; /* stack vertically */
  }
  .vision-wrapper .col {
    flex: 1 1 100%;
    text-align: center;
  }
 .vision-image{
  margin-top: 0px;
  width:27.5rem;
    height:auto;
   
  }
  .vision-image img{
    width:100%;
    object-fit: cover;
   
    
  }
  }
 @media screen and (min-width:993px) {
     .vision p{
       text-wrap: wrap;
       width:50rem;
       font-size: 1.4rem;
     }
     .vision h1{
        font-size: 3rem;
        margin-block: 1rem;
        padding-top:2rem;
     }
     .vision-image{
         height:50rem;
     }
    
 }
  @media screen and (min-width:1024px) and (max-width:1400px){
    .vision p{
       text-wrap: wrap;
       width:30rem;
       font-size: 1.4rem;
     }
      .vision-image{
         height:30rem;
     }
     }
 /* blissmeeting section styling */

 .blissmeeting-diff{
  margin:1rem 0rem 0rem 0.5rem;
  border-top: 1px solid #85e4d1;
  border-left: 1px solid #85e4d1;
  border-bottom: 2px solid #55e0c5;
  box-shadow: 0 8px 10px -6px rgba(0,0,0,0.2);
  padding-block: 2rem;
  overflow-x: hidden;
 }
 
 .bliss-diff{
    display: flex; 
    flex-direction: column; 
    justify-content:center;
    align-items: center;
    text-align: center;
   
 }
 
 .bliss-diff p{
  font-size: 1.1rem;
  max-width: 320px;
  color:#666666;
 }
 .bliss-diff h5{
   padding-top: 0.5rem;
   font-size: 1.6rem;
   font-weight: bold;
 }
   .ellipse-part{
      position: relative;
      text-align: center;
      margin-top:1rem;
   }
 .ellipse-part img{
    width:16rem;
   
 }
 .ellipse-part h2{
    color:#18be9d;
    font-size:1.8rem ;
     font-weight: bold;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
 }
@media screen and (max-width:767px){
  .blissmeeting-diff{
  margin:1rem 0rem 0rem 0rem;
  padding-inline: 0.5rem;
  }
   .row {
    display: flex;
    flex-direction: column;
   
    gap: 1.5rem;
    margin: 0;
  }
  .bliss_diff_row1{
    margin-bottom: 1.5rem;
  }
  .col {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .bliss-diff p{
  font-size: 1.08rem;
 /* width:22rem;
  flex-wrap: wrap;*/
   max-width: 100%;    
    padding-inline: 0.5rem;   
 }
 .bliss-diff h5{
  font-size: 1.5rem;
 }
 .switch-icons{
  margin-bottom: 0.8rem;
 }
  .ellipse-part img{
    width:14rem;
  }
 .ellipse-part h2{
   font-size:1.6rem ;
    width: 90%;
    line-height: 1.2;
 }
}
@media screen and (min-width:993px) {
       .bliss-diff p{
        text-wrap: wrap;
        width:20rem;
        font-size: 1.3rem;
        color:#555;
       } 
        .bliss-diff h5{
            font-size: 1.8rem;
        } 
         .ellipse-part img{
         width:30rem;
         margin-top: 2rem;
   
 } 
  .ellipse-part h2{
     font-size:2.6rem ;
     letter-spacing: 1px;
  }
    }
     @media screen and (min-width:1024px) and (max-width:1400px){
        .bliss-diff p{
        text-wrap: wrap;
        width:19rem;
        font-size: 1.3rem;
        color:#555;
       } 
        .bliss-diff h5{
            font-size: 1.8rem;
        } 
         .ellipse-part img{
         width:20rem;
         margin-top: 2rem;
   
 } 
  .ellipse-part h2{
     font-size:2rem ;
     letter-spacing: 1px;
  }
     }

   /* highlights section styling */ 

   .highlights-section {
    position: relative;
  background: linear-gradient(180deg, #e1f5f3 0%, #EBF7F6 57%, #FFFFFF 100%);
/*  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.15);*/
  
}
 .highlights-section .highlight-image1 img{
  width:6rem;
   position: absolute;
  left:0;
  top:0;
 }
.container {
/*  max-width: 1100px;*/
  margin: 0 auto;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #18be9d;
  margin-bottom: 40px;
  padding-top:3rem;
}
.highlights-items{
   display: flex;
  
/* align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;*/
}
.highlight-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;

}

.highlight-item.reverse {
  flex-direction: row-reverse;
}
.highlight-text h2 {
  color: #18be9d;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-text p {
  color: #333;
  line-height: 1.6;
  font-size: 1.2rem;
  width:50rem;
  text-wrap: wrap;
}

.highlight-image {
  flex: 1 1 40%;
  text-align: center;
}

.highlight-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) and (max-width:992px){
  .highlights-items {
 flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;

}
   
  .highlight-text p{
    width:40rem;
    text-wrap: wrap;
    margin-bottom: 1rem;
  }
  .highlight-image img {
  width: 100%;
  max-width: 200px;
   margin-bottom: 1rem;
}
}
/* Responsive for mobile */
@media (max-width: 767px) {
  .highlights-section .highlight-image1 img{
  width:4rem;
  }
  .section-title{
    font-size: 1.8rem;
     margin-bottom: 30px;
  }
  .highlights-items{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  .highlight-text h2 {
    font-size: 1.5rem;
  }

.highlight-text p {
  line-height: 1.6;
  font-size: 1.1rem;
  width:22rem;
  text-wrap: wrap;
}
 .highlight-item.reverse {
  flex-direction: column;
  }
 .highlight-image img {
   width:100%;
  max-width:180px;
  margin:2rem 0 3rem 0;
}
  
}
@media screen and (min-width:360px) and (max-width:412px){
  .highlight-text h2 {
    font-size: 1.3rem;
  }
  .highlight-text p {
  line-height: 1.6;
  font-size: 0.95rem;
  width:20rem;
  text-wrap: wrap;
}
}
@media screen and (min-width:993px) {
  .section-title{
    font-size: 3rem;
  }
  .highlights-section .highlight-image1 img{
  width:8rem;
  position: absolute;
  left:0;
  top:0;
 }
 .highlight-image img{
  width:400px;
 }
   .highlight-text h2 {
    font-size: 2rem;
  }
  .highlight-text p{
   font-size: 1.3rem;
  }
}
 @media screen and (min-width:1024px) and (max-width:1400px){
   .highlight-text p {
     width:35rem;
  }

 }
/* performance section styling */
.performance-section {
  position: relative;
  padding: 60px 100px;
  background: #fff;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.phone-image img {
  width: 260px;
  max-width: 100%;
  display: block;
}

.text-content {
  flex: 1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-block {
  margin-bottom: 40px;
}
.section-block h2 {
  color: #18be9d;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-block p {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 auto;
  width:25rem;
}

.illustration img {
  width: 300px;
  max-width: 100%;
}

.group-img img{
  width:300px;
  position: absolute;
  bottom:0;
  right:0;

}
/* Responsive */

@media screen and (max-width:767px) {
  .performance-section {
   padding:0px 20px 80px 20px;
 }
 .content-wrapper {
  justify-content: center;
   gap: 10px;
  }

.phone-image img {
  width:100%;
  max-width:280px;
}
.section-block {
  margin-bottom: 40px;
}

.section-block h2 {
  font-size: 1.5rem;
}
.section-block p {
  font-size: 1.1rem;
  line-height: 1.6;
}
/*
.illustration img {
  width: 680px;
  max-width: 100%;
  margin-block:0px;
}
*/
.group-img img{
  width:250px;
  position: absolute;
  bottom:0;
  right:0;

}
}
@media screen and (min-width:360px) and (max-width:412px){
  .section-block h2 {
  /*  padding-left: 1rem;*/
  font-size: 1.3rem;
  width:22rem;
}
 .section-block p {
  font-size: 0.95rem;
 width:22rem;
}

}
@media screen and (min-width:993px) {
  .phone-image img{
    width:350px;
  }
  .section-block h2 {
    font-size:2rem;
  }
  .section-block p{
    font-size: 1.3rem;
    width:50rem;
  }
  
  .group-img img{
    width:350px;
    height:300px;
  }
  
}
@media (min-width: 768px) and (max-width:992px){
  .content-wrapper {
 
  justify-content:center;
  gap: 20px;
 
}
.performance-section {
     padding: 60px 20px;
     padding-bottom: 120px;
 }
   .phone-image img{
    width:300px;
  }
  .section-block p{
    width:40rem;
    text-wrap: wrap;
  }
}
@media screen and (min-width:1024px) and (max-width:1400px){
   .performance-section {
     padding: 60px 0px;
     padding-bottom: 220px;
 }
 .section-block p{
     width:35rem;
     margin-bottom:2rem;
  }
  .group-img img{
    width:350px;
    right:10px;

}
}
/* customer review section styling */

.reviews-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom right, #ffffff, #f4fcfb);
}

.reviews-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #18be9d;
  margin-bottom: 60px;
  text-align: center;
  padding-left: 2rem;
}

/* --- GRID LAYOUT --- */
.reviews-grid {
/* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-items: center;
}

/* --- Review Card --- */
.review-card {
  position: relative;
  width: 320px;
  height: 330px;
  border-radius: 15px;
  margin-block: 1rem;
 
  overflow: hidden;
  background-color: transparent;
  /*perspective: 1000px;*/
}
.review-card img{
  width:100%;
  height:100%;
   object-fit: cover;
    border-radius: 15px;
    
}


.review-content{
/*  width:150px;*/
  height:90%;
  position: absolute;
  inset: 0;
  max-width: 70%;
  color:#fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
   padding: 20px;
   padding-top: 30px;
  text-align: left;
  margin:0 auto;
}
.quote-top {
  /*font-size: 3rem;*/
  font-weight: 700;
  color: #fff;
  position: absolute;
 top:15px;
 right:10px;
 z-index: 20;


}
.quote-top img{
  width:2.2rem;
}

.rating-count {
 /* display: inline-block;*/
  background: #fff;
  color: #333;
  font-size: 0.95rem;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 20px;

}

.review-content p {
  height:140px;
  font-size: 1.1rem;
  line-height: 1.3;
/*  margin: 10px 0 20px;*/
/*  text-align: start;
  text-wrap: wrap;*/

}

.stars {
 color: #ffd700;
  font-size: 0.9rem;
  text-align: center;
   margin-bottom: 1.2rem;
   padding-left: 1rem;
}

.reviewer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.reviewer::before{
 content: "";
  position: absolute;
  top: -40%;
  left: 60%;
  transform: translateX(-50%);
  width: 85%;   /* adjust length */
  height: 2px;   /* thickness */
  background-color: #fff;  /* or #18be9d for green line */
  border-radius: 2px;
 margin-block: 0.5rem;
}
.reviewer h4 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .reviews-section h1 {
    font-size: 1.8rem;
  }
  .reviews-section h2 {
    font-size: 1.6rem;
  }

  .review-card {
    width: 90%;
    height: auto;
  }

  .review-content {
    padding: 20px;
  }
  .quote-top img{
  width:2rem;
}

}
@media (min-width: 360px) and (max-width:412px){
  .review-card {
  width: 340px;
  height: 320px;
 
}
.review-content p {
  height:130px;
  font-size: 1rem;
}

.stars {
  font-size: 0.8rem;
}
  .reviews-section h1 {
    font-size: 1.6rem;
  }
  .reviews-section h4 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width:993px) {
  .reviews-grid{
     gap:70px;
  }
  .review-content{
    padding-top: 2.5rem;
  }
  .review-card{
    width:420px;
    height:450px;
   
  }
  .quote-top{
    top:7%;
  }
  .quote-top img{
  width:3rem;
}
.rating-count{
  font-size: 1.3rem;
}
.review-content p{
  font-size:1.5rem;
  margin-top: 1rem;
  height:140px;
}
.reviews-section h1{
  font-size: 4rem;
  padding-left: 4rem;
}
.stars{
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.reviewer img{
  width:60px;
  height:60px;
}
.reviewer h4{
  font-size: 1.5rem;
  padding-left: 0.5rem;
}
}

.footer {
  background-color: #18be9d; /* teal green like image */
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer h1 {
  font-weight: 700;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons a {
  background: white;
  color: #18be9d;
  border-radius: 8px;
  font-size: 22px;
  padding: 4px 8px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c9caca;
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color:#ebe9e9;
  text-decoration: underline;
}

.footer-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  
}
.footer-bottom .contact-item{
color:#fff;
}
.footer-bottom .contact-item:hover{
  color:#ebe9e9;
}
.footer-bottom i {
  font-size: 1.2rem;
}
@media screen and (min-width:993px) {
  .footer h1{
    font-size: 3.5rem;
  }
  .footer-links a {
    font-size: 1.1rem;
  }
  .footer-text {
    font-size: 1.2rem;
  }
  
  .footer-bottom{
    font-size: 1.3rem;
  }
  .footer-bottom i{
    font-size: 1.3rem;
  }
  .social-icons a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:767px) {
  .footer {
    padding: 40px 10px;
 }
.footer h1 {
 font-size: 1.8rem;
}
.social-icons a {
  font-size: 22px;
  padding: 2px 4px;
 }
.footer-links {
  font-size: 1.1rem;
}

.footer-text {
  max-width: 95%;
  font-size: 0.98rem;
  text-align: center;
}

.footer-bottom {
   font-size: 0.98rem;
}

.footer-bottom i {
  font-size: 1.2rem;
}
}

/* privacy policy section styling */

/* Modal Overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
 /* position: absolute;*/
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
 /* background-color: rgba(9, 37, 163, 0.6);*/
 background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 35px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Scrollable content if long */
.privacy_policy {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.privacy_policy{
  font-family:Arial, Helvetica, sans-serif;
  max-height:600px;
  overflow-y: scroll;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
  

}
.privacy_policy strong{
  font-size: 1.2rem;
  padding:0 0.5rem 0 0;
 
}
.privacy_policy p{
  font-size: 1.05rem;
   color:#3f3e3e;
   margin-block: 0;
}
.privacy_policy ul li{
    font-family:Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.01px;
  color: #6b6a6a;

}
.privacy_policy ul li::marker{
   font-size: 24px;
 }
@media screen and (min-width:944px) {
 .modal-content{
    width:50%;
      margin: 10% auto;
    
  }
}
 a {
     /* color:#18be9d;*/
      color:#139b80;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
/*
    .terms {
  color: #25A941;
  cursor: pointer;
  text-decoration: underline;
  margin: 20px;
}*/
.privacy:hover{
  color:rgb(88, 88, 88);
  cursor: pointer;
}

/* terms and condition section styling */

/* Modal Overlay */
.modal1 {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}

/* Modal Box */
.modal-content1 {
  background: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-content1 h2{
  font-size: 1.6rem;
  color:#000;
}
/* Close Button */
.close1 {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 35px;
  color: #555;
  cursor: pointer;
}
.close1:hover {
  color: #000;
}

/* Scrollable content */
.terms-and-conditions {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 10px;
}
/* Modal Styles for terms section */
.terms-and-conditions{
  font-family:Arial, Helvetica, sans-serif;
  max-height:600px;
  overflow-y: scroll;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.01px;
   line-height: 1.9rem;
  }
  .terms-and-conditions h2{
    font-size: 1.5rem;
    letter-spacing: 0.3;
  }
.terms-and-conditions strong{
  font-size: 1.2rem;
  padding:0 0.5rem 0 0;
  font-weight: 800;
 
}
.terms-and-conditions p{
  font-size: 1.05rem;
   color:#3f3e3e;
   margin-block: 0;
}
.terms-and-conditions ul li{
    font-family:Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.01px;
  color: #6b6a6a;

}
.terms_of_services:hover{
  color:rgb(88, 88, 88);
  cursor: pointer;
}
.terms-and-conditions ul li::marker{
   font-size: 24px;
 }

 @media screen and (min-width:944px) {
 .modal-content1{
    width:50%;
      margin: 10% auto;
  }
}
@media screen and (max-width:767px) {
  .privacy_policy strong{
  font-size: 1rem;
}
.privacy_policy p{
  font-size: 0.9rem;
 }
.privacy_policy ul li{
   font-size: 0.97rem;
}
.privacy_policy{
 max-height:400px;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
}
.modal-content {
  padding: 20px;
  width: 90%;
 /* max-width: 380px;*/
}
 .terms-and-conditions strong{
  font-size: 1rem;
}
.terms-and-conditions p{
  font-size: 0.9rem;
 }
.terms-and-conditions ul li{
   font-size: 0.97rem;
}
.terms-and-conditions{
 max-height:400px;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
}
.modal-content1 {
  background-color: #fff;
/*  margin: 50% auto;*/
  padding: 20px;
  width: 90%;
 }
.modal-content1 h2{
  font-size: 1.8rem;
   text-align: center;
}
}