*{
  margin: 0;
  padding:0;
  box-sizing: border-box;
  
}
 body{
  overflow-x: hidden;
  font-family:sans-serif;
}
/* Basic navbar styling */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background-color: #fff;
  
  position: relative;
}
.logo img {
  height: 5rem;
 width:6rem;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
   font-size: 1.1rem;
   
  
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.nav-links a:hover {
  color: #25A941;
}

/* Hamburger icon hidden on desktop */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
   
}

/* === Responsive styles === */
@media (max-width: 992px) {
  .navbar{
     padding: 12px 20px;
  }
  .hamburger {
    display: block;
   
  }
.nav-links {
    display: none;
    flex-direction: column;
    background: white;
   
    position: absolute;
    top: 75px;
    right:25px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 0 0 8px 8px;
    z-index: 100;
    gap:10px;
     font-size: 1.1rem;
     align-items:flex-start;
     padding-left: 2rem;
  
  
  }
 .nav-links a {
    padding: 2px 0;
    display: block;
 }

  .nav-links.active {
    display: flex;
     z-index: 19999;
  }
 
}

/* car wrapper section styling */
.car-wrapper{
    position: relative;
       height: 600px;
       display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden; /* hides any overflow from the video */
      text-align: center;
}
/* 🔹 Background video styling */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills the section like background-size: cover */
  z-index: 0;
}
/* 🔊 Mute Button Style */
.mute-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  background: #25A941;
  color:rgb(243, 240, 240);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.mute-btn:hover {
  background: #166626;
}

.mute-btn img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
}

.car-wrapper-content{
    width: 100%;
    z-index: 9999;

    padding: 0 1rem;
}
.app-buttons{
    display:flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    
}
.play-btn, .app-btn{
  background: rgba(255, 255, 255, 0.15);   /* transparent white base */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  backdrop-filter: blur(12px);             /* glass blur effect */
  -webkit-backdrop-filter: blur(12px);     /* Safari support */
  cursor: pointer;
  text-decoration: none;
  
}
.play-btn:hover, .app-btn:hover{
  text-decoration: none;
  background-color:rgba(121, 121, 121, 0.15) ;
}
.play-button h1{
    font-style: italic;
    font-size: 2.4rem;
}
.play-btn img, .app-btn img{
    width:2.5rem;
    margin-right: 0.5rem;
}
.app-buttons button{
    color:#fff;
}
.app-button{
   position: relative; 
   margin-top: 3.5rem;
}
.ads{
    position: absolute;
    top:-90%;
    left:30%;
    background-color: rgb(93, 113, 228);
    font-style: italic;
    font-weight: bold;
     border-radius: 12px;
     font-size: 0.8rem;
     padding:2px 8px;
}
.car-heading{
    position: relative;
}
.car-heading h1{
   position: relative;
    font-size: 3rem;
   margin-top: 1rem;
  margin-bottom: 4rem;
  
}
.car-heading .car-wash{
   position: absolute;
   left:330px;
   top:50%;
   margin-top: 1rem;
  font-style: italic;
}
.car-wrapper-content p{
    margin-top: 1rem;
  
    font-size: 1.2rem;
    text-wrap: wrap;
    width:30rem;
   margin: 0 auto;
}
.service-btn{
  background-color: #25A941;
  color:#fff;
  padding:10px 10px;
  border-radius: 10px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0 auto;
  cursor: pointer;
  border:2px solid #fff;
  margin-top: 1.5rem;
  width:12rem;
  text-decoration: none;
}
.service-btn:hover{
  background-color: #166626;
  text-decoration: none;
}
@media screen and (max-width:767px) {
 .car-wrapper {
    height: 300px;
  }
 
.mute-btn img {
  
  width: 20px;
  height: 20px;
}
 .app-buttons{
  gap:15px;
  justify-content: center;
  align-items: center;
 }
 .play-btn, .app-btn{
   padding: 12px 12px;
   font-size: 1.2rem;
   text-decoration: none;
    padding: 6px 6px;
   font-size: 1rem;
 }
 
 .play-button h1{
   font-size: 2.35rem;
   font-size: 1.2rem;
}
 .play-btn img, .app-btn img{
    width:2rem;

      width:1.5rem;
}
.ads{
    position: absolute;
    top:-105%;
    left:15%;
    padding:2px 4px;
}
.car-heading h1{
  font-size: 2.5rem;
  margin-top: 1.4rem;
   font-size: 1.6rem;
  margin-top: 1.2rem;
}
.car-heading .car-wash{
   left:60px;
   top:50%;
   font-size: 2rem;
    font-size: 1.6rem;
     left:90px;
}
.car-wrapper-content p{
     
    font-size: 1.1rem;
    text-wrap: wrap;
    width:22rem;
     font-size: 1rem;
     
}
.service-btn{
  padding:10px 10px;
  font-size: 1.3rem;
  width:11rem;

   padding:6px 8px;
  font-size: 1.2rem;
  width:11rem;
}
}

@media (max-width: 480px) {
  .mute-btn{
    display:none;
}
@media screen and (min-width:993px) {
   .car-wrapper{
     height:800px;
     width:100%;
   } 
   .car-heading{
     position: relative;
   }
   .car-heading h1{
    font-size: 4rem;
    margin-top: 1rem;
  
  
}
.car-heading .car-wash{
   position: absolute;
   right:100px;
   top:60%;
}
.car-wrapper-content p{
   font-size: 1.3rem;
   padding-top: 1rem;
   width:55rem;
  text-align: center;
  padding-left: 2rem;
}

.service-btn{
  padding:10px 10px;
  font-size: 1.5rem;
  width:14rem;
}
}

/* Feature section styling */

.servoji-section {
  padding: 80px 20px;
 /* box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.15); */
   position: relative;
}

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

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

.servoji-text {
  flex: 1 1 50%;
}

.servoji-text h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.servoji-content h1 span {
  color: #25A941;
  font-weight: 700;
  font-size: 2.2rem;
}

.text-block {
  margin-bottom: 45px;
}

.text-block .heading {
  font-weight: 600;
  margin-bottom: 8px;
}
.text-block p{
  font-size: 1.2rem;
}
.text-block ul {
  list-style: none;
  padding-left: 0;
}

.text-block ul li {
  font-size: 1.05rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 10px;
  color: #363636;
}

/*.text-block ul li::before {
  content: "●";
  color: #25A941;
  position: absolute;
  left: 0;
  top: 0;
}*/
.text-block ul li img{
  width:1.2rem;
  height: 1.2rem;
  background-color: #c0ebc9;
  border-radius: 12px;
  margin-right: 0.5rem;
}
.servoji-images {
/*  flex: 1 1 45%;*/
/*  text-align: center;*/
}

.mobile-screens {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mobile-screens img {
  width: 130px;
  border-radius: 20px;
/*  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
}

.car-illustration {
  margin-top: 30px;

}

.car-illustration img {
  position: absolute;
  bottom:0;
  right:0;
  width: 100%;
  max-width: 320px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .servoji-content {
    flex-direction: column;
    text-align: center;
  }
 .mobile-screens {
    flex-direction: row;
    justify-content: center;
  }
 .mobile-screens img {
    width: 120px;
    margin-bottom: 2rem;
  }
 .car-illustration img {
    max-width: 200px;
     right:10%;
  }
  
.servoji-text{
  text-align: left;
}
.servoji-content h1{
  font-size: 1.8rem;
}
.servoji-content h1 span {
  font-size: 2rem;
}

.text-block {
  margin-bottom: 35px;
}

.text-block .heading {
  font-weight: 600;
  margin-bottom: 8px;
 
}
.text-block p{
  font-size: 1.3rem;
}
.text-block ul {
  list-style: none;
  padding-left: 0;
 

}

.text-block ul li {
  font-size: 1.1rem;
  padding-left: 30px;
}
.text-block ul li::before {
  font-size: 0.8rem;
}
.google_img{
  display:none;
}
}
@media screen and (min-width:993px) {
  .servoji-content h1 span{
    font-size: 3.5rem;
  }
  .text-block p{
  font-size: 1.7rem;
}
.text-block ul li{
  font-size: 1.25rem;
}

  .mobile-screens img{
    width:200px;
  }
  
  .car-illustration img {
    max-width: 400px;
    right:150px;
  }


}

/* Discover section styling */

.discover_img{
  width: 100%;
  overflow: hidden;
   height:auto;
/*  border-radius: 15px;*/
}
.discover_img img{
  width:100%;
  object-fit: cover;
 
   display: block;

 
}
.discover{
  margin-top: 4rem;
  
  text-align: center;
  position: relative;
}
.discover_title{
  font-size: 1.9rem;
  font-weight: 700;
  position: absolute;
  top:30px;
 left: 50%;
 transform: translateX(-50%);
}
@media screen and (max-width:767px){
  
  .discover_title{
  /* padding-top: 0.5rem;
    padding-bottom: 2rem;*/
    font-size: 1.6rem;
     top:5%;
     left: 50%;
     /*transform: translateX(-40%);*/
     text-wrap: nowrap;
  }
 /* .discover_img{
    height:400px;
  }
   .discover_img img{
    height:100%;
    object-fit: contain;
   }*/
}
@media screen and (min-width:993px) {
  .discover_title{
    top:100px;
    font-size: 3rem;
  }
}

/* How it works styling */

.how-it-works {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.how-it-works h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* --- Grid Layout --- */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: start;
  padding-top: 2rem;
}

/* --- Step Card --- */
.step-card {
  background-color: #f9f9f9;
  background-color:#EFEFEF ;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
/*  padding: 30px 20px 40px;*/
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 260px;
  height:26rem;
 /* height:auto;*/
  margin-block: 2rem;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* --- Step Number Circle --- */
.step-number {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #25A941;
  font-weight: 700;
  font-size: 1.3rem;
  border: 3px solid #25A941;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

/* --- Top Section --- */
.step-top {
  background-color: EFEFEF ;
/*  padding: 40px 20px 30px;*/
   height:60%;
   border-radius: 12px 12px 0 0;
}

.step-top img {
  width: 100%;
 /* height: auto;*/
 height:100%;
/*  margin: 0 auto;*/
  display: block;
}

/* --- Bottom Section --- */
.step-bottom {
  width:100%;
  height:40%;
  background-color: #25A941;
  color: #fff;
  padding-block: 20px;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.step-bottom h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-bottom p {
  font-size: 1.1rem;
  line-height: 1.4;
  padding:0.5rem 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .how-it-works h1 {
    font-size: 2rem;
  }

  .step-card {
    max-width: 310px;
    margin-top: 3rem;
  }
 .step-top {
     height:60%;
  }
  .step-top img {
    width: 100%;
  }
  .step-bottom h3 {
    font-size: 1.3rem;
  }
  .step-bottom p{
    font-size: 1.1rem;
  }
}
@media  screen and (min-width:769px) and (max-width:992px){
  .step-card{
    max-width: 250px;
  }
}
@media screen and (min-width:993px) {
  .how-it-works h1 {
    font-size: 3rem;
  }
   .step-card{
    max-width: 340px;
    height:450px;
  }
  .steps-container {
   /* display:flex;
    margin-top: 4rem;
    gap:45px;
   width:1500px;*/
     justify-items: center;
  align-items: center;
  padding-top: 4rem;
  margin: 0 auto;
  }
  .step-bottom h3 {
    font-size: 1.6rem;
  }
  .step-bottom p{
    font-size: 1.2rem;
  }
  .step-number{
    width:50px;
    height:50px;
    font-size: 1.4rem;
  }
}

/* why choose styling */
.why-choose {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #EFEFEF 0%, #e6e4e4 50%);
}
.why_us{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}
.why_us img{
  width:3rem;
  
}
.why-choose h1 {
  font-size: 1.8rem;
  font-weight: 600;
 font-weight: 700;
  
}

/* Grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-card {
/*  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.feature-card:hover {
  /*
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);*/
}

.feature-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feature-card p {
  font-size: 1.1rem;
  color: #2c2c2c;
  line-height: 1.5;
}
@media screen  and (max-width:767px){
  .why_us{
    padding-bottom: 2.5rem;
  }
   .why-choose h1{
    font-size: 1.7rem;
    font-weight: 700;
   }
   .why_us img{
   width:2.rem;
}
.feature-card h3{
  font-size: 1.4rem;
}
.feature-card p {
  font-size: 1.15rem;
}
.feature-card .real_customer_img{
  width:10rem;
}
.feature-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

}
@media  screen and (min-width:993px) {
  .why-choose h1{
    font-size: 3rem;
  }
  .why_us img{
  width:4rem;
}
.feature-card img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin-bottom: 15px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
 

}
.feature-card h3{
  font-size: 1.6rem;
}
.feature-card p {
  font-size: 1.2rem;
}
}

/* Partener section styling */

.partner-section {
  text-align: center;
  padding:60px 0;
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

.partner-section h1 {
  font-size: 1.8rem;
  font-weight: 700;
 /* margin-bottom: 10px;*/
 margin-bottom: 0;
 padding-bottom: 0;
  color: #111;
 /* vertical-align: middle;*/
}
.partner-section h1 img{
    width:5rem;
  }
.partner-section .subtitle {
  font-style: italic;
  color: #353535;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 0.5;
}
.subtitle span{
  color:#f44437;
  color:#f16960;
  font-size: 2rem;
}

/* === Sub Section === 
.partner-sub-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 40px;
  position: relative;
}
*/

/* Left Mobile Image */

.partner-mobile{
  width:230px;
   height:450px;
    flex-shrink: 0;
}
.partner-mobile img{
  width:100%;
 height:100%;
 object-fit: contain;
}

/* cards */

.partner-cards{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap:15px;
  
}
.partner-card{
  text-align: center;
  width:210px;
  height:220px;
   background: #f44437;
   background: #f16960;
  color: #fff;
  border-radius: 20px;
  padding: 45px 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.partner-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.partner-card p {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.partner-car{
  width:240px;
  align-self: flex-end;
}
.partner-car img{
  width:100%;
  object-fit: contain;
}
@media screen and (max-width:767px) {
  .partner-section {
    padding: 40px 10px; 
    text-align: center; 
}
  .partner-section h1{
    font-size: 1.6rem;
    padding-top: 1rem;;
  }
  .partner-section h1 img{
    width:3.5rem;
  }
  .partner-section .subtitle{
    font-size: 1.1rem;
    text-wrap: wrap;
    width:24rem;
    line-height: 1.2;
    
  }
  .partner-sub-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  /*  padding: 20px;*/
    text-align: center;
    padding: 0;
    gap: 20px;
  }
  .partner-sub-section .col-3{
    width:100%;
  }
  .partner-mobile{
     width: 200px;
    height: auto;
    margin-bottom: 10px;
    margin:0 auto;
   margin-left: 4rem;
  
    
  }

  .partner-sub-section .col-6{
    width:100%;
  }
 .partner-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 9rem;
   
  }

  .partner-card {
     width: 90%;
    width: 350px;
    height: auto;
    height:180px;
    padding: 40px 15px;
   
  box-sizing: border-box;
  }
  .partner-card h3 {
    font-size: 1.3rem;
  }
  .partner-card p {
  font-size: 1.1rem;
  line-height: 1.3;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.partner-car{
   width: 260px;
   justify-content: center;
  /*  position: static !important;*/
    margin-top: 20px;
   
    margin-right: 4.5rem;
   
 }
  .partner-car img {
    width: 250px;
    object-fit: cover;
   
 }
}
@media screen and (min-width:993px){
  .partner-section{
     padding: 60px 20px 100px;
  }
  .partner-section h1{
    font-size: 3rem;
  }
  .partner-section h1 img{
    width:6rem;
  }
  .partner-section .subtitle{
    font-size: 1.3rem;
   
  }
  .partner-card{
    width:250px;
    height:280px;
  }
  .partner-card h3 {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .partner-card p {
  font-size: 1.2rem;
  line-height: 1.3;
}
.partner-cards{
  margin-top: 1.5rem;
  gap:60px;
}
.partner-mobile{
  margin-top: 2rem;
  width:380px;
  height:650px;
}
.partner-mobile img{
  height:100%;
}
.partner-car{
  width:350px;
}
}
@media  screen and (min-width:1400px) {
  .partner-card{
    width:380px;
    height:250px;
   }
   .partner-car{
  width:500px;
}
}
/* FAQ section styling */

/* === FAQ Wrapper === */
.faq-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #EFEFEF 0%, #d1d0d0 100%);
  overflow: hidden;

 /* border-bottom:3px solid #25A941;*/
}

/* === Content Box === */
.faq-content {
  text-align: center;
  z-index: 2;
    margin-bottom: 2rem;
}

.faq-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
}

/* === Inner White Box === */
.faq-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-item {
  margin-bottom: 30px;
  text-align: left;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  font-size: 1.45rem;
  color: #111;
  margin-bottom: 20px;
}

.faq-item p {
  font-size: 1.1rem;
  color: #000;
  background: #f3f3f3;
  background: #dadada;
  border-radius: 10px;
  padding: 15px;
}

/* === Decorative Illustrations === */
.faq-left-img {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
 z-index: 20;
 margin-top: 4rem;
}

.faq-right-img {
  position: absolute;
  top: 20px;
  right: 13%;
  width: 180px;
  z-index: 20;
}

.faq-left-img img,
.faq-right-img img {
  width: 100%;
  height: 100%;
}

/* === Responsive === */
@media (max-width: 767px) {
  .faq-wrapper {
   padding: 60px 0px;

}
/* === Content Box === */
.faq-content {
  text-align: center;
  z-index: 2;
    margin-bottom: 2rem;
    
}
  .faq-content h1 {
    font-size: 1.7rem;
    text-align: center;
    padding-bottom: 7rem;
  
  }
 .faq-box {
   padding: 40px 10px;
   width: 340px;
}
  
 .faq-right-img{
  top:12%;
  right:6%;
 }
   .faq-left-img{
    left:2%;
    bottom:0%;
    height:100px;
    width:100%;
   }
   .faq-box {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;

   }
   .faq-item h3 {
  font-size: 1.3rem;
 }

.faq-item p {
  font-size: 1.1rem;
 }
}
@media screen and (min-width:993px) {
  .faq-box{
     max-width:800px;
    padding-block: 3rem;
    margin-top: 3rem;
  }
  
  .faq-right-img{
    width:270px;
     position: absolute;
  top: 10px;
  right: 19%;
  z-index: 100;
  }
  .faq-item{
    text-align: center;
  }
  .faq-content h1{
    font-size: 3rem;
   
  }
  .faq-item h3{
    font-size: 1.6rem;
     margin-bottom: 20px;
  }
  .faq-item p{
   font-size: 1.2rem;
  
  }
}

/* contact section styling */
/* --- General Section --- */
.contact-section {
 /* position: relative;*/
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
}

/* --- Left Form --- */
.contact-form {

  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 320px;
  max-width: 460px;
}

.contact-form h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 15px;
  font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  height:4rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background-color: #E4E4E4;
 
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

/* --- Phone Input --- */

.phone-input {
  display: flex;
  align-items: center;
  background: #E4E4E4;
  width: 100%;
  height:4rem;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  
}

.phone-input select {
  border: none;
  background: #E4E4E4;
  font-size: 1rem;
  outline: none;
  width: 70px;
  height:1rem;
  height:3rem;
  margin-left:0.5rem ;
 
}

.phone-input input {
  flex: 1;
  border: none;
  font-size: 1rem;
  outline: none;
  background: #E4E4E4;
  height:4rem;
}
/* Prevent Chrome/Edge autofill blue background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0px 1000px #E4E4E4 inset !important; /* Match your background */
  -webkit-box-shadow: 0 0 0px 1000px #E4E4E4 inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s; /* Prevent flash */
}


/* --- State Dropdown --- */
#state {
  background: #E4E4E4;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

/* --- Message Box --- */
.message-box {
  position: relative;
}

textarea {
  width: 100%;
  background: #E4E4E4;
  border: none;
  border-radius: 10px;
  padding: 10px 40px 10px 10px;
  font-size: 1rem;
  outline: none;
  resize: none;
  height: 80px;
}
/*
.send-icon {
  position: absolute;
  right: 10px;
  bottom: 15px;
  cursor: pointer;
  font-size: 16px;
}*/

/* --- Checkbox --- */
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 20px;
  
}

.checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
margin-bottom: 0.5rem;
}
.checkbox label {
    font-size: 0.95rem;
  }
/* --- Buttons --- */
.form-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  background: #25A941;
  color: #fff;
  border: none;
  padding: 10px 35px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: #166626;
}

.reset-btn {
  background: #ff9428;
  color: #fff;
  border: none;
  padding: 10px 35px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.reset-btn:hover {
  background-color: #a35e19;
}

/* --- Right Newsletter --- */
.newsletter {
  flex: 1;
  text-align: center;
  min-width: 320px;
  margin:auto 0;
}

.newsletter-img {
  width: 180px;
  height:200px;
  margin-bottom: 20px;
}

.newsletter h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter p {
  color: #666666;
  font-size: 1.1rem;
  max-width: 420px;
  margin: 0 auto 20px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-box input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 250px;
  outline: none;
}

.subscribe-btn {
  background: #25A941;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background: #166626;
}

/* Reuse your existing styles */
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

/* Custom alert improvements */
.custom-alert {
  position: fixed;
  top:50%;
  left:5%;
  transform: translateY(-50%);
  background: #fff;
  color: #444;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  z-index: 99999;
  width: 380px;
  text-align: center;
  animation: fadeInOut 3s ease-in-out forwards;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10%, 90% { opacity: 1; transform: translateY(20px); }
  100% { opacity: 0; transform: translateY(-10px); }
}
/* Popup Styles */
.custom-alert1 {
  display: none;
  position: fixed;
 /* top: 30%;*/
  bottom:10%;
  right: 16%;
  background: #25A941;
  background-color: #fff;
  color: white;
  color:#000;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.custom-alert1.show {
  opacity: 1;
  transform: translateY(0);
}

/* Error / Warning Styling */
.custom-alert1.error {
  background: #dc3545;
}


/* --- Responsive Design --- */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
}
.contact-section {
  padding: 60px 20px;
 }
 .contact-form h1 {
  text-align: center;
}

.contact-form label {
  font-size: 1.1rem;
}
 .contact-form,
  .newsletter {
    width: 100%;
    max-width: 400px;
  }

  .subscribe-box {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-box input,
  .subscribe-btn {
    width: 100%;
  }
  .custom-alert{
  top:40%;
  left:3%;
  transform: translateY(-50%);
 }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-form h1 {
    font-size: 1.8rem;
  }

.newsletter h1 {
  font-size: 1.6rem;
  }
.newsletter p {
  font-size: 1.1rem;
  max-width: 420px;
  margin: 0 auto 20px;
}
.checkbox input[type="checkbox"] {
  width: 25px;
  height: 25px;
 margin-bottom: 0.5rem;
}

.subscribe-box input,
  .subscribe-btn {
    width: 90%;
    margin:0 auto;
  }
.subscribe-btn {
  padding: 10px 20px;
  font-size: 1.3rem;
 }
  .subscribe-box input {
    font-size: 0.95rem;
  }

  .checkbox label {
    font-size: 0.95rem;
  }
  .custom-alert1{
     bottom:40%;
  right: 20%;
  }
  
}
@media screen and (max-width:400px) {
  .checkbox label{
    padding-top: 1.5rem;
  }

}
@media screen and (min-width:993px){
  .contact-container {
    max-width:1400px;
    margin:0 auto;
  }
  .contact-form{
    min-width:500px;
    max-width: 600px;
  }
  .contact-form h1 {
    font-size: 2.5rem;
  }
  .contact-form label{
    font-size: 1.2rem;
  }
   .contact-form input{
    font-size: 1.1rem;
   }
   .checkbox{
     font-size: 0.5rem;
   
   }
   .checkbox input[type="checkbox"]{
     width:24px;
    height:24px;
    margin-bottom: 1.2rem;
   }
   .submit-btn, .reset-btn{
    font-size: 1.3rem;
    padding:10px 45px;
   }
   .newsletter{
     min-width: 400px;
     max-width: 650px;
   }
   .newsletter-img {
  width: 350px;
  height:300px;
  margin-bottom: 20px;
}
 .newsletter h1{
  font-size: 2.8rem;
 }
 .newsletter p{
  font-size: 1.3rem;
   max-width: 650px;
 }
 .subscribe-box input{
  width:380px;
  font-size: 1.2rem;
 }
 .subscribe-btn{
  font-size: 1.4rem;
  padding:12px 40px;
 }
 .custom-alert{
  bottom:50%;
  left:20%;
  transform: translateY(-50%);
 }
 .custom-alert1{
  bottom:50%;
  right: 32%;
 }
}

/* chatbot styling */

     
/* Q&A Side Panel - Now with Glassmorphism! */
 #qa-side-panel {
    position: fixed;
   /* position: absolute;*/
    bottom: 20px !important;
    right: 20px !important;
    width: 80px;
    height: 80px;
    background-color: #ff9428;
   /*  background: #f44437;*/
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    overflow: hidden;
 }
   
#qa-side-panel.expanded {
    width: min(50vw, 480px);
    height: 70vh;
    min-height: 400px;
    /* Glassmorphism properties for the expanded panel */
    background: rgba(255, 255, 255, 0.15);;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2 ); 
    box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.2);

    border-radius: 1rem;
    right: 20px;
    z-index: 19999;
   
}
    /* Adjusted Mobile styles for expanded state */
    @media (max-width: 768px) {
       #qa-side-panel {
        bottom: 10px;
        right: 10px;
        width: 60px; /* Slightly smaller on small screens */
        height: 60px;
    }
        #qa-side-panel.expanded {
        width: 90vw;
        height:71vh;
      /*  height: calc(95vh - env(safe-area-inset-bottom)); /* Use 95vh minus safe area for dynamic height */
        min-height: unset; /* Remove min-height override on mobile */
        bottom: env(safe-area-inset-bottom, 5px); /* Anchor to bottom, respect safe area */
        left: 5vw;
        right: 5vw;
        max-width: unset;
        border-radius: 1.5rem;
        top: auto; /* Ensure it sticks to the bottom */
        bottom:10px;
    }
  }
   
 #qa-side-panel-toggle-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
 /* Toggle Icons */
#qa-side-panel-toggle-btn  .chat-icon { 

  transition: transform 0.3s ease-in-out; 
}
#qa-side-panel.expanded #qa-side-panel-toggle-btn {
    color: #1f2937;
    position: absolute;
    top: 10px; /* Keep close button near the top of the panel */
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    transform: none;
    
}
#qa-side-panel.expanded #qa-side-panel-toggle-btn:hover{
  color:#25A941;
}
#qa-side-panel:not(.expanded) #qa-side-panel-toggle-btn .chat-icon { 
  display: block;
 }
#qa-side-panel.expanded #qa-side-panel-toggle-btn .chat-icon { display: none; }
#qa-side-panel:not(.expanded) #qa-side-panel-toggle-btn .close-icon { display: none; }
#qa-side-panel.expanded #qa-side-panel-toggle-btn .close-icon { display: block; }

#qa-panel-content {
    display: none;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    padding-top: 50px;
    flex-direction: column;
}
#qa-side-panel.expanded #qa-panel-content {
   display: flex;
   }

.qa-container {
  /*  flex-grow: 1;*/
    display: flex;
    flex-direction: column;
    background-color: transparent;
}
.qa-message-history {
    flex-grow: 1;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f9fafb;
    max-height: 300px;
}
.qa-message {
   margin-bottom: 0.75rem; 
   line-height: 1.4;
    animation: fadeInMessage 0.3s ease-out forwards;
   }
.qa-message.user { 
  text-align: right;
 }
.qa-message.bot { 
  text-align: left; 
}
.qa-message-bubble { 
  display: inline-block;
   padding: 0.75rem 1rem;
    border-radius: 1rem;
     max-width: 80%; 
     word-wrap: break-word;
     }
.qa-message.user .qa-message-bubble { background-color:  #ff9428;
   color: white;
   }
.qa-message.bot .qa-message-bubble { 
  background-color: #e5e7eb; 
  color: #1f2937; 
}
@keyframes fadeInMessage { 
  from {
     opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); } 
    }
.qa-current-question-container {
  
    display: flex;
    flex-direction: column;
    
     }
.qa-question-button {
    background-color:#25A941;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 0.6rem;
}

.qa-input-area { 
   display: flex;
   margin-top: 1rem;
   width:100%;
  align-items: center;
   }
.qa-input-area input, .qa-input-area select {
   flex: 1;
   width:100%;
    padding-left: 0.5rem; 
    border: 1px solid #d1d5db;
     border-radius: 0.5rem 0 0 0.5rem;
      outline: none;
      box-sizing: border-box;
 }
 
.qa-input-area button {
    background-color:  #ff9428;
     background: #25A941;

    color: white;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.qa-input-area button:hover { 
  background-color: #a35e19;
    background: #166626;
     white-space: nowrap;   /* stops text breaking */
 }
 @media screen and (min-width:768px) and (max-width:992px) {
   .qa-input-area input{
    font-size: 1.15rem;
  }
  .qa-input-area button{
    font-size: 1.2rem;
  }
 }
@media screen and (min-width:993px) {
 .qa-input-area input{
    font-size: 1.15rem;
  }
  .qa-input-area button{
    font-size: 1.3rem;
  }
}

.contact_flex{
  gap:3px;
  padding-block:1rem;
  

}
.phone_flex{
  /* width:80%;*/
    width:330px;
  display:flex;
 
  margin-bottom: 0.5rem;
  border: 1ps solid #25A941;
  border-radius: 6px;
  margin-left: 0.5rem;
 border:1px solid #91f0a9;
  overflow: hidden; /* prevents distortion */
  box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
}
.phone_flex_select{
  border:none;
   padding:0.8rem;
   min-width: 80px; 
}
.phone_flex_input{
 width:100%;
  border:none;
  padding-block: 0.8rem;
  color: #fff;
 
   
}

#qa-input-email{
 /*  width:80%;*/
   width:330px;
   padding:0.8rem;
    border-radius: 6px;
     margin-left: 0.5rem;
      border:1px solid #91f0a9;
       box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
} 
#qa-input-email:focus{
  border:none;
}
.flex_buttons{
 padding-left: 0.8rem;

 
}
.qa-question-button{
  background: #25A941;
  border: 1px solid #25A941;
  margin-right:0.5rem;
   box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
    
 }

.qa-question-button:hover{
  background-color: #1d7c32;
}
.country_flex{
  padding:0.6rem;
}
.country_select{
  width:330px;
  padding-block:1rem;
  padding-left: 0.5rem;
  border-radius: 6px;
  border:1px solid #91f0a9;
  box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
  color:#747272;
}
@media screen and (max-width:768px){
  .phone_flex,  #qa-input-email, .country_select{
    max-width:280px;
    font-size: 0.92rem;
  }
 
}

/* footer section styling */

.footer {
  background: #25A941;
  color: #fff;
  padding: 40px 0%;
  font-family: 'Poppins', sans-serif;
 
}

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
 /* flex-wrap: wrap;*/
  margin-block: 20px;
 

}

 .footer-left {
  text-align: center;
}
.footer-right {
  position: absolute;
  right: 40px;               /* keeps it on the right side */
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.footer-left h2, .footer-right h2 {
  font-size: 1.8rem;
  margin-block: 10px;
  font-weight: 700;
 
}
.social-icons{
   display: flex;
  justify-content: center;
  align-items: center;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #25A941;
  width:1.8rem;
  height:1.8rem;
  text-align: center;
  border-radius: 6px;
  background: #fff;
  font-size: 2.5rem;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #116423;
  text-decoration: none;
  transform:scale(1.06);
}
/*
.footer-right{
  display: flex;
  margin-left: auto;
  flex-direction: column;
  text-align: right;
}*/
.playstore-btn {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #333;
  padding: 8px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  margin-right: 0.5rem;
}

.playstore-btn img {
  width: 20px;
   margin-right: 8px;
}

.playstore-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px 0px;
}

.footer-bottom {
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

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

.footer-info {
  margin: 10px 0;
  font-size: 1rem;
}
.footer-links{
  font-size: 1rem;
}


.footer-contact i {
  margin: 0 6px;
  font-size: 1.2rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
   
  /*  padding: 6px;*/
    color: white;
    
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}


/* Responsive design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
   
  }
  .footer-left {
  text-align: center;
  margin-bottom: 100px;
}
 
  .footer-right {
  position: absolute;
  left: 50%;               /* keeps it on the right side */
  top: 50%;
  transform: translateX(-50%);
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin:0 auto;
  text-wrap: nowrap;
 
}
  .footer-contact{
    display:flex;
    flex-direction: column;
    gap:5px;
  }
  
  .social-icons a {
    width:1.8rem;
    height:1.8rem;
    font-size: 2.5rem;
  
}
}
@media screen and (min-width:993px) {
  .footer {
    padding: 40px 5%;
  }
  .footer-left h2 {
    font-size: 1.9rem;
  }
  .social-icons a {
    width:2rem;
    height:2rem;
    font-size: 2.6rem;
   
  }
  
.playstore-btn {
  font-size: 1.3rem;
  padding: 12px 18px;
 
}

.playstore-btn img {
  width: 22px;
  margin-right: 8px;
}
.footer-links{
  font-size: 1.2rem;
}
.footer-info {
 font-size: 1.2rem;
}

.footer-contact {
  font-size: 1.2rem;
}

.footer-contact i {
  font-size: 1.4rem;
}
}

/* 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: 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:#25A941;
      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;
  text-align: center;
}

/* 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;
    color:black;
  }
.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 {
  background-color: #fff;
  margin: 50% auto;
  padding: 20px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}
 .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%;
  border-radius: 8px;
  position: relative;
}

.modal-content1 h2{
  margin-top: 1rem;
  text-align: center;
 
}
}
