* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: var(--second-font);
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Lora";
    font-display: swap;
    src: url("../fonts/Lora/Lora-Regular.ttf");
}

@font-face {
    font-family: "Rubik";
    font-display: swap;
    src: url("../fonts/Rubik/Rubik-Regular.ttf");
}

body {}

:root {
    --primary-theme: #f1ead7;
    --secondary-theme: #bc6332;
    --text-white: #fff;
    --text-black: #000;
    --first-font: "Lora";
    --second-font: "Rubik";
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

body {
    background-color: var(--text-white);
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

@media (max-width: 768px) {
    .hidemob {
        display: none;
    }

    .visible-xs {
        display: block !important;
    }
}

.dontdisplaylg {
    display: none;
}

.button {
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    color: var(--text-white);
    font-size: 18px;
    line-height: 24px;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    border: none;
    animation: 3.2s infinite mobile;
}

.button:hover {
    background: #000 !important;
    color: #fff;
}

p {
    color: #3c3c3c;
}

strong {
    color: #000000b8;
}

.header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
    transition: all 0.3s ease;
    /* Smooth transition */
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 21%);
}

/* Header when scrolled */

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 111;
}

/* Menu Button */

.menu-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-black);
    transition: color 0.3s ease;
}

/* Menu button when scrolled */

.menu-btn.scrolled {
    color: #333;
}

/* Hamburger Lines */

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-black);
    transition: background-color 0.3s ease;
}

/* Hamburger lines when scrolled */

.hamburger.scrolled div {
    background-color: #333;
}

/* Logo */

.logo img {
    width: 90px;
    /* max-width: 120px; */
    transition: all 0.3s ease;
    padding: 10px 0;
    /* filter: invert(1) brightness(9.5); */
}

.header.scrolled .logo img {
    filter: none;
}

.phone-email {
    animation: 3.2s infinite mobile;
    /* background: #000000a3;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #fff; */
}

.phone-email .button {
    background: #bc6332;
    /* border-color: #bc6332; */
    font-size: 16px;
}

.phone-email .button:hover {
    background: #000 !important;
    color: #fff;
}

.phone-email img {
    height: 34px;
}

.phone-email h4 a {
    color: rgb(251 234 9);
    margin-left: 5px;
    font-size: 16px;
    font-weight: 600;
}

.phone-email h4 a i {
    filter: invert(0);
}

.phone-email.scrolled h4 a {
    color: #333;
}

.phone-email.scrolled {
    background: transparent;
    border: none;
}

.phone-email.scrolled img {
    filter: brightness(0);
}

/* Sidebar Menu */

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #f5f5f5;
    transition: left 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    left: 0;
}

.sidebar .sidebar_logo {
    max-width: 170px;
    position: relative;
    top: 17px;
}

/* Menu Items */

.menu-items {
    list-style: none;
    padding-top: 45px;
    height: 100%;
}

.menu-items li {
    border-bottom: 1px solid #0000006e;
}

.menu-items a {
    display: block;
    color: #000;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 18px;
}

.menu-items a:hover {
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    color: var(--primary-theme) !important;
}

/* .nav-link:focus, .nav-link:hover {
    color: var(--text-white);
} */

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn.scrolled {
    color: #000;
}

.hamburger.scrolled div {
    background-color: #000;
}

.nav-link.scrolled {
    color: #000 !important;
}

/* Overlay */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 150;
}

.overlay.show {
    display: block;
}

/* Close Button */

.close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Main Content */

.main-content {
    margin-top: 80px;
    padding: 40px 20px;
    transition: margin-left 0.4s ease;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-title {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* Close button for mobile */

.close-btn {
    position: absolute;
    top: -5px;
    right: 15px;
    background: none;
    border: none;
    color: #000;
    font-size: 42px;
    cursor: pointer;
    /* padding: 5px; */
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-item img {
    /* height: 100vh; */
    width: 100%;
    margin-top: 90px;
}

.slider_section {
    position: relative;
}

/* .slider_section::after {
    content: "";
    position: absolute;
    width: 100%;
    z-index: 8;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    opacity: 1;
    width: 60%;
    background: linear-gradient(to right, rgb(0 0 0 / 95%), rgba(0, 0, 0, 0));
} */

.project_box {
    position: absolute;
    bottom: 12%;
    left: 2%;
    z-index: 99;
}

.project_box .pro_logo {
    max-width: 300px;
    margin-bottom: 12px;
    filter: invert(1);
}

.invest_in {
    display: none;
}

.project_box h1 {
    font-family: var(--first-font);
    font-size: 58px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.project_box p {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.project_box p img {
    filter: invert(1);
    margin-right: 5px;
    margin-top: -5px;
}

© .project_box h4 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.tagline {
    background: linear-gradient(90deg, #fb3d3c, #d4af37, #f8944f);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    line-height: 38px;
    animation: shine 7s linear infinite;
    margin: 25px 0;
    padding: 10px 0px;
}

/* Shine animation */
@keyframes shine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.tagline {
    font-family: 'Poppins', sans-serif;
}

/* .project_box h3 {
    background: #b7b7b72e;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 10px;
    line-height: 35px;
    border-radius: 10px;
} */

.project_box h3 span {
    font-size: 28px;
    color: var(--text-white);
}

.project_box ul {
    padding: 0;
    margin: 0;
    align-items: center;
}

.project_box ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-white);
    /* max-width: 350px; */
    /* width: 270px; */
}

.project_box ul li img {
    max-width: 24px;
    margin-right: 5px;
}

.project_box ul li span {
    display: block;
    font-size: 24px;
    font-weight: 600;
}

/* .form_section {
  background: #212842bd;
  padding: 24px;
  border-radius: 20px;
  position: absolute;
  bottom: 20%;
  right: 15%;
  z-index: 99;
  max-width: 450px;
  width: 350px;
} */

.carousel-indicators [data-bs-target] {
    height: 5px;
}

.form_section h6 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-white);
}

.form_section input {
    width: 100%;
    padding: 9px;
    border: none;
    border-radius: 8px;
    /* border-bottom: 1px solid var(--text-white); */
    background: transparent;
    border-radius: 10px;
    /* color: #ffffff73; */
    border: 1px solid #ffffff8f;
}

.form_section input::placeholder {
    color: #f5f5f5dc !important;
    font-size: 15px;
}

.form_section .lg_btn {
    background: rgb(255, 255, 255);
    color: #fff;
}

.form-toggle-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    /* background: var(--secondary-theme); */
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    color: var(--text-white);
    padding: 12px 7px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    writing-mode: vertical-lr;
    letter-spacing: 1px;
    /* border: 1px solid var(--secondary-theme); */
}

.form-toggle-btn:hover {
    background: #000 !important;
    color: #fff;
}

/* .nav-item .nav-link {
    text-align: center;
} */

/* Form Styling */

.slide-form {
    position: fixed;
    right: -400px;
    /* hidden by default */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    /* background: #212842bd; */
    background: #272525;
    padding: 35px 30px;
    border-radius: 10px 0 0 10px;
    max-width: 350px;
    width: 100%;
    transition: right 0.4s ease;
}

/* Active state to show the form */

.slide-form.active {
    right: 0;
}

.form-close-btn {
    position: absolute;
    top: -5px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 34px;
    cursor: pointer;
}

.carousel-indicators {
    z-index: 999;
}

.overview_section {
    padding: 90px 0 100px;
}

.about-btn-desktop {
    margin-top: 2rem;
}

.about-btn-mobile {
    margin-top: 2.5rem;
    text-align: center;
}

h1.section_title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 10px;
}

.overview_section h2.section_title {
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.section_title {
    font-family: var(--first-font);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
    /* text-transform: uppercase; */
    color: #8f3310;
}

.subheading {
    font-family: var(--second-font);
    font-size: 16px;
    margin-bottom: 55px;
    text-align: center;
    text-transform: capitalize;
    color: #3c3c3c;
    /* letter-spacing: 1px; */
    text-align: left;
    line-height: 1.8;
    word-spacing: 1px;
}

.overview_section .para {
    font-size: 16px;
    margin-bottom: 17px;
    /* margin-top: 20px; */
    /* text-align: justify; */
    /* text-align-last: center; */
    line-height: 1.8;
    word-spacing: 2px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2rem;
    place-items: center;
}

.overview-item {
    text-align: center;
    padding: 1.25rem;
}

.icon {
    font-size: 3rem;
    color: var(--text-gray);
    margin-block-end: 1rem;
}

.icon img {
    width: 50px;
    height: 50px;
}

.label {
    color: var(--text-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-block-end: 0.5rem;
}

.value {
    color: #333;
    font-weight: 500;
    font-size: 1.125rem;
}

/* overview section css ends here */

/* highlight section css starts here */

.highlight_section {
    padding: 70px 0;
    position: relative;
    background: url("../img/Gallery-Swimming-Pool-F-Signature-Punawale.webp");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* filter: blur(3px); */
    z-index: 1;
    overflow-x: hidden !important;
}

.highlight_section .container {
    position: relative;
    z-index: 2;
}

.highlight_section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    z-index: 1;
    pointer-events: none;
    /* IMPORTANT */
}

/* .features-container{
  margin: 25px 0 0; 
} */

.highlight_section .section_title {
    position: relative;
    z-index: 999;
    color: var(--text-white);
    margin-bottom: 50px;
}

.highlight_section .subheading {
    position: relative;
    z-index: 999;
    color: var(--text-white);
    margin-bottom: 30px;
}

.highlight_image {
    height: 100%;
    object-fit: cover;
}

.highlights-btn-desktop {
    text-align: center;
    margin-top: 2.5rem;
}

#highlights-btn-desktop {
    /* background-color: #ee3425; */
    color: var(--text-white);
    font-size: 18px;
    line-height: 24px;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    border: none;
}

#highlights-btn-desktop:hover {
    background: #fff !important;
    color: #000;
}

.highlights-btn-mobile {
    text-align: center;
    margin-top: 2rem;
}

#highlights-btn-mobile {
    /* background-color: #ee3425; */
    color: var(--text-white);
    font-size: 18px;
    line-height: 24px;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    border: none;
}

#highlights-btn-mobile:hover {
    background: #fff !important;
    color: #000;
}

.feature-card-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 15px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    /* min-height: 150px; */
}

.feature-card {
    display: flex;
    align-items: center;
    /* vertically center */
    gap: 12px;
    /* space between number and text */
    min-height: 80px;
}

.feature-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Corner Border Decorations */

.feature-card-wrapper::before,
.feature-card-wrapper::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--secondary-theme);
    z-index: 1;
}

/* Top-left corner */

.feature-card-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 15px;
}

/* Bottom-right corner */

.feature-card-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 15px;
}

/* remove bottom margin since it's now inline */
.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-theme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    /* IMPORTANT */
    flex-shrink: 0;
    /* prevent shrinking */
}

.feature-icon span {
    color: var(--secondary-theme);
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 7px;
}

/* make sure text stays in one line */
.feature-description {
    margin-bottom: 0;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    /* optional (for long text) */
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

/* highlight section css ends here */

/* price list section css starts here */

.price_list_section {
    padding: 60px 0 65px;
    overflow-x: hidden !important;
}


.price_list_section .calling {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.price_box {
    background: var(--text-white);
    padding: 35px 15px 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 10px;
}

.price_box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.price_box h5 {
    font-size: 20px;
    margin-bottom: 13px;
    margin-top: 15px;
    color: var(--secondary-theme);
}

.price_box h6 {
    /* text-align: end; */
    font-size: 24px;
    margin-bottom: 12px;
    font-family: auto;
}

.price_box p {
    font-size: 22px;
    margin-bottom: 15px;
}

.price_box p span {
    font-size: 30px;
    color: #000;
}

.price_box .button {
    font-size: 18px;
    line-height: 21px;
    padding: 10px 25px;
    margin-top: 7px;
}

/* price list section css ends here */

/* amenities section starts here */

.amenities_section {
    padding: 60px 0 70px;
    background: #dddddd69;
    overflow: hidden;
}

.amenities_section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Desktop View */
@media (min-width: 992px) {
    .amenities_section .d_view ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* col-4 = 3 items */
        gap: 20px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .amenities_section .d_view .amenity-box {
        text-align: center;
        padding: 20px;
        /* border: 1px solid #eee; */
        border-radius: 10px;
        transition: 0.3s;
    }
}

.amenities_section .amenity_list {
    display: flex;
    flex-direction: column;
}

.amenities_section ul .amenity-box {
    /* background: #f9f9f9; */
    /* background: var(--secondary-theme); */
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin: 10px;
    /* min-width: 190px; */
    min-width: 180px;
    position: relative;
    overflow: hidden;
    border: 1px solid #000;
}

/* Default active style */
.amenities_section ul .amenity-box.active {
    background-image: linear-gradient(85deg, #c8703b, #8f3310);
}

.amenity-box.active span {
    color: #fff !important;
}

.amenity-box.active img {
    filter: brightness(0) invert(1);
}

/* When hovering ANY item → remove active highlight */
/* ===============================
   BASE
================================= */
/* .amenity-box {
    transition: all 0.3s ease;
} */

/* ===============================
   ACTIVE DEFAULT
================================= */
.amenities_section ul .amenity-box.active {
    background-image: linear-gradient(85deg, #c8703b, #8f3310);
}

.amenity-box.active span {
    color: #fff;
}

.amenity-box.active img {
    filter: brightness(0) invert(1);
}

/* ===============================
   REMOVE ACTIVE ONLY WHEN OTHER ITEMS ARE HOVERED
================================= */
.amenities_section ul:hover .amenity-box.active:not(:hover) {
    background: transparent !important;
}

.amenities_section ul:hover .amenity-box.active:not(:hover) span {
    color: #000 !important;
}

.amenities_section ul:hover .amenity-box.active:not(:hover) img {
    filter: none !important;
}

/* ===============================
   HOVER FOR ALL ITEMS
================================= */
.amenity-box:hover {
    background-image: linear-gradient(85deg, #c8703b, #8f3310);
    /* transform: translateY(-5px); */
}

.amenity-box:hover span {
    color: #fff;
}

.amenity-box:hover img {
    filter: brightness(0) invert(1);
}

/* ===============================
   OPTIONAL: SPECIAL ACTIVE HOVER
================================= */
.amenity-box.active:hover {
    background-image: linear-gradient(85deg, #8f3310, #c8703b);
}

/* .amenities_section ul .amenity-box:hover{
    filter: invert(1);
} */

/* .amenities_section ul .amenity-box:hover svg {
    fill: #bc6332;
} */

.amenities_section ul .amenity-box {
    transition: all 0.3s ease;
}

.amenities_section ul .amenity-box img {
    transition: all 0.3s ease;
    width: 50px;
}

.amenities_section ul .amenity-box:hover img {
    /* filter: brightness(0) saturate(100%) invert(28%) sepia(78%) saturate(2470%) hue-rotate(340deg) brightness(93%) contrast(94%); */
    /* color: #fff; */
    filter: invert(1);
}

.amenities_section ul .amenity-box.ameinity_width {
    width: 100%;
}

.amenities_section ul .amenity-box {
    transition: all 0.3s ease;
}

.amenities_section ul .amenity-box span {
    color: #000;
    transition: all 0.3s ease;
}

/* Hover effect */
.amenities_section ul .amenity-box:hover {
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    border: 1px solid #bc6332;
}

.amenities_section ul .amenity-box:hover span {
    /* filter: brightness(0) saturate(100%) invert(28%) sepia(78%) saturate(2470%) hue-rotate(340deg) brightness(93%) contrast(94%); */
    color: #fff;
}

/* .amenities_section ul .amenity-box img:hover {
    filter: invert(1);
} */

.amenities-btn-desktop {
    text-align: center;
    margin-top: 3.5rem;
}

.amenities-btn-mobile {
    text-align: center;
    margin-top: 3rem;
}

.amenities_section .subheading {
    margin-bottom: 40px;
}

.amenity-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000c0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.amenity-box:hover .overlay {
    opacity: 1;
}

.col-4.align-self-center.pe-0.d_view .amenity_list .amenity-box:first-child .overlay {
    opacity: 1;
    pointer-events: none;
}

.amenities_section ul .amenity-box .overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: unset;
}

.amenities_section ul .amenity-box span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-top: 10px;
    color: var(--text-black);
}

.amenity-box .overlay span {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

/* amenities section css ends here */

/* floor plan section css starts here */

.floor_section {
    padding: 60px 0 80px;
}

.floor_section .subheading {
    margin-bottom: 30px;
}

.floor_section .nav.nav-tabs {
    justify-content: center;
    border-bottom: 0px;
    gap: 20px;
    margin-top: 20px;
}

.floor_section .nav-tabs .nav-link {
    background-image: linear-gradient(85deg, #3a3939, #110d0d) !important;
    border-radius: 4px;
    width: 220px;
    color: #fff !important;
    padding: 10px 40px !important;
    border: none !important;
    font-family: auto;
}

.floor_section .nav-tabs .nav-link.active {
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    border: none;
    color: rgb(255, 255, 255) !important;
}

.floor_section .tab-content {
    margin-top: 60px;
}

.floor_section .tab-content h5 {
    font-size: 20px;
    margin-bottom: 0px;
    text-align: center;
    background-image: linear-gradient(85deg, #3a3939, #110d0d) !important;
    padding: 14px 0px;
    color: var(--text-white);
    border-radius: 4px;
    font-family: auto;
}

.floor_section .floor_image {
    background: var(--text-white);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 4px 4px 10px 4px rgb(0 0 0 / 13%);
}

.floor_section .floor_image img {
    width: 100%;
    height: 230px;
}

.floor_section .floor_image span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    cursor: pointer;
    background: var(--secondary-theme);
    padding: 10px 20px;
    color: var(--text-white);
    border-radius: 10px;
    font-size: 16px;
}

/* CARD WITH IMAGE */
.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* IMAGE */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
}

/* DARK OVERLAY */
.image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
}

/* CONTENT */
.overlay_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

/* TITLE */
.overlay_content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

/* LABEL */
.overlay_content .label {
    color: #ffb27a;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 500;
}

/* AREA */
.overlay_content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.overlay_content h2 span {
    font-size: 20px;
    font-weight: 400;
}

/* BUTTON */
.unlock_btn {
    background: linear-gradient(85deg, #c8703b, #8f3310);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    animation: 3.2s infinite mobile;
}

.unlock_btn:hover {
    background: linear-gradient(85deg, #8f3310, #c8703b);
}

/* HOVER EFFECT */
.image-card:hover img {
    filter: blur(2px);
    transform: scale(1.15);
}

/* floor section css ends here */

/* location advantage section css starts here */

.location_section {
    padding: 60px 0 70px;
    background: #dddddd69;
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
}

.location_section .subheading {
    margin-bottom: -10px;
}

.location-btn-desktop {
    text-align: center;
    margin-top: 2rem;
}

.location-btn-mobile {
    text-align: center;
    margin-top: 2rem;
}

.location-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
}

.central-logo {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    /* background: linear-gradient(45deg, #ff6b35, #f7931e); */
    /* border-radius: 50%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* color: white; */
    /* font-weight: bold; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.central-logo .brand-name {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.central-logo .sub-text {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.location-point {
    position: absolute;
    /* background: white; */
    /* padding: 12px 20px; */
    padding: 12px 0px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 5;
}

.location-point img {
    max-width: 16px;
    margin-right: 3px;
}

.location-point.left {
    text-align: right;
}

.location-point.right {
    text-align: left;
}

.location-name {
    display: block;
    margin-bottom: 2px;
}

.location-time {
    font-size: 16px;
    font-weight: bold;
}

.connecting-line {
    position: absolute;
    border-top: 2px dotted #666;
    z-index: 1;
}

.vertical-line {
    position: absolute;
    border-left: 2px dotted #666;
    z-index: 1;
}

/* Left side locations */

.location-1 {
    top: 60px;
    left: 132px;
}

.location-2 {
    top: 180px;
    left: 120px;
}

.location-3 {
    top: 320px;
    left: 132px;
}

.location-4 {
    top: 450px;
    left: 85px;
}

/* Right side locations */

.location-5 {
    top: 65px;
    right: 145px;
}

.location-6 {
    top: 185px;
    right: 110px;
}

.location-7 {
    top: 329px;
    right: 90px;
}

.location-8 {
    top: 454px;
    right: 91px;
}

/* Connecting lines */

.line-1 {
    top: 92px;
    left: 280px;
    width: 238px;
}

.line-2 {
    top: 220px;
    left: 280px;
    width: 200px;
}

.line-3 {
    top: 362px;
    left: 280px;
    width: 210px;
}

.line-4 {
    top: 492px;
    left: 280px;
    width: 190px;
}

.line-5 {
    top: 92px;
    left: 702px;
    width: 210px;
}

.line-6 {
    top: 220px;
    left: 700px;
    width: 210px;
}

.line-7 {
    top: 362px;
    left: 703px;
    width: 210px;
}

.line-8 {
    top: 492px;
    left: 710px;
    width: 210px;
}

/* Vertical connecting lines */

.v-line-left {
    left: 500px;
    top: 92px;
    height: 400px;
}

.v-line-right {
    right: 500px;
    top: 92px;
    height: 400px;
}

/* loaction section css ends here */

/* decision corner css starts here */

.decision_corner {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.decision_corner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/Gallery-Comercial-&-Shops-F-Signature-Punawale.webp") center center / cover no-repeat;
    filter: blur(1px);
    z-index: 1;
    /* transform: scale(1.1); */
}

/* Content layer */

.decision_corner>.container {
    position: relative;
    z-index: 2;
}

/* Optional: Add overlay to increase text contrast */

.decision_corner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 65%), rgb(0 0 0 / 62%));
    z-index: 1;
}

.decision_corner .section_title {
    color: var(--text-white);
}

.decision_corner .subheading {
    color: var(--text-white);
}

.decision_corner .flex_div .boxes .button {
    padding: 10px 30px;
}

.decision_corner .flex_div .boxes .button:hover {
    background: #fff !important;
    color: #000;
}

.flex_div {
    display: flex;
    justify-content: center;
}

.boxes {
    /* padding: 15px; */
    text-align: center;
}

/* .boxes:first-child {
  border-right: 1px solid var(--text-white);
} */

.title {
    font-size: 17px;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
    color: var(--text-white);
}

/* gallery section css starts here */

.gallery_section {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.gallery_section .section_title {
    margin-bottom: 40px;
}

.center-slider .gallery-card {
    border-radius: 10px;
    overflow: hidden;
}

/* IMAGE WRAPPER */
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* OVERLAY */
.img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

/* PLUS ICON */
.img-wrapper .overlay span {
    font-size: 40px;
    color: #fff;
    transform: scale(0.7);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.img-wrapper:hover img {
    transform: scale(1.1);
}

.img-wrapper:hover .overlay {
    opacity: 1;
}

.img-wrapper:hover .overlay span {
    transform: scale(1);
}

/* SLIDER GAP */
.center-slider .slick-slide {
    margin: 0 10px;
}

/* ARROWS */
.slide-arrow6 {
    position: absolute;
    bottom: -50px;
    z-index: 10;
    background: var(--secondary-theme);
    border-radius: 50%;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.slide-arrow6.prev-arrow6 {
    right: 70px;
    display: none;
}

.slide-arrow6.next-arrow6 {
    right: 10px;
    display: none;
}

.slide-arrow6:hover {
    background: #000a2b;
}

/* gallery section css ends here */

/* about builder section css starts here */

.about_builder {
    padding: 80px 0px;
    /* background: var(--primary-theme); */
    background-image: url("../img/about_builder.webp");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* filter: blur(3px); */
    z-index: 1;
    overflow-x: hidden !important;
    position: relative;
}

.about_builder::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000bf;
    z-index: -1;
}

.about_builder h5 {
    font-size: 34px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--text-white);
    text-align: left;
}

.about_builder p {
    font-size: 16px;
    margin-bottom: 0px;
    /* text-align: justify; */
    color: #ddddddd4;
    line-height: 2;
}

.about_builder strong {
    color: #f5f5f5eb;
}

.about_builder .footer_form {
    background: #fffffff5;
    padding: 30px 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    max-width: 450px;
    border-radius: 10px;
    margin-left: auto;
}

.about_builder .footer_form h6 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.about_builder .footer_form input {
    width: 100%;
    padding: 9px 10px;
    border: none;
    border-radius: 10px;
    /* border-bottom: 1px solid var(--secondary-theme); */
    border: 1px solid #1f1b1b6e;
    background: transparent
}

/* about builder section css ends here */

/* footer section css starts here */

footer {
    background: #282828;
    /* background: #fffcf1; */
    padding: 35px 0px 35px;
}

footer .disclaimer p {
    color: #ffffffbf;
    font-size: 10px;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 1rem;
}

footer .disclaimer .moreless-button {
    color: var(--text-black);
    font-size: 13px;
}

footer .rera_details p {
    color: #ffffffbf;
    font-size: 16px;
    margin: 10px 0px;
    font-weight: 500;
}

footer .rera_details p a {
    color: #ffffffbf;
    font-size: 14px;
    margin: 10px 0px;
}

footer .rera_details a {
    color: var(--text-black);
}

footer .rera_details a:hover {
    text-decoration: underline !important;
}

/* modal css starts here */

/* .modal .modal-header {
    border-bottom: 1px solid var(--secondary-theme);
} */

.modal .btn-close {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
}

.modal input::placeholder {
    color: #747272 !important;
    opacity: 1;
    /* some browsers me light na ho isliye */
}

.modal .modal-header h6 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}

.modal input {
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    border: none;
    border: 1px solid #1f1b1b6e;
    border-radius: 10px;
    /* border-bottom: 1px solid var(--secondary-theme); */
    height: 43px;
}

.modal .form-control:focus {
    color: #212529;
    background-color: var(--text-white);
    border-color: var(--secondary-theme);
    outline: 0;
    box-shadow: none;
}

.modal input::placeholder {
    color: #000;
}

.modal .inp-box {
    margin-bottom: 12px;
}

/* footer section css ends here */

.fixedIcons {
    position: fixed;
    z-index: 99;
    bottom: 40px;
    padding: 5px;
    background: #fffcf1;
    border-radius: 50%;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #29a71a;
}

.fixedIcons {
    &.whatsapp {
        right: 15px;
    }
}

.fixedIcons {
    &.phone {
        left: 15px;
        background: var(--text-white);
    }
}

.fixedIcons {
    img {
        width: 40px;
        padding: 5px;
    }
}

.mobile-section-footer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
    color: var(--primary-theme);
    padding: 1px 0;
}

.typ-bg {
    display: none;
}

.d_view {
    display: block;
}

.m_view {
    display: none;
}

.project_box .all_inc {
    font-size: 16px;
}

.price_list_section .subheading_inclu {
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 1480px) {
    .form_section {
        /* bottom: 6%; */
        /* right: 0%; */
    }

    .project_box {
        bottom: 20%;
        left: 4%;
    }

    .project_box h1 {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .value {
        font-size: 20px;
    }
}

@media (max-width: 1366px) {
    .slick-slide img {
        max-width: 350px;
    }

    .next-arrow6 {
        right: 2%;
    }

    .line-5 {
        left: 617px;
    }

    .line-6 {
        left: 614px;
    }

    .line-7 {
        left: 613px;
    }

    .line-8 {
        left: 610px;
    }

    .fixedIcons {
        &.phone {
            left: 15px;
        }
    }

    .fixedIcons {
        img {
            width: 40px;
        }
    }

    .amenities_section ul .amenity-box {
        padding: 25px;
        margin: 10px 5px;
        min-width: 160px;
    }
}

@media (max-width: 767px) {
    .d_view {
        display: none;
    }

    .m_view {
        display: block;
    }

    .invest_in {
        display: block;
        font-size: 25px;
        color: var(--text-black);
        margin-bottom: 6px;
        font-family: var(--first-font);
        font-weight: 700;
    }

    .carousel-indicators {
        z-index: 9;
    }

    .menu-items {
        padding-top: 25px;
    }

    .logo img {
        width: 65px;
        padding: 7px 0;
        /* width: 100%; */
        /* filter: invert(14) brightness(8.5); */
    }

    .header .menu-btn span {
        display: none;
    }

    .navbar-brand {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-right: 0px;
    }

    .nav-item .nav-link {
        margin-bottom: 0px;
        text-align: left;
    }

    .phone-email {
        display: none !important;
    }

    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 0.55);
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .carousel-inner img {
        min-height: 305px;
    }

    .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
        min-height: 305px;
        margin-top: 63px;
    }

    .slider_section .project_box {
        position: unset;
        padding: 25px 0px;
        background: #dddddd7a;
        text-align: center;
    }

    .carousel-indicators {
        bottom: 73%;
    }

    .slider_section .form_section {
        position: unset;
        width: 100%;
        border-radius: 0;
        transform: unset;
        max-width: 100%;
        display: none;
    }

    .slider_section::after {
        background: none;
        width: unset;
        position: unset;
    }

    .project_box h1 {
        font-size: 28px;
        margin-bottom: 13px;
        color: var(--text-black);
    }

    .project_box p {
        margin-bottom: 8px;
        color: var(--text-black);
        font-size: 16px;
        margin-bottom: 21px;
    }

    .project_box h3 {
        /* color: var(--text-black); */
        font-size: 22px;
        line-height: 1.3;
        padding: 0px 20px;
        /* text-align: left;*/
    }

    .project_box h3 span {
        color: var(--text-black);
    }

    .project_box p img {
        filter: unset;
        width: 15px;
        margin-top: -5px;
    }

    .project_box ul li {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 10px;
        color: var(--text-black);
        text-align: left;
        margin-left: 55px;
        display: flex;
        align-items: center;
        /* justify-content: center; */
    }

    .project_box ul li img {
        width: 18px;
        filter: invert();
        /* display: none; */
    }

    .feature-description {
        color: #2c3e50;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
        margin-bottom: 0;
    }

    /* .point-1 {
        margin-top: -11px;
    } */

    .form-close-btn {
        display: none;
    }

    .form-toggle-btn {
        display: none;
    }

    h1.section_title {
        font-size: 30px;
        margin-bottom: 9px;
    }

    .overview_section h2.section_title {
        margin-bottom: 20px;
    }

    /* h2.faq {
        font-size: 24px;
        margin-bottom: -30px;
        margin-top: -20px;
    } */

    h2.section_title {
        font-size: 26px;
    }

    .decision_corner .section_title {
        font-size: 22px;
        line-height: 1.7;
    }

    .subheading {
        font-size: 16px;
        /* margin-bottom: 16px; */
    }

    .overview_section {
        padding: 45px 0 55px;
    }

    .overview-grid {
        grid-template-columns: unset;
        gap: 0rem;
        place-items: unset;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .overview-item {
        text-align: center;
        padding: 8px 4px;
        width: 50%;
    }

    .floor_section .tab-content {
        margin-top: 50px;
    }

    .v-line-left {
        display: none;
    }

    .v-line-right {
        display: none;
    }


    /* .overview-item:nth-child(4),
  .overview-item:nth-child(5) {
    width: 50%;
  } */
    .label {
        color: var(--text-black);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0;
        margin-block-end: 0.5rem;
    }

    .highlight_section {
        padding: 55px 0 65px;
    }

    .feature-card {
        padding: 15px 25px;
        min-height: 75px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        /* margin-bottom: 12px; */
    }

    .feature-icon span {
        font-size: 18px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .price_box {
        margin-bottom: 20px;
        max-width: 350px;
        margin: 0 auto 20px;
    }

    .price_list_section {
        padding: 50px 0 30px;
    }

    .price_list_section .subheading {
        margin-bottom: 30px;
    }

    .amenities_section .subheading {
        margin-bottom: 40px;
    }

    .price_list {
        margin-top: 10px;
    }

    .price_list_section .row .col-md-4.col-12 {
        margin-bottom: 20px;
    }

    .amenities_section {
        padding: 50px 0 60px;
    }

    .amenities_section ul {
        min-height: 330px;
        overflow-y: scroll;
        height: 330px;
    }

    .amenities_section ul .amenity-box {
        padding: 13px;
        margin: 7px;
        min-width: unset;
        width: 150px;
        z-index: 9;
    }

    .amenities_section ul .amenity-box img {
        max-width: 40px;
    }

    .amenities_section ul .amenity-box .overlay img {
        max-width: 100%;
    }

    .amenities_section ul .amenity-box span {
        font-size: 16px;
    }

    .col-12.m_view ul .amenity-box:first-child .overlay {
        /* opacity: 1; */
        pointer-events: none;
    }

    .amenities_section ul .amenity-box .overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        filter: unset;
    }

    .amenities_section ul .amenity-box span {
        display: block;
        font-size: 17px;
        font-weight: 500;
        padding-top: 10px;
        color: var(--text-black);
    }

    .amenity-box .overlay span {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        z-index: 2;
        padding: 5px 10px;
        border-radius: 6px;
        text-align: center;
        white-space: nowrap;
    }

    .floor_section {
        padding: 60px 0 70px;
    }

    .floor_section .nav.nav-tabs {
        margin-top: 10px;
        gap: 15px;
        margin-bottom: -2rem;
    }

    .floor_section .nav-tabs .nav-link {
        width: 140px;
        padding: 10px 10px !important;
        text-align: center;
    }

    .floor_section .floor_image {
        margin-bottom: 25px;
    }

    .floor_section .floor_image span {
        padding: 7px 15px;
    }

    .floor_section .floor_image img {
        height: 200px;
    }

    .floor_section .tab-content h5 {
        padding: 8px 0px;
    }

    .decision_corner {
        padding: 50px 0;
    }

    .decision_corner .subheading {
        font-size: 13px;
    }

    .title {
        font-size: 12px;
    }

    .gallery_section {
        padding: 45px 0 55px;
    }

    .location_section .subheading {
        margin-bottom: 40px;
    }

    .slide-arrow6.next-arrow6 {
        right: 36%;
    }

    .slide-arrow6.prev-arrow6 {
        right: 51%;
    }

    .slick-slide img {
        /* max-width: 350px; */
    }

    .about_builder {
        padding: 50px 0px 70px;
    }

    .about_builder h5 {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .about_builder .footer_form {
        margin-top: 30px;
    }

    .about_builder p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .form_section.slide-form .button {
        padding: 10px 40px;
    }

    footer {
        padding: 40px 0px 50px;
    }

    .footer_form .button {
        padding: 10px 40px;
    }

    .price_list {
        background: transparent;
        border-radius: 0;
    }

    .location_section {
        padding: 50px 0 65px;
    }

    .location-container {
        height: auto;
    }

    .central-logo {
        position: unset;
        transform: unset;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .central-logo img {
        border-radius: 0 !important;
    }

    .location-point {
        position: unset;
        text-align: left;
        z-index: 999;
        padding: 0px 0px 10px;
    }

    .location-point.left {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .location-point.right {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }

    .location-name {
        margin-bottom: 0px;
    }

    .connecting-line {
        display: none;
    }

    .fixedIcons {
        bottom: 80px;
    }

    .fixedIcons {
        img {
            width: 35px;
        }
    }

    .mobile-section-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 999;
        background: #bc6332;
        color: #ffffff;
    }

    .mobile-section-footer a {
        flex: 1;
        text-align: center;
        font-size: 14px;
        padding: 10px 8px;
        color: #fff;
    }

    /* Vertical Divider */
    .mobile-section-footer a:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.5);
    }

    .decision_corner .button {
        background-image: linear-gradient(85deg, #c8703b, #8f3310) !important;
        color: var(--text-white);
        font-size: 16px;
        line-height: unset;
        padding: 10px 10px;
    }

    .icon {
        font-size: 2rem;
    }

    .project_box h4 {
        color: var(--text-black);
    }

    /* .header {
        background: #00000057;
    } */

    .about_builder .footer_form h6 {
        font-size: 20px;
    }

    .modal .modal-header h6 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .project_box .all_inc {
        text-align: left;
        font-size: 16px;
        padding-left: 20px;
        text-align: center;
    }

    .center-slider .gallery-card img {
        height: 150px;
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}

@keyframes mobile {

    0%,
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

@media (max-width: 1400px) {
    .phone-email .button {
        font-size: 16px;
    }

    #form4 .modal-dialog {
        transform: scale(0.8);
    }
}

/* Google Map CSS */

/* .central-logo{
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 50%;
} */

.central-logo {
    /* width: 400px; */
    height: 420px;
}

/* .central-logo{
    position: relative;
} */

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); */
}

@media (max-width: 768px) {
    .central-logo {
        height: 300px;
        margin-bottom: 3rem;
        box-shadow: 0 5px 20px rgb(0 0 0 / 33%);
    }
}


/* Popup Form CSS  */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.popup-content .form-group input[type=text] {
    background: #fff;
    /* border: none; */
    border-bottom: 1px solid var(--secondary-theme);
    position: relative;
    z-index: 2;
    color: #000 !important;
    font-weight: 500;
    /* opacity: 0.4; */
    height: 43px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #1f1b1b6e;
    width: 95%;
    margin: 20px auto;
    display: block;
    margin-bottom: 25px;
}

.popup-content .form-group input[type=mobile] {
    background: #fff;
    /* border: none; */
    border-bottom: 1px solid var(--secondary-theme);
    position: relative;
    z-index: 2;
    color: #000 !important;
    font-weight: 500;
    /* opacity: 0.4; */
    height: 43px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #1f1b1b6e;
    width: 95%;
    margin: 20px auto;
    display: block;
}

/* .popup-content .form-group input {
    text-align: left;    
}
   */
.popup-content {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    width: 390px;
    text-align: center;
    position: relative;
    box-shadow: 0px 0 10px rgb(184 189 203 / 43%);

}

.popup-content h6 {
    font-size: 28px;
    color: #fff;
    /* margin-top: -13px;
	margin-bottom: 10px; */
}

.popup-content p {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    margin-top: -12px;
    font-weight: 500;
}

.popup-content h4,
.popup-content h5 {
    margin: 0;
}

.popup-content .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-size: 18px;
    padding: 0px 3px 0px 4px;
    margin-top: 0rem;
    /* border: 2px solid #544e4e; */
    color: #fff;
    background: transparent;
}

.logo-img {
    margin: 10px auto 10px;
    text-align: center;
}

.logo-img img {
    width: 90px;
}

.popup-logo {
    margin: -10px auto 32px;
    text-align: center;
}

.popup-logo img {
    width: 25%;
}

#form-description {
    font-size: 20px;
    margin-top: 7px;
    color: #000;
    margin-bottom: 7px;
}

/* Small phones */
@media (max-width: 480px) {
    .popup-content p {
        font-size: 18px;
    }
}

/* Normal phones */
@media (max-width: 600px) {
    .popup-content p {
        font-size: 18px;
    }
}

/* Large phones / small tablets */
@media (max-width: 767px) {
    .popup-content p {
        font-size: 19px;
    }

    .popup-content .close-btn {
        padding: 0px 3px;
    }

    .image-card {
        height: auto;
        margin-top: 2rem;
    }

}

#submit-contact {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#submit-contact:hover {
    background: #fff !important;
    color: #000;
}

#submit-contact2 {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

#submit-contact3 {
    width: 100%;
}

#submit-contact4 {
    width: 100%;
}

#submit-contact3 {
    width: 100%;
    border-radius: 10px;
}

@media (max-width:768px) {

    .menu-btn {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    /* .logo img {
        max-width: 140px;
    } */

}

.overview-img {
    border-radius: 10px;
    max-width: 100%;
    /* margin-top: 20px; */
}

@media(max-width:768px) {

    .header {
        padding: 0 10px;
    }

    .overview_section .para {
        text-align: left;
    }

    .overview-img {
        margin-top: 20px;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .menu-items a {
        padding: 15px 30px;
    }

}

.grecaptcha-badge {
    transform: translateY(80px) !important;
    opacity: .9 !important;
    transition: .3s
}

.call {
    text-align: center;
}

.call h5 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #000000bf;
    font-family: var(--alipes-font);
    /* letter-spacing: 1px; */
}

.call a {
    color: #000000bf;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    width: 100%;
    border-radius: 40px;
    text-align: center;
}

.call a:hover {
    text-decoration: none;
    color: #bc6332;
    /* font-size: 27px; */
}

.call i {
    font-size: 18px;
    margin-right: 8px;
}

/* .border-animate-wrapper {
  position: relative;
  display: inline-block;
  padding: 2px;
} */

.zoom-number {
    display: inline-block;
    padding: 1px 20px 2px 20px;
    border-radius: 50px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.zoom-number i {
    margin-right: 10px;
}

/* Animated Borders */
/* .border-animate-wrapper::before,
.border-animate-wrapper::after {
  content: '';
  position: absolute;
  height: 50%;
  width: 100%;
  left: 0;
  border-radius: 40px;
  animation: animateVertical 7s infinite;
  z-index: 0;
}

.border-animate-wrapper::after {
  animation-delay: 1.5s;
  animation-name: animateHorizontal;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 1px dotted #000;
} */

/* Vertical line animation from center to top & bottom */
@keyframes animateVertical {
    0% {
        top: 50%;
        height: 0%;
        opacity: 0;
    }

    100% {
        top: 0;
        height: 100%;
        opacity: 1;
    }
}

/* Horizontal animation when sides animate */
@keyframes animateHorizontal {
    0% {
        clip-path: inset(0 50% 0 50%);
        opacity: 0;
    }

    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* FAQ Section */

.faq-section {
    position: relative;
    display: block;
    padding: 85px 0 55px;
    z-index: 1;
    background: #d1d0d324;
}

.faq-container {
    width: 75%;
    margin: 20px auto;
    display: block;
}

h2.faq {
    margin-bottom: 30px;
    margin-top: -20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background: #dddddd3d;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 25px;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s, background 0.3s;
    margin-top: 20px;
    color: #000;
    /* default color */
    font-weight: 500;
}

.faq-item:first-child .faq-question {
    color: #bc6332;
    /* first question default color */
}

.faq-question:hover {
    color: #bc6332;
}

.faq-question.active {
    color: #bc6332;
}

.faq-question::after {
    content: '\25BC';
    font-size: 14px;
    position: absolute;
    right: 15px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0px 60px 15px 25px;
    background: #dddddd3d;
}

/* Mobile Layout */
@media only screen and (max-width: 767px) {

    .faq-section {
        padding: 70px 0 45px;
    }

    h2.faq {
        font-size: 24px;
        margin-bottom: 10px;
        margin-top: -20px;
    }

    .faq-container {
        width: 100%;
    }

    .faq-question {
        font-size: 16px;
        padding: 10px 35px 10px 12px;
        line-height: 1.6;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-question::after {
        top: 13px;
        right: 10px;
    }

    .faq-answer.active {
        padding: 0px 15px 15px 12px
    }
}

/* .fancybox__counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    top: auto !important;
    left: auto !important;
    color: #fff;
    font-size: 14px;
} */

/* Remove toolbar positioning effect */
.fancybox__toolbar {
    top: 0;
    bottom: auto;
}

/* Move counter to bottom-right */
.fancybox__counter {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    top: auto !important;
    left: auto !important;
    z-index: 99999;
    color: #fff;
    font-size: 14px;
}