@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color:#ffec7c;
    --secondary-color:#162936;
    --third-color:#3b5265;
    --fourth-color:#051824;
    --jost:"Jost", serif;
    --lateef:"Lateef", serif;
    --ss:sans-serif;
    --default-transition:350ms;
    --white:#fff;
    --black:#212121;
}
*{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) !important;
}
.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);
}
body{
    overflow-x: hidden ;
}
.text-justify{
    text-align: justify;
}
ul{list-style: none;margin: 0;padding: 0;}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus:not(input[type=checkbox]),
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;
}
input,
textarea
{
    width: 100%;
    padding: 6px 12px;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    outline: none;
}
input::placeholder,
textarea::placeholder
{
    color: var(--white);
}
.sans-serif{
    font-family: var(--ss);
}
.jost{
    font-family: var(--jost);
}
.lateef{
    font-family: var(--lateef);

}
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;
}


.social_media_wrapper a{
    position: relative;
    display: inline-block;
    animation: 1s ease-in-out 0s infinite alternate slideInFromBottom;
    animation-delay: calc((var(--d) * -0.25s));
}
@keyframes slideInFromBottom {
    0% {
        transform: translateY(2px);
        /* opacity: 0.5; */
    }
    100% {
        transform: translateY(-2px);
        opacity: 1;
    }
}

.logo{
    max-width: 120px;
}

.logo_wrapper
{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--lateef);
}
.logo_wrapper img{
    filter: brightness(1.25);
}
.logo_wrapper p{
    color: var(--primary-color);
    font-size: 24px !important;
}
.logo_wrapper h2,
.footer_logo_wrapper h2
{
    margin-bottom: -10px;
    color: var(--white);
    font-weight: 900;
    font-size: 46px;
}
.logo_wrapper > div{
    padding-left: 10px;
    border-left: 1px solid var(--white);
}
@media(max-width:768px){
    .logo{
        max-width: 70px;
    }
    .logo_wrapper h2,
    .footer_logo_wrapper h2
    {
        font-size: 32px !important;
    }
    .logo_wrapper p{
        font-size: 18px !important;
    }
}
/* BTN */
.btn
{
    border-radius: 0 !important;
    color: var(--secondary-color);
    transition: var(--default-transition);
    font-family: var(--lateef);
    font-size: 18px;
    padding: 4px 18px;
    background: var(--primary-color);
}
.btn:is(:hover, :focus, :active)
{
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 2px 2px 0px var(--primary-color);
}
.btn-alt{
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.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(--secondary-color);
    color: var(--primary-color);
    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;}

}


/* NAV MENU */
.nav_menu ul{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: start;
}
.nav_menu li a
{
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    font-weight: 500;
    transition: var(--default-transition);
    color: var(--white);
}
.nav_menu li a::before
{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--default-transition);
}
.nav_menu li a:is(:hover, :focus,.active)::before{
    width: 100%;
    left: 0;
    right: auto;
}

#sidebarmenu .offcanvas-body ul li a
{
    position: relative;
    display: block;
    padding: 10px 0;
    /* margin-bottom: 10px; */
    transition: var(--default-transition);
    border-bottom: 1px solid var(--bs-dark);
}
#sidebarmenu .offcanvas-body ul li a:is(:hover,:focus,.active)
{
    padding-left: 18px;
}
#sidebarmenu .offcanvas-body ul li a::before{
    position: absolute;
    content: '';
    width: 8px;
    height: 100%;
    background: var(--secondary-color);
    left: -20px;
    top: 0;
    opacity: 0;
    transition: var(--default-transition);
}
#sidebarmenu .offcanvas-body ul li a:is(:hover,:focus,.active)::before{
    opacity: 1;
    left: 0;
}

#sidebarmenu .offcanvas-body ul li:last-child a{
    border-bottom: none;
}


footer .footer_heading{
    position: relative;
    padding-left: 8px;
    font-size: 2.25rem;
    line-height: 24px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}
footer .footer_links a
{
    display: block;
    position: relative;
    transition: var(--default-transition);
}
footer .footer_links a::after{
    content: '\f0c1';
    display: inline-block;
    transition: var(--default-transition);
    font-family: 'fontAwesome';
    opacity: 0;
}
footer .footer_links a:is(:hover, :focus, :active)::after{
    margin-left: 8px;
    opacity: 1;
    color: var(--primary-color);
}
footer .footer_links a:is(:hover, :focus, :active)
{
    letter-spacing: 3px;
}
footer .social_media_wrapper a,
.contact_section .social_media_wrapper a
{
    width: 35px;
    transition: var(--default-transition);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color) !important;
}
footer .social_media_wrapper a:is(:hover, :focus, :active),
.contact_section .social_media_wrapper a:is(:hover, :focus, :active)
{
    background: var(--white);
}



/* HERO BANNERS */
.hero_banners
{
    position: relative;
}
.hero_banners .inner_wrapper
{
    position: relative;
    aspect-ratio: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}
.hero_banners .inner_wrapper img
{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    filter: brightness(0.6);
}
.hero_banners .inner_wrapper h2
{
    font-size: 3rem;
    line-height: 32px;
}
.hero_banners .inner_wrapper p{
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero_banners .inner_wrapper::before{
    position: absolute;
    content: '';
    inset: 0;
    background: radial-gradient(circle,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}
.owl-dots
{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}
.hero_banners .owl-dots button
{
    width: 60px;
    height: 3px;
    background: var(--white) !important;
    transition: var(--default-transition);
}
.hero_banners .owl-dots button.active{
    background: var(--primary-color) !important;
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .hero_banners .inner_wrapper{
        aspect-ratio: 0.75;
        padding: 0 20px;
    }
}

.main_heading{
    position: relative;
    padding-left: 1rem;
    text-transform: uppercase;
    border-left: 6px solid var(--primary-color);
    color: var(--secondary-color);
}

.about_us_sect .video_wrapper
{
    position: relative;
    aspect-ratio: 9/16;
    box-shadow: 0 1rem 10px rgba(0, 0, 0, 0.62);
    overflow: hidden;
}
.about_us_sect .video_wrapper video{
    position: absolute;
    width: 100%;
    height: calc(100% + 2px);
    object-fit: cover;
}

/* SERVICE CARD */
.servcies_card
{
    position: relative;
    display: block;
    transition: var(--default-transition);
}
.servcies_card:hover{
    transform: translateY(-2px);
}
.servcies_card .imgBx
{
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.servcies_card .imgBx img
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--default-transition);
}
.servcies_card .imgBx:hover img{
    transform: scale(1.09);
}
.servcies_card .service_heading{
    background: var(--secondary-color);
    padding: 12px;
}
.servcies_card h4{
    font-family: var(--lateef);
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    margin-bottom: 0;
}


.owl-stage {
    display: flex;
    align-items: stretch;
}
.testimonial_slider .owl-dots{
    position: relative;
}
.testimonial_slider .owl-dots button
{
    width: 10px;
    height: 10px;
    background: var(--white) !important;
    transition: var(--default-transition);
}
.testimonial_slider .owl-dots button.active{
    border-radius: 50%;
    background: var(--primary-color) !important;
}