/* navigation */
* {
    font-family: "Jost", sans-serif;
    transition: all 0.5s;
}

:root {
    --theme-color: #047224;
    --theme-color-2: #c61412;
    --theme-color-3: #0d263c;
    --theme-color-4: #eaf0f5;
}

a:hover {
    color: var(--theme-color);
}

p {
    color: #666;
    font-size: 16px;
}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.nav-icon a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #fff;
}

span.nav-icon i {
    color: var(--theme-color-2);
}

span.nav-icon.border-right {
    border-right: 1px solid #ffffff33;
    padding-right: 20px;
}

.header-social-media a {
    width: 35px;
    height: 35px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    line-height: 0;
}

.header-social-media {
    border-left: 1px solid #ffffff33;
    padding-left: 10px;
}

.header-social-media a:hover {
    color: var(--theme-color);
    background: #fff;
}

a.auth-btn {
    font-weight: 500;
}

img.logo.main-logo {
    width: 80px;
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1666px;
    }
}

/* navigating */
.navbar-nav .nav-link {
    color: #000;
    font-weight: 800;
    font-size: 16px;
    padding: 0 15px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--theme-color);
}

nav.main-navbar {
    position: relative;
}

ul.dropdown-menu {
    background-color: #ffffff;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    border: none;
}

.dropdown-menu a.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
    padding-top: 7px;
}

.dropdown-menu li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    color: #1e2125;
}

.secondary-navbar {
    position: relative;
    background: var(--theme-color-3);
    padding: 6px 0;
}

.btn-button {
    position: relative;
    background-color: var(--theme-color);
    color: #fff;
    padding-block: clamp(0.8rem, 0.5rem + 0.4vw, 1.3rem);
    padding-inline: clamp(1.5rem, 1.2981rem + 0.8974vw, 2.375rem);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to left, #0d263c 90%, #047224 100%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

/* Hover effects */
.btn-button:hover::after {
    width: 110%;
}

.btn-button i {
    font-size: 18px;
}

.btn-button:hover,
.btn-button:focus {
    color: #fff;
    border: 1px solid #fff;
}

.btn-button.white-btn {
    background-color: #fff;
    color: var(--theme-color);
    transition: all 0.5s ease-in-out;
}

.btn-button.white-btn:hover {
    color: #fff;
}

/* Scroll activated */
.scroll-animate.active .abt-img-1 {
    transform: translateY(0);
}

.scroll-animate.active .abt-img-2 {
    transform: translateY(0);
}

/* Optional hover animation */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

.slide-by-2 {
    transition: transform 2s ease;
}

.slide-by-3 {
    transition: transform 3s ease;
}

.slide-by-4 {
    transition: transform 4s ease;
}

/* footer */
footer#footer {
    background: var(--theme-color-3);
    color: #fff;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

footer#footer::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-pattern-img.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

img.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about-us p {
    color: #fff;
}

ul.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

ul.social-icons li {
    font-size: 18px;
    border: 1px solid currentColor;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
}

.footer-about-us {
    width: 70%;
}

h4.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

li.footer-links-item {
    font-weight: 500;
    padding-bottom: 10px;
}

a.call-footer {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.mail-footer {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

p.address-footer {
    color: #fff;
}

.footer-divider {
    border-bottom: 1px solid rgb(255 255 255 / 17%);
    margin: 60px 0;
}

.footer-bottom-text p {
    color: #ffffff80;
    font-size: 14px;
}

.footer-bottom-text p span.company {
    color: #fff;
    font-weight: 700;
}

ul.sec-footer-links li {
    color: #ffffff80;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding-left: 15px;
}

ul.sec-footer-links {
    text-align: right;
}

.footer-card-area {
    background-image: url(../images/footer-img.jpg);
    background-size: cover;
    padding: 30px;
    border-radius: 2.5em;
    position: relative;
    z-index: 1;
}

.footer-card-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--theme-color-3);
    z-index: -1;
    opacity: 0.9;
}

a.btn-links {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    color: var(--theme-color-2);
}

a.btn-links:hover,
a.btn-links:active,
a.btn-links:focus {
    color: var(--theme-color);
}

img.footer-home-img {
    width: auto;
    height: auto;
    object-fit: cover;
}

section button.slick-prev.slick-arrow,
section button.slick-next.slick-arrow {
    bottom: auto;
    left: auto;
    width: 55px;
    height: 55px;
    background: var(--theme-color);
    border-radius: 0;
    border-radius: 50%;
}

section button.slick-prev.slick-arrow:hover,
section button.slick-next.slick-arrow:hover {
    background-color: var(--theme-color-2);
}

section button.slick-prev.slick-arrow {
    right: auto;
    left: -25px;
    z-index: 999;
}

section button.slick-prev.slick-arrow::before {
    content: "\f12f";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}

section button.slick-next.slick-arrow::before {
    content: "\f138";
    font-family: bootstrap-icons !important;
    font-size: 20px;
}

section ul.slick-dots {
    display: inline-block;
    bottom: -50px;
    border-radius: 20px;
    padding: 0px;
}

section .slick-dots li button:before {
    font-size: 13px;
    color: var(--theme-color-2);
}

section .slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: var(--theme-color);
}

/* page style */

.breadcrumb-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    color: #fff;
}

li.breadcrumb-item {
    color: var(--theme-color-3);
    font-weight: 500;
}

li.breadcrumb-item.active {
    color: var(--theme-color-2);
    font-weight: 500;
}

ol.breadcrumb {
    display: inline-flex;
    padding: 4px 30px;
    border-radius: 1em;
    border: 1px solid #c7d5e1;
    background: #f9fcff;
    transition: all 0.3s linear 0s;
}

.page-area {
    background-image: url(../images/breadcrumb-bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #212529;
    z-index: -1;
    opacity: 0.8;
}

nav.navbar.main-navbar.page-nav {
    background: rgb(255 255 255 / 50%);
}

.breadcrumb-sec {
    position: relative;
}

.btn {
    border-radius: 1.5rem;
    border: none;
}

.btn.btn-primary {
    background-color: var(--theme-color);
    opacity: 0.8;
}

.btn.btn-primary:hover {
    background-color: var(--theme-color);
    opacity: 1;
}

.btn-group {
    .select {
        position: relative;
        color: inherit;

        input:checked+label {
            background-color: #4f5bf7;
            color: #fff;

            &:hover,
            &:focus,
            &:active {
                background-color: #4f5bf7;
                color: #ffffff;
            }
        }

        input {
            opacity: 0;
            position: absolute;
        }

        .button_select {
            margin: 0 5px 5px 0;
            display: flex;
            background-color: transparent;
            color: #4f5bf7;
            font-size: 12px;
            border: 1px solid;

            &:hover,
            &:focus,
            &:active {
                background-color: transparent;
            }
        }
    }
}

.option {
    position: relative;
    color: green;

    input {
        opacity: 0;
        position: absolute;
    }

    input:checked+span {
        background-color: #4f5bf7;
        color: #fff;

        &:hover,
        &:focus,
        &:active {
            background-color: #4f5bf7;
            color: #fff;
        }
    }

    .btn-option {
        margin: 0 10px 10px 0;
        display: flex;
        background-color: transparent;
        color: #4f5bf7;

        &:hover,
        &:focus,
        &:active {
            background-color: transparent;
            color: #4f5bf7;
        }
    }
}

.btn-check:focus+.btn,
.btn:focus,
.form-body .login-btn {
    outline: 0;
    box-shadow: none !important;
}

.login-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 20px 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 300px;
    border-radius: 10px;
}

.login-link {
    cursor: pointer;
    color: #6c63ff;
    font-weight: 500;
    text-decoration: none;
}

.login-input {
    background-color: #f0f4ff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: 0.3s ease;
}

.login-input:focus {
    box-shadow: 0 0 0 2px #aab6fe;
    background-color: #e9efff;
}

.login-btn,
.form-body .login-btn {
    background-color: #6c63ff;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 0;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #594fcf;
}

.sign-in {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

a.create-acc-link {
    color: #999;
    font-size: 14px;
    font-weight: 600;
}

a.create-acc-link:hover {
    color: var(--theme-color);
}

.login-header-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

input.form-input {
    background: rgb(239 239 239);
    border: none;
    border-radius: 0;
    color: #000;
}

input.form-input:hover {
    box-shadow: none;
    border: none;
}

input:-internal-autofill-selected {
    background-color: rgb(239 239 239);
}

h2.login-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-card {
    padding: 0px 40px 40px;
    border: 1px solid rgb(22, 2, 24);
}

section.login-sec {
    background-image: url(../images/login-shape.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Custom Css */
section.banner {
    padding-top: 200px;
    padding-bottom: 100px;
}

.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 110%;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out, transform 5s ease-in-out;
    transform: scale(1);
    opacity: 0;
    z-index: -1;
}

.home-banner-bg.active {
    opacity: 1;
    transform: scale(1.08);
    z-index: 0;
}

nav.navbar.main-navbar.home-page-nav {
    background: rgb(255 255 255 / 50%);
}

.sub-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--theme-color-2);
}

h1.banner-heading {
    font-size: 54px;
    color: #fff;
    font-weight: 700;
    margin: 20px 0;
}

.banner-form-sec {
    margin-top: 30px;
}

.banner-form {
    background-color: #fff;
    padding: 30px;
    position: relative;
}

.banner-form.checkBox-area {
    border-radius: 30px 30px 0px 0;
}

.banner-form.checkBox-area::before {
    content: "";
    display: block;
    position: absolute;
    width: 2em;
    height: 2em;
    color: #fff;
    box-shadow: inset 1em 1em 0 0 currentColor;
    right: -1em;
    z-index: 1;
    border-radius: 30px;
    bottom: -1em;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

.banner-form.search-box-area {
    border-radius: 0 30px 30px;
}

.form .form-check-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #333;
    height: 100%;
}

.form .form-control,
.form .form-select {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    box-shadow: none;
    margin-bottom: 0;
    background: #eaf0f5;
    font-size: 15px;
}

.form .form-control:focus,
.form .form-select:focus {
    border-color: var(--theme-color-2);
    box-shadow: none;
}

.banner-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgb(0 0 0 / 50%);
    gap: 10px;
    padding: 6px 15px;
    backdrop-filter: blur(3px);
    border-radius: 12px;
    color: #fff;
}

.banner-tag-area {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.banner-tag-icon {
    color: var(--theme-color-2);
    line-height: 0;
}

.banner-tag-icon.star-icon {
    color: #f6c800;
}

/* About Us Section */
section.about-us {
    background-color: #eaf0f5;
    background-image: url(../images/filler-background.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.abt-top-sec {
    position: relative;
    width: 630px;
    height: 420px;
    top: 150px;
    text-align: right;
    float: inline-end;
}

.abt-top-sec::before {
    content: "";
    width: 100%;
    height: 60%;
    background: #76b5ea;
    border-radius: 2.5rem;
    bottom: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    box-shadow: 0 0 0 clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem) #eaf0f5;
}

.abt-top-sec::after {
    content: "";
    position: absolute;
    width: 3em;
    height: 3em;
    bottom: -60px;
    right: -15px;
    color: #eaf0f5;
    box-shadow: inset currentColor 1em 1em 0 0;
    border-radius: 2.5rem;
    transform: rotate(87deg);
    z-index: 1;
}

.abt-img-sec {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
}

.abt-top-sec {
    position: absolute;
    top: 0;
    right: 0;
    height: auto;
    z-index: 2;
}

.abt-top-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #eaf0f5;
    border-radius: 30px;
    box-shadow: 0px 0px 30px #76b5ea;
    z-index: 1;
}

img.abt-img-top {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 30px;
}

img.abt-img-main {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    margin-top: 150px;
}

.clint-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    gap: 12px;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    z-index: 3;
    flex-direction: column;
}

img.abt-img-team {
    height: auto;
    margin-bottom: 5px;
}

.clint-box-text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

h2.heading {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 13px;
}

section .head-sec {
    margin-bottom: 20px;
}

h3.heading {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

h4.heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

h5.heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.abt-offer-sec {
    padding-top: 20px;
}

.abt-box {
    padding: 20px;
    margin-bottom: 10px;
}

.abt-icon img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

/* projects */

section.projects {
    background-color: #dfe7ed;
}

.projects-card {
    padding: 15px;
    background: #f9fcff;
    border-radius: 2.5rem;
    border: 1px solid #c7d5e1;
    color: #000;
    height: 100%;
}

.projects-image {
    border-radius: 2rem;
    overflow: hidden;
    width: 100%;
    height: 270px;
    background: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.projects-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

/* .projects-card:hover .projects-image img {
    scale: 1.3;
} */

.project-price {
    font-size: 22px;
    display: block;
    color: #fff;
    font-weight: 700;
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-shadow: 0 0 10px black;
}

.project-type {
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--theme-color-2);
    display: inline-block;
    padding: 3px 30px;
    border-radius: 1em;
    font-size: 14px;
    color: #fff;
}

h4.project-heading {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.projects-card:hover h4.project-heading {
    color: var(--theme-color);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.project-location i,
.p-feature i {
    line-height: 0;
    color: var(--theme-color-2);
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.project-features-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
}

span.sf-title {
    font-weight: 500;
}

.slider-item {
    margin: 10px;
}

.service-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    background: #ffffff;
    border-radius: 2.5em;
    border: 1px solid #c7d5e1;
    height: auto;
    margin-top: 20px;
    gap: 20px;
}

.service-icon-box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dfe7ed;
    border-radius: 27px;
    border: 1px solid #c7d5e1;
    overflow: hidden;
}

.service-icon-box img {
    width: 65px;
    height: auto;
    object-fit: cover;
}

.ser-card-number {
    font-size: 55px;
    font-weight: 700;
    color: rgb(223, 231, 236);
}

h5.service-card-heading {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.service-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-body {
    flex: 1;
}

.service-box:hover {
    box-shadow: 0 0 20px 0 rgb(13 38 60 / 20%);
}

.service-box:hover .ser-card-number {
    color: var(--theme-color-2);
}

.map-section {
    height: 800px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.map-section::before {
    content: "";
    position: absolute;
    background: radial-gradient(at center center, transparent 0%, #eaf0f5 70%);
    background-size: 100%;
    z-index: 1;
    pointer-events: none;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
}

section.service-section {
    background-color: #eaf0f5;
}

/* serve section */

.serve-card {
    text-align: center;
    position: relative;
    padding: 20px;
    background: #f9fcff;
    border-color: #c7d5e1;
    border-radius: 2.5em;
    transition: all 0.3s linear 0s;
    border: 1px solid #c7d5e1;
    cursor: pointer;
}

.serve-card:hover {
    scale: 1.1;
}

.serve-card:hover h4.heading {
    color: var(--theme-color);
}

.serve-image {
    border-radius: 2.5em;
    overflow: hidden;
    height: 400px;
    margin-bottom: 20px;
}

.serve-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.serve-section {
    background-color: #0c2438;
}

/* testimonials */
section.testimonial {
    background-color: #eaf0f5;
    background-image: url(../images/Testimonial-background.png);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.testimonial-card {
    position: relative;
    padding: 40px;
    background: #f9fcff;
    border-color: #c7d5e1;
    border-radius: 2.5em;
    transition: all 0.3s linear 0s;
    border: 1px solid #c7d5e1;
    cursor: pointer;
}

.testimonial-body {
    padding-top: 50px;
}

.testimonial-icon.star-icon {
    color: #f6c800;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.users-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-user-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

h5.user-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.user-position {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-transform: capitalize;
}

img.testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 2.5em;
    overflow: hidden;
    object-fit: cover;
}

.carousel-control-next {
    background: #c61412;
    width: 30px;
    height: 30px;
    bottom: 30px;
    top: auto;
    left: 90px;
    right: auto;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
}

.carousel-control-prev {
    background: #c61412;
    width: 30px;
    height: 30px;
    bottom: 30px;
    top: auto;
    left: 40px;
    right: auto;
    margin: 0 auto;
    border-radius: 50%;
    padding: 5px;
}

/* Page Style */

.contact-form {
    background: #ffffff;
    padding: 40px clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    border-radius: 2.5em;
    border: 1px solid #c7d5e1;
    box-shadow: 0 0 20px 0 rgb(13 38 60 / 20%);
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
[type="time"],
.contact-form [type="time"],
input[type="number"],
input[type="range"],
input[type="date"],
textarea,
.contact-form textarea,
input.text,
input[type="search"],
.lidd_mc_input_light input[type="text"],
.contact-form .form-control {
    border: 1px solid;
    display: block;
    margin: 0 0 20px;
    padding: 18px 30px;
    width: 100%;
    appearance: none;
    line-height: normal;
    outline: none;
    color: inherit;
    background-color: #eaf0f5;
    height: auto;
    border-radius: 18px;
    border-color: #c7d5e1;
}

[type="text"]:focus,
input:where(:not([type])):focus,
[type="email"]:focus,
[type="url"]:focus,
[type="password"]:focus,
[type="number"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[multiple]:focus,
textarea:focus,
select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: none !important;
    border-color: var(--theme-color-2) !important;
}

.contact-icon {
    width: clamp(3.75rem, 3.5rem + 1.25vw, 5rem);
    height: clamp(3.75rem, 3.5rem + 1.25vw, 5rem);
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #c7d5e1;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    display: flex;
}

.contact-icon i {
    color: var(--theme-color-2);
    font-size: 30px;
    line-height: normal;
}

.con-item {
    color: #44525e;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.contact-box {
    flex: 1;
}

.bg-color {
    background-color: #eaf0f5;
}

.contact-map-section {
    width: 100%;
    height: auto;
    border-radius: 2.5em;
    overflow: hidden;
}

label.form-label {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.custom-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.custom-search-input:focus {
    border-color: #3b82f6;
    /* blue-500 */
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.custom-search-btn {
    width: 100%;
    padding: 12px 0;
    background-color: #3b82f6;
    /* blue-500 */
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-search-btn:hover {
    background-color: #2563eb;
    /* blue-600 */
    transform: translateY(-1px);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.page-link:focus {
    z-index: 3;
    color: var(--theme-color-2);
    background-color: #e9ecef;
    outline: 0;
    box-shadow: none !important;
}

.profile-area {
    position: relative;
}

.project-profile-img {
    width: 100%;
    background: #eaf0f5;
    height: 600px;
    overflow: hidden;
    border-radius: 2.5em;
    position: relative;
}

.project-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details-area {
    background: var(--theme-color-3);
    color: #fff;
    padding: 60px;
    position: relative;
    z-index: 1;
    border-radius: 2.5em;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    transform: translateY(-8pc);
    overflow: hidden;
    border: 10px solid var(--theme-color-4);
}

.project-details-area::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/footer-pattern-img.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

.project-box-item h2.heading {
    color: #fff;
    font-size: 30px;
}

.project-details-card-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 30px;
}

.gallery-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image-item img,
.gallery-image-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.gallery-media-link:hover .gallery-image-item {
    transform: scale(1.02);
}

.gallery-title {
    font-size: 20px;
    font-weight: 700;
}

.service-icon-box i {
    font-size: 40px;
    margin: 0;
    line-height: 0;
    color: var(--theme-color-2);
}

li.show-docs {
    background: #dfe7ed;
    padding: 4px 20px;
    border-radius: 2em;
    border: 1px solid #c7d5e1;
    display: inline;
}

ul.list-unstyled {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

p.description {
    font-size: 20px;
    margin-bottom: 1.5em;
}

.call-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    line-height: 0;
    color: #fff;
    border: 0px solid #eaf0f5;
    outline: 1px solid var(--theme-color-2);
    transition: all 0.5s;
}

.call-head {
    font-size: 20px;
    font-weight: 700;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-box:hover .call-icon {
    background-color: var(--theme-color-3);
    border: 5px solid #eaf0f5;
    outline: 1px solid var(--theme-color-3);
}

.abt-img-sec-2 img {
    width: 300px;
    height: 400px;
    flex: 1;
    object-fit: cover;
    border-radius: 2.5em;
    transition: all 0.3s ease-in-out;
    position: relative;
}

@keyframes flashEffect {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.6);
    }

    100% {
        filter: brightness(1);
    }
}

.abt-img-sec-2 img:hover {
    animation: flashEffect 0.6s ease-in-out;
    cursor: pointer;
}

.abt-img-sec-2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.heading-secs i {
    font-size: 40px;
    padding-bottom: 20px;
    display: block;
    line-height: 40px;
}

ul.style-list li {
    font-size: 18px;
    margin-top: 20px;
}

.heading-secs {
    display: flex;
    align-items: center;
}

.privacy-policy-section ul.list-unstyled {
    display: block;
}

.policy-contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-contact-info .icon {
    font-size: 1.1rem;
    color: var(--theme-color-2);
    min-width: 20px;
}

.policy-contact-info a {
    color: #007bff;
    text-decoration: none;
}

.policy-contact-info a:hover {
    text-decoration: underline;
}

.privacy-policy-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0e3c5e;
    text-align: center;
}

.privacy-policy-section h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0e3c5e;
    font-weight: 600;
}

.privacy-policy-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-policy-section a {
    color: #0e6efd;
    text-decoration: none;
}

.privacy-policy-section a:hover {
    text-decoration: underline;
}

.privacy-policy-section .mb-4 {
    margin-bottom: 2rem;
}

.policy-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.policy-contact-info .icon {
    font-size: 1.1rem;
    color: var(--theme-color-2);
    min-width: 20px;
}

.privacy-policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.privacy-policy-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-policy-section ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .privacy-policy-section {
        padding: 40px 15px;
    }

    .privacy-policy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-section h4 {
        font-size: 1.125rem;
    }
}

.border-card {
    background: #ffffff;
    padding: 40px clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    border-radius: 2.5em;
    border: 1px solid #c7d5e1;
    box-shadow: 0 0 20px 0 rgb(13 38 60 / 20%);
}

.view-all-project-card {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/coonoor.jpg);
    border-radius: 2em;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.view-all-project-card::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color-3);
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    opacity: 0.7;
}

img.footer-logo {
    background: #fff;
    padding: 2px;
}

.page-side-bar {
    padding: 15px;
    background: #f9fcff;
    border-radius: 2.5rem;
    border: 1px solid #c7d5e1;
    color: #000;
}

.sidebar-head {
    padding: 10px 10px 0px 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

h4.sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-body label.form-label {
    font-size: 16px;
    font-weight: 400;
}

.projects-card.property-card {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.property-card .projects-image {
    width: 350px;
    height: 350px;
    margin-bottom: 0;
}

.property-card h4.project-heading {
    font-size: 28px;
}

.property-card .project-type {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 1em;
}

input.form-range {
    background: none;
    border: none;
    padding: 0px;
    width: 100%;
}

.property-card .project-price {
    position: relative;
    top: 0;
    left: 0;
    text-shadow: none;
    color: #a82322;
    padding-left: 10px;
}

.projects-body .btn-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects-image .carousel-inner .carousel-item {
    height: 350px;
}

.property-card .projects-image button.carousel-control-next {
    left: auto;
    right: 10px;
    top: 50%;
}

.property-card .projects-image button.carousel-control-prev {
    right: auto;
    left: 10px;
    top: 50%;
}

.position-sticky {
    position: sticky;
    top: 4px;
}

.rc-project-img {
    width: 120px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.rc-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-projects-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e6ec;
    padding-bottom: 10px;
}

h4.property-name {
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 20px;
}

.property-code {
    color: var(--theme-color);
}

.min-height-are {
    min-height: 250px;
}