/* ================================
   RESET
================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================
   ROOT VARIABLES
================================ */
:root {
    --black: #000;
    --primary-font: "Figtree", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --theme-color: #386C44;
    --white-color: #fff;
    --gold-color: #ec0100;
}

/* ================================
   BODY
================================ */
body {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white-color);
    overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    color: var(--gold-color);
    line-height: 1.2;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
    font-weight: 700;
}

p {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-bottom: 0px;
    color: #5C5E61;
    line-height: 28px;
    text-align: justify;
}

/* ================================
   LINKS
================================ */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.space1 {
    height: 1px;
}

.space2 {
    height: 2px;
}

.space3 {
    height: 3px;
}

.space4 {
    height: 4px;
}

.space5 {
    height: 5px;
}

.space6 {
    height: 6px;
}

.space7 {
    height: 7px;
}

.space8 {
    height: 8px;
}

.space9 {
    height: 9px;
}

.space10 {
    height: 10px;
}

.space11 {
    height: 11px;
}

.space12 {
    height: 12px;
}

.space13 {
    height: 13px;
}

.space14 {
    height: 14px;
}

.space15 {
    height: 15px;
}

.space16 {
    height: 16px;
}

.space17 {
    height: 17px;
}

.space18 {
    height: 18px;
}

.space19 {
    height: 19px;
}

.space20 {
    height: 20px;
}


/* ================================
   LISTS
================================ */
ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

li {
    list-style: none;
}

/* ================================
   IMAGES
================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   SECTION SPACING
================================ */
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

/* ================================
   BUTTONS
================================ */
button {
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--primary-font);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--black);
    color: var(--white-color);
}

.btn-primary:hover {
    background: #333;
}

/* ================================
   COMMON SPACING UTILITIES
================================ */
.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}



/* ================================
   Navbar Css
================================ */

header.ur-header {
    background-color: var(--theme-color);
}

.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

header.ur-header .menu-area {
    position: relative;
}

header.ur-header .menu-area nav.main-menu {
    position: relative;
}

header.ur-header .menu-area .main-menu>ul>li {
    margin: 0px 15px;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu>ul>li>a {
    padding: 25px 0;
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--primary-font);
    color: var(--black);
    text-transform: capitalize;
}

header.ur-header .main-menu>ul>li>a:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    background: var(--gold-color);
    width: 0%;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header.ur-header .menu-area .main-menu>ul>li>a:hover:before,
header.ur-header .menu-area .main-menu>ul>li>a.active:before {
    width: 100%;
}

header.ur-header .menu-area .main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 160px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 20px 10px 20px;
    left: -27px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    border-bottom: 3px solid var(--theme-color);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

header.ur-header .menu-area .main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.call-us-info .primary-btn1 {
    padding: 12px 12px;
    background-color: var(--gold-color);
}

header.ur-header .menu-area header.ur-header .menu-area.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 0px;
    margin-bottom: 5px;
}

.header-logo a img {
    max-width: 180px;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}

.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-color);
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--white-color);
    text-transform: capitalize;
}

header.ur-header .menu-area .main-menu ul li:has(.sub-menu)>a:after,
header.ur-header .menu-area .main-menu ul li:has(.mega-menu)>a:after,
header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:after {
    content: "";
    background-image: url(/assets/images/angle-down.svg);
    display: inline-block;
    margin-left: 3px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

header.ur-header .menu-area .main-menu ul li:has(.sub-menu)>a:hover:after,
header.ur-header .menu-area .main-menu ul li:has(.mega-menu)>a:hover:after,
header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:hover:after {
    content: "";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 41%;
    color: var(--theme-color);
}

span.call-us-icon img {
    max-width: 40px;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 15px;
}

.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
}

li.menu-item-has-children ul.sub-menu li {
    display: block;
    margin-bottom: 5px;
}

.ur-mobile-title a img {
    max-width: 180px;
}

/* toggle btn css */

/* Mobile toggle button look (optional) */
.th-menu-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: var(--gold-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.ur-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9998;
}

/* Drawer */
.ur-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #2f5b45;
    /* aapke theme ke hisaab se */
    color: var(--white-color);
    transform: translateX(105%);
    transition: .25s ease;
    z-index: 9999;
    padding: 18px 16px;
    overflow-y: auto;
}

/* Drawer header */
.ur-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    margin-bottom: 12px;
}

.ur-mobile-title {
    font-size: 18px;
    font-weight: 600;
}

.ur-mobile-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: var(--white-color);
}

/* Menu list */
.ur-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ur-mobile-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ur-mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 12px 4px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.ur-mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: none;
}

li.menu-item-has-children.open>a::after {
    top: 23% !important;
}

.ur-mobile-menu li.open>.sub-menu {
    display: block;
}

.ur-mobile-menu .sub-menu a {
    font-size: 14px;
    padding: 10px 10px;
    opacity: .95;
}

body.ur-menu-open .ur-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

body.ur-menu-open .ur-mobile-nav {
    transform: translateX(0);
}

@media (min-width: 1200px) {

    .ur-mobile-nav,
    .ur-mobile-overlay {
        display: none !important;
    }
}


.ur-mobile-menu li.menu-item-has-children>a::after {
    content: "";
    background-image: url(/assets/images/angle-down.svg);
    display: inline-block;
    margin-left: 3px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.ur-mobile-menu li.open>a::after {
    transform: rotate(180deg);
}


/* ================================
   Hero Css
================================ */

/* Navbar refresh */
.ur-topbar {
    background: #ed0100;
    color: #ffffff;
    font-size: 13px;
}

.left-side-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ur-topbar-inner,
.ur-topbar-right,
.ur-socials,
.ur-navbar-row,
.ur-header-actions {
    display: flex;
    align-items: center;
}

.ur-topbar-inner {
    min-height: 40px;
    justify-content: space-between;
}

.ur-topbar-inner p {
    margin: 0;
    font-size: 13px;
}

.ur-topbar-inner i {
    color: var(--gold-color);
}

.ur-topbar-right {
    gap: 15px;
}

.ur-topbar a {
    color: inherit;
    transition: color .25s ease;
}

.ur-topbar-divider {
    width: 1px;
    height: 17px;
    background: rgba(255, 255, 255, .22);
}

.footer-social-media ul li a i {
    color: #fff;
    font-size: 12px;
}

.ur-socials {
    gap: 8px;
}

.ur-socials a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: #fff;
    transition: all .25s ease;
}

.ur-socials a:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: #173d2b;
    transform: translateY(-2px);
}

header.ur-header .menu-area {
    padding: 8px 0;
    background: #2f6847;
    box-shadow: 0 8px 28px rgba(15, 48, 31, .13);
}

.ur-navbar-row {
    justify-content: space-between;
    gap: 22px;
    min-height: 94px;
}

.main-menu>ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

header.ur-header .menu-area .main-menu>ul>li {
    margin: 0 10px;
}

.main-menu>ul>li>a {
    padding: 35px 0;
    font-size: 15px;
    font-weight: 500;
}

header.ur-header .main-menu>ul>li>a:before {
    bottom: 24px;
    margin-top: 0;
}

.header-logo a {
    display: block;
}

.header-logo a img {
    width: 126px;
    height: 126px;
    max-width: none;
    object-fit: contain;
    margin: -23px 0;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, .14));
}

header.ur-header .menu-area .main-menu ul.sub-menu {
    top: calc(100% - 8px);
    left: -18px;
    min-width: 210px;
    padding: 12px;
    border: 0;
    border-top: 3px solid var(--gold-color);
    border-radius: 12px;
    z-index: 20;
    transform: translateY(18px);
    transform-origin: center;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    box-shadow: 0 16px 40px rgba(12, 43, 27, .18);
}

header.ur-header .menu-area .main-menu ul li:hover>ul.sub-menu {
    transform: translateY(0);
}

.main-menu ul.sub-menu a {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 12px;
    border-radius: 7px;
    transition: all .22s ease;
}

.main-menu ul.sub-menu a:hover {
    color: #173d2b;
    background: rgba(228, 178, 74, .14);
    padding-left: 17px;
}

header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:after {
    position: relative;
    width: 13px;
    height: 13px;
    top: 2px;
    margin-left: 7px;
    transform: none;
}

header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:hover:after {
    top: 2px;
    transform: rotate(180deg);
}

.ur-call-btn {
    gap: 9px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: #014DA3;
    color: #ffffff;
    transition: all .25s ease;
}

.th-menu-toggle {
    flex-direction: column;
}

.th-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: #173d2b;
    margin: 3px 0;
}

.ur-mobile-title img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.ur-mobile-nav {
    background: #214e36;
    padding: 18px 20px 26px;
}

.ur-mobile-menu li.open>.sub-menu {
    animation: urSubmenuOpen .25s ease;
}

@keyframes urSubmenuOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ur-mobile-menu li.open>a::after {
    transform: rotate(180deg);
}

.ur-mobile-contact {
    margin-top: 28px;
}

.ur-mobile-contact>a {
    display: inline-block;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.ur-mobile-contact>a i {
    color: var(--gold-color);
    margin-right: 7px;
}

@media (max-width:1199.98px) {
    header.ur-header .menu-area {
        padding: 9px 0;
    }

    .ur-navbar-row {
        min-height: 72px;
    }

    .header-logo a img {
        width: 105px;
        height: 105px;
        margin: -17px 0;
    }
}

@media (max-width:575.98px) {
    .ur-topbar-inner {
        justify-content: space-between;
        min-height: 36px;
    }

    .ur-topbar-inner>p,
    .ur-topbar-divider,
    .ur-topbar-right>a {
        display: none;
    }

    .ur-topbar-right {
        gap: 0;
    }

    header.ur-header .menu-area {
        padding: 7px 0;
    }

    .header-logo a img {
        width: 88px;
        height: 88px;
        margin: -12px 0;
    }

    .ur-navbar-row {
        min-height: 64px;
    }

    .th-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .ur-mobile-nav {
        width: 310px;
        max-width: 90%;
    }
}

/* Logo-inspired navbar palette */
.banner-content .split-line {
    text-align: left !important;
}

.ur-topbar-inner p,
.ur-topbar-right>a {
    color: #ffffff;
}

.ur-topbar-inner i {
    color: #ffffff;
}

.ur-socials a {
    border-color: rgba(255, 255, 255, .35);
    color: #ffffff;
}

.ur-socials a:hover {
    background: #fed52d;
    border-color: #fed52d;
    color: #102f43;
}

header.ur-header .menu-area {
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8edf0;
    box-shadow: 0 8px 25px rgba(16, 47, 67, .1);
}



.header-logo a img {
    width: 100px;
    height: 100px;
    margin: 0;
    filter: drop-shadow(0 6px 9px rgba(16, 47, 67, .14));
}

.main-menu a,
.main-menu>ul>li>a {
    color: #004DA5;
    font-weight: 600;
}

.main-menu>ul>li>a {
    padding: 44px 0;
}

header.ur-header .main-menu>ul>li>a:before {
    height: 3px;
    bottom: 31px;
    border-radius: 5px;
    background: linear-gradient(90deg, #ed1b66, #fed52d);
}

header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:after {
    filter: none;
}

header.ur-header .menu-area .main-menu ul.sub-menu {
    top: calc(100% - 17px);
    border-top-color: #ed1b66;
}

.main-menu ul.sub-menu a {
    color: #15394d;
}

.main-menu ul.sub-menu a:hover {
    color: #b90d4c;
    background: linear-gradient(90deg, rgba(237, 27, 102, .09), rgba(244, 165, 28, .08));
}

.th-menu-toggle {
    background-color: #014da3;
}

.th-menu-toggle span {
    background: #fff;
}

.ur-mobile-nav {
    background: #102f43;
    border-left: 4px solid #fed52d;
}

@media (max-width:1199.98px) {
    header.ur-header .menu-area {
        padding: 0;
    }

    .ur-navbar-row {
        min-height: 102px;
    }

    .header-logo a img {
        width: 96px;
        height: 96px;
        margin: 0;
    }

    .ur-header-actions {
        gap: 12px;
    }

    .th-menu-toggle {
        flex: 0 0 46px;
        flex-direction: column;
        box-shadow: 0 7px 18px rgba(16, 47, 67, .16);
    }

    .th-menu-toggle span {
        width: 22px;
        height: 2px;
        margin: 3px 0;
        border-radius: 4px;
    }
}

@media (max-width:575.98px) {
    header.ur-header .menu-area {
        padding: 0;
    }

    .ur-navbar-row {
        min-height: 88px;
    }

    .header-logo a img {
        width: 82px;
        height: 82px;
        margin: 0;
    }

    .ur-topbar {
        padding: 0 4px;
    }

    .ur-topbar-inner {
        min-height: 42px;
    }

    .left-side-topbar {
        min-width: 0;
    }

    .left-side-topbar p {
        font-size: 12px;
        white-space: nowrap;
    }

    .icon-topbar svg {
        width: 16px;
        height: 16px;
    }

    .ur-socials {
        gap: 5px;
    }

    .ur-socials a {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .ur-navbar-row {
        min-height: 92px;
        gap: 10px;
    }

    .ur-header-actions {
        gap: 8px;
    }

    .ur-header-actions .primary-btn1 {
        padding: 11px 14px;
        font-size: 13px;
        border-radius: 9px;
    }

    .ur-header-actions .primary-btn1 svg {
        width: 8px;
        height: 8px;
    }

    .th-menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 9px;
    }

    .ur-mobile-head {
        padding: 4px 0 14px;
    }

    .ur-mobile-title img {
        width: 82px;
        height: 82px;
    }

    .ur-mobile-menu a {
        padding: 14px 5px;
    }
}

@media (max-width:374.98px) {
    .left-side-topbar p {
        font-size: 11px;
    }

    .ur-socials a {
        width: 24px;
        height: 24px;
    }

    .header-logo a img {
        width: 72px;
        height: 72px;
    }

    .ur-header-actions .primary-btn1 {
        padding: 10px 11px;
    }

    .ur-navbar-row {
        min-height: 82px;
    }
}

section.banner-area {
    position: relative;
    background-position: top center;
    height: 520px;
    align-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('/assets/images/hero-1.jpg');
    background-size: cover;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h5 {
    color: var(--white-color);
    letter-spacing: 0.6px;
    font-size: 18px;
}

.banner-content h1 {
    color: #fed42d;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.banner-content h2 {
    color: var(--white-color);
    font-weight: 500;
}

/* .theme-btn {
    width: fit-content;
    background-color: #456246;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
} */

.primary-btn1 {
    background-color: #ec0100;
    font-weight: 500;
    font-size: 12px;
    color: var(--white-color);
    letter-spacing: 0.48px;
    line-height: 1;
    padding: 12px 12px;
    border-radius: 10px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn1>span {
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn1>span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.primary-btn1>span svg {
    fill: var(--white-color);
    transition: 0.5s;
}

.primary-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 102% 102%;
    border-radius: inherit;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
    z-index: -1;
}

.primary-btn1::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    background-color: #004DA5;
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s;
    z-index: -1;
}

.primary-btn1:hover>span {
    transform: translateY(-150%);
    opacity: 0;
}

.primary-btn1:hover>span:nth-child(2) {
    opacity: 1;
    transform: translate(0%, -50%);
}

.primary-btn1:hover::after {
    transform: translate(0);
    border-radius: 0;
}

.banner-content .theme-btn {
    margin: 0 auto;
    margin-top: 30px;
}







/* ================================
   About Section Css
================================ */


.about-content h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--gold-color);
}

section.about-area {
    background-color: #F4F3F1;
}

.about-imgs {
    position: relative;
    margin-left: 30px;
}

.about-img1 img {
    max-width: 340px;
    border-radius: 16px;
    margin: 0 auto;
}

.about-img2 {
    position: relative;
    float: right;
    margin-top: -240px;
    z-index: 0;
}

.about-img2 img {
    max-width: 340px;
    border-radius: 16px;
}

.about-img1 {
    position: relative;
    z-index: 1;
}

.counter-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.experience-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 22px 12px 14px;
    border: 1px solid rgba(1, 77, 163, .16);
    border-radius: 14px;
    background: linear-gradient(135deg, #eef6ff, #fff8e9);
    box-shadow: 0 10px 25px rgba(16, 47, 67, .08);
}

.experience-number {
    min-width: 76px;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 64px;
    text-align: center;
    border-radius: 11px;
    background: #014da3;
}

.experience-number span {
    color: #fed52d;
    font-size: 24px;
}

.experience-copy {
    display: flex;
    flex-direction: column;
}

.experience-copy strong {
    color: #15394d;
    font-size: 19px;
}

.experience-copy span {
    color: #64737b;
    font-size: 14px;
}

.counter-box {
    position: relative;
}

.counter-icon img {
    width: 60px;
    height: 60px;
}

.counter-box>h3 {
    color: var(--black);
    letter-spacing: 0.6px;
}

.counter-icon {
    margin-bottom: 8px;
}


/* ================================
   Location Section Css
================================ */

.section-heading {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading p {
    text-align: center;
}

.location-grid {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 260px);
}

.loc-big {
    grid-row: span 2;
    grid-column: 1;
}

.loc-wide {
    grid-column: 3 / 5;
}

.loc-card {
    border-radius: 12px;
    display: block;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.loc-card:first-child {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.loc-card img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.loc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0 0 0 / 66%) 100%);
}

.loc-name {
    position: absolute;
    left: 14px;
    bottom: 12px;
    color: var(--white-color);
    font-weight: 600;
    z-index: 2;
    font-size: 20px;
    font-family: "Figtree", sans-serif;
}




/* ================================
   Featured Projects Section Css
================================ */

/* Static information pages */
.static-page-area {
    padding: 90px 0;
    background: #f8fafb;
}

.static-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.static-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #014da3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.static-intro h2,
.policy-content h2 {
    color: #004da5;
    font-size: 25px;
    margin-bottom: 15px;
}

.static-intro p {
    color: #5f6f78;
    line-height: 1.8;
}

.static-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.static-info-card {
    scroll-margin-top: 135px;
    padding: 32px;
    border: 1px solid #e5ebef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 47, 67, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.static-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(16, 47, 67, .12);
}

.static-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 14px;
    color: #fff;
    font-size: 23px;
    background: linear-gradient(135deg, #014da3, #267ac4);
}

.static-info-card h3 {
    color: #15394d;
    font-size: 24px;
    margin-bottom: 10px;
}

.static-info-card p {
    color: #64737b;
    line-height: 1.7;
    margin-bottom: 10px;
}

.static-info-card ul {
    margin: 18px 0 22px;
    padding: 0;
}

.static-info-card li {
    display: flex;
    gap: 10px;
    margin: 9px 0;
    color: #354d59;
}

.static-info-card li i {
    margin-top: 5px;
    color: #fed52d;
}

.static-info-card>a {
    color: #014da3;
    font-weight: 700;
}

.static-info-card>a i {
    margin-left: 6px;
    transition: transform .2s ease;
}

.static-info-card>a:hover i {
    transform: translateX(4px);
}

.static-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding: 34px 38px;
    border-radius: 16px;
    color: #fff;
    background: #102f43;
}

.static-cta span {
    color: #fed52d;
}

.static-cta h3 {
    margin: 4px 0 0;
    color: #fff;
}

.static-cta .primary-btn1 span {
    color: #fff;
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrap .accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #e2e9ed;
    border-radius: 12px !important;
    box-shadow: 0 7px 22px rgba(16, 47, 67, .05);
}

.faq-wrap .accordion-button {
    padding: 20px 24px;
    color: #15394d;
    font-size: 17px;
    font-weight: 700;
    background: #fff;
    box-shadow: none;
}

.faq-wrap .accordion-button:not(.collapsed) {
    color: #014da3;
    background: #f2f7fb;
}

.faq-wrap .accordion-body {
    padding: 5px 24px 22px;
    color: #60717a;
    line-height: 1.75;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    border: 1px solid #e2e9ed;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 47, 67, .07);
}

.policy-content h3 {
    margin: 28px 0 8px;
    color: #004da5;
    font-size: 20px;
}

.policy-content p {
    color: #60717a;
    line-height: 1.8;
}

.policy-content a {
    color: #014da3;
    font-weight: 600;
}

.policy-note {
    margin-top: 30px;
    padding: 18px;
    border-left: 4px solid #fed52d;
    background: #fff8e9;
}

@media (max-width: 767px) {
    .static-page-area {
        padding: 60px 0;
    }

    .static-intro h2,
    .policy-content h2 {
        font-size: 29px;
    }

    .static-card-grid {
        grid-template-columns: 1fr;
    }

    .static-info-card,
    .policy-content {
        padding: 25px 20px;
    }

    .static-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 22px;
    }
}



section.featured-project-area {
    background-color: #F4F3F1;
}

.project-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
}

.project-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 16px;
}

.project-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.project-img {
    border-radius: 16px;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
}

.tag-img {
    width: fit-content;
    position: absolute;
    top: 20px;
    left: 20px;
}

.tag-img>span>h4 {
    margin-bottom: 0;
    background-color: #6e00ff;
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: 0.6px;
    border-radius: 4px;
    padding: 3px 10px;
}

.color-type-2>span>h4 {
    background-color: #f5b53d;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.project-content p {
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    font-size: 18px;
}

.project-content p.small-text {
    margin-bottom: 15px;
    letter-spacing: 0.6px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.project-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-point {
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-bottom-btn {
    margin-top: 50px;
    text-align: center;
}





/* ================================
   Services Section Css
================================ */


section.services-area {
    background-color: #D3E0D7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.services-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 32px rgba(16, 47, 67, .1);
}

.services-img {
    margin-bottom: 20px;
    color: #456246;
    font-size: 58px;
    text-align: center;
}

.services-img img {
    max-width: 80px;
    margin: 0 auto;
}

.services-content h3 {
    text-align: center;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.services-content p {
    text-align: center;
}

.bottom-text {
    margin-top: 50px;
}

.bottom-text p {
    text-align: center;
    letter-spacing: 0.6px;
}

.bottom-text p a {
    text-align: center;
    color: #456246;
    font-weight: 600;
}

/* ================================
   Product Section Css
================================ */


.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.product-box {
    position: relative;
    border: 1px solid #ECECEC;
    padding: 15px;
    border-radius: 16px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px #cfcfcf;
}

.product-img {
    margin-bottom: 20px;
}

.product-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.product-img {
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.product-content h3 {
    color: #014da3;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.location-point p {
    font-size: 14px;
}

.features-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.product-content {
    margin-bottom: 10px;
}

.feature-item {
    font-size: 12px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-bottom: 0px;
    color: #5C5E61;
    display: flex;
    align-items: center;
    gap: 5px;
}

.theme-btn {
    display: flex;
    justify-content: space-between;
}

a.primary-btn1.whatsaap {
    background-color: #00C400;
}

.product-btn .theme-btn.border-btn a.primary-btn1 {
    background-color: var(--white-color);
    border: 1.5px solid #456246;
    color: #456246;
}

.product-btn .theme-btn.border-btn a.primary-btn1>span svg {
    fill: #456246;
    transition: 0.5s;
}

.product-btn .theme-btn.border-btn a.primary-btn1::after {
    background-color: var(--white-color);
}




/* ================================
   Contact Area Section Css
================================ */

section.contact-area {
    background-color: #F4F3F1;
}

input:-webkit-autofill {
    background-color: transparent !important;
}

.contact-heading {
    margin-bottom: 30px;
}

.contact-heading h3 {
    margin-bottom: 15px;
}

.contact-detail-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-detail-box .icon svg {
    stroke: #8E8E93;
    stroke-width: 1px;
}

.contact-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 16px;
    margin-left: auto;
    max-width: 500px;
}

.contact-form h3 {
    color: var(--black);
    font-size: 30px;
}

.contact-form p {
    font-size: 15px;
}

.contact-form form {
    margin-top: 30px;
}

.form-group label {
    color: var(--gold-color);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.Vertical-Divider {
    width: 1.6px;
    height: 80px;
    margin: 10.5px 20.8px 2.5px 20.8px;
    transform: rotate(-340deg);
    background-color: #d9d9d9;
}

.form-group .input-group {
    padding: 12px 20px 12px 20px;
    border-radius: 10px;
    border: solid 1px #e5e5ea;
    background-color: var(--white-color);
    align-items: center;
}

.form-group .input-group .form-control {
    border: none;
    box-shadow: none;
    font-size: 16px;
    outline: none;
    color: #3A3A3C;
    line-height: normal;
    padding: 0 0 0 12px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group .input-group .form-select {
    border: none;
    box-shadow: none;
    font-size: 16px;
    outline: none;
    color: #3A3A3C;
    line-height: normal;
    padding: 0 0 0 12px;
}

.form-group .input-group textarea.form-control {
    padding-left: 0;
}

span.input-group-icon svg {
    width: 20px;
    height: 18px;
    stroke: #014da3;
}

.submit-btn {
    margin-top: 12px;
}

section.banner-area .contact-form {
    padding: 20px;
}

section.banner-area .contact-form form {
    margin-top: 0;
}

/* ================================
   Newsletter Area Section Css
================================ */

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.newsletter-box {
    background-color: #a9d1ff;
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
}

.newsletter-content {
    margin-left: 20px;
}

.newsletter-img img {
    max-width: 180px;
}

.newsletter-img-width img {
    max-width: 120px;
}

.newsletter-content h3 {
    font-size: 25px;
    color: var(--black);
    font-weight: 600;
}

.newsletter-content p {
    font-size: 15px;
    line-height: normal;
}

.newsletter-btn {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
}


/* ================================
   Testimonials Area Section Css
================================ */


section.client-reviews-area {
    background-color: #F4F3F1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.testimonials-box {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 16px;
    position: relative;
    border: 1.5px solid #dfdfdf;
    /* box-shadow: 0px 0px 10px #cfcfcf; */
    margin: 0 10px;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars i {
    color: #FFA800;
    font-size: 22px;
}

.rating-content {
    margin-bottom: 15px;
}

.rating-img-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-img-area .img img {
    border-radius: 60%;
    max-width: 60px;
}

.rating-img-area .title h3 {
    margin-bottom: 0;
    font-size: 25px;
    color: var(--black);
}

.slick-prev {
    left: auto !important;
    top: -85px !important;
    right: 80px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 6px !important;
    border: solid 1px #014da3 !important;
    align-content: center !important;
}

.slick-next {
    top: -85px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 6px !important;
    border: solid 1px #014da3 !important;
    align-content: center !important;
}

.slick-next:before {
    content: "" !important;
    background-image: url(/assets/images/angle-right.svg) !important;
}

.slick-prev:before {
    content: "" !important;
    background-image: url(/assets/images/angle-left.svg) !important;
}

.slick-prev:before,
.slick-next:before {
    content: "" !important;
    position: absolute;
    top: 50%;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    left: 4px;
    background-size: cover;
    transform: translateY(-50%);
}



/* ================================
   Blog Area Section Css
================================ */



.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.img-part {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.blog-box {
    position: relative;
}

.blog-content {
    padding: 25px;
    padding-left: 0;
    padding-bottom: 0;
}

.blog-content-inner {
    padding-left: 20px;
    border-left: 1px solid var(--black);
}

ul.blog-meta {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0px 0px 12px 0px;
}

ul.blog-meta li {
    padding-right: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5C5E61;
    font-size: 13px;
}

.blog-content-inner h5 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 600;
    color: var(--black);
}

/* ================================
   Footer Area Section Css
================================ */


footer.tf-footer-area {
    position: relative;
    background-color: #014da3;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-box {
    position: relative;
}

.footer-logo img {
    max-width: 140px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-widget {
    position: relative;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-widget ul li {
    margin-bottom: 10px;
    flex-basis: 178px;
    flex-shrink: 0;
}

.footer-widget ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-widget ul li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 300;
    padding-left: 18px;
    display: block;
}

.footer-widget ul li a::before {
    content: "";
    background-image: url(/assets/images/double-right.svg);
    display: inline-block;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    filter: brightness(0) invert(1);
}

.footer-widget-headng h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

ul.footer-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

ul.footer-info li h6 {
    color: var(--white-color);
    opacity: 0.6;
    font-weight: 300;
    font-size: 15px;
}

ul.footer-info li p {
    color: var(--white-color);
    font-size: 14px;
    text-align: start;
    line-height: 25px;
    font-weight: 300;
}

ul.footer-info li span.icon svg {
    stroke: var(--white-color);
    width: 25px;
    height: 25px;
    stroke-width: 1px;
}

.footer-widget p {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 300;
    text-align: start;
}

.copyright-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #8d8d8d;
    padding-top: 20px;
}

.copyright-footer .content p {
    color: var(--white-color);
    font-size: 13px;
    text-align: start;
}

.footer-social-media h3 {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 18px;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-media ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-social-media ul li a {
    height: 30px;
    width: 30px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 6px 0 0;
    transition: all .4s;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.footer-social-media ul li a svg {
    font-size: 14px;
    color: #fff;
}

.copyright-footer .content p a {
    color: #fed52d;
    font-weight: 500;
}

/* 



*/

/* =========================================
   RIGHT SIDE STICKY CALL & WHATSAPP BUTTONS
========================================= */

.sticky-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-contact-btn {
    position: relative;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 23px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);

    transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
    color: #fff;
    transform: translateX(-5px);
}


/* Call Button */
.sticky-call {
    background: #0756aa;
}

.sticky-call:hover {
    background: #03458d;
}


/* WhatsApp Button */
.sticky-whatsapp {
    background: #25D366;
}

.sticky-whatsapp:hover {
    background: #1ebc59;
}


/* Hover Label */
.sticky-label {
    position: absolute;

    right: 68px;

    background: #111;
    color: #fff;

    padding: 7px 12px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    opacity: 0;
    /* visibility: hidden; */

    transform: translateX(8px);

    transition: all 0.3s ease;

    pointer-events: none;
}

.sticky-contact-btn:hover .sticky-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* Mobile */
@media (max-width: 767px) {

    .sticky-contact-buttons {
        right: 12px;
        top: auto;
        bottom: 20px;
        transform: none;
        gap: 10px;
    }

    .sticky-contact-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .sticky-label {
        display: none;
    }
}


.breadcrumb-area {
    padding-top: 20px;
    position: relative;
    padding-bottom: 0px;
    border-bottom: 1px solid #E5E7EB;
}

li.breadcrumb-item a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.breadcrumb-item+.breadcrumb-item {
    align-items: center;
    display: flex;
}

.breadcrumb-item+.breadcrumb-item:before {
    height: 18px;
    margin-right: 6px;
    padding-right: 0;
    width: 16px;
}

.breadcrumb-item+.breadcrumb-item:before {
    color: var(--fn-breadcrumb-divider-color);
    content: var(--fn-breadcrumb-divider, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333d4c' viewBox='0 0 24 24'%3E%3Cpath d='M8.381 5.381a.874.874 0 0 1 1.237 0l6 6a.874.874 0 0 1 0 1.237l-6 6a.874.874 0 1 1-1.237-1.237L13.763 12 8.381 6.619a.874.874 0 0 1 0-1.237z'/%3E%3C/svg%3E"));
    float: left;
}

.breadcrumb-item.active {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
}

section.bg-color-section {
    padding: 0;
    background-color: #FAFAFA;
    overflow: visible;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-name h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 600;
}

.profile-reviews-area ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-reviews-area ul>li svg {
    fill: transparent;
    color: #6c727f;
    width: 16px;
    height: 16px;
}

span.profile-review-count {
    font-size: 12px;
    color: #6c727f;
}

.profile-details {
    padding: 20px 0;
}

.property-imgs-grid {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-imgs:first-child {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.property-imgs {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 12px;
}

.property-imgs img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.property-imgs img:hover {
    transform: scale(1.08);
}

.property-imgs-area {
    padding: 0px 0 30px;
}

.property-imgs::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0;
    z-index: 1;
    transition: 0.2s ease-in-out;
    border-radius: 12px;
}

.property-imgs--last:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.4;
    z-index: 1;
    border-radius: 12px;
}

.property-imgs:hover:before {
    opacity: 0.4;
}

.show-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    z-index: 2;
}

.show-all-btn button {
    height: 44px;
    padding: 0px 24px 0px 24px;
    color: #000;
    background-color: #FFFFFF;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}

.show-all-btn button svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.box-property {
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
    padding: 30px;
    margin-bottom: 30px;
}


.inner-banner .inner {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.inner-banner .inner>nav ol {
    justify-content: center;
}

section.inner-banner {
    position: relative;
    background-position: top center;
    align-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/assets/images/breadcrumb-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.inner-banner .inner h1 {
    color: #fff;
}

.inner-banner .inner>nav ol li a {
    color: #fff;
}

.inner-banner .inner>nav ol .breadcrumb-item.active {
    color: #fff;
    filter: brightness(0) invert(1);
}

.my-listing-attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.my-listing-attribute {
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-listing-attribute-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.my-listing-attribute-icon svg {
    fill: #2563EB;
    stroke: #2563EB;
    height: 32px;
    width: auto;
    display: block;
}

.my-listing-attribute-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

span.my-listing-attribute-value-text {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: "Figtree", sans-serif;
}

span.my-listing-attribute-text-after {
    font-size: 12px;
    color: #6c727f;
}

.property-box-2 h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 25px;
}

.property-box-2 p {
    font-size: 14px;
    color: #6c727f;
}

.my-details-listing-attributes-grid-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 15px;
    display: grid;
}

.my-details-listing-attributes-list {
    padding-bottom: 10px;
    border-bottom-color: #E5E7EB;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: flex;
    gap: 2px;
    width: 100%;
    justify-content: space-between;
}

.my-details-listing-attributes-list-label {
    font-size: 16px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
}

.my-details-listing-attributes-list-value {
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: #6c727f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.feature-list {
    display: flex;
    align-items: center;
}

.feature-icon svg {
    stroke: #2563EB;
    height: 22px;
    width: auto;
}

.feature-title {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: "Figtree", sans-serif;
}

.property-details-boxes .contact-form {
    margin-bottom: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
}

/*  */



.custom-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

.floor-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.property-box-5 img {
    max-width: 360px;
}

.floor-img img {
    width: 100%;
    height: 100%;
}

.floor-img {
    cursor: pointer;
    overflow: hidden;
}

.floor-img img {
    transition: 0.4s;
}

.floor-img:hover img {
    transform: scale(1.08);
}

.layout-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.layout-gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.layout-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.layout-prev,
.layout-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white-color);
    cursor: pointer;
}

.layout-prev {
    left: 40px;
}

.layout-next {
    right: 40px;
}

.extra-gallery-img {
    display: none;
}

.call-us-btn-area {
    margin-bottom: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
    background-color: var(--white-color);
    padding: 30px;
}

.right-side-wrapper {
    position: sticky;
    top: 20px;
    margin-bottom: 30px;
}

.call-us-btn-area img {
    max-width: 60px;
}

.call-us-btn-area-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-us-btn-area h3 {
    color: var(--black);
    font-size: 30px;
    margin-bottom: 30px;
}



/* ================================
   Home page form popup model Section Css
================================ */





.popup-form {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.popup-form.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.popup-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    /* pehle 760 tha, ab kam */
    max-height: 92vh;
    /* fixed visible area */
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    z-index: 2;
    animation: popupFadeUp 0.35s ease;
    display: flex;
    flex-direction: column;
}

@keyframes popupFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-image {
    width: 100%;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
    z-index: 5;
}

.popup-close:hover {
    background: #f3f3f3;
    transform: scale(1.05);
}

.popup-content {
    background: #fff;
    overflow-y: auto;
    /* andar scroll ayega */
    flex: 1;
}

.popup-heading {
    background: linear-gradient(90deg, #0a6a13, #3f8c42);
    text-align: center;
    padding: 18px 16px;
}

.popup-heading h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.popup-heading p {
    margin: 0;
    color: #edf7ee;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.popup-form-inner {
    padding: 10px 24px;
}

.popup-input-group {
    margin-bottom: 10px;
}

.popup-input-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.popup-input-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #e3d7d7;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.popup-input-group input:focus {
    border-color: #2f7d32;
    box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.08);
}

.popup-input-group input::placeholder {
    color: #999;
}

.popup-btns {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.popup-btn {
    flex: 1;
    height: 50px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-btn-light {
    background: #fff;
    border: 1px solid #e3d7d7;
    color: #222;
}

.popup-btn-light:hover {
    background: #f7f7f7;
}

.popup-btn-green {
    background: linear-gradient(90deg, #0b6f15, #3d8a43);
    color: #fff;
}

.popup-btn-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(28, 108, 37, 0.24);
}

.popup-footer {
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    padding: 12px 16px;
    text-align: center;
    flex-shrink: 0;
}

.popup-footer p {
    margin: 0;
    color: #7f7f7f;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
    .popup-box {
        max-width: 560px;
        max-height: 90vh;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .popup-form {
        padding: 12px;
    }

    .popup-box {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 16px;
    }

    .popup-image {
        height: 120px;
    }

    .popup-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .popup-form-inner {
        padding: 16px;
    }

    .popup-input-group {
        margin-bottom: 14px;
    }

    .popup-input-group label {
        font-size: 14px;
    }

    .popup-input-group input {
        height: 44px;
        font-size: 14px;
        border-radius: 10px;
    }

    .popup-btns {
        flex-direction: column;
        gap: 10px;
    }

    .popup-btn {
        font-size: 14px;
        padding: 10px 0;
    }

    .popup-footer {
        padding: 10px 12px;
    }

    .popup-footer p {
        font-size: 12px;
    }

    .popup-btn-light {
        display: none;
    }
}

.loan-facility-icon {
    width: 105px;
    min-width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    color: #014da3;
    font-size: 64px;
}

@media (max-width: 991px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Static property card image slider */
.product-card-slider {
    aspect-ratio: 6 / 5;
    overflow: hidden;
    background: #edf2f7;
}

.product-card-slider .property-slides,
.product-card-slider .property-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-card-slider .property-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity .45s ease, visibility .45s ease, transform .7s ease;
}

.product-card-slider .property-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.property-slider-btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #034f9e;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .2s ease, background-color .2s ease;
    cursor: pointer;
}

.property-slider-prev {
    left: 10px;
}

.property-slider-next {
    right: 10px;
}

.product-card-slider:hover .property-slider-btn,
.product-card-slider:focus-within .property-slider-btn {
    opacity: 1;
}

.property-slider-btn:hover,
.property-slider-btn:focus-visible {
    color: #fff;
    background: #034f9e;
    outline: none;
}

.property-slider-dots {
    position: absolute;
    z-index: 4;
    bottom: 9px;
    left: 50%;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}

.property-slider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.property-slider-dots span.is-active {
    width: 17px;
    border-radius: 10px;
    background: #fff;
}

@media (hover: none) {
    .property-slider-btn {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-card-slider .property-slide {
        transition: none;
    }
}

/* Home property category replacement for Featured Projects */
.featured-projects-old-content {
    display: none;
}

.property-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.property-category-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 39, 71, .13);
}

.property-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 24, 48, .05) 20%, rgba(0, 43, 91, .94) 100%);
}

.property-category-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.property-category-card:hover>img {
    transform: scale(1.06);
}

.property-category-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 25px;
    color: #fff;
}

.property-category-overlay>i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 4px;
    border-radius: 50%;
    color: #034f9e;
    background: #fff;
}

.property-category-overlay strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.property-category-overlay small {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.property-category-overlay small i {
    margin-left: 5px;
    transition: transform .2s ease;
}

.property-category-card:hover small i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .property-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .property-category-grid {
        grid-template-columns: 1fr;
    }

    .property-category-card {
        min-height: 290px;
    }
}