@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color:rgb(170, 83, 31);
    --secondary-color:#162936;
    --third-color:#3b5265;
    --fourth-color:#051824;
    --jost:"Jost", serif;
    --kalam:"Kalam", cursive;
    --ss:sans-serif;
    --default-transition:350ms;
    --white:#fff;
    --black:#212121;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
*{padding: 0;margin: 0;box-sizing: border-box;text-decoration: none;font-family: var(--jost);}
.bg-transparent{
    background: transparent;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-primary{
    background: var(--primary-color) !important;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.bg-secondary{
    background: var(--secondary-color);
}
.text-third{
    color: var(--third-color) !important;
}
.bg-third{
    background: var(--third-color);
}
.text-fourth{
    color: var(--fourth-color) !important;
}
.bg-fourth{
    background: var(--fourth-color);
}
p{margin-bottom: 0;}
body{
    overflow-x: hidden ;
}
ul{list-style: none;margin: 0;padding: 0;}
input:not(input[type=checkbox]),
select,
textarea
{
    border-radius: 0 !important;
}
input:focus:not(input[type=checkbox]),
select:focus,
textarea:focus
{
    box-shadow: 3px 3px 0px 0px var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
input:user-invalid,
textarea:user-invalid
{
    box-shadow: 3px 3px 0px 0px #f005 !important;
    border-color: #f00 !important;
}
.sans-serif{
    font-family: var(--ss);
}
.jost,
.jost *
{
    font-family: var(--jost);
}
.kalam,
.kalam *
{
    font-family: var(--kalam);

}
strong{
    font-family: inherit;
}
a{color: var(--secondary-color);text-decoration: none !important;}
a:hover{color: var(--hoversecondary);text-decoration: none !important;}
.min-h-100{
    min-height: 100dvh;
}
.btn{
    position: relative;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--default-transition);
    background: var(--white);
}
.btn:is(:hover,:focus)
{
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.7);
}
.btn.alt
{
    background: var(--primary-color);
    color: var(--white);
}
.btn.alt:hover{
    background: var(--white);
    color: var(--primary-color);
}
header{
    position: sticky;
    top: 0;
    backdrop-filter: blur(2px);
    background: #fff9;
    border-bottom: 1px solid #0005;
    z-index: 999;
}
header img
{
    width: 100%;
    max-width: 200px;
    aspect-ratio: 2;
    object-fit: contain;
}
header nav,
header nav ul
{
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1rem;
}
header nav ul li a
{
    position: relative;
    display: inline-block;
    padding: 2px 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--default-transition);
}
header nav ul li a::before
{
    position: absolute;
    width: 0;
    content: '';
    height: 1px;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transition: var(--default-transition);
}
header nav ul li a:is(:hover,:focus,:active,.active){
    color: var(--primary-color);
}
header nav ul li a:is(:hover,:focus,:active,.active)::before
{
    color: var(--primary-color);
    width: 100%;
    left: 0;
    right: auto;
}


#home
{
    position: relative;
    background: url('../img/hero_bg.webp');
    background-position: center top;
    background-size: cover;
    /* background-attachment: fixed; */
    z-index: 0;
}
#home::before{
    position: absolute;
    inset: 0;
    content: '';
    z-index: -1;
    background: #0004;
}


.mobile_menu li a
{
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.mobile_menu li a.active{
    color: var(--primary-color);
    text-decoration: underline !important;
}

.main_heading{
    position: relative;
    font-size: 3rem;
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--kalam);
    font-weight: bold;
}
@media(max-width:768px){
    .main_heading{
        font-size: 2rem;
    }
}

.mv_box
{
    position: relative;
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    user-select: none;
    cursor: pointer;
    transition: var(--default-transition);
}
.mv_box h4
{
    color: var(--primary-color);
}
.mv_box:hover
{
    background: var(--primary-color);
    color: white;
    box-shadow: 3px 3px 0 0 var(--black);
}
.mv_box:hover h4{
    color: var(--white);
}
.number_box
{
    position: relative;    
}
.number_box span{
    font-size: 3rem;
    font-family: var(--kalam);
}

.service_box
{
    position: relative;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    height: 100%;
    transition: var(--default-transition);
}
.service_box .imgBx{
    margin-bottom: 1rem;
    overflow: hidden;
}
.service_box .imgBx img
{
    width: 100%;
    transition: var(--default-transition);
}
.service_box:hover .imgBx img
{
    transform: scale(1.1);
}
.service_box p{
    color: var(--bs-gray);
}
.service_box:hover{
    box-shadow: 3px 3px 0 0 var(--primary-color);
    transform: translateY(-3px);
}

.whatsapp-float, 
.totop
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: calc(var(--default-transition) * 0.25);
}
.totop{
    width: 45px;
    min-width: 45px;
    aspect-ratio: 1;
    border: none;
    outline: none;
    bottom: -80px;
    font-size: 1.6rem;
    padding: 0;
    justify-content: center;
    opacity: 0;
    background: var(--primary-color);
    color: var(--white);
    transition: var(--default-transition);
}
.totop.show{
    opacity: 1;
    bottom: 120px;
}
.whatsapp-float i {
    font-size: 1.2rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 576px) {
    .whatsapp-float{
        width: 100%;
        right: 0;
        bottom: -1px;
        height: 40px;
        border-radius: 0;
        justify-content: center;
        font-size: 0.9rem;
    }
    .whatsapp-float:hover {
        transform: translateY(0);
    }
    body{padding-bottom: 40px;}
}