@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #084F72;
    --secondary-color--: #754C29; 
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #1E1E1E;
    font-family: "Poppins", sans-serif;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Poppins", sans-serif;
    color: #1E1E1E;
    margin-bottom: 0;
}

p{
    font-size: 16px;
    margin: 0;
    color: #1E1E1E;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 280px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.5s;
}

header.active{
    background: var(--primary-color--);
}

header .top_header{
    display: flex;
    padding: 10px 4%;
    justify-content: end;
}

header .top_header ul{
    display: flex;
    gap: 20px;
}

header .top_header ul li a{
    color: #fff;
    font-size: 14px;
    
}

.header{
    display: flex;
    padding: 0 4%;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #FFFFFF3B;
    border-bottom: 1px solid #FFFFFF3B;
}

.header .logo{
    width: 240px;
    transition: 0.3s;
}

header.active .header .logo{
    width: 175px;
}

.header nav{
    flex: 1;
}

.header nav ul{
    display: flex;
    justify-content: end;
    gap: 30px;
}

.header nav ul li a{
    color: #fff;
    padding: 24px 5px;
    position: relative;
    font-size: 14px;
    transition: 0.3s;
}

header.active .header nav ul li a{
    padding: 15px 5px;
}

.header nav ul li a::before{
    content: '';
    width: 100%;
    height: 0;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.5s ease-in-out;
}

.header nav ul li a:hover::before, .header nav ul li.active a::before{
    height: 4px;
}

header .menu-button {
    width: 40px;
    height: 40px;
    display: none;
    place-items: center flex-end;
    border-radius: 5px;
    /* border: 2px solid #fff; */
    padding: 6px 0;
    cursor: pointer;
    margin: auto 0;
}
header .menu-button span {
    width: 32px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: .3s ease-in-out;
    border-radius: 10px;
}
header .menu-button.active span{
    background: transparent;
}
header .menu-button span::before, header .menu-button span::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    top: -10px;
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 10px;
    transition: 0.3s;
}
header .menu-button.active span::before{
    top: 0;
    transform: rotate(45deg);
    width: 100%;
    left:0
}
header .menu-button:hover span::before, header .menu-button:hover span::after{
    width: 100%;
}
header .menu-button span::before{
    left:-5px
}

header .menu-button:hover span::before{
    left:0
}
header .menu-button span::after {
    top: 10px;
    right: -5px;
}
header .menu-button.active span::after{
    top: 0;
    transform-origin: center;
    transform: rotate(-45deg);
    width: 100%;
    right: 0;
}
header .menu-button:hover span::after {
    right: 0;
}

.consult_btn{
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    border-radius: 50px;
    transition: .3s;
    border: 1px solid var(--primary-color--);
    transition: .3s;
}

.consult_btn:hover{
    color: #fff;
    transform: scale(1.05);

}

header.active .consult_btn{
    /* background: #fff; */
    border: 1px solid #fff;
    color: #fff;
}

.banner{
    position: relative;
    width: 100%;
    height: 100vh;
}

.banner > img, .banner > video{
    height: 100%;
    object-fit: cover;
}

.banner::before{
    content: '';
    position: absolute;
    background: #00000047;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.banner .content{
    position: absolute;
    top: 40%;
    width: 100%;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.banner .content h2{
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    width: 450px;
}

.banner .content p{
    font-weight: 500;
    color: #fff;
    width: 400px;
}

.banner .banner_list{
    position: absolute;
    right: 4%;
    bottom: 20px;
    z-index: 2;
    display: flex;
    justify-content: end;
    gap: 20px;
}

.list_card{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 290px;
    border: 1px solid #FFFFFFBF;
    background: #FFFFFF08;
    backdrop-filter: blur(10.600000381469727px);
    border-radius: 10px;
    padding: 10px;
}

.list_card img{
    width: 104px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
    flex: 0 0 auto;
}

.list_card .list_card_content h3{
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.list_card .list_card_content p{
    font-size: 8px;
    color: #fff;
    font-weight: 700;
}

.sub_heading{
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #084F72;
    border-radius: 50px;
    color: #084F72;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.sub_heading.text-white{
    border: 1px solid #fff;
}

.heading{
    font-size: 40px;
    font-weight: 500;
    color: #1E1E1E;
}

.heading span{
    font-weight: 700;
    color: var(--secondary-color--);
}

.about_content h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.about_content p{
    font-size: 18px;
    text-align: justify;
    margin-bottom: 10px;
}

.highlight_word{
    color: var(--secondary-color--);
    font-weight: 700;
}

.read_more_btn{
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-color--);
    color: var(--primary-color--);
    border-radius: 50px;
    transition: 0.5s;
}

.read_more_btn i{
    margin-left: 10px;
}

.read_more_btn:hover{
    background: var(--primary-color--);
    color: #fff;
}

.about_img img{
    aspect-ratio: 4/4.5;
    object-fit: cover;
    border-radius: 50px;
}

.services_card .content span{
    font-family: "Poppins", sans-serif;
}

.services_card .content h3{
    font-size: 33px;
    font-weight: 400;
    margin: 10px 0;
}

.services_card .content p{
    font-size: 20px;
}

.services_card .services_img{
    position: relative;
    z-index: 1;
    background: #ede9e5;
}

.services_card .services_img span.shape_1{
    position: absolute;
    width: calc(100% - 170px);
    height: 100%;
    background: #000;
    border-radius: 0 30px 30px 30px;
    right: 0;
    top: 0;
    z-index: -1;
}

.services_card .services_img span.shape_2{
    position: absolute;
    width: 100%;
    height: calc(100% - 54px);
    background: #000;
    border-radius: 30px 30px 0 30px;
    left: 0;
    top: 0;
    z-index: -1;
}

.services_card .services_img span.shape_3{
    position: absolute;
    width: 170px;
    height: 54px;
    background: #000;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.services_card .services_img span.shape_4{
    position: absolute;
    width: 170px;
    height: 54px;
    background: #ede9e5;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0 30px 0 0;
}

.services_card .services_img img{
    mix-blend-mode: lighten;
    aspect-ratio: 6/3.5;
    object-fit: cover;
}

.services_card .services_img .read_more_btn{
    position: absolute;
    left: 8px;
    bottom: 6px;
}

.services_container .row:nth-child(even){
    flex-direction: row-reverse;
}

.services_container .row:nth-child(even) .services_card .services_img span.shape_1{
    border-radius: 30px 0 30px 30px;
    left: 0;
    top: 0;
}

.services_container .row:nth-child(even) .services_card .services_img span.shape_2{
    border-radius: 30px 30px 30px 0;
    right: 0;
    top: 0;
}

.services_container .row:nth-child(even) .services_card .services_img span.shape_3{
    right: 0;
    left: auto;
}

.services_container .row:nth-child(even) .services_card .services_img span.shape_4{
    right: 0;
    border-radius: 30px 0 0;
    left: auto;
}

.services_container .row:nth-child(even) .services_card .services_img .read_more_btn{
    right: 8px;
    left: auto;
}

.view_all_btn{
    background: var(--primary-color--);
    color: #fff;
}

.view_all_btn:hover{
    background: none;
    color: var(--primary-color--);
}

.f_18{
    font-size: 18px;
}

.testimonial_bg{
    background: var(--primary-color--);
    padding-top: 120px !important;
    clip-path: ellipse(180% 100% at 50% 100%);
}

.testimonial_card p{
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial_card .info{
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial_card .info .img{
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
}

.testimonial_card .info .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial_card .info .name h3{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

.testimonial_slider .slick-track{
    display: flex !important;
}

.testimonial_slider .slick-slide{
    border-left: 1px solid #FFFFFF75;
    height: auto;
    /* border-right: 1px solid #FFFFFF75; */
}

.testimonial_slider_arrow{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial_slider_arrow .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.2px solid #FFFFFF;
    display: grid;
    place-items: center;
    color: #fff;
    opacity: 0.4;
    transition: .3s;
    background: none;
    font-size: 24px;
}

.testimonial_slider_arrow .slick-arrow:hover{
    opacity: 1;
}

.client_img{
    aspect-ratio: 4/1;
    object-fit: contain;
    width: 100%;
}

.blog_card .blog_img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
} 

.blog_card .blog_img img{
    aspect-ratio: 6/3;
    object-fit: cover;
}

.blog_card .blog_img .blog_img_content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #EDE9E5;
    backdrop-filter: blur(55.599998474121094px);
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

.blog_card .blog_img .blog_img_content .name h4{
    font-size: 20px;
    font-weight: 600;
}

.blog_card .blog_img .blog_img_content .info h4{
    font-size: 20px;
    font-weight: 400;
}

.blog_card .blog_img .blog_img_content .name span{
    font-size: 15px;
    color: #1E1E1E;
}

.blog_card h3{
    font-size: 24px;
    margin: 15px 0;
    transition: .3s;
}

.blog_card:hover h3{
    color: var(--secondary-color--);
}

.blog_card p{
    font-size: 20px;
}

.read_post_btn{
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    color: #BABABA;
    transition: .3s;
}

.read_post_btn:hover, .blog_card:hover .read_post_btn{
    color: var(--secondary-color--);
}

.read_post_btn i{
    transform: rotate(-45deg) translateY(6px);
    padding-left: 7px;
}

footer{
    border-top: 1px solid #E0E0E0
}

.footer_content h2{
    font-size: 40px;
    font-weight: 600;
}

.footer_heading h3{
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.footer_menu ul li{
    margin-bottom: 10px;
}

.footer_menu ul li a{
    font-size: 16px;
    font-weight: 500;
}

.footer_menu ul li a:hover{
    color: var(--primary-color--);
}

.f_input_group{
    border-bottom: 1px solid #A9A9A969;
}

.f_input_group input{
    border: none;
    padding-left: 0;
    box-shadow: none !important;
    outline: none !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.f_input_group button{
    background: var(--primary-color--);
    color: #fff !important;
    border-radius: 0;
}

.footer_flex{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #A9A9A966;
}

.copy_right p{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 20px 0;
}

.footer_flex ul{
    display: flex;
    gap: 10px;
}

.footer_flex ul li a{
    font-size: 16px;
    color: #6D6D6D;
    transition: 0.3s;
}

.footer_flex ul li a:hover{
    color: var(--primary--);
}

.sticky_sec {
  position: relative;
}

/* Each panel controls WHEN stickiness starts */
.panel{
    position: sticky;
    /* height: 100vh; */
    overflow: auto;
    /* top: calc(100% - 100vh); */
}

/* Actual sticky behavior */
.panel > section {
  position: sticky;
  top: 0;
  /* overflow: visible; */
}

.about_sec{
    z-index: 1;
    background: #fff;
}

.service_bg{
    background: #ede9e5;
    padding-top: 120px !important;
    clip-path: ellipse(180% 100% at 50% 100%);
    z-index: 2;
    padding-bottom: 150px !important;
}

.testimonial_bg{
    z-index: 3;
    margin-top: -100px;
}

.inner_banner{
    background: var(--primary-color--);
    padding: 20px 4%;
    padding-top: 180px;
}

.main_heading{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.breadcrumb ul{
    display: flex;
    gap: 10px;
}

.breadcrumb ul li, .breadcrumb ul li a{
    color: #fff;
}

.f_20{
    font-size: 20px !important;
}

.blog_detail_content p{
    font-size: 16px;
    margin-bottom: 10px;
}

.blog_detail_img img{
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: 20px;
}

.service_listing_card{
    padding: 65px 25px;
    border-top: 1px solid #D7D7D7;
    transition: 0.3s;
}

.service_listing_card:hover{
    background: #f5f5f5;
}

.service_listing_heading h3{
    font-size: 32px;
    font-weight: 400;
}

.service_detail_heading{
    font-size: 30px;
}

.service_detail_img img{
    aspect-ratio: 12/5;
    object-fit: cover;
    border-radius: 30px;
}

.service_detail_content p{
    font-size: 20px;
    text-align: justify;
    margin-bottom: 10px;
}

.service_detail_content ul{
    list-style: inside;
    columns: 2;
    gap: 30px;
}

.service_detail_content ul li{
    font-size: 18px;
}

.service_detail_sec{
    margin-top: -150px;
}

.service_detail_banner{
    padding-bottom: 110px;
}

.contact_form_input{
    border: none;
    border-bottom: 1px solid #CACACA;
    width: 100%;
    padding: 15px 10px;
    font-size: 22px;
    outline: none;
    background: none;
}

.contact_form_input::placeholder{
    color: #000;
}

.sub_btn{
    padding: 15px 25px;
    background: var(--primary-color--);
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    transition: 0.3s;
    border: 1px solid var(--primary-color--);
}

.sub_btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.contact_detail p, .contact_detail p a{
    font-size: 20px;
    color: #000000;
}

.contact_detail p strong{
    font-size: 22px;
}

.contact_detail hr{
    /* border: 3px solid #fff; */
    background: #000000;
    opacity: 1;
    width: 30px;
    height: 3px;
}

.contact_img img{
    border-radius: 20px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.text_underline{
    text-decoration: underline !important;
}

.core_value_cards{
    background: #FFFFFFB8;
    border: 2px dashed #754C29;
    border-radius: 20px;
    padding: 40px 20px;
    height: 100%;
}

.core_value_cards h3{
    font-size: 18px;
    margin-bottom: 10px;
}

.core_value_cards p{
    font-size: 16px;
    font-weight: 400;
}

.about_heading{
    font-size: 32px;
    font-weight: 600;
}

.what_sets_heading{
    font-size: 20px;
    font-weight: 600;
}

.about_img_1 img{
    aspect-ratio: 6/5;
    border-radius: 20px;
    object-fit: cover;
}

.core_values_bg{
    background: #E4DDD7A6;
}

.core_values_shape{
    width: 100%;
    height: 100px;
    background: #E4DDD7A6;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.core_values_shape_1{
    background: #fff;
}

.f_28{
    font-size: 28px;
}

.recent_blog_heading h3{
    font-size: 28px;
}

.service_listing_content p{
    font-family: "Inter", sans-serif;
}

/* background: #F9F9F9;
 */

.service_detail_new_banner{
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.service_detail_new_banner picture img{
    height: 100%;
    object-fit: cover;
}

.service_detail_new_banner .content{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: radial-gradient(33.57% 83.3% at 51.1% 48%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    /* background: #00000047; */
    display: flex;
    align-items: center;
    padding: 0 4%;
}

.service_detail_new_banner .content p{
    width: 100%;
    max-width: 700px;
}

.service_detail_bg{
    background: var(--primary-color--);
}

.service_detail_img_1{
    position: relative;
    padding: 30px 30px 0 0;
    z-index: 1;
}

.service_detail_img_1::before{
    content: '';
    width: 80%;
    height: 80%;
    position: absolute;
    top: 0;
    right: 0;
    border: 5px solid #fff;
    z-index: -1;
    border-radius: 10px;
}

.service_detail_img_1 img{
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}


.faq_accordion .accordion-item{
    background: none;
    /* padding: 10px 0; */
    border: none;
    border-bottom: 1px solid #3a3a3a;
}

.faq_accordion .accordion-button{
    background: none;
    /* color: #fff; */
    padding: 20px 0;
    border-bottom: none;
    box-shadow: none;
    /* margin-top: 20px; */
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq_accordion .accordion-button:not(.collapsed){
    color: var(--primary-color--);
}

.faq_accordion .accordion-body{
    /* background: none; */
    padding: 10px 0;
    padding-top: 0;
}

.faq_accordion .accordion-body p{
    font-size: 16px;
    margin-bottom: 10px;
}

.faq_accordion .accordion-button::after{
    display: none;
}

.faq_accordion .accordion-button span{
    width: 25px;
    height: 4px;
    background: var(--primary-color--);
    border-radius: 50px;
    position: relative;
}

.faq_accordion .accordion-button span::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color--);
    border-radius: 50px;
    transform: rotate(-90deg);
    transition: 0.5s;
}

.faq_accordion .accordion-button:not(.collapsed) span::before{
    transform: rotate(0);
}

.faq_bg{
    position: relative;
}

.faq_bg .faq_icon{
    position: absolute;
    z-index: -1;
}

.faq_bg .faq_icon.faq_icon_1{
    width: 20%;
    left: 0;
    bottom: 0;
    animation: branding_bg_shape_1 5s linear infinite;
}

.faq_bg .faq_icon.faq_icon_2{
    width: 20%;
    right: 5%;
    bottom: 20%;
    animation: branding_bg_shape_2 6s linear infinite;
}

.faq_bg .faq_icon.faq_icon_3{
    width: 10%;
    left: 40%;
    bottom: 0;
    animation: branding_bg_shape_3 3s linear infinite;
}

.faq_accordion_bg{
    position: relative;
    z-index: 1;
}

.faq_accordion_bg .faq_accordion_bg_img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
}

.faq_accordion_bg .faq_accordion_bg_img img{
    height: 100%;
    object-fit: cover;
    transform: rotate(180deg);
}   

.blog_detail_content ul{
    list-style: inside;
    margin-bottom: 20px;
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}