@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}

:root {
    --website-primary: #0856C3;
    --website-secondary: #F0C354;
    --website-header: #F7E1A9;
    --website-detected-button: #FBF0D4;
    --website-translation-button: #D6E3F5;
}
#preloader{
    background: var(--website-header) url('../images/giff.gif') no-repeat center center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100;
}
/* navigation start here */
.custom-container {
    width: 85%;
    margin: auto;
}

.header {
    width: 100%;
    padding: 10px 5%;
    background-color: var(--website-header);
}

.header-phone,
.header-email {
    font-weight: 600;
}

.header-phone i {
    padding: 7px;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 7px;
    background-color: var(--website-detected-button);
}

.header-email i {
    padding: 7px;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 7px;
    background-color: var(--website-detected-button);
}
.header-email a{
    color: #000000;
    text-decoration: none;
}

.navigation {
    background-color: white !important;
    padding: 5px 4%;
    border-bottom: 1px solid var(--website-secondary);
    box-shadow: 0px 2px 10px #4949494f;
}

.navigation .logo {
    width: 150px;
    height: 60px;
    object-fit: contain;
}

.navigation .navigation-menu {
    width: auto !important;
    margin-left: 3rem !important;
}

.navigation .nav-item {
    margin: 0px 5px;
}

.navigation .nav-item .nav-link {
    color: black;
    font-weight: 600;
    text-wrap: nowrap;
}

.navigation .nav-item .nav-link.active {
    color: var(--website-primary);
    border-bottom: 2px solid var(--website-secondary);
    padding-bottom: -2px;
}

.navigation .nav-item .nav-link:hover {
    color: var(--website-primary);
    border-bottom: 2px solid var(--website-secondary);
    padding-bottom: -2px;
    transition: 0s;
}

.navigation .sign-login {}

.navigation .sign-login .sign-btn {
    margin-right: 10px;
    padding: 10px 30px;
    width: 200px;
}

.navigation .sign-login .login-btn {
    margin: 0px 10px;
    padding: 10px 35px;
    background: var(--website-primary);
    color: #ffffff;
    width: 200px;
}

.dropbtn {
    /* background-color: #f8f8f8; */
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 5px

}

.dropdown:hover .dropdown-content {
    display: block;
}

/* navigation end here */


/* banner section start here */
.banner-section {
    width: 90%;
    margin: auto;
    min-height: 400px;
    max-height: 700px;
}

.banner-section .banner-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
}

.banner-section .banner-content {
    padding: 10px;
}

.banner-section .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.banner-section .banner-content p {
    /* width: 600px; */
    justify-content: left;
    font-size: 1.2rem;
}

.banner-section .banner-btn {
    margin-top: 2.5rem;
    justify-content: left;
}

.banner-section .banner-btn .service {
    margin-right: 10px;
    padding: 15px 30px;
    text-wrap: nowrap;
}

.banner-section .banner-btn .service:hover {
    background: var(--website-primary);
    color: #ffffff;
}

.banner-section .banner-btn .translate {
    margin: 0px 10px;
    padding: 15px 40px;
    text-wrap: nowrap;
    background: var(--website-primary);
    color: #ffffff;
}

/* banner section end here */

/* mission vision section start here */
.mission-vision {
    width: 90%;
    margin: auto;
    padding: 10% 5px;
}

.mission-vision .content {
    font-size: 1.2rem;
}

.mission-vision .content .mission-card {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    background-color: #F8E6FF;
    border-radius: 20px;
    padding: 25px;
    min-width: 300px;
    max-width: 500px;
    height: auto;
}

.mission-vision .content .mission-card .mission-img {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.mission-vision .content .mission-card .mission-img img {
    width: 400px;
    height: 40px;
    object-fit: contain;
}

.mission-vision .content .vision-card {
    display: flex;
    align-items: center;
    background-color: #FFE5EA;
    border-radius: 20px;
    padding: 25px;
    min-width: 300px;
    max-width: 500px;
    margin-top: 20px;
    height: auto;
}

.mission-vision .content .vision-card .vision-img {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.mission-vision .content .vision-card .vision-img img {
    width: 250px;
    height: 40px;
    object-fit: contain;
}

.mission-vision .offer-content h1 {
    color: var(--website-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-vision .offer-content p {
    font-size: 1.2rem;
}

/* mission vision section end here */

/* service section start here */
.service-section {
    width: 90%;
    margin: auto;
    padding: 20px 5px;
}

.service-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--website-primary);
    margin-bottom: 3rem;
}

.service-section .service-card {
    padding: 25px 20px;
    border-radius: 20px;
    min-height: 200px;
    max-height: auto;
    box-shadow: 10px 10px 20px #0856C31b;
}

.service-section .service-card:hover {
    border: 1px solid var(--website-primary);
    box-shadow: none;

}

.service-section .service-card .service-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
}

/* service section end here */

/* footer section start here */
.footer-section {
    margin-top: 7%;
    background-image: url('../images/footer-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: fill;
    border-top: 1px solid var(--website-secondary);
    width: 100%;
    height: 100%;
    padding: 3% 5%;
    font-size: 1.1rem;
    z-index: -2;
}

.footer-section .footer-logo {
    min-width: 200px;
    max-width: 300px;
    min-height: 100px;
    height: 120px;
    object-fit: contain;
}

.footer-section ul .header-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px !important;
}

.footer-section ul li {
    list-style: none;
    margin: 15px 0px;
    font-size: 1rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: black;
}

.footer-section ul li a:hover {
    color: var(--website-primary);
}

/* footer section end here */



/* darshan bane code start here */

/* --------------- login page start here --------------- */
#login_page {
    width: 100%;
    height: 100vh;
    background-image: url('../images/background_img.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#register_page {
    width: 100%;
    height: auto;
    background-image: url('../images/background_img.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_register_container {
    width: 600px;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 10px #0856C33b);
    padding: 50px 70px;
    margin: 80px;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
}

.password_icon {
    float: left;
    padding: 0px 10px;
}

.input_field {
    border: 1px solid #ced4da;
    border-radius: 7px;
    padding: 5px;
}

.input_field:focus-within {
    border-color: #2b2b2b;
}

.form-group {
    width: 100%;
}

.form-group input {
    border: none;
}

.form-group input:focus {
    box-shadow: none;
}

.form-group textarea {
    border: none;
}

.form-group textarea:focus {
    box-shadow: none;
}

.form-group select {
    border: none;
}

.form-group select:focus {
    box-shadow: none;
}

.address_icon{
    margin-top: -28px;
}

.login_register_container a {
    color: var(--website-primary);
    text-decoration: none;
    font-weight: 700;
    padding: 20px 0px;
}

#global_button {
    width: 100%;
    height: auto;
    background: var(--website-primary);
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 10px;
}

#global_button:hover {
    background: #1064da;
    transition: .5s;
    /* box-shadow: 2px 3px 10px #086fc3a1; */
}

@media only screen and (max-width:1000px) and (min-width:100px) {
    .login_register_container {
        width: auto !important;
        padding: 30px;
        margin: 20px;
    }
}

.all-icon {
    width: 25px;
    height: auto;
}

/* darshan bane code end here*/




/* Medium devices (tablets) */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navigation .nav-item .nav-link:hover,
    .navigation .nav-item .nav-link.active {
        border-bottom: none;
    }

    .navigation .navigation-menu {
        width: auto !important;
        margin-left: 1rem !important;
    }

    .navigation .sign-login {
        margin-bottom: 10px;
    }

    .banner-section {
        margin-top: 2rem;
    }
}

/* Small devices (phones) */
@media only screen and (max-width: 767px) {

    .navigation .nav-item .nav-link:hover,
    .navigation .nav-item .nav-link.active {
        border-bottom: none;
    }

    .navigation .navigation-menu {
        width: auto !important;
        margin-left: 1rem !important;
    }

    .navigation .sign-login {
        margin-bottom: 10px;
    }

    .banner-section {
        margin-top: 2rem;
    }

    .banner-section .banner-content h1 {
        font-size: 2.2rem;
        font-weight: 700;
    }

    .banner-btn {
        flex-direction: column;
    }

    .banner-section .banner-btn .translate {
        margin: 10px 10px 0px 0px;
    }

    .mission-vision {
        padding: 5% 5px;
    }

    .mission-vision .offer-content h1 {
        font-size: 2rem;
    }

    .service-section h1 {
        font-size: 2rem;
    }

    .footer-section ul {
        padding-left: 0px;
    }

    .navigation .sign-login .sign-btn {
        width: 130px !important;
    }

    .navigation .sign-login .login-btn {
        width: 130px !important;
    }
}

@media(max-width:1350px)  {

    .navigation .navigation-menu {
        width: auto !important;
        margin-left: 1rem !important;
        flex-wrap: wrap !important;
    }

    .navigation .sign-login {
        margin: 10px 0px !important;
    }
}

/* media query */



/* --------------------- TEXT TRANSLAION START---------------------- */
#tt_container{
    width: 100%;
    height: auto;
    padding: 100px 150px;
}
.translate_row{
    width: 100%;
    height: auto;
}
.detect_language{
    border-radius: 20px;
}
.detect_div{
    background: var(--website-detected-button);
    padding: 20px;
    border-radius: 20px 20px 0px 0px;
}
.translate_select select{
    box-shadow: none !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.translate_textarea{
    width: 100%;
    height: auto;
}
.translate_textarea textarea{
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-top: none ;
    border-radius: 0px 0px 18px 18px;
}
.translate_textarea textarea:focus{
    box-shadow: none;
    border: 1px solid #ccc;
    border-top: none ;
}
.translate_div{
    background: var(--website-translation-button);
    padding: 20px;
    border-radius: 20px 20px 0px 0px;
}
.input-group{
    width: 55%;
    height: auto;
}
.input-group-text{
    background: white;
    border: none;
}
.form-select{
    width: 100%;
    height: auto;
    text-wrap: wrap;
    background: white;
    border: none;
    box-shadow: none !important;
}
.convetText_icon{
    display: flex;
    justify-content:center;
    align-items: start;
}
.convetText_icon img{
    padding:10px;
    width: 30%;
    margin-top: 10px;
}
.translate_button{
    padding: 50px 180px !important;
}
.translate_button button{
    width: 50% !important;
}
.row{
    margin-left: 0px;
}
#up_down_arrow{
    display: none;
}
#side_arrow{
    display: block;
}
@media only screen and (max-width:1000px) and (min-width:100px) {
    .translate_button{
        padding: 30px !important;
    }
    .translate_button button{
        width: 100% !important;
    }
    #tt_container{
        padding: 30px !important;
    }
    #up_down_arrow{
        display: block;
    }
    #side_arrow{
        display: none;
    }
    .convetText_icon img{
        padding: 20px;
        width: 20%;
        margin-top: 0px;
    }
}
@media only screen and (max-width:1160px) and (min-width:768px){
    .convetText_icon img{
        padding: 10px;
        width: 50% !important;
        margin-top: 10px;
    }
    #up_down_arrow{
        display: none;
    }
    #side_arrow{
        display: block;
    }
}
/* --------------------- TEXT TRANSLAION END ---------------------- */


/* --------------------- PDF TRANSLATION START --------------------- */
.pdf_translate_button{
    padding: 50px;
}
.pdf_translate_button button{
    width: 70% !important;
}
.pdf_translate_div{
    background: var(--website-translation-button);
    padding: 20px;
    border-radius: 20px;
}
.pdf_detect_div{
    background: var(--website-detected-button);
    padding: 20px;
    border-radius: 20px;
}

#upload_img{
    width:100%;
    height: auto;
    cursor: pointer;
}
#pdf_translation_arrow{
    width: 10%;
}

@media only screen and (max-width:1000px) and (min-width:100px) {
    .detect_language{
        border-radius: 20px;
    }
    .convert_pdf_section{
        margin-top: 50px;
    }
    .pdf_translate_button button{
        width: 100% !important;
    }
}
@media only screen and (max-width:1160px) and (min-width:768px){
    #pdf_translation_arrow{
        padding: 10px;
        width: 10% !important;
        margin-top: 10px;
    }
}

/* --------------------- PDF TRANSLATION END --------------------- */


/* --------------------- DICTATION PAGE START----------------------- */
.voice_translate_container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 50px 100px;
}
.dictation_select_language{
    width: auto !important;
    height: auto;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
    padding: 2px;
}
#cke_text-box{
    border: 1px solid #b3b3b3 !important;

}
#cke_1_top {
    border-bottom: 1px solid #b3b3b3 !important;
}

#cke_1_contents{
    height: 300px !important;
}

.diction-section{
    width: 90%;
    margin: auto;
}

.dictation-button a{
    width: 20%;
    padding: 10px 20px;
    border-color: var(--website-primary);
}
.dictation-button .btn-primary{
    background-color: var(--website-primary);
}
.dictation-button a:hover{
    background-color: var(--website-primary);
    border-color: var(--website-primary);
}

#mic_img{
    width: auto;
    height: auto;
    margin-right: 20px;
}
#mic_img:hover{
    box-shadow: 2px 2px 7px var(--website-secondary);
    border-radius: 50%;
}
@media only screen and (max-width:1000px) and (min-width:100px) {
    .voice_translate_container{
        padding: 40px;
        flex-direction: column;

    }
}

/* .mic i{
    background: var(--website-secondary);
    padding: 30px;
    border-radius: 100px;
} */
/* --------------------- DICTATION PAGE END----------------------- */

/* ------------------ PRICING PAGE START-------------------- */
#pricing_container{
    width: 100%;
    height: auto;
    padding:100px;
    overflow-x: hidden !important;
}
.pricing_heading{
    text-align: center;
    margin-bottom: 20px;
}
.pricing_heading h1{
    font-size: clamp(32px, 4vw, 45px);
}
.pricing_heading p{
    padding: 10px;
}
.pricing_section{
    width: 100%;
    height: auto;

}

.plans_card{
    border: 1px solid #b3b3b3;
}
.plans_card:hover{
    border: 1px solid var(--website-primary);
    box-shadow: 0px 7px 20px #0856C350;
    transition: .2s;
}
.recommended{
    background: var(--website-primary);
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 300;
    padding: 5px 0px;
}
.recommended_disabled{
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 300;
    padding: 5px 0px;
    cursor: default;
}
.city {
    --bs-gutter-x: 0rem !important;
}
.plans_card h5{
    font-weight: 700;
    color: #021530;
    padding: 5px 0px;
}
.plans_card h1{
    color: #181818;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 45px);
}
.pricing_buttons{
    padding: 10px !important;
}
.pricing_buttons button{
    width: 80% !important;
}
.pricing_list li{
    list-style: none;
    font-weight: 500;
    line-height: 40px;
}
.recommended_plan_card{
    border: 1px solid var(--website-primary);
}
.basic_plan_card{
    border-radius: 20px 0px 0px 20px !important;
}
.premium_plan_card{
    border-radius: 0px 20px 20px 0px !important;
}
.buttons_white button{
    background: #ffffff !important;
    color: var(--website-primary) !important;
    border:1px solid var(--website-primary) !important;
}
.buttons_white button:hover{
    background: var(--website-primary) !important;
    color: #ffffff !important;
    transition: .2s !important;
}
.support_center_container{
    width:100%;
    height: auto;
    padding: 100px;;
}
.support_center{
    width:100%;
    height: auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 25px #0856C350;
}


.new_pricing_div{
    background: #ffffff;
    border: 1px solid var(--website-primary);
    height: auto;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #0856c350;
}
.new_pricing_div:hover{
    box-shadow: 0px 0px 15px #0856c393;
}
.new_pricing_div input{
    border: 1px solid #818181;
    padding: 10px 30px;
    text-align: center;
    border-radius: 8px;

}
.new_pricing_div input:focus{
    border: 1px solid var(--website-primary);
    outline: none;
}

@media only screen and (max-width:1000px) and (min-width:100px) {
    #pricing_container{
        width: 100%;
        height: auto;
        padding:30px;
    }
    .basic_plan_card{
        border-radius: 0px 0px 0px 0px !important;
    }
    .premium_plan_card{
        border-radius: 0px 0px 0px 0px !important;
    }
    .plans_card{
        margin: 20px 0px;
    }
    .support_center_container{
        width:100%;
        height: auto;
        padding: 0px;;
    }

}
/* ------------------ PRICING PAGE END-------------------- */


/* ------------------ BUY PLAN PAGE START-------------------- */
#buy_plan_container{
    width:100%;
    height: auto;
    padding: 100px;;
}
.summary_content{
    box-shadow: 0px 0px 25px #0856C333;
    border-radius: 20px;
    padding: 50px 30px 20px 30px;
    background: #ffffff;
}
.buyPlan_list{
    padding-left: 0px;
}
.buyPlan_list li{
    list-style: none;
    line-height: 40px;
}
.payment_div{
    border-radius: 20px;
    padding: 50px 30px 20px 30px;
}
.apply_div{
    border: 1px solid #b3b3b3;
    padding: 3px;
    border-radius: 10px;
}
.apply_div input{
    border:none;
    outline:none;
    width: 100%;
    height: auto;
    padding: 5px;
}
.apply_div button{
    padding: 10px 60px;
    background: var(--website-secondary);
    border: none;
    border-radius: 10px;
}
.apply_div button:hover{
    background: #f8ce64;
    transition: .2s;
}
@media only screen and (max-width:1000px) and (min-width:100px) {
    #buy_plan_container{
        width: 100%;
        height: auto;
        padding:30px;
    }
    .apply_div button{
        padding: 6px 30px;
    }

    .dictation-button a{
        width: 100%;

    }
}

/* ------------------ BUY PLAN PAGE END-------------------- */

/* ------------------ MY PROFILE START-------------------- */
.myprofile_container{
    width: 100;
    height: auto;
    overflow-x: hidden !important;
}
.my_plan{
    background-image: url('../images/my_plans_bg.png');
    height: auto;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

.my_account{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}
.myprofile_row{
    height: 100vh;
    --bs-gutter-x: 0rem;
}
@media only screen and (max-width:1000px) and (min-width:100px) {
    .my_account{
        padding: 50px 20px !important;
    }
    .my_plan{
        padding: 50px 20px !important;
    }
}
#modal_btn{
    border: none;
    background: none;
    padding: 0px 10px;
}


.modal-header {
    border-bottom: 0 none;
}

.modal-footer {
    border-top: 0 none;
}

.otp-wrapper {
    display: grid;
    grid-template-columns: 30px 30px 30px 30px;
    max-width: 400px;
    gap: 30px
  }
  .otp-wrapper input:focus {
    outline: none;
  }
  .otp-wrapper input {
    width: 50px;
    height: 50px;
    line-height: 40px;
    text-align: center;
    border:1px solid #b3b3b3;
    border-radius: 8px;
  }
  .otp-wrapper input::placeholder {
    color: #ffffff50
  }
/* ------------------ MY PROFILE END-------------------- */

/* ------------------ TERMS AND CONDITIONS START-------------------- */
.terms_and_conditions{
    width: 100%;
    height: auto;
    padding: 50px 100px;
}
@media only screen and (max-width:1000px) and (min-width:100px) {
    .terms_and_conditions{
        padding: 30px;
    }
}
