/* Font */
@font-face {
    font-family: "Mulish";
    src: url("../font/Mulish-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* Root variables */
:root {
    /* colors */
    --primary: #33b6bb;
    --yellow: hsl(39.92deg 100% 53.14%);
    --white: #ffffff;
    --black: #000000;
    --gray: #6e6e6e;
    --border-light: #dddddd;

    /* backgrounds */
    --bg-white: #ffffff;
    --bg-black: #000000;
    --bg-gray-light: #f5f5f5;
    --bg-blue-light: #f4fbff;
    --bg-dark-blue: #140342;
    --bg-dark-sky: hsl(199.04deg 76.96% 42.55%);
    --bg-light-black: #1F2C30;

    /* font */
    --font-family: "Mulish", sans-serif;

    /* font sizes */
    --h1: 40px;
    --h2: 32px;
    --h3: 24px;
    --h4: 20px;
    --h5: 18px;
    --h6: 16px;
    --p: 16px;
    --small: 14px;
    --x-small: 12px;

    /* font weights */
    --w-400: 400;
    --w-500: 500;
    --w-600: 600;
    --w-700: 700;
    --w-800: 800;

    /* line height */
    --lh-1: 1;
    --lh-12: 1.2;
    --lh-14: 1.4;
    --lh-15: 1.5;
    --lh-16: 1.6;
    --lh-18: 1.8;

    /* radius */
    --radius-10: 10px;
    --radius-20: 20px;
    --radius-30: 30px;
    --radius-40: 40px;
    --radius-50: 50px;

    /* transition & shadow */
    --transition: all 0.3s ease;
    --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    font-size: var(--p);
    line-height: var(--lh-14);
    color: var(--black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
}

figure {
    margin: 0;
    padding: 0;
}

/* Containers */
.container,
.container-sm,
.container-lg {
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1240px;
}

.container-sm {
    max-width: 860px;
}

.container-lg {
    max-width: 1380px;
}

.container-full {
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: var(--lh-12);
}

h1 {
    font-size: var(--h1);
    font-weight: var(--w-800);
}

h2 {
    font-size: var(--h2);
    font-weight: var(--w-800);
}

h3 {
    font-size: var(--h3);
    font-weight: var(--w-700);
}

h4 {
    font-size: var(--h4);
    font-weight: var(--w-500);
}

h5 {
    font-size: var(--h5);
    font-weight: var(--w-600);
}

h6 {
    font-size: var(--h6);
    font-weight: var(--w-500);
}

p {
    font-size: var(--p);
    line-height: var(--lh-16);
    color: var(--black);
}

/* Utilities */
.text-center {
    text-align: center;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.space-center {
    justify-content: center;
}

.space-end {
    justify-content: flex-end;
}

.no-wrap {
    flex-wrap: nowrap !important;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.shadow {
    box-shadow: var(--shadow);
}

/* Width helpers */
.w-100 {
    width: 100%;
}

.w-50 {
    width: 48%;
}

.w-33 {
    width: 33.33%;
}

.w-25 {
    width: 25%;
}

.w-20 {
    width: 20%;
}

/* Forms */
button {
    outline: none;
    border: none;
    cursor: pointer;
    background: none;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: var(--small);
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-family);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}


/* Button */
.btn {
    display: inline-flex;
    width: max-content;
    padding: 8px 20px;
    align-items: center;
    gap: 6px;
    font-size: 19px;
    font-weight: bolder;
    background: #fb9b03;
    border-radius: 6px;
    color: var(--bg-black);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn:hover {
    background: var(--bg-black);
    color: var(--white);

}

.btn-light {
    background-color: hsl(154.74deg 16.81% 77.84%);
    color: var(--bg-black);
}

.btn-light:hover {
    background-color: hsl(190deg 80% 35% / 40%);
}

.btn-yellow {
    background-color: hsl(44.61deg 84.14% 55.49%);
    color: var(--bg-black);
    border-radius: 30px;

}

.btn-yellow:hover {
    background-color: hsl(44.61deg 84.14% 55.49% / 80%);
}


/* Bullet List */
.bulit-list {
    padding-left: 30px;
    margin: 20px 0;
}

.bulit-list li {
    list-style: disc;
    margin-bottom: 8px;
    line-height: var(--lh-16);
}

/* Background Helpers */
.relative {
    position: relative;
}

.bg-control {
    background: center / cover no-repeat;
}

.bg-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-10);
}

/* Social Icons */
.social-icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.social-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    background-color: red;
    /* default fallback */
}

.social-icon i.fa-facebook,
.social-icon i.fa-twitter {
    background-color: #0a64ad;
}

.social-icon i.fa-instagram {
    background-color: #df167a;
}

.social-icon i.fa-whatsapp {
    background-color: #27d045;
}

/* Text Clamp */
.text-hide {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Breadcrumb */
.breadcrumb-sec {
    padding: 10px 0;
}

.breadcrumb-sec ul li {
    font-size: var(--x-small);
}

.breadcrumb-sec ul li a {
    font-weight: var(--w-500);
    transition: var(--transition);
}

.breadcrumb-sec ul li a:hover {
    color: var(--primary);
}

/* header css */
header {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

header.fixed-header {
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 5%);
    position: fixed;
    top: -1px;
    left: 0;
    animation: sticky 0.35s ease-out;
    background-color: #fff;
    z-index: 5;
    transition: all 0.5s ease-in-out;
}

@keyframes sticky {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

header nav ul li a {
    font-size: 19px;
    font-weight: var(--w-500);
    padding: 35px 12px;
    transition: var(--transition);
}

header nav ul li a:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}


.dropdown .dropdown-menu {
    width: 275px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 53px;
    left: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(45px);
}

.dropdown:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown .dropdown-menu li a:nth-of-type(1),
.dropdown .dropdown-menu li a:nth-last-of-type(1) {
    border-top: none;
}

.dropdown .dropdown-menu li a {
    padding: 8px 16px;
    display: block;
    border: 1px solid var(--border-light);
    position: relative;

}

.dropdown .dropdown-menu li a::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #0a64ad;
    position: absolute;
    top: 0;
    left: -100%;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.dropdown .dropdown-menu li a:hover::after {
    left: 0;
}

.dropdown .dropdown-menu li a:hover {
    color: #fff;
}

/* footer css */
.cta-section {
    margin-top: 60px;
    background: #178ea3;
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--white);
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #f3efe5;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
}

.header-search-bar form {
    position: relative;
    overflow: hidden;
}

.header-search-bar form .form-control {
    padding: 12px 70px 12px 16px;
    border-radius: 30px;
}

.header-search-bar form .form-control:focus {
    outline: none;
    border-color: #dddddd;
}

.header-search-bar form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fb9b03;
    border-radius: 0 30px 30px 0;
    font-size: 20px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.header-search-bar form button:hover {
    background-color: #0a64ad;
}

.common-btn-wraper {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 11;

}

.common-btn-wraper .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #27d045;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.common-btn-wraper .action-btn:hover {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.common-btn-wraper .action-btn.call-btn {
    margin-bottom: 14px;
    background-color: #1295ff;
}

footer {
    width: 100%;
    background: #e5e5e5;
    color: var(--white);
    padding: 60px 0 0;
}

footer .footer-text {
    font-size: var(--p);
    line-height: var(--lh-16);
    color: var(--black);
    margin-top: 12px;
}

footer .contact-info a {
    display: flex;
    align-items: center;
    gap: 6px;
}

footer .contact-info a span:nth-child(1) {
    width: 20px;
}

footer .footer-logo {
    margin-bottom: 12px;
}

footer h4 {
    font-size: var(--h5);
    font-weight: var(--w-700);
    margin-bottom: 20px;
    color: var(--black);
}

footer ul li {
    margin-bottom: 20px;
}

footer ul li a {
    font-size: var(--p);
    color: var(--black);
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary);
}

footer .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #c3c3c3;
    font-size: var(--small);
    color: var(--gray);
    text-align: center;
    padding: 20px 0;
}

footer .footer-bottom a {
    color: var(--black);
    font-weight: var(--w-600);
    transition: var(--transition);
}

footer .footer-bottom a:hover {
    color: var(--primary);
}

.toggle-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.toggle-btn span {
    width: 30px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.5s ease-in-out;
}

.mobile-menu {
    display: none;
}

@media (max-width: 767px) {
    .logo {
        width: 100%;
    }

    .header .logo img {
        padding: 5px !important;
    }

    header nav {
        display: none;
    }

    .toggle-btn {
        display: flex;
        position: relative;
        z-index: 112;
    }

    header .toggle-btn.active span:nth-of-type(2) {
        display: none;
    }

    header .toggle-btn.active span {
        transform: rotate(45deg);
        margin: -1px 0 0 0;
    }

    header .toggle-btn.active span:nth-last-of-type(1) {
        transform: rotate(-45deg);
        margin: -9px 0 0 0;
    }

    header .logo {
        width: 35%;
    }

    .header-search-bar {
        width: 50%;
    }

    .header-search-bar form .form-control {
        padding: 12px 40px 12px 16px;
    }

    .mobile-menu {
        display: block;
        left: 0;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        transition: all 0.5s ease-in-out;
        z-index: 111;
        background-color: #fff;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .menu-list {
        /*height: calc(100vh - 160px);*/
        overflow-y: scroll;
    }

    .mobile-menu .menu-logo {
        margin-bottom: 20px;
    }

    .mobile-menu .menu-logo img {
        width: 100px;
    }

    .mobile-menu .category-list {
        padding: 20px 0;
    }

    .mobile-menu .category-list-item {
        border-bottom: 1px solid #f3f3f3;
        padding: 10px 50px 10px 20px;
    }

    .mobile-menu .category-list-item a {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        display: block;
    }

    .mobile-menu .sub-category-list {
        position: relative;
    }

    .mobile-menu .sub-category-list.active .sub-category {
        padding-bottom: 10px;
    }

    .mobile-menu .category-list-item .fa-angle-down {
        position: absolute;
        right: 20px;
        top: 14px;
        transition: all .4s ease-in-out;
    }

    .mobile-menu .sub-category-list.active .fa-angle-down {
        transform: rotate(180deg)
    }

    .mobile-menu .dropdropdown-list {
        padding-left: 30px;
        display: none;
        height: 170px;
        overflow-y: scroll;
        margin: 10px 0;
    }

    .mobile-menu .dropdropdown-list li {
        list-style: disc;
        padding: 0 0 10px;
    }

    .mobile-menu .dropdropdown-list li:nth-last-of-type(1) {
        padding: 0;
        border-bottom: none;
    }

    .mobile-menu .sub-category-list.active .sub-category {
        margin-bottom: 10px;
    }

    .whatsapp-btn {
        display: inline-block;
        border-radius: 6px;
        font-weight: 500;
        line-height: 22px;
        border-radius: 30px;
        background: linear-gradient(20deg, #267fbb 20%, #fc9807 100%);
        color: #fff;
        width: max-content;
        padding: 10px;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
    }

    .mobile-menu-btn {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .mobile-menu-btn ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
        gap: 20px;
    }

    .mobile-menu-btn ul li {
        width: 47%;
    }

    .mobile-menu-btn ul li a {
        width: 100%;
    }

    .last-property {
        width: 100% !important;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    footer .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {


    .mobile-menu-btn ul {
        gap: 10px;
    }

    .mobile-menu .menu-logo img {
        width: 188px;
    }

    footer .row .col:nth-of-type(1) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    footer .row .col:nth-last-of-type(1) {
        grid-column-start: 1;
        grid-column-end: 3;
    }

    footer .footer-text br {
        display: none;
    }
}