@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&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&family=Satisfy&display=swap');

/* 👉 Core CSS  */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Poppins", sans-serif !important;
    scroll-behavior: smooth;
    max-width: 100% !important;
}
/* Remove unwanted padding/margin from main content wrapper */
.site-content,
.content-area,
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
}
img{
    width: 100%;
}
ul{
    padding-left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
li{
    list-style: none !important;
}
a{
    text-decoration: none !important;
}

p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0 !important;
}
p.paragraph:empty {
    line-height: 0px !important;
}

/* 👉 Variables  */

:root {
    --orange: #f8a717;
    --blue: #06112f;
    --white: #ffffff;
    --black: #000000;
    --accent:#c49a6c;
    --muted:#f6f5f3;
    --dark: #0f1720;
    --glass: rgba(255,255,255,0.06);
}

/* ============================================= 👉 Global CSS ======================================== */

/*=========== Text ===============*/

.heading {
    color: var(--blue);
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    margin: 10px 0 0 0;
}
.sub-heading {
    color: var(--blue);
    font-size: 32px;
    font-weight: 800;
    line-height: 34px;
    margin: 10px 0 0 0;
}
.mid-heading {
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
}
.small-heading {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
}
.mini-heading {
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    margin: 0;
}
.mini-text {
    color: var(--orange);
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
}
.paragraph, .paragraph a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.white-text{
    color: var(--white) !important;
}
.black-text{
    color: var(--black) !important;
}
.tag{
    display:inline-block;
    background:var(--glass);
    padding:6px 12px;
    border-radius:999px;
    color:var(--muted);
    font-size:13px;
}
.tag-black {
    display: inline-block;
    background: rgb(255 255 255 / 48%);
    padding: 6px 12px;
    border-radius: 999px;
    color: #484640;
    font-size: 13px;
}


/*=========== Margin ===============*/

.big-mt{
    margin-top: 40px;
}
.mid-mt{
    margin-top: 30px;
}
.small-mt{
    margin-top: 20px;
}
.min-mt{
    margin-top: 10px;
}
.big-mb{
    margin-bottom: 40px;
}
.mid-mb{
    margin-bottom: 30px;
}
.small-mb{
    margin-bottom: 20px;
}
.min-mb{
    margin-bottom: 10px;
}

/*=========== Section ===============*/

.section{
    padding: 70px 0;
    position: relative;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.breadcrumb-section {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    background-color: #eeeeee;
    border-radius: 15px;
    padding: 2px 9px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.breadcrumb-section p{
    margin: 0;
}
.btn-row{
    display: flex;
    align-items: center;
    gap: 10px;
}
.align-center{
    text-align: center;
}
.flexer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-banner{
    height: 240px;
    display: flex;
    align-items: center;
}

/*=========== Button ===============*/

.fill-btn, .submit-btn, .inquiry-btn {
    font-weight: 500;
    color: var(--white);
    background-color: var(--blue);
    border: solid 2px var(--blue);
    border-radius: 10px;
    font-size: 13px;
    padding: 10px 15px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    width: fit-content;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.fill-btn:hover, .submit-btn:hover, .inquiry-btn:hover {
    color: var(--blue);
    background-color: var(--white);
    border: solid 2px var(--blue);
}
.outline-btn{
    font-weight: 500;
    color: var(--white);
    background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: solid 2px var(--white);
    border-radius: 10px;
    font-size: 13px;
    padding: 10px 15px;
    transition: .3s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    width: fit-content;
    box-shadow:0 8px 30px rgba(0,0,0,.35);
}
.outline-btn:hover{
    color: var(--white);
    background-color: var(--blue);
    border: solid 2px var(--blue);
}
.icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: var(--orange);
    color: var(--white);
    font-size: 16px;
    display: block;
    line-height: 30px;
    transition: .3s ease-in-out;
}
.icon-btn:hover{
    background-color: var(--blue);
    color: var(--white);
}
.whatsapp-btn {
    font-size: 24px;
    background-color: #128c7e;
    color: #fff;
    border-radius: 100px;
    padding: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99999;
}

/*=========== Element ===============*/

.underline {
    width: 100px;
    height: 2px;
    margin: 10px 0;
    background-color: var(--black);
}
.hidden{
    display: none;
}