@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/

 
/******* fonts *********/
@import url('../fonts/stylesheet.css'); 
/******* fonts *********/

body{
    font-family: "PT Sans", system-ui !important;
    overflow-x: hidden;
    background-color: #F8F8F8;
    min-height: 100vh;
    position: relative;
    font-size: 16px;
}

.gray{
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.zoom{
   transform: scale(1.07);
}

a{
    text-decoration: none;
}

h1{
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 50px;
    color: #616161;
    font-weight: 600;
}

h2{
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 28px;
    color: #616161;
    font-weight: 600;
}

h3{
    color: #81BD41;
    font-size: 20px;
    font-weight: 700;
}

h4{
    color: #81BD41;
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 600;
    font-size: 22px;
}

h6{
    font-size: 13px;
    font-family: "Bai Jamjuree", sans-serif;
    color: #616161;
    font-style: italic;
}

p{
    font-size: 16px;
    color: #616161;  
}

.small_p{
    font-size: 13px;
}

.inner_content{
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 86vh;
}

.text_link{
    color: #616161;
    font-family: "Bai Jamjuree", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.text_link:hover{
    color: #81BD41;
}

.text_green{
    color: #81BD41;
    transition: 0.3s ease;
}

.text_green:hover{
    font-weight: 600;
    color: #81BD41;
}


/*******common css*************/
/******************************/

.main_header{
    background-color: #81BD41;
}

.brand_logo{
    height: 50px;
    width: auto;
}

.main_form{
    background-color: #ffffff;
    border-radius: 100px;
    padding: 48px;
}

.form_bg_img{
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.form-label{
    color: #323232;
}

.form-check-label{
    color: #616161;
}

.form-control:focus, .form-select:focus{
    box-shadow: none;
    border-bottom: 1px solid #0000001a;
}

.form-control, .form-select{
    font-size: 16px;
    height: 50px;
    border: none;
    border-bottom: 1px solid #0000001a;
    border-radius: 0px;
    padding: 5px;
    color: #616161;
}

.form_icon {
    position: absolute;
    top: 18px;
    right: 10px;
    font-size: 13px;
    color: #616161;
}

.main_btn {
    border: 2px solid #323232;
    color: #323232;
    font-size: 24px;
    padding: 10px 48px;
    background-color: #ffffff; 
    border-radius: 30px;
    position: relative;
    overflow: hidden; 
    transition: color 0.3s ease; 
}

.main_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #323232; 
    transition: left 0.3s ease; 
    z-index: 0; 
}

.main_btn:hover {
    color: #ffffff;
}

.main_btn:hover::before {
    left: 0;
}

.main_btn span {
    position: relative;
    z-index: 1;
}

.small_btn{
    padding: 5px 20px;
    background-color: #616161;
    border: 1px solid #616161;
    color: #ffffff;
    border-radius: 50px;
    transition: 0.3s ease;
}

.small_btn:hover{
    background-color: #ffffff;
    color: #616161;
}

/* Radio buttons CSS  */
.form__radio-input {
    display: none;
  }
  
  .form__radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #616161;
  }
  
  .form__radio-button {
    height: 1.5rem;
    width: 1.5rem;
    border: 2px solid #81BD41;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0; 
  }
  
  .form__radio-button::after {
    content: "";
    display: block;
    height: 15px;
    width: 15px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transition: opacity 0.1s;
    transform: translate(-50%, -50%);
    background-color: #81BD41;
    opacity: 0;
  }
  
  .form__radio-input:checked + .form__radio-label .form__radio-button::after {
    opacity: 1;
  }
  

  /* Radio Button CSS  */

  /* File upload css  */
  
  .file-upload-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.file-input {
    display: none;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dotted #d3d3d3;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
    background-color: #fff;
}

.file-input-text {
    font-size: 1rem;
    color: #616161;
    text-align: center;
    display: inline-block;
    width: 100%;
    overflow: hidden;        
    text-overflow: ellipsis; 
    white-space: nowrap;     
}

.file-preview-container {
    display: none;           
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    width: 100%;             
}

.file-preview {
    height: 120px;
    width: 120px;
    border-radius: 6px; 
    object-fit: cover;
    margin-bottom: 5px;
}

.file-name {
    font-size: 0.9rem;
    color: #616161;
    text-align: center;
    overflow: hidden;        
    text-overflow: ellipsis; 
    white-space: nowrap;     
    width: 100%;             
}
  
  .file-input:valid + .file-input-label .file-input-text::before {
    content: attr(data-file-name);
  }

  /* File upload css  */

  .notice_text{
    background-color: #f8fff0;
    border: 1px solid #81BD41;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .custom_ul{
    color: #616161;
  }


/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/*inner_pages styles*/
/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/

.image_card img{
    border-radius: 40px;
}

.package_content{
    position: relative;
    padding: 30px;
    background-color: #fff;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -80px;
    margin-bottom: 35px;
    z-index: 9999;
    border-radius: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.package_num{
    display: flex;
    height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
    background-color: #81BD41;
    border-radius: 100%;
}

.package_num p{
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
}

.package_content hr{
    color: #0000001a;
    opacity: 100%;
}

.special_note{
    min-height: 16px;
}

.modal_popup{
    padding: 50px 35px 35px 35px;
    border-radius: 40px;
}

.modal_popup img{
    width: 180px;
    height: 180px;
}

.btn-close {
    background-image: url(../images/close_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 1;
    right: 25px; 
    top: 25px; 
    z-index:9999;
}

/* OTP styles  */
.otp-input-fields {
    margin: auto;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  .otp-input-fields input {
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid #81BD41;
    text-align: center;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    /* Firefox */
  }
  .otp-input-fields input::-webkit-outer-spin-button, .otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .otp-input-fields input[type=number] {
    -moz-appearance: textfield;
  }
  .otp-input-fields input:focus {
    border-width: 2px;
    border-color: #81BD41;
    font-size: 20px;
  }
/* OTP styles  */

.detail_box{
    padding: 50px;
    border-radius: 40px;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.email_policy{
    height: 50px;
    width: 100%;
    border: 1px solid #81BD41 !important;
    border-radius: 10px;
    padding: 10px;
}

/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/*inner_pages styles*/
/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/

/*****************************/
/*********footer**************/

.footer_sec{
    background-color: #323232;
}

/*****************************/
/*********footer**************/


/**********=========================================********************/
/**********===============SCROLL TOP=================********************/
/**********=========================================********************/

.scroll-top-element{
    background-color: #81BD41 !important;
    right: 15px !important;
    z-index: 999999999 !important;
    color: #fff !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.scroll-top-element:hover{
    color: #ffffff !important;
    background-color: #323232 !important;
}

/**********=========================================********************/
/**********===============SCROLL TOP=================********************/
/**********=========================================********************/



/*========================================================================*/
/*========================================================================*/
/*=====================Solution by TEKGEEKS (pvt) LTD=====================*/
/*=========DESIGN & FRONTEND DEVELOPMENT - G.D.RAVEESHA DEEMANTHI=========*/
/*========================================================================*/
/*========================================================================*/