/* Global styles */
@font-face {
  font-family: "Product Sans";
  src: url("./fonts/ProductSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
    background: #E9F2FF;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    padding-top: 2em;
}
.policy-contain {
    margin-top: 12%;
    margin-left: 10%;
    margin-left: 10%;
}

/* Navigation bar */
.nav-container {
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    background: #FFF;
    border-radius: 100px;
    padding: 1em 5em;
   width:55%;
  
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
  
    position: fixed;
    top: 40px;        
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.logo {
    width: 120px;
    height: 40px;
   
}


/* Hamburger icon hidden by default on large screens */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Nav list styles */
.nav-list {
    display: flex;
    gap: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #0C003A;
    font-size: 18px;
    font-weight: 500;
}

.nav-list li {
    cursor: pointer;
}
.nav-list li a {
   color: #0C003A;
  text-decoration: none;
  cursor: pointer;
}

/* Button */
.contact-button {
    border-radius: 86px;
    background: #074CB1;
    color: white;
    border: none;
    padding: 0.8em 2em;
    cursor: pointer;
    transition: background 0.3s;
    color: #FFF;
    font-size: 16px;
    font-style: normal;

}
.contact-button:hover {
    background: #0c45a1;
}

/* Review section */
.review-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 11px;
    width: fit-content;
    max-width: 100%;
    margin: 2em auto 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 100px;
    border: 1px solid #D6D6D6;
    background: #FFF;
    margin-top: 10rem;
}

.review-section img {
    width: 60px;
    height: 20px;
}

.review-section p {
    margin: 0;
    color: #3D3639;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -1px;
}

.main-head{
    color: #0C003A;
    text-align: center;
    margin: 1em auto;
    font-size: 80px;
    font-style: normal;
    font-weight: 600;
    width: 50%;
    max-width: 890px;
}
.main-para{
     margin: 1em auto;
    color: #0C003A;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    width:28%;
    max-width: 500px;

}

/* eclipse section */

.banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
    
}

.play-store {
    display: flex;
    gap: 2em;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: -13em; /* pull it slightly up */
    margin-bottom: 1em;
}

.goole_pay{
    width: 166.154px;
height: 48px;
transform: rotate(0deg);
flex-shrink: 0;
}
.apple_store{
    width: 166.154px;
height: 48px;
transform: rotate(0deg);
flex-shrink: 0;
}
.eclipse {
    width: 100%;
    max-width: 768px;
    height: auto;
}

/* Make the boxes position over the ellipse */
.banner-container > div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1000px;
    transform: translate(-50%, -50%);
}
.offer-head{
color: #0C003A;

font-size: 16px;
font-style: normal;

}

.offer-para{
color: #696969;
font-size: 10px;
font-style: normal;
font-weight: 400;


}
/* Individual boxes */
.box-1 {
    position: absolute;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 0em 1.2em;
    width: 190px;
    font-size: 10px;
}

/* Position each box differently with rotations */
.box-1:nth-child(1) {
    top: -15%;
    left: 3%;
    margin-top: 10em;
    transform: rotate(-10deg);
}
.box-1:nth-child(2) {
    top: -15%;
      margin-top: 10em;
    right: 5%;
    transform: rotate(12deg);
}
.box-1:nth-child(3) {
    bottom: -15%;
    left: -5%;
    
    transform: rotate(8deg);
}
.box-1:nth-child(4) {
    bottom: -15%;
    right: -4%;
    transform: rotate(-12deg);
}
.banner-image {
    width: 100%;
    max-width: 1250px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50px);
    opacity: 0;
}

.banner-image.animate {
    animation: fadeSlideUpCenter 1s ease forwards;
}

@keyframes fadeSlideUpCenter {
    from {
        opacity: 0;
        transform: translate(-50%, 50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}



/* section 1 */
.section-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8rem;
    background: white;
    padding: 3em 0;
}

.side_margin {
    margin: 0em 4em;
}

.section-1 h2 {
    max-width: 850px;
    color: #0C003A;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
}

.section-1 p {
    max-width: 820px;
    color: #4F4E56;
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.section-1 img {
    max-width: 100%;
    height: auto;
}
.border{
    display: inline-block; 
    border-radius: 100px;
    border: 1px solid #D6D6D6;
    background: #FFF;
    padding: .2em 0.8em;
    color: #3D3639;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;

}

/* section 2 */
.section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    background: white;
    padding: 3em 0;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;

}

.section-2 h1{
    width: 720px;
    color: #0C003A;
    text-align: center;
    font-family: "DM Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    }
.feature-section{
    width: 80%;
    height: 800px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #7DB2FF;
    background: #E9F2FF;
    display: flex;
    flex-direction: row;
}


.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.5em;
    transition: background 0.3s, border-left 0.3s;
 
}

.feature.selected {
    background: #fff;
    border-right: 6px solid #0951bd; 
    border-radius: 0px;
}


.features-icons {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.description {
    display: flex;
    flex-direction: column;
    text-align: start;
}

.description h2 {
    margin: 0 0 0.5em 0;
    font-size: 20px;
    color: #0C003A;
}

.description p {
    margin: 0;
    color: #0C003A;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
     width: 340px;

}
.feature-images {
    position: relative;
    width: 100%;
    min-height: 500px; /* ✅ reserve space for your images */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
}

.feature-images img {
    display: none;
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-images img.active {
    display: block;
}

.horizontal-line {
    width: 1.2px;
    height: 800px;
    background: #B3D2FF;
    border-radius: 2px;
    flex-shrink: 0;
}
.background-img {
    background-image: url('./images/features/features_eclipse.png');
    background-position: bottom;
    background-repeat: no-repeat;
    
    padding: 8em;              
    border-radius: 12px; 
           
}


/* section 3 */
.section-3{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12rem;
    background: #074CB1;
    padding: 2em 0;
    overflow-x: hidden;
}
.section-3-heading {
    color: #FFF;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    width: 550px;
}

.section-3-para{
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    width: 449px;
}

.million {
    color: #FFF;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;

}
.user-feedback{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;

}
.user-all{
    display: flex;
    flex-direction: row;
    gap: 4rem;
}

.download-section {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-3-head{
    color: white;
}

.download-card {
  width: 259px;
  height: 319px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: start;
  justify-content: start;
  text-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 0em 2em;
}

.card-content {
  text-align: start;
}

.card-content h3 {
  font-size: 24px;
  color: #0C003A;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: #808080;
  font-weight: 600;
  margin-bottom: 1rem;
}

.download-btn {
  border-radius: 100px;
background: #074CB1;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  display: flex;
justify-content: center;
align-items: center;
gap: 10px;

  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #062f7e;
}

.qr-icon-wrap {
  position: relative;
  width: 150px;
  margin: 0 auto;
}

.qr-img {
    width: 101px;
height: 101px;
flex-shrink: 0;
aspect-ratio: 1/1;

}

.ellipse {
  position: absolute;
  bottom: -85px;
  right: -150px;
  width: 120px;
  height: 120px;
  background: #074CB1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img {
  width: 52px;
  height: 52px;
}



/* section 4 */

.section-4{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 3em 0;
    flex-wrap: wrap;
     gap: 2rem;
}

.partner{
    color: #3D3639;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;

}

.partner-head {
    color: #0C003A;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    width: 100%;
    max-width: 738px;
    /* margin: 0 auto; */
}

.partner-para {
    color: #4F4E56;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    max-width: 793px;
    margin: 0 auto;
}

.partner-sub-head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.tick-circle{
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
}

.question{
    color: #074CB1;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;

}
.completed{
    color: #4F4E56;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;

}

.partner-img {
    width: 100%;
    max-width: 569px; 
    height: auto;
    margin: 1rem auto;
    display: block;
}




/* section 5 */

.section-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    background: white;
    padding: 0em 0;
    justify-content: center;
    text-align: start;
    overflow-x: hidden;

}

.buisness{
    width: 80%;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #7DB2FF;
    background: #E9F2FF;
    display: flex;
    flex-direction: row;
    padding: 2em 4em 0em;
  
}
.first-section{
    width: 50%;
}
.apps{
    display: flex;
    flex-direction: row;
    gap: 2em;
    padding-top: 3em;
   
}
.buisness-head {
    color: #0C003A;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    width: 850px;

}

.start-vector{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}



.sectio-5-img{
    width: 100%;
    max-width: 631px;
    height: 525px;
    margin: 0rem auto;
    display: block;
    margin-top: 10rem;
}

/* section 6 */

.section-6{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8rem;
    background: white;
    padding: 3em 0;
    overflow-x: hidden;
    padding-bottom: 5rem;
}


.testimoni {
    color: #3D3639;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;

}

.feedback h1{
    color: #0C003A;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    width: 950px;
}

.feedback-para{
    color: #4F4E56;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    width: 690px;

}
.testimonial-section {
  position: relative;
  width: 400px;
  margin: 50px auto;
  perspective: 1000px;
  overflow: visible; 
}


.carousel {
  position: relative;
  height: 250px;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.8) translateX(100%);
  transition: all 0.6s ease;
  z-index: 1;
}

/* front card */
.card.active {
  opacity: 1;
  transform: scale(1) translate(0, 0);
  z-index: 3;
}

/* card behind */
.card.back {
  opacity: 1;
  transform: scale(0.9) translate(35px, -30px);
  z-index: 2;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #074CB1;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
}


.arrow.left {
  left: -80px; /* outside */
}

.arrow.right {
  right: -80px; /* outside */
}
.card-profile{
  display: flex;
  flex-direction: column;
}
.profile-img{
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}
.card-all{
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.card-topcontent{
  display: flex;
  flex-direction: column;
  
}
.card-topcontent h4,
.card-topcontent p {
  margin: 0;
  line-height: 1.8; /* tighter lines if needed */
}


.topcontent-head{
  color: #272727;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
}

.topcontent-para{
  color: #A4A4A4;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;

}
.topcontent-star{
  width: 50%;
}



/* footer */

.footer {
  background: #074CB1;
  color: white;
  padding: 2em 1em;
  font-size: 14px;
  margin-top: 4rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  padding-bottom: 1em;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer-logo {
  width: 150px;
}

.footer-links a,
.footer-bottom a {
  color: white;
  text-decoration: none;
  margin-right: 1em;
}



.footer-socials a img {
  width: 24px;
  margin-right: 0.5em;
 
}

.footer-bottom {
  text-align: center;
  margin-top: 1em;
  display: flex;
  flex-direction: row;
  justify-content:space-between ;
}

#agreementLinks.hidden {
  display: none;
}

#agreementLinks {
  display: flex;
  flex-direction: column;
  margin-left: 1.5em;
  gap: 1em;
  margin-top: 2em;
}


.agrements {
  color: #ddd; /* light gray text */
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.agrements:hover,
.agre:hover {
  color: #329bcc; 

}

/* contact modal */

/* Modal Overlay */
.modal {
  display: none; /* shown as flex when active */
  justify-content: center;
  align-items: flex-start; /* <-- important, so content starts at top */
  overflow-y: auto; /* enable scrolling if content is tall */
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  padding: 2rem 1rem; /* gives breathing space around modal */
  box-sizing: border-box;
}

/* Modal Box */
.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 1011px;
  width: 100%;
  
  position: relative;
  display: flex;
  flex-direction: column;
}


.modal-grid {
  display: flex;
  flex-direction: row;
  gap: 12rem;
}

.modal-left {
  position: relative;
  width: 100%;
  max-width: 300px; /* adjust as needed */
}



.modal-head {
  color: #000;
  font-family: "Product Sans", sans-serif;
font-size: 31.051px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.modal-para {
  color: #909090;
  font-family: "Product Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;

}
.modal-detailes{

color: #1B1B1B;
 font-family: "Product Sans", sans-serif;
font-size: 17.251px;
font-style: normal;
font-weight: 400;
line-height: normal;

}

.phone-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%; 
  transform: translate(-50%, -50%);
}


.modal-left img {
     width: 475px;
   
    height: 627px;

}

.modal-right {
  flex: 1;
  padding: 2rem;
}




/* Form Fields */
.modal-right form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.modal-right input,
.modal-right textarea {
  padding: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #CDCDCD;
  color: black;
  font-family: "Product Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  box-sizing: border-box;
  outline: none;

}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: #A6A6A6;
  opacity: 1; /* fixes for Firefox */
}

/* for older browsers */
.modal-form input::-webkit-input-placeholder,
.modal-form textarea::-webkit-input-placeholder {
  color: #A6A6A6;
}
.modal-form input::-moz-placeholder,
.modal-form textarea::-moz-placeholder {
  color: #A6A6A6;
}
.modal-form input:-ms-input-placeholder,
.modal-form textarea:-ms-input-placeholder {
  color: #A6A6A6;
}
.modal-form input:-moz-placeholder,
.modal-form textarea:-moz-placeholder {
  color: #A6A6A6;
}



.modal-right button {
  padding: 1em;
  background-color: #4283B4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  color: #FFF;
  text-align: center;
 font-family: "Product Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.modal-right button:hover {
  background-color: #063d8d;
}

/* Close Button */
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}
.close:hover {
  color: black;
}




/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 2;
    }

    button {
        padding: 0.8em 2em;
        order: 1;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        width: 55%;
        
    }
.contact-button{
  font-size: small;
}
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1em;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #FFF;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 1em 0;
        text-align: center;
    }
    .nav-list li :hover{
      background: none;
    }

    .nav-list.show {
        display: flex;
    }
}

@media (max-width: 529px){
.contact-button {
    padding: .6em 2em;
      font-size: 12px;

}
.logo {
    width: 80px;
    height: 30px;
   
}
.review-section p {
    font-size: 12px;
}
.review-section img {
    width: 50px;
    height: 20px;
}
}
@media (max-width: 392px){
.contact-button {
    padding: .6em 1em;
      font-size: 12px;

}
.logo {
    width: 70px;
    height: 30px;
   
}
.menu-toggle {

    font-size: 24px;

}

}
@media (max-width: 958px) {
  .main-head {
  
    width: 60%;
  }
    .main-para {
    font-size: 18px;
    width:60%
  }
}
@media (max-width: 768px) {
  .main-head {
    font-size: 42px;
    letter-spacing: -1px;
    width: 60%;
  }
    .main-para {
    font-size: 18px;
    width:60%
  }
}
@media (max-width: 480px) {
  .main-head {
    font-size: 28px;
  }
    .main-para {
    font-size: 16px;
  }
}

/* Responsive adjustments for eclips */
@media (max-width: 1088px) {
    .box-1 {
        width: 160px;
        font-size: 12px;
        
    }
    .box-1:nth-child(1),
    .box-1:nth-child(2),
    .box-1:nth-child(3),
    .box-1:nth-child(4) {
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        position: static;
        transform: none;
        margin: 0.5em auto;
    }
    .banner-container > div {
        position: static;
        transform: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1em;
        margin-top: 1em;
    }
    .banner-image {
    width: 100%;
    max-width: 1800px;
    bottom: 22%;
}
}

@media(max-width:804px){
        .banner-image {
    width: 100%;
    max-width: 1800px;
    bottom: 35%;
}
}
@media (max-width: 658px) {
    .banner-image {
        bottom: 45%;
    }
}
@media (max-width: 400px) {
    .banner-image {
        bottom: 50%;
    }
}
@media (max-width: 466px) {
    .banner-image {
        bottom: 46%;
    }
}
@media (max-width: 662px) {
    .banner-image {
        bottom: 46%;
    }
}
@media (max-width: 394px) {
    .banner-image {
        bottom: 65%;
    }
}


/* Responsive adjustments section 1 */
@media (max-width: 992px) {
    .section-1 {
        gap: 4rem;
    }

    .side_margin {
        margin: 0 2em;
    }

    .section-1 h2 {
        font-size: 42px;
    }

    .section-1 p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-1 {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .side_margin {
        margin: 0 1.5em;
    }

    .section-1 h2 {
        font-size: 36px;
        width: 100%;
    }

    .section-1 p {
        font-size: 15px;
        width: 100%;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .section-1 h2 {
        font-size: 28px;
    }

    .section-1 p {
        font-size: 14px;
    }
}



/* section 2 */


@media (max-width: 1024px) {
    .section-2 {
        gap: 4rem;
        padding: 2em;
    }

    .section-2 h1 {
        width: 90%;
        font-size: 42px;
    }

    .feature-section {
        flex-direction: column;
        height: auto;
        width: 90%;
        gap: 2rem;
        align-items: center;
        padding: 1em 1em 0em;
    }

    .feature {
        padding: 2em 1em;
    }

    .description p {
        width: auto;
        font-size: 16px;
    }

    .horizontal-line {
        width: 80%;
        height: 2px;
        display: block;
    }

    .feature-images {
        margin-top: 0;
        min-height: 300px;
    }

    .feature-images img {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .background-img {
      padding: 0em 1em;
      
        background-position: center bottom;
    }
}

@media (max-width: 600px) {
    .section-2 h1 {
        font-size: 32px;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .description {
        text-align: center;
    }

    .description p {
        font-size: 15px;
    }

    .horizontal-line {
        display: none;
    }


}

@media(max-width:500px){
  .feature-images {
    min-height: 300px;

    overflow: hidden;
  }

  .background-img {
    
    background-size: cover;
    background-position: center;
  }

  .feature-img {
    width: 80%;
  }
}


/* section 3 */

@media (max-width: 1200px) {
  .section-3 {
    gap: 6rem;
  }

  .section-3-heading {
    font-size: 48px;
    width: auto;
  }

  .section-3-para {
    font-size: 20px;
    width: auto;
  }
}

@media (max-width: 992px) {
  .section-3 {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
  }

  .section-3-head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .user-all {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .section-3-heading {
    font-size: 40px;
    width: auto;
  }

  .section-3-para {
    font-size: 18px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .section-3-heading {
    font-size: 32px;
  }

  .section-3-para {
    font-size: 16px;
  }

  .million {
    font-size: 30px;
  }

  .user-feedback {
    font-size: 18px;
  }

  .download-card {
    width: 100%;
    height: auto;
    padding: 1em;
  }

  .qr-icon-wrap {
    width: 120px;
  }

  .qr-img {
    width: 80px;
    height: 80px;
  }

  .ellipse {
        width: 90px;
        height: 90px;
        bottom: -45px;
        right: -230px;
  }

  .icon-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .section-3-heading {
    font-size: 28px;
  }

  .section-3-para {
    font-size: 15px;
  }

  .million {
    font-size: 24px;
  }

  .user-feedback {
    font-size: 16px;
  }
}
@media (max-width: 398px) {
  .section-3-heading {
    width: 60%;
    font-size: 24px;
    margin: 0 auto; /* centers heading */
  }

  .section-3-para {
    width: 60%;
    font-size: 14px;
    margin: 0 auto; /* centers paragraph */
  }

  .download-card {
    width: 60%;
    margin: 0 auto; /* centers the card */
  }
    .ellipse {
        width: 90px;
        height: 90px;
        bottom: -45px;
        right: -125px;
  }

}


/* section 4 */

@media (max-width: 1520px) {
    .section-4 {
       
           flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2em 1em;
        margin: 0 auto;
    }
}
@media (max-width: 992px) {
    .section-4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2em 1em;
        margin: 0 auto;
    }

    .partner-head,
    .partner-para {
        width: 90%;
        font-size: 42px;
    }

    .partner-para {
        font-size: 18px;
    }

    .partner-sub-head {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .partner-head {
        font-size: 32px;
    }

    .partner-para {
        font-size: 16px;
    }

    .partner-sub-head {
        grid-template-columns: 1fr;
    }

    .tick-circle p {
        font-size: 16px;
    }
}


@media(max-width: 633px){
      .partner-img {
    max-width: 80%;
  }
}


/* section 5 */

@media (max-width: 1200px) {
  .buisness-head {
    font-size: 42px;
    width: 100%;
  }

  .apps {

    gap: 1.5em;
  }
}

@media (max-width: 992px) {
  .buisness {
    flex-direction: column;
   
    align-items: center;
    text-align: center;
  }

  .first-section,
  .second-section {
    width: 100%;
  }

  .sectio-5-img {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 12px; /* all sides rounded on small screens */
  }

  .buisness-head {
    font-size: 36px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .buisness-head {
    font-size: 28px;
  }

  .apps {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  .start-vector {
    justify-content: center;
  }
}

@media (max-width: 670px) {
  .buisness {
    width: 70%;
    padding: 2em;
  }
}


/* section 6 */

/* ========== Responsive adjustments ========== */

@media (max-width: 1729px) {
.section-6{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0rem;
    background: white;
    padding: 3em 0;
    overflow-x: hidden;
}

}

@media (max-width: 1200px) {
  .section-6 {
    gap: 4rem;
  }
  .feedback h1 {
    width: 80%;
    font-size: 44px;
  }
  .feedback-para {
    width: 80%;
    font-size: 16px;
  }
}

@media (max-width: 1587px) {
  .section-6 {
    flex-direction: column;
    gap: 2rem;
    padding: 2em 1em;
  }

  .feedback h1 {
    width: 100%;
    font-size: 36px;
    text-align: center;
  }

  .feedback-para {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .testimonial-section {
    width: 90%;
    margin: 20px auto;
  }

  .arrow.left {
    left: -30px;
  }

  .arrow.right {
    right: -30px;
  }

  .card {
    width: 60%;
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateX(100%);
  }

  .card.active {
    transform: translateX(-50%) scale(1) translate(0, 0);
  }

  .card.back {
    transform: translateX(-50%) scale(0.9) translate(35px, -30px);
  }
}

@media (max-width: 768px) {
  .arrow.left {
  
    transform: translateY(-50%) scale(0.9);
  }

  .arrow.right {
  
    transform: translateY(-50%) scale(0.9);
  }
  .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #074CB1;
  color: white;
  border: none;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 20px;

  z-index: 10;
}
  .card {
    width: 90%;
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateX(100%);
  }
}

@media (max-width: 491px) {
    .card {
    width: 70%;
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateX(100%);

  }
 
  .arrow.left {
    left: 10px;
    transform: translateY(-50%) scale(0.9);
  }

  .arrow.right {
   right: -34px;
    transform: translateY(-50%) scale(0.9);
  }
    .card-all{
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
      .card.back {
          transform: translateX(-50%) scale(0.9) translate(35px, -40px);
      }

}


@media (max-width: 480px) {
  .section-6{

  }
  .feedback h1 {
    font-size: 28px;
  }

  .feedback-para {
    font-size: 14px;
  }

  .testimonial-section {
    width: 100%;
  }


  .arrow.right {
    right: -5px;
    transform: translateY(-50%) scale(0.9);
  }

}

/* modal */

@media (max-width: 900px) {

    .modal-content {
    max-height: 90vh; /* avoid exceeding screen */
    overflow-y: auto; /* scroll inside if necessary */
  }
  .modal-grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .modal-left img {
    width: 80%;
    height: auto;
  }

  .modal-left {
    max-width: none;
    width: 100%;

  }

  .phone-img {
    width: 50%;
  }

  .modal-right {
    width: 90%;
    padding: 1.5rem;
  }
}

@media (max-width: 500px) {
  .modal-head {
    font-size: 24px;
    text-align: center;
  }

  .modal-para,
  .modal-detailes {
    font-size: 16px;
    text-align: center;
  }

  .modal-right form {
    width: 100%;
    gap: 1.2em;
  }

  .modal-right input,
  .modal-right textarea {
    font-size: 14px;
    padding: 1em;
  }

  .modal-right button {
    font-size: 14px;
    padding: 0.8em;
  }

  .modal-left img {
    width: 70%;
  }

  .phone-img {
    width: 60%;
  }
}
@media(max-width :569px){

}



