@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: var(--font-family-1);
}
body{
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--Secondary-Color);
}
:root{
    /* Font Family */
    --font-family-1: "Inter", sans-serif;
    /* Color */
    --Primary-Color: #C81E28;
    --Secondary-Color: #000505;
    --White-Color: #FFFFFF;
    --Light-bg-grey:  #F9FAFB;
    --Light-bg-red: #EFEFEF;
    --Grey: #C6C6C6;
    /* Transition */
    --Transition: all 0.3s ease-in-out;
}

h1{
    font-family: var(--font-family-1);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
}
h2{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(24px, 3.5vw, 36px);
}
h3{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(20px, 2.5vw, 24px);
}
h4, h5, h6, .department-h4{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
}
p, .paragraph{
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
}
.small-text{
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(12px, 1.2vw, 14px);
}
.large-text{
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
}
.button-text{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
}
a{
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.button_1{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--White-Color);
    background-color: var(--Primary-Color);
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
    border-radius: 6px;
    border: 1px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
    text-align: center;
}
.button_2{
    font-family: var(--font-family-1);
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--Primary-Color);
    background-color: transparent;
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 32px);
    border-radius: 6px;
    border: 1px solid var(--Primary-Color);
    outline: none;
    transition: var(--Transition);
    text-align: center;
}
.button_1:hover{
    background-color: transparent;
    color: var(--Primary-Color);
}
.button_2:hover{
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0px;
}
/* Pages Css Started-------------------------------------------------------------------------------------------------- */
/* HEADER.PHP START */

.header{
    padding: 16px 0px;
    background-color: #FFFFFF70;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    transition: var(--Transition);
    backdrop-filter: blur(5px);
    z-index: 999;
}
.header.scrolled {
    background-color: var(--White-Color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.header .logo{
    max-width: 134px;
    width: 100%;
}
.header .logo a,
.header .logo a img{
    width: 100%;
}
.header .navbars ul li a{
    color: var(--Black-Color);
    transition: var(--Transition);
}
.header .navbars ul li a:hover{
    color: var(--Primary-Color);
}
.header .navbars{
    display: flex;
    align-items: center;
    gap: 24px;
}
.header .navbars nav ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
}
button#open-toggle {
    display: none;
    padding: 0px;
    height: 44px;
    width: 44px;
    border-radius: 50px;
}
.header .navbars .menu-head{
    display: none;
}
.d-block-mb{
    display: block;
}
.d-none-mb{
    display: none;
}
/* Responsive */
@media (max-width: 1024px) {
    .d-block-mb{
        display: none;
    }
    .d-none-mb{
        display: block;
    }
    /* Menu Design */
    .header {
        backdrop-filter: none;
    }
    .header .logo {
        max-width: 84px;
        width: 100%;
    }
    .header .navbars {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 280px;
        background: var(--White-Color);
        height: 100%;
        z-index: 9;
        flex-direction: column;
        align-items: start;
        padding: 20px;
        overflow-y: scroll;
        transform: translateX(-100%);
        transition: var(--Transition);
    }
    body.menu-open .header .navbars{
        transform: translateX(0%);
    }
    .header .navbars nav{
        width: 100%;
    }
    .header .navbars a.button_1{
        width: 100%;
        text-align: center;
    }
    .header .navbars nav ul li,
    .header .navbars nav ul li a{
        width: 100%;
    }
    .header .navbars nav ul {
        display: flex;
        align-items: start;
        gap: 16px;
        flex-direction: column;
    }
    button#open-toggle{
        display: block;
    }
    .header .navbars .menu-head {
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--Light-bg-grey);
        width: 100%;
        padding-bottom: 10px;
    }
    body.menu-open {
        overflow: hidden;
    }
    #overlay {
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        background-color: var(--Secondary-Color);
        opacity: 0.5;
        width: 100%;
        height: 100%;
        z-index: 9;
    }
    body.menu-open #overlay {
        display: block;
    }
    #close-toggle{
        background-color: transparent;
        border: none;
    }
}

#scrollTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--Primary-Color);
    color: var(--White-Color);
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    outline: none;
    border: 1px solid var(--White-Color);
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--Secondary-Color);
}

/* Hero Section */
.hero-section{
    min-height: clamp(500px, 85vh, 930px);
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(80px, 12vh, 142px) 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-section::before{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, #000000 100%);
}
.hero-section .content{
    max-width: 608px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: auto;
}
.hero-section .content h1,
.hero-section .content .large-text{
    color: var(--White-Color);
}

/* Three Box */
.three-box, .work-panda{
    /* transform: translateY(-80px); */
    padding: 80px 0px;
}
@media (max-width: 1024px) {
    .three-box, .work-panda{
        /* transform: translateY(-40px); */
        padding: 40px 0px;
    }
}
.three-box .content{
    overflow: hidden;
    border: 1px solid var(--Grey);
    background-color: var(--White-Color);
    border-radius: 10px;
    box-shadow: 0px 20px 44px 0px #00000033;
    height: 100%;
}
.three-box .content .image{
    padding: 10px 10px 0px;
}
.three-box .content a{
    display: block;
}
.three-box .content a i{
    font-size: 24px;
    color: var(--Primary-Color);
    transition: var(--Transition);
}
.three-box .content:hover a i{
    transform: rotate(-45deg);
}
.three-box .content img,
.work-panda img{
    border-radius: 10px;
    transition: var(--Transition);
    aspect-ratio: 404 / 261;
    object-fit: cover;
}
.work-panda div{
    font-size: 18px;
}
.three-box .content:hover img{
    filter: brightness(0.5);
}

/* About Us */
.about-section{
    position: relative;
    padding: 80px 0px;
}
@media (max-width: 1024px) {
    .about-section{
        padding: 40px 0px;
    }
}
.about-section::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    background-image: url(../image/bg-image.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.6);
    z-index: -1;
    min-height: 264px;
}
.about-section .section-title{
    margin-bottom: 32px;
}
.about-section .section-title h2{
    color: var(--White-Color);
}
.about-section .content{
    background-color: var(--Light-bg-grey);
    padding: 16px 16px 24px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 24px 0px #00000029;
    border: 1px solid var(--Grey);
}
.about-section .content h3{
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-section .content h3::before{
    content: "";
    height: 45px;
    width: 10px;
    border-radius: 40px;
    background-color: var(--Primary-Color);
    display: inline-block;
}
.about-section .content ul{
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
    margin-left: 18px;
}
.about-section .box-inner{
    text-align: center;
    padding: 32px 12px;
    margin-top: 32px;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
}
.about-section .inner-content{
    background-color: var(--Light-bg-red);
    padding: 16px;
    border-radius: 0px 0px 20px 20px;
}
.about-section .inner-content p{
    max-width: 932px;
    width: 100%;
    margin: auto;
    opacity: 0.8;
}
.about-section .inner-content .box div.small-text{
    opacity: 0.6;
}
.about-section .inner-content .box label{
    border: 1px solid transparent;
    background-color: var(--Light-bg-grey);
    border-radius: 10px;
    padding: 16px;
    transition: var(--Transition);
    cursor: pointer;
}
.about-section .inner-content .box label:has(input:checked){
    border: 1px solid var(--Secondary-Color);   
}
.about-section .inner-content .box label input{
    width: 23px;
    height: 23px;
    min-width: 23px;
    accent-color: var(--Secondary-Color);
    background-color: transparent;
    outline: none;
}
.about-section .inner-content .grid-box .icon{
    height: 61px;
    width: 61px;
    min-width: 61px;
    background-color: var(--Primary-Color);
    color: var(--White-Color);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.about-section .inner-content .box{
    border-radius: 10px;
    background-color: var(--White-Color);
    padding: 24px;
    height: 100%;
}

/* department-section */
.department-section .section-title p{
    opacity: 0.8;
}
.department-section .content{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 24px;
}
.department-section .content::before{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: linear-gradient(98.85deg, rgba(0, 5, 5, 0.5) 0%, rgba(0, 5, 5, 0.8) 49.68%, #000505 100%);
}
.department-section .content .row{
    position: relative;
    z-index: 1;
}
.department-section .content .department-h4{
    color: var(--White-Color);
}
.department-section .content ul{
    list-style: disc;
    padding-left: 20px;
    color: var(--White-Color);
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.department-section .content .form {
    background-color: var(--White-Color);
    padding: 16px;
    border-radius: 10px;
}
.department-section .content .form div.small-text{
    opacity: 0.6;
}
.department-section{
    padding-bottom: 80px;
}
.department-section.py-80{
    padding: 80px 0px;
}
@media (max-width: 1024px) {
    .department-section{
        padding-bottom: 40px;
    }
    .department-section.py-80{
        padding: 40px 0px;
    }
}
form label{
    display: block;
    margin-bottom: 4px;
}
form input,
form select,
form textarea{
    background-color: transparent;
    border: 1px solid var(--Secondary-Color);
    border-radius: 4px;
    outline: none;
    width: 100%;
    padding: 10px 16px;
    transition: var(--Transition);
    appearance: none;
    resize: none;
}
form select{
    cursor: pointer;
}
form input:focus,
form select:focus,
form textarea:focus{
    border: 1px solid var(--Primary-Color);
}
form select{
    padding-right: 48px;
}
form .icon{
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--Secondary-Color);
    z-index: -1;
}

/* features */
.features {
    margin-top: 32px;
}
.features .grid-box{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1199px) {
    .features .grid-box{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 991px) {
    .features .grid-box{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .features .grid-box{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .features .grid-box{
        grid-template-columns: repeat(1, 1fr);
    }
}
.features .box{
    width: 100%;
    height: auto;
    aspect-ratio: 248 / 191;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: end;
    padding: 16px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.features .box::before{
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.features .box .small-text{
    color: var(--White-Color);
    position: relative;
    z-index: 1;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/* contact section */
.contact-section{
    padding: 80px 0px;
    background-color: var(--Light-bg-red);
}
@media (max-width: 1024px) {
    .contact-section{
        padding: 40px 0px;
    }
}
.contact-section .section-title p{
    opacity: 0.8;
}
.contact-section .content .box .icon{
    font-size: 48px;
    color: var(--Primary-Color);
    line-height: 1;
}
.contact-section .content .image img{
    aspect-ratio: 660 / 412;
    object-fit: cover;
    border-radius: 10px;
}
.contact-section .form{
    background-color: var(--White-Color);
    padding: 24px;
    border-radius: 10px;
}

/* footer */
footer{
    padding-top: 32px;
    background-color: var(--Primary-Color);
}
.copyright{
    border-top: 1px solid var(--White-Color);
    border-bottom: 1px solid var(--White-Color);
    color: var(--White-Color);
    padding: 16px 0px;
}
footer .logo{
    max-width: 190px;
    width: 100%;
    margin: auto auto 24px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--White-Color);
}
footer .fooer-nav{
    font-size: 32px;
    color: var(--White-Color);
    font-weight: 300;
    text-transform: uppercase;
}
footer .follow-icon a{
    font-size: 32px;
    line-height: 1;
    margin: 0px 4px;
    color: var(--White-Color);
}
footer a{
    transition: var(--Transition);
}
footer a:hover{
    opacity: 0.6;
}
@media (max-width: 767px) {
    footer .fooer-nav {
        font-size: 16px;
    }
}
@media (max-width: 425px) {
    footer .fooer-nav {
        font-size: 13px;
    }
}

.land-disclaimer{
    border-bottom: 1px solid var(--Primary-Color);
    background-color: var(--Light-bg-red);
}
.land-disclaimer h3{
    font-size: 16px;
    font-weight: 700;
    color: var(--Primary-Color);
}
.land-disclaimer p{
    color: var(--Secondary-Color);
    opacity: 0.8;
    font-size: 14px;
}
.payment-section{
    background-color: var(--Light-bg-red);
}