*{
    padding: 0;
    margin: 0;
}
body *{
      font-family: "Kumbh Sans", sans-serif;
      text-transform: capitalize;
      overflow: hidden;

}

h1, h2, h3, h4, h5, h6{
    font-family: "Urbanist", sans-serif;
    margin-bottom: 0;
}

input{
    border: none;
    outline: none;
}
input{
    max-width: 100%;
    overflow: hidden;

}
.pad-1{
    padding: 10px 0;
}
.pad-12{
    padding: 12px 0;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}

.show-mobile{
    display: none;
}




/* header design */
.header-hero-section{
    background: url(../image/home/hero-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.header-container{
    padding: 2rem 0;
}
.header-container .container{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.header-button-container{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}
.yellow-btn{
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #FDC800;
    background: #FFF;
    padding: 10px 15px;
    color: #0085F2;
    /* font-size: 18px; */
    font-weight: 500;
}
.blue-btn{
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #0085F2;
    background: #0085F2;
    padding: 10px 15px;
    color: #FFF;
    /* font-size: 18px; */
    font-weight: 500;
}





.copyright-section{
    padding: 2rem 0;
    border-top: 1px solid #7B7B8A;
    background: url(../image/home/footer-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
}
.copyright-section p{
    color: #7B7B8A;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.copyright-section p a{
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
}


/* payment section design */
.payment-section{
    padding: 2rem 0;
}
.payment-section .container{
    border-radius: 16px;
    border: 1px solid #E8EBF1;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 48px 0 #E3EBFB;
    backdrop-filter: blur(50px);
    padding: 2rem;
}

.payment-title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-title h4{
    color: #253058;
    font-size: 20px;
    font-weight: 700;

}
.user-details-form .input-container{
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #E8EBF1;
    background: #F8F9FB;
    padding: 10px;
    margin-bottom: 10px;
}
.user-details-form .input-container input{
    background-color: transparent;
    width: 100%;
}
.phone-container-box{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
}
.width-100{
    width: 100%;
    display: flex;
    justify-content: center;
}
.payment-details-form .input-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding-left: 30px;
    margin: 10px 0;
}
.payment-details-form .input-container span{
    color: #0085F2;
    font-size: 14px;
}
.payment-button-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.payment-button-container .blue-btn, .payment-button-container .yellow-btn{
    justify-content: center;
}

.yellow-bg-drop{
    border-radius: 4px;
    background: #FDC800;
    width: 40%;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 30%;
    left: 30%;
}
/* payment summary box-design */
.payment-summary-container{
    /* border: 1px solid green; */
    /* margin: 1rem; */
    width: 75%;
    margin: auto;
    position: relative;
}
.summary-upper{
    background: rgba(221, 235, 245, 0.70);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 8px 8px 0 0;
    position: relative;
    text-align: center;
}
.summary-lower{
    text-align: center;
    background: rgba(221, 235, 245, 0.70);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    position: relative;
}
.border-radius{
    position: absolute;
    width: 50px;
    background: #fff;
    border-radius: 50%;
    aspect-ratio: 1/1;
}
.border-radius.right-bottom{
    right: -25px;
    bottom: -25px;
}
.border-radius.left-bottom{
    left: -25px;
    bottom: -25px;
}
.border-radius.right-top{
    right: -25px;
    top: -25px;
}
.border-radius.left-top{
    left: -25px;
    top: -25px;
}
.dashed-line{
    padding: 0;
    margin: 0 25px;
    border: 1px dashed #000;
}
.summary-title{
    color: #253058;
    font-size: 20px;
    font-weight: 700;
}
.payment-blue-btn{
    margin: 1rem 0;
}
.or-container {
    position: relative;
        margin: 2px;
}
.or-container p{
    margin-bottom: 0;
    width: fit-content;
    display: flex;
    margin: auto;
    background: rgba(221, 235, 245, 0.70);
    z-index: 2;
    position: relative;
}
.or-line {
    z-index: 1;
    height: 1px;
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    background: #7C87AA;
}
.summary-upper h3{
    color: #0085F2;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
}
.condition-container{
    margin: 10px 0;
    text-align: left;
}
.condition-container .condition-title{
    margin-bottom: 0;
    font-weight: 500;
}
.condition-container ul{
    padding-left: 8px;
    font-size: 15px;
    margin-bottom: 5px;
}
.summary-lower table{
    width: 100%;
    font-size: 14px;
}
.summary-lower table td{
    padding: 5px 0;
}
.summary-lower table tr td:first-of-type{
    width: 50%;
    text-align: left;
    font-weight: 700;
}
.summary-lower table tr td:last-of-type{
    text-align: right;
}
.summary-lower table tr.total-row{
    font-size: 20px;
    font-weight: 700;
}







/* payment otp design */
.otpModal .text{
    border-radius: 10px;
    background: #FDC800;
    padding: 10px;
    margin-bottom: 10px;
}
.otpModal .otp-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}
.otpModal .otp-container input{
    border: 1px solid #0085F2;
    width: 50px;
    aspect-ratio: 1/1;
    padding: 10px;
    border-radius: 4px;
}
.otpModal .otp-action-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.otpModal .otp-action-container span{
    cursor: pointer;
    color: #0085F2;
    font-weight: 600;
}
.otpModal .note-text{
    font-size: 14px;
    margin-bottom: 5px;
}



/* payment success page design */
.payment-success-container{
    min-height: 60vh;
    text-align: center;
    max-width: 400px;
    margin: auto;
    position: relative;

}
.success-icon {
    position: absolute;
    top: 0%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -10%);
}
.success-box{
    background: linear-gradient(90deg, #0085F2 0%, #73C0FF 100%);
    border-radius: 30px 30px 0 0;
    padding: 4rem 2rem 0rem 2rem;
    color: #fff;
    position: relative;
}

.success-box h4{
    font-weight: 700;
}
.success-box p{
    font-weight: 200;
    font-size: 16px;
}
.curtain-design{
    position: absolute;
    bottom: -10px;
    width: 100%;
    left: 0;
    z-index: 9;
}















































@media only screen and (min-width: 1400px) {
    
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
   
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
   
    
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {    
    .header-button-container .yellow-btn img, .header-button-container .blue-btn span{
        display: none;
    }
    .header-button-container .search-container{
        max-width: 60%;
    }
    .payment-section .container {
        padding: 0.5rem;
    }
    .payment-section{
        padding: 0 0 ;
    }
   .payment-details-form .input-container {
        padding-left: 0;
    }
    .payment-summary-container{
        width: 100%;
    }
    .otpModal .otp-container{
        gap: 5px;
        margin: 10px 0;
        overflow-x: scroll;
    }
}



/* Extra extra small devices (phones, 600px and down) */
@media only screen and (max-width: 360px) {
    .header-container .container {
        display: grid;
        gap: 0;
        grid-template-columns: 30% 70%;
    }
    .payment-button-container .yellow-btn, .payment-button-container .blue-btn{
        padding: 10px 6px;
    }
    .otpModal .otp-container{
        gap: 5px;
        margin: 10px 0;
        overflow-x: scroll;
    }
    
    
}