* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
a{
	text-decoration: none;
}
a:focus {
	outline: 0!important;
	outline-offset: 0!important
}
.container{
	width: 90%;
	margin: 0 auto;
    padding: 0 15px;
}
body{
	margin: 0;
	font-weight: 400;
	font-family:Montserrat;
	font-size: 14px;
	line-height: 28px;
}
h1, h2, h3, h4{
	margin: 0;
}
h1, h2, h3, h4{
	font-family:Montserrat;
	font-weight: normal;
}
p{
    font-family:Montserrat-Light;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 10px;
}
.mobile{
    display: none !important;
}
.logo-and-chat{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.banner img{
    width: 100%;
    height: auto;
    display: block;
}
.about-mai{
    background: #034EA1 url(../images/mai-about-bg.webp) no-repeat right center;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    color: #fff;
}
.about-mai h1{
    font-size: 24px;
    line-height: 44px;
    font-family:MontserratBold;
}
.about-mai h2{
    font-size: 20px;
    font-family:Montserrat;
    margin-bottom: 15px;
}
.about-mai p{
    font-size: 16px;
    line-height: 30px;
    font-family:Montserrat-Light;
    margin-bottom: 15px;
}
.what-mai{
    padding: 40px 0;
    text-align: center;
}
.what-mai h2{
    font-size: 24px;
    font-family:MontserratBold;
    margin-bottom: 15px;
    color: #034EA1;
}
.why-choose-content{
    display: grid;
    grid-template-columns: calc(35% - 30px) calc(65% - 30px);
    gap: 20px;
}
.why-choose-text-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.why-choose h2{
    font-size: 24px;
    font-family:MontserratBold;
    margin-bottom: 15px;
    color: #034EA1;
    text-align: center;
}
.why-choose-text-grid .col, .gradient-bg{
    background: linear-gradient(90deg, rgb(3, 78, 161) 0px, rgb(0, 183, 172) 100%);
    padding: 1px;
    border-radius: 8px;
    overflow: hidden;
}
.why-choose-text-bg{
    background: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 8px;
}
.why-choose-text-head{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 5px;
}
.why-choose-text-head h3{
    font-size: 18px;
    color: #034EA1;
}
.why-choose{
    padding-bottom: 40px;
}
.how-to-use{
    background: linear-gradient(to bottom, #0273b9, #07a8b9);
    padding: 40px 0;
}
.steps-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      justify-content: center;
      gap: 30px;
      position: relative;
}
.step .col {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
    margin-top: 10px;
    height: 150px;
}
.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #034EA1;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.steps-container::before {
    content: '';
    width: 30%;
    height: 0; /* no height needed */
    border-top: 1px dashed #fff; /* dashed line */
    position: absolute;
    top: 18px;
    right: 18%;
}

.steps-container::after {
    content: '';
    width: 30%;
    height: 0;
    border-top: 1px dashed #fff;
    position: absolute;
    top: 18px;
    left: 18%;
}

.step h3 {
    color: #034EA1;
    font-size: 16px;
    margin-bottom: 10px;
    font-family:MontserratSB;
}
.step p {
    color: #333;
    font-size: 16px;
}
.how-to-use h2{
    font-size: 24px;
    font-family:MontserratBold;
    margin-bottom: 25px;
    color: #fff;
    text-align: center;
    color: #fff;
}
.why-dose{
    padding: 40px 0;
}
.why-dose h2{
    font-size: 24px;
    font-family:MontserratBold;
    margin-bottom: 15px;
    color: #034EA1;
    text-align: center;
}
.what-cards-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}
.what-card {
    background: linear-gradient(90deg, rgb(3, 78, 161) 0px, rgb(0, 183, 172) 100%);
    padding: 1px;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    width: calc(33.333% - 20px); /* adjust for gap */
    box-sizing: border-box;
}

.what-card .col{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.what-card h3{
    font-size: 18px;
    color: #034EA1;
    margin-bottom: 10px;
}
.what-card p{
    font-size: 16px;
    line-height: 28px;
    color: #333;
}
.queries{
    background: url(../images/queries-bg.webp) no-repeat right center #0000009d;
    background-size: cover;
    padding: 40px 0;
    text-align: center;
    color: #fff;
    text-align: center;
}
.queries h2{
    font-size: 22px;
    font-family:MontserratBold;
    margin-bottom: 15px;
    color: #fff;
}
.queries p{
    font-size: 16px;
    line-height: 30px;
    font-family:Montserrat-Light;
    width: 70%;
    margin: 0 auto 15px;
}
footer{
    background: #2B2B2B;
    color: #fff;
    padding: 20px 0;
}
.footer-grid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.footer-grid p{
    margin: 0;
    font-size: 14px;
}
.video-sec video{
    width: 100%;
}
.video-sec{
    position: sticky;
    top: 150px;
    left: 0;
}
@media (max-width: 1199px) {
    .step .col{
        height: 215px;
    }
    .steps-container::before, .steps-container::after{
       width: 29%;
    }
}
@media (max-width: 991px) {
    .why-choose-text-grid{
        grid-template-columns: 1fr;
    }
    .step .col {
        height: auto;
    }
    .steps-container::before, .steps-container::after{
       width: 28%;
    }
}
@media (max-width: 767px) {
    .container{
        width: 100%;
    }
    .mobile{
        display: block !important;
    }
    .desktop{
        display: none !important;
    }
    .logo svg{
        width: 80px;
        height: auto;
    }
    .logo-and-chat{
        padding: 7px 0;
    }
    .about-mai h1 {
        font-size: 18px;
        line-height: 26px;
        font-family: MontserratBold;
        margin-bottom: 15px;
    }
    .about-mai h2 {
        font-size: 15px;
        font-family: Montserrat;
        margin-bottom: 15px;
        line-height: 20px;
    }
    .about-mai p, .what-mai p{
        text-align: left;
    }
    .why-choose-content{
        display: block;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .step{
        display: flex;
        gap: 15px;
        align-items: center;
        
    }
    .step-number{
        flex: 0 0 auto;
    }
    .what-cards-container {
        display: block;
    }
    .what-card {
        width: 100%;
        margin-bottom: 20px;
    }
    .queries h2{
        font-size: 20px;
    }
    .queries p{
        width: 100%;
    }
    .footer-grid{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-grid svg{
        width: 100px;
        height: auto;
    }
    .footer-grid p {
        font-size: 12px;
    }
    .steps-container::before, .steps-container::after {
        width: 1px;
        height: 28%;
        border-left: 1px dashed #fff;
    }
    .steps-container::after{
        top: 18%;
        left: 5%;
    }
    .steps-container::before{
        bottom: 16%;
        left: 5%;
        top: unset;
        right: unset;
    }
}
/* Global Popup */
.global-popup{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #00000096;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
    height: 100vh;
    overflow: hidden;
}
.global-modal-box-bg{
    background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
    padding: 3px;
    border-radius: 15px;
    max-width: 550px;
    width: 500px;
}
.global-modal-box{
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}
.global-modal-header img{
    width: 208px;
    height: 75px;
    display: block;
    margin: 0 auto 30px auto;
}
.map-img-bg{
    background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
    padding: 3px;
    border-radius: 15px;
}
.map-img-box{
    height: 230px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    position: relative;
}
.map-img-box img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    opacity: 0;
    animation: fadeSwap 3s infinite;
    display: block;
}
.map-img-box img:nth-child(1) {
  animation-delay: 1.5s;
}

.map-img-box img:nth-child(2) {
  opacity: 1;
}

@keyframes fadeSwap {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
.global-modal-body{
    text-align: center;
}
.global-modal-body h3{
    color: #034ea1;
    margin: 15px 0;
    font-size: 22px;
}
.global-modal-body p{
    color: #535862;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}
.global-modal-footer{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.global-modal-footer button{
    display: block;
    text-decoration: none;
    padding: 15px 15px;
    color: #034ea1;
    font-size: 13px;
    border-radius: 5px;
    width: auto;
    text-align: center;
    box-shadow: none;
    border:none;
    background: #fff;
    cursor: pointer;
}
.global-modal-footer button:first-child{
    color: #fff;
    background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
    flex: 1;
}
.global-modal-footer button:last-child{
    border: 1px solid #00b7ac;
    color: #00b7ac;
}
@media (max-width:767px){
    .global-modal-box-bg{
        width: 90%;
        max-width: 90%;
    }
    .map-img-box {
        height: 150px;
    }
    .global-modal-footer{
        flex-direction: column;
    }
    .global-modal-footer a{
        width: -webkit-fill-available;
    }
    .global-modal-body h3{
        font-size: 17px;
    }
    .global-modal-body p{
        font-size: 14px;
    }
    .global-modal-footer button {
        width: 100%;
    }
}

.mai-disclaimer-content {
    padding: 60px 0;
    background: #f8f9fb;
}

.mai-disclaimer-content .container {
   background-image: url(../images/page-top-bg.png), url(../images/page-bottom-bg.png);
    background-repeat: no-repeat;
    background-position: 100% 0, 0 100%;
    margin: 0 auto;
    padding: 0 16px;
}


.mai-disclaimer-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #034EA1;
    padding-bottom: 30px;
    text-align: center;
}

.mai-disclaimer-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2980b9;
    margin: 25px 0 10px;
}
.mai-disclaimer-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #034EA1;
    padding-bottom: 10px;
}
.mai-disclaimer-content p {
    font-family: Montserrat;
    font-size: 15px;
    line-height: 26px;
    color: #333;
    margin-bottom: 14px;
}
.mai-disclaimer-content p strong {
    font-family: 'MontserratEB', sans-serif;
    font-weight: 900;
    color: #292929;
}

.mai-disclaimer-content ul {
    padding-left: 20px;
    margin: 10px 0 20px;
}

.mai-disclaimer-content ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #333;
    margin-bottom: 8px;
}


.disclaimer-link a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.mai-disclaimer-content a {
    color: #034EA1;
    text-decoration: none;
    font-weight: 600;
}

.mai-disclaimer-content a:hover {
    text-decoration: underline;
}
.disclaimer-link a:hover {
    text-decoration: none;
     transition: .5s ease all;
    color: #00b7ac;
}

@media (max-width: 767px) {

    .mai-disclaimer-content {
        padding:  0;
    }

    .mai-disclaimer-content h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .mai-disclaimer-content h3 {
        font-size: 17px;
    }

    .mai-disclaimer-content p,
    .mai-disclaimer-content ul li {
        font-size: 14px;
        line-height: 24px;
    }
}
