

/*styles*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../fonts/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../fonts/Montserrat-SemiBold.ttf');
}

:root{
    --theme-color-1: #21144D;
    --theme-color-2: #2755a3;
    --theme-color-3: #FFF3EB;

    --body-bg: #ffffff;
    --font-color: #6A6579;
    --heading-color: #21144D;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Montserrat-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Montserrat-SemiBold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Montserrat-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
       border-radius: 30px;
    text-align: center;
    border: none;
    padding: 10px 30px;
    position: relative;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    display: inline-block;
}

.btn-main{
    color: #fff;
    background: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #EC6F26;
    transition: all .5s ease-out;
    box-shadow: 0px 1px 10px 0px rgb(33 20 77 / 15%);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
}

.btn-white{
    border: 1px solid var(--font-white);
    background-color: var(--font-white);
    color: var(--theme-color-2);
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-white:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.navbar{
    /*position: absolute;*/
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--font-white);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--heading-color);
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 14px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: transparent;
    height: 80px;
    border-bottom: 1px solid #dddddd;
}

.dropdown-menu{
    min-width: 12rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color);
    font-size: 14px;
    font-family: 'Montserrat-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Montserrat-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Montserrat-Regular';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Montserrat-Bold';
  color: var(--theme-color-2);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 0px;
    border: transparent;
    border-bottom: 1px solid #ddd;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: transparent;
    font-size: 14px;
    padding: 1.2rem 0rem;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    color: var(--theme-color-1);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--theme-color-1);
    background-color: var(--theme-color-2);
    border-radius: 50%;
    color: var(--font-white);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-2);
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq .accordion-body {
    padding: 1rem 0rem;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-small-heading{
    color: var(--theme-color-1);
    margin-bottom: 10px;
    font-family: 'Montserrat-Regular';
    font-weight: normal;
    font-size: 16px;
}

.section-main-heading{
    color: var(--heading-color);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.section{
    padding: 30px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 150px;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.banner-section-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 650px;
    background-color: var(--theme-color-3);
}

.banner-section-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%; 
    padding-right: 3rem;
}

.banner-heading{
    font-size: 48px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.banner-heading span{
    color: var(--theme-color-2);
    text-decoration: underline;
}

.banner-description{
    margin-bottom: 25px;
}

.banner-btns{
    display: flex;
    width: 100%;
}

.banner-btns a{
    margin-right: 20px;
}

.header-call h3{
    font-size: 14px;
    font-family: 'Montserrat-Medium';
}

.banner-img-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.trust-us{
    padding-top: 5rem;
}

.trust-card{
    border-radius: 15px;
    background: var(--font-white);
    box-shadow: 0px 2px 25px 5px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 100%;
    position: relative;
    padding: 15px;
    text-align: center;
}

.trust-card img{
    width: 50px;
}

.trust-card h3{
    font-size: 20px;
    
    text-align: center;
margin: 8px 0;
}

.trust-card p{
    text-align: center;
}


.cc-form-control + .cc-form-control {
  margin-top: 1em;
}

.cc-form-control:focus-within {
  color: var(--form-control-color);
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--form-background);
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 1px solid var(--theme-color-1);
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: var(--theme-color-2);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.cc-form-control{
    display: flex;
    align-items: center;
    gap:6px;
}

.chat-consultation .cc-form-control i{
    color: #EC6F26;
    font-size: 18px;
}

.cc-form-control .ccf-text{
    display: flex;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-left: 10px;
}

.cc-form-control .ccf-text{
    font-family: 'Montserrat-Medium';
    color: var(--theme-color-1);
}

.cc-form-control .ccf-text img{
    margin-right: 15px;
}

.chat-consultation-content ul {
    width: 100%;
    float: left;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.chat-consultation-content ul li{
    width: 50%;
    float: left;
    margin-bottom: 25px;
}

.chat-consultation-content h3{
    color: var(--heading-color);
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.chat-consultation-content{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}

.consulting{
    background-color: var(--theme-color-3);
}

.consulting-card{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    padding: 20px;
    border-radius: 15px;
    transition: ease-in 0.3s;
    height: 100%;
}

.consulting-card img{
    width: 50px;
    margin: auto;
    text-align: center;
    display: flex;
}

.consulting-card h3{
    font-size: 14px;
    color: var(--heading-color);
    margin-top: 20px;
    text-align: center;
    transition: ease-in 0.3s;
}

.consulting-card:hover{
    background-color: #FFE0CC;
}

.consulting-card:hover .consulting-card h3{
    transition: ease-in 0.3s;
}

.services-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.services-img{
    width: 100%;
    height: 250px;
    border-radius: 15px;
}

.services-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.services-content{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 20px 0px 0px 0px;
}

.services-content h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.team{
    background-color: var(--theme-color-3);
    overflow: hidden;
}

.teamlayer-bg{
    position: absolute;
    right: 0;
    top: 0;
}

.doctor-card{
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    background-color: var(--font-white);
    border-radius: 15px;
    box-shadow: 0px 2px 25px 2px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.doctor-image{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.doctor-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.doctor-info{
    padding-top: 20px;
}

.doctor-info h3{
    font-size: 20px;
    text-align: left;
}

.doctor-info h4{
    font-size: 16px;
    text-align: left;
    color: var(--theme-color-2);
    margin: 5px 0px;
}

.carosel-item-wrapper{
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 2px 25px 5px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 350px;
    padding: 30px;
    margin: 20px 0px;
}

.testi-carosel-top{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testi-carosel-img{
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-right: 15px;
}

.testi-carosel-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.testi-carosel-info h3{
    font-size: 16px;
}

.testi-carosel-info ul li{
    display: inline-block;
}

.testi-carosel-info ul li i{
    font-size: 12px;
    color: #E1B61E;
}

.testi .slick-dots li button:before{
    font-size: 10px;
    color: rgba(106, 101, 121, 0.45);;
}

.testi .slick-dots li.slick-active button:before{
    color: #6A6579;
    opacity: 1;
}

.articles-card{
    width: 100%;
    position: relative;
    display: inline-block;
}

.articles-image{
    width: 100%;
    /*height: 300px;*/
    position: relative;
    display: inline-block;
    border-radius: 15px 15px 0px 0px;
    /* background: url(<path-to-image>), lightgray 50% / cover no-repeat; */
}

.articles-img {
    border-radius: 15px;
    overflow: hidden;      
}



.articles-content-top h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.articles-content-top{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.articles-content-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.acb-author-image{
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-right: 10px;
}

.acb-author-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.acb-left{
    display: flex;
    align-items: center;
}

.acb-author-info h3{
    font-size: 16px;
}

.articles-badge{
    padding: 6px 15px;
    background-color: var(--font-white);
    border-radius: 30px;
    color: var(--theme-color-1);
    text-align: center;
    position: absolute;
    top: 20px;
    left: 20px;
}

.articles-info{
    display: flex;
    padding: 5px 10px;
    border-radius: 6px;
    background-color: var(--font-white);
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.articles-info > div{ 
    display: flex;
    align-items: center;
    color: var(--theme-color-1);
    margin-right: 15px;
}

.articles-info > div:last-child{
    margin-right: 0;
}

.articles-info > div i{
    margin-right: 6px;
}

.register-divider-wrapper{
    border-radius: 30px;
    background: linear-gradient(0deg, rgba(33, 20, 77, 0.90) 0%, rgba(33, 20, 77, 0.90) 100%), url('../images/register-background.jpg'), lightgray 50% / cover no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rdw-left h4{
    font-size: 14px;
    color: var(--font-white);
    margin-bottom: 5px;
}

.rdw-left h2{
    font-size: 28px;
    color: var(--font-white);
}








.services-hero {
    height: 300px;
    background: #FFF3EB;   
    display: flex;
    align-items: flex-end;   
    padding-bottom: 40px;   
}

.services-hero .container {
    width: 90%;
    margin: auto;
}

.services-hero h1 {
    font-size: 50px;
    font-weight: 700;
    color: #2d1b69;
    margin: 0 100px;
}


.bankingg-service {
    padding: 40px 0;
    background:#e8f4fd;
    /*margin-top: 15px;*/
    /*margin-bottom: 15px;*/
}
.banking-service {
    padding: 20px 0;
    /*background:#e8f4fd;*/
    /*margin-top: 15px;*/
    /*margin-bottom: 15px;*/
}


.banking-service .container {
    width: 90%;
    margin: auto;
}


.Payments-services{
    padding: 40px 0;
background: #dff0c8;
/*margin-bottom: 15px;*/
}



.Payments-services .container {
    width: 90%;
    margin: auto;
}



.Government-services {
    padding: 40px 0;
    background:#fdeaf1;
    /*margin-bottom: 15px;*/
}

.Government-services .container {
    width: 90%;
    margin: auto;
}



.Registration-services {
    padding: 40px 0;
    background:#f1fdf7;
    /*margin-bottom: 15px;*/
}

.Registration-services .container {
    width: 90%;
    margin: auto;
}




.Travel-services {
    padding: 40px 0;
    background:#eef9e6;
        /*margin-bottom: 15px;*/

}

.Travel-services .container {
    width: 90%;
    margin: auto;
}



.section-title {
    /*text-align: center;*/
    font-size:20px;
    font-weight: 700;
     margin-bottom: 30px;
    color: #2d1b69;
    position: relative;
}

/*.section-title::after {*/
/*    content: "";*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: #6a5acd;*/
/*    display: block;*/
/*    margin: 12px auto 0;*/
/*    border-radius: 5px;*/
/*}*/

/* GRID */


.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px;
}

.service-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 10px;  
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09); 
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(45, 27, 105, 0.15); 
    background: #faf8ff; 
}

.service-box img {
    width: 60px; 
    margin-bottom:7px;
    transition: 0.3s;
}

.service-box:hover img {
    transform: scale(1.08);
}

.service-box h4 {
    font-size: 14px;  
    font-weight: 600;
    margin: 0;
    color: #2d1b69;
}




.about-section {
    background: #f8f8f8;
    padding: 40px 0;
}

.about-content-col {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.about-content-col {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

.about-subtitle {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c54;
}

.about-text {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2d1b69;
    font-size:16px;
}

.about-list {
    padding-left: 0px;
    margin-bottom: 20px;
}

.about-list li {
    margin-bottom: 8px;
    /*float: left;*/
}


.mission-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.mission-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mission-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c54;
    position: relative;
}

.mission-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #4b4bff;
    display: block;
    margin-top: 8px;
}

.mission-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}



.why-choose-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.why-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    height: 230px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.why-box p {
    font-size: 0.95rem;
    color: #555;
}













.register-section{
    padding:60px 0;
  
}

.form-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}



.img-side{
    display:flex;
    align-items:center;
    justify-content:center;
}

.img-side img{
    max-width:100%;
    height:auto;
}

.subtitle{
    font-size:20px;
    margin-bottom:20px;
}

.subtitle span{
    color:#ffc107;
    font-weight:bold;
}

.features{
    list-style:none;
    padding:0;
}

.features li{
    margin-bottom:10px;
    font-size:16px;
}

.col-right{
    flex:1;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.col-right h3{
    margin-bottom:20px;
    color:#0d6efd;
}

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.form-row input{
    flex:1;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
}

textarea{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
}

/*button{*/
/*    width:100%;*/
/*    padding:12px;*/
/*    background:#198754;*/
/*    color:white;*/
/*    border:none;*/
/*    border-radius:8px;*/
/*    font-weight:bold;*/
/*    cursor:pointer;*/
/*}*/

button:hover{
    background:#2755a3;
}









footer{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    background: url('../images/footer.jfif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 3.5rem;
}


.logo-bg{
    display: inline-block;
    background: #ffffff;
    padding: 4px 16px;
    margin-bottom: 15px;
    border-radius: 15px;   
}

.logo-bg img{
       width: 190px;
     /*margin-bottom: 20px;*/
}

.footer-about p{
    margin-bottom: 20px;
    color:white;
}

.footer-contact-link a{
    width: 100%;
    display: inline-block;
     color:white;
}

.footer-social{
    width: 100%;
    display: inline-block;
    /*margin-top: 20px;*/
}

.footer-social ul li{
    display: inline-block;
}

.footer-social ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    
}

.footer-links{
    width: 100%;
    display: inline-block;
    position: relative;
}

.footer-links-heading{
    font-size: 20px;
    margin-bottom: 25px;
     color:white;
}

.footer-links ul li{
    margin-bottom: 10px;
     color:white;
}

.footer-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-bottom-wrapper{
    padding: 20px 0px;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 20px;
     color:white;
}

.page-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 300px;
    background-color: var(--theme-color-3);
    background: url('../images/jan_seva_banner.png');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner-container::after{
    content: '';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(180deg, #2755a34d, #2755a34d);
}

.page-banner-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
}

.page-banner-wrapper ul li{
    display: inline-block;
}

.page-banner-wrapper ul li {
    margin-right: 10px;
    color: var(--font-white);
}

.page-banner-wrapper h2{
    font-size: 32px;
    text-align:center;
    color: var(--font-white);
}

.about-list-order{
    width: 100%;
    float: left;
}

.about-list-order li{
    width: 50%;
    float: left;
}

.about-list-icon{
    width: 40px;
}

.about-list-info h3{
    font-size: 16px;
    margin: 15px 0px;
    line-height: 20px;
}

.aboutusImg{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fun-factor-card{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 20px;
    background-color: var(--theme-color-3);
    border-radius: 15px;
}

.fun-factor-card img{
    width: 40px;
}

.fun-factor-card h3{
    font-size: 16px;
    margin: 15px 0px;
}

.fun-factor-card h2{
    font-family: 'Montserrat-Bold';
}

.mission{
    background-color: #EC6F26;
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.other-contacts{
      width: 100%;
    height: 390px;
    position: relative;
    display: inline-block;
    box-shadow: 0px 2px 25px 5px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-radius: 15px;
    background-color: var(--theme-color-2);
}

.other-contacts h3{
    font-size: 18px;
    margin-bottom: 5px;
    color:white;
}

.other-contacts p{
    margin-bottom: 15px;
    color:white;
}

.other-contacts ul{
    margin-top: 2rem;
}

.other-contacts ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    color:white;
}

.other-contacts ul li{
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

ul li:last-child {
    border-bottom: none;
}

.other-contacts ul li a img{
    margin-right: 15px;
    width: 30px;
}

.other-contacts ul li a p{
    font-size: 14px;
    font-family: 'Montserrat-SemiBold';
    margin-bottom: 0;
    margin-left: 15px;
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.sidebar-about-info img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.know-more-link{
    width: 100%;
    position: relative;
    display: inline-block;
    color: var(--theme-color-2);
    font-family: 'Montserrat-SemiBold';
    margin-top: 1rem;
}

.sidebar-categories{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-categories-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-categories-wrapper img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
}

.scw-badge{
    padding: 2px 15px;
    background-color: var(--font-white);
    border-radius: 30px;
    color: var(--theme-color-1);
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 1px;
    font-size: 12px;
}

.sidebar-rposts{
    width: 100%;
    position: relative;
    display: inline-block;
}

.recentpost-content-wrapper{
    display: flex;
    align-items: center;
}

.rcw-img{
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin-right: 10px;
}

.rcw-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.recentpost-wrapper ul li{
    margin-bottom: 25px;
}

.recentpost-wrapper ul li:last-child{
    margin-bottom: 0px;
}

.rcw-info a h3{
    font-size: 12px;
    margin-bottom: 5px;
}

.rcw-info p{
    font-size: 12px;
}

.sidebar-tags{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-tags ul li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebar-tags ul li a{
    padding: 6px 10px;
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 30px;
}

.article-main-heading{
    font-size: 24px;
    margin-bottom: 10px;
}

.article-posted-info{
    display: flex;
    align-items: center;
}

.article-posted-info i{
    color: var(--theme-color-2);
    margin-right: 10px;
}

.article-posted-info p{
    margin-right: 2rem;
}

.article-posted-info p span{
    font-family: 'Montserrat-SemiBold';
}

.article-main-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px;
    margin-top: 1rem;
}

.article-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.ami-badge{
    padding: 2px 15px;
    background-color: var(--font-white);
    border-radius: 30px;
    color: var(--theme-color-1);
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 10px;
    font-size: 12px;
}

.article-main-image{
    position: relative;
}

.article-contents{
    margin-top: 2rem;
}

.article-contents p{
    margin-bottom: 25px;
}

.article-second-heading{
    font-family: 'Montserrat-SemiBold';
    font-size: 20px;
    margin-bottom: 20px;
}

.article-contents ul li{
    margin-bottom: 10px;
}

.article-contents ul{
    list-style: disc;
    padding-left: 20px;
}

.article-share{
    width: 100%;
    position: relative;
    display: flex;
    margin: 30px 0px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-3);
    border-radius: 30px;
}

.article-share ul li{
    display: inline-block;
}

.article-share ul li a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-tags p i{
    margin-right: 10px;
}

.article-tags p{
    font-family: 'Montserrat-Medium';
}

.article-tags ul li{
    margin-right: 10px;
    display: inline-block;
}

.article-tags ul li a{
    color: var(--theme-color-2);
}

.article-reply{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.article-reply h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.article-reply-form{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.article-reply-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}


.article-reply-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.navbar.fixed-top .nav-item .btn-white{
    background-color: #fff;
    color: var(--font-white);
}

.section.chat-consultation{
    overflow: hidden;
}

.section.team{
    overflow: hidden;
}

.vision_bx{
    box-shadow: 0 0px 25px rgb(0 0 0 / 9%);
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 2px solid var(--theme-color-2);
}


.bg-sky{
    background:#f1fcff;
}

.bg-light{
    background:#f1f1f1;
}

.mb-40{
 margin-bottom:40px;
}

.mb-20{
    margin-bottom:20px;
}
.pt-60{
    padding-top:60px;
}
.pb-20{
    padding-bottom:20px;
}

.pb-60{
    padding-bottom:60px;
}
.py-60{
   padding-top:60px;
    padding-bottom:60px;
}


.proces_sec .trust-card{
    border-radius: 10px;
    border-bottom: 2px solid var(--theme-color-2);
    padding: 25px;
    text-align: start;
}


.proces_sec .trust-card i{
    font-size: 30px;
    color: #2755a3;
    margin-bottom:15px;
}

.proces_sec .trust-card p{
 text-align:start;
}

.proces_sec .trust-card h3{
  text-align:start;
}

.chose_sec{
    
}

.chose_sec .chose_bx{
        box-shadow: 0 0px 25px rgb(0 0 0 / 9%);
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 2px solid var(--theme-color-2);
    height: 100%;
}


.chose_sec .chose_bx .chose_head{
display:flex;
align-items:center;
gap:15px;
margin-bottom:18px;
}

.chose_sec .chose_bx .chose_head img{
       width: 60px;
    background: var(--theme-color-2);
    height: 42px;
    border-radius: 5px;
    padding: 0px 7px;
}


.chose_sec .chose_bx .chose_head h4{
       font-size: 22px;

}

.partner-section{
  padding:60px 0;
 
}

.partner-section .partner-title{
  text-align:center;
  font-size:28px;
  /*margin-bottom:40px;*/
  font-weight:600;
}

.partner-section .partnerSwiper{
  width:100%;
  height:170px;
}

.partner-section .partnerSwiper .swiper-slide{
  display:flex;
  justify-content:center;
  align-items:center;
}

.partner-section .partnerSwiper img{
  max-width:140px;
  transition:0.3s;
}


.partner-section .swiper-button-next,
.partner-section .swiper-button-prev{
  color:#333;
}

.partner-section .swiper-pagination-bullet{
  background:#999;
  opacity:1;
  margin-top:30px;
  width:4px;
  height:4px;
}

.partner-section .swiper-pagination-bullet-active{
  background:#007bff;
}


/* RIGHT SIDE */

.right_side{
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-radius:30px;
    background:#fff;
    padding:40px 45px;
}

.right_side h2{
    font-size: 32px;
    color: #000;
    margin-bottom: 6px;
}

.right_side .sub_text{
    color:#777;
    margin-bottom:25px;
}

.right_side .form_group{
    margin-bottom:15px;
}

.right_side  .form_group label{
    display: block;
    margin-bottom: 4px;
    color: #040404;
    font-size: 14px;

}

.right_side  .input_box{
    position:relative;
}

 .right_side  .input_box i{
    position:absolute;
font-size: 14px;
    color: #2755a3;
    border-right: 1px solid #b5b5b5;
    padding: 14px;
}


.right_side  .input_box input{
    width:100%;
border: 1px solid #b5b5b5;
    border-radius: 7px;
    padding: 8px 50px;
    font-size: 14px;
    background: #fff;
    transition: .3s;
}

.right_side  .input_box input:focus{
    border-color:#b5b5b5;
    box-shadow:0 0 0 4px rgba(108,99,255,.12);
    outline:none;
}

.right_side  .login_btn{
    width:100%;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #11b95c, #1ed760);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor:pointer;
    transition:.3s;
}

.right_side  .login_btn:hover{
    transform:translateY(-3px);
}

.right_side  .divider_lg{
    text-align:center;
    margin:15px  0;
    color:#999;
    position:relative;
}

.right_side .divider_lg::before,
.right_side .divider_lg::after{
    content:'';
    position:absolute;
    width:38%;
    height:1px;
    background:#e4e4e4;
    top:50%;
}

.right_side .divider_lg::before{
    left:0;
}

.right_side  .divider_lg::after{
    right:0;
}




.google_btn{
    flex:1;
    height:55px;
    border:1px solid #e3e3e3;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
}
.google_btn:hover{
    background:#f7f7ff;
    transform:translateY(-2px);
}

.google_btn img{
    width:22px;
}
