*{
    padding: 0;
    margin: 0;
}
body, html{
    overflow-x: hidden;
}
.topbar{
    background-color: #183b60;
}
.topbar-contact-info {
    text-align: left
}
.topbar-contact-info ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 30px
}
.topbar-contact-info ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center
}
.topbar-contact-info ul li a i {
    margin-right: 5px
}
.topbar-social-links {
    padding-top: 10px;
    text-align: right
}
.topbar-social-links ul li {
    display: inline-block;
    margin-right: 20px;
    transition: .3s ease-in-out
}
.topbar-social-links ul li:last-child {
    margin-right: 0
}
.topbar-social-links ul li a {
    color: #fff;
    transition: .3s ease-in-out
}
.topbar-social-links ul li a:hover {
    color: #d3d3d3
}
.topbar-social-links ul li a i {
    font-size: 20px;
    color: inherit
}
.btn.btn-call-top{
    font-weight: 600;
    color: white;
    background: #183b60;
    padding: 10px 40px;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.btn.btn-call-top:hover{
    background: #f59a11;
}

.top-form{
    padding: 15px 60px;
}
.top-form span{
    font-size: 27px;
    font-weight: 600;
    color: #183b60;
}
.top-form span b{
    color: #f59a11;
}
.top-form label{
    font-weight: 600;
    color: #183b60;
    padding-bottom: 5px;
}
.top-form input.form-control{
    height: 45px;
}
.top-form .form-control{
    color: #183b60;
    border: 1px solid #f59a11;
    border-radius: 15px;
}
.top-form .form-control::placeholder {
    color: #183b60;
    opacity: 1;
}
.mob{
    display: flex;
}
.btn.btn-submit{
    font-weight: 600;
    color: white;
    background: #f59a11;
    padding: 10px 40px;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.btn.btn-submit:hover{
    background: #183b60;
}

.about{
    padding: 30px 0px;
}
.about-top .welcome{
    font-size: 50px;
    color: #183b60;
    font-weight: 600;
}
.about-top .welcome span{
    color: #f59a11;
    font-weight: 700;
}
.about-top h1{
    color: #f59a11;
    font-size: 33px;
    font-weight: 700;
}
.about-top p.subpara{
    font-size: 25px;
    color: #183b60;
    font-weight: 600;
}
.about-image img{
    border-radius: 25px;
}
.section.why{
    padding: 30px 0px;
}
.section.why h2 {
    color: #183b60;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.why-card{
    padding: 25px;
    text-align: center;
    border: 1px solid #183b60;
    border-radius: 10px;
    height: 275px;
    max-height: 100%;
    transition: all 0.3s ease;
}
.why-card:hover{
    background-color: #f59a11;
    border-color: #f59a11;
    color: white;
}
.why-card h3{
    color: #f59a11;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.why-card p{
    font-size: 18px;
    color: #183b60;
}
.why-card:hover h3,
.why-card:hover p{
    color: white;
    font-weight: 600;
}
.section.appointment{
    padding: 30px 0px;
}
.appointment-card{
    margin: 0px;
    padding: 0px;
}
.appointment-content{
    background-color: #183b60;
    padding: 50px;
}
.appointment-content form{
    padding: 25px;
}
.appointment-content h2{
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.md-form {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.md-form label{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1rem;
    color: white;
    cursor: text;
    -webkit-transition: color .2s ease-out, -webkit-transform .2s ease-out;
    transition: color .2s ease-out, -webkit-transform .2s ease-out;
    transition: transform .2s ease-out, color .2s ease-out;
    transition: transform .2s ease-out, color .2s ease-out, -webkit-transform .2s ease-out;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}
.md-form.textarea label{
    margin-left: 12px;
}
.md-form input,
.md-form textarea{
    height: auto;
    padding: .6rem 0 .4rem 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.md-form input:focus,
.md-form textarea:focus{
    color: white;
    background-color: transparent;
    border-bottom: 1px solid #4285f4;
    -webkit-box-shadow: 0 1px 0 0 #4285f4;
    box-shadow: 0 1px 0 0 #4285f4
}
.md-form input:focus+label,
.md-form textarea:focus+label{
    color: transparent;
}
.btn.btn-submit2{
    font-weight: 600;
    color: white;
    background: #f59a11;
    padding: 10px 40px;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.btn.btn-submit2:hover{
    background: crimson;
}
.services{
    padding: 30px 0px;
}
.services h2{
    color: #183b60;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.services h2 span{
    color:#f59a11;
}
.service-card{
    background-color: white;
    padding: 25px 50px;
    border-radius: 10px 10px 10px 10px;
    box-shadow:  10px 10px 40px #bebebe,
             -10px -10px 40px #ffffff;
    transition: all 0.4s ease;
}
.service-card:hover{
    box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;
}
.service-card h3{
    color: #f59a11;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 15px 0px;
}
.service-card p{
    color: #183b60;
    font-size: 18px;
    font-weight: 600;
}
.section.cta{
    padding: 50px 0px;
    background: linear-gradient(#f59a11, #183b60), fixed center center;
    background-size: cover;
    color: white;
}
.section.cta h2{
    font-size: 2rem;
}
.section.cta p{
    font-size: 18px;
    font-weight: 600;
}
.btn.btn-cta{
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 50px;
    border: 2px solid #fff;
    color: #fff;
}
.btn.btn-cta:hover{
    background: #47b2e4;
    border: 2px solid #47b2e4;
}
.testimonials{
    padding: 30px 0px;
}
.testimonials h2{
    color: #183b60;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
}
.testimonials p.subpara{
    font-size: 20px;
    color: #183b60;
    font-weight: 600;
}
.owl-carousel.carousel-main{
    padding: 25px 0px;
}
.testimony{
    height: 350px;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 10px 10px;
    border: 1px solid #183b60;
    transition: all 0.4s ease;
}
.testimony:hover{
    box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;
}
.testimony h3{
    color: #f59a11;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 15px 0px;
    text-align: center;
}
.testimony p{
    color: #183b60;
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}
.testimonials img{
    border-radius: 10px;
}
.rating li{
  display: inline-block;
  font-size: 25px;
  list-style-type: none;
}
.star,
.rating:not(.vote-cast):hover .star:hover ~ .star,
.rating.vote-cast .star.selected ~ .star
{
  color: #f59a11;
}
.owl-prev span, .owl-next span {
	color: #183b60;
}
.owl-prev span:hover, 
.owl-next span:hover {
	color: #183b60;
}
.owl-prev, .owl-next {
	position: absolute;
	top: 0;
	height: 100%;
}
.owl-prev {
	left: -15px;
}
.owl-next {
	right: -15px;
}
.section.faqs{
    padding: 40px 0px;
}
.section.faqs h2{
    color: #183b60;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
.accordions {
    width: 100%;
    margin: 0 auto;
}
.accordion {
    border: 1px solid #f59a11;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color .5s ease;
    background-color: white; 
}  
.accordion:hover {
    border-color: #183b60;
}
.accordion__header {
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    padding: 1rem;
    color: #183b60;  
}
.accordion__header:after, .accordion__header:before {
    content: '';
    position: absolute;
    right: 1.5em;
    width: 2px;
    height: 0.75em;
    background-color: #183b60;
    transition: all 0.2s;
}
.accordion__header:after {
    transform: rotate(90deg);
}  
.accordion:has(input:checked) .accordion__header {
    color: #183b60;
}
.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.accordion__content p,
.accordion__content ul li{
    padding: 0 1em 1em;
    color: #183b60;
}
.accordion input {
    display: none;
}  
.accordion:has(input:checked) {
    border-color: #183b60;
    background-color: #fff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}  
.accordion input:checked ~ .accordion__header:before {
    transform: rotate(270deg) !important;
    background-color: #000;
}  
.accordion input:checked ~ .accordion__header:after {
    transform: rotate(270deg) !important;
    background-color: #000;
}  
.accordion input:checked ~ .accordion__content {
    max-height: 1000px;
}
.section.contact{
    padding: 30px 0px;
}
.section.footer{
    background-color: #183b60;
    padding: 15px 0px 0px 0px;
}
.section.footer p,
.section.footer p a{
    font-size: 16px;
    font-weight: 600;
    color: white;
}
.section.footer p a{
    text-decoration: none;
}
.fixed_icons_container.whatsapp_container {
    position: fixed;
    bottom: 30px;
    transform: translateY(-50%);
    right: 50px;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 9999;
}
.fixed_icons_container.call_container {
    position: fixed;
    bottom: 160px;
    transform: translateY(-50%);
    right: 50px;
    display: flex;
    flex-direction: column;
    background: transparent;
    z-index: 9999;
}
.whatsapp_container{
    top: unset;
    left: unset;
    bottom: 0;
    right: 1rem;
}
.call_container {
    top: unset;
    left: unset;
    bottom: 0;
    right: 1rem;
}
.fixed_icons_container.whatsapp_container a {
    text-decoration: none;
    width: 70px;
    height: 70px;
    margin: 1px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-animation2 2s infinite;
}
.fixed_icons_container.call_container a i,
.fixed_icons_container.whatsapp_container a i{
	color: white;
}
.fixed_icons_container.whatsapp_container a:hover i{
    transition: 0.4s ease-in-out;
}
.fixed_icons_container a{
    text-decoration: none;
    background-color: crimson;
    width: 70px;
    height: 70px;
    margin: 1px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-animation2 2s infinite;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(18, 140, 126, 0.7);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(18, 140, 126, 0);
  }
}
@keyframes pulse-animation2 {
  0% {
    box-shadow: 0 0 0 0px rgba(220, 20, 60, 0.7);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(220, 20, 60, 0);
  }
}
.fa-phone{
    animation: ringing 5s ease-in-out infinite;
}
@keyframes ringing {
    20% { transform: rotate(0deg); }
    21% { transform: rotate(10deg); }
    22% { transform: rotate(-10deg); }
    23% { transform: rotate(12deg); }
    24% { transform: rotate(-12deg); }
    25% { transform: rotate(12deg); }
    26% { transform: rotate(-12deg); }
    28% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    32% { transform: rotate(5deg); }
    34% { transform: rotate(-5deg); }
    36% { transform: rotate(2deg); }
    38% { transform: rotate(0deg); }
}
.btn.btn-action{
    padding:0px 0px 0px 0px;
    width: 250px;
    height:36px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #f59a11;
    border-radius: 0px 0px 5px 5px;
    transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    -o-transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    position: fixed;
    right: -105px;
    top: 40%;
}

.thank-wrapper{
    padding: 125px 25px;
}
.thank-wrapper h1{
    color: #f59a11;
    font-size: 90px;
    font-weight: 700;
}
.thank-wrapper h2{
    color: #183b60;
    font-size: 35px;
    font-weight: 600;
}
.thank-wrapper h3{
    color: #183b60;
    font-size: 35px;
    font-weight: 600;
}

@media only screen and (max-width: 1425px){
    .top-form{
        padding: 20px 25px;
    }
    .top-form span{
        font-size: 25px;
    }
    body, html{
        overflow-x: hidden;
    }
    .why-card{
        height: 240px;
    }
    body, html{
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 1365px){
    .top-form{
        padding: 25px 30px;
    }
    .top-form span{
        font-size: 25px;
    }
    .about-top .welcome {
        font-size: 45px;
    }
    .testimony{
        height: 400px;
    }
}
@media only screen and (max-width: 1280px){
    .top-form{
        padding: 20px;
    }
    .thank-wrapper h1{
        font-size: 80px;
    }
    .thank-wrapper h2{
        font-size: 30px;
    }
    .thank-wrapper h3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 1024px) {
    .topbar-contact-info ul li a span {
        display:none
    }
    .top-form{
        padding: 15px;
    }
    .top-form span{
        font-size: 22px;
    }
    .about-top .welcome {
        font-size: 40px;
    }
    .about-top p.subpara {
        font-size: 22px;
    }
    .about-box .heading p {
        font-size: 16px;
        line-height: 18px;
    }
    .about-content p {
        font-size: 17px;
    }
    .service-card {
        padding: 15px;
    }
    .testimony{
        height: 300px;
        padding: 15px;
    }
    .contact .appointment-content{
        width: 100%;
        padding: 40px;
    }
    .thank-wrapper{
        padding: 20px;
    }
    .thank-wrapper h1{
        font-size: 70px;
    }
    .thank-wrapper h2{
        font-size: 33px;
    }
    .thank-wrapper h3{
        font-size: 33px;
    }
}
@media only screen and (max-width: 900px) {
    .topbar-contact-info ul li a span {
        display:none
    }
    .top-form{
        padding: 30px 70px;
    }
    .top-form span{
        font-size: 36px;
    }
    .testimony{
        height: 400px;
        padding: 15px;
    }
    .why-card{
        height: 100%;
    }
    .thank-wrapper{
        padding: 25px;
    }
    .thank-wrapper h1{
        font-size: 90px;
    }
    .thank-wrapper h2{
        font-size: 36px;
    }
    .thank-wrapper h3{
        font-size: 36px;
    }
}
@media only screen and (max-width: 600px) {
    .top-navbar .mob,
    .topbar-contact-info ul li a span {
        display:none
    }
    .top-form{
        padding: 25px 40px;
    }
    .top-form span{
        font-size: 33px;
    }
    .about-top .welcome {
        font-size: 33px;
    }
    .about-top h1 {
        font-size: 27px;
    }
    .about-top p.subpara {
        font-size: 18px;
    }
    .why-card{
        height: 100%;
    }
    .testimony{
        padding: 15px;
        height: 100%;
    }
    .accordion__header{
        padding: 10px;
    }
    .thank-wrapper{
        padding: 25px 15px;
    }
    .thank-wrapper h1{
        font-size: 90px;
    }
    .thank-wrapper h2{
        font-size: 30px;
    }
    .thank-wrapper h3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 420px) {
    .top-navbar .mob,
    .topbar-contact-info ul li a span {
        display:none
    }
    .top-form{
        padding: 15px;
    }
    .top-form span{
        font-size: 33px;
    }
    .about-top .welcome {
        font-size: 40px;
        line-height: 45px;
    }
    .about-top h1 {
        font-size: 25px;
    }
    .about-top p.subpara {
        font-size: 20px;
    }
    .accordion__header{
        padding: 10px;
    }
    .fixed_icons_container.whatsapp_container,
    .fixed_icons_container.call_container {
        right: 27px;
    }
    .btn.btn-action {
        right: -107px;
    }
    .thank-wrapper{
        padding: 25px 15px;
    }
    .thank-wrapper h1{
        font-size: 60px;
    }
    .thank-wrapper h2{
        font-size: 25px;
    }
    .thank-wrapper h3{
        font-size: 25px;
    }
}