:root {
    --primary-color: #60b824;
    --secondary-color: rgb(217 217 217 / 40%);
    --light-color: #f9f9f9;
    --dark-color: #222;
    --font-family-main: "Lexend", sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--font-family-main);
}

*::selection {
    background: var(--primary-color);
    color: var(--light-color);
}

/* ########### navbar styling start ############# */

.customThankuBtn:hover {
    background-color: green !important;
    color: white;
    font-weight: bold !important;
}

.loader {
    width: 60px;
    margin: auto;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side, #f7d1bc 90%, #0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1s infinite linear;
}

@keyframes l7 {
    33% {
        background-size: calc(100%/3) 0%, calc(100%/3) 100%, calc(100%/3) 100%
    }
    50% {
        background-size: calc(100%/3) 100%, calc(100%/3) 0%, calc(100%/3) 100%
    }
    66% {
        background-size: calc(100%/3) 100%, calc(100%/3) 100%, calc(100%/3) 0%
    }
}

#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

#chatbox {
    width: 320px;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.541);
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: Arial, sans-serif;
    transform: scale(1);
    opacity: 1;
    transition: all 0.6s ease;
}

#chatbox.hidden {
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    height: 0;
}

#chat-header {
    background: #198754;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.bot-message,
.user-message {
    padding: 8px 12px;
    margin: 6px 0;
    max-width: 75%;
    border-radius: 20px;
    display: inline-block;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    background: #eee;
    color: #333;
}

.user-message {
    background: #198754;
    color: #fff;
    align-self: flex-end;
}

.hidden {
    display: none;
}

#chat-bubble {
    width: fit-content;
    height: 50px;
    background: #198754;
    color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    padding: 0 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

#chat-bubble img {
    width: 30px;
}

#chat-bubble.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

button.option-btn:hover {
    background: #ddd;
}

/* When a bot message is immediately followed by another bot message */

.bot-message+.bot-message {
    border-top-left-radius: 4px;
    /* 2nd bot: top-left corner sharp */
}

/* When a bot message is followed by another bot message (1st bot) */

.bot-message:not(:last-child) {
    border-bottom-left-radius: 16px;
    /* reset bottom-left for all */
}

.bot-message:has(+ .bot-message) {
    border-bottom-left-radius: 4px;
    /* 1st bot: bottom-left corner sharp */
}

/* User message with options */

.user-message.options-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background-color: transparent;
    color: #fff;
    padding: 8px;
    border-radius: 16px;
    margin: 4px 0;
}

/* Option buttons */

.option-btn {
    background: #eee;
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin: 4px 4px 0 auto;
    text-align: left;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.formBtn {
    background-color: #198754;
}

/* Normal bot and user messages already styled as before */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    background: #ffffffcc;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

/* === Logo Switch === */

.logo-white {
    display: inline-block;
}

.logo-dark {
    display: none;
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: inline-block;
}

/* ==== Transparent Navbar==== */

.navbar .nav-link {
    color: var(--dark-color);
    /* White links */
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.custom-btn {
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    font-size: 1.1rem;
    transition: 1s;
    white-space: nowrap;
}

.custom-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.navbar-nav .nav-item:nth-child(1) .nav-link {
    animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(2) .nav-link {
    animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(3) .nav-link {
    animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(4) .nav-link {
    animation-delay: 0.5s;
}

.navbar-nav .nav-item:nth-child(5) .nav-link {
    animation-delay: 0.6s;
}

/* ==== Scrolled Navbar ==== */

.navbar.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: #000;
    /* Black links */
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.navbar.scrolled .custom-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.navbar.scrolled .custom-btn:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.navbar-nav .nav-link {
    letter-spacing: 1.5px;
    position: relative;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 8px 8px;
    font-family: var(--font-family-heading);
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 0.5s forwards;
}

/* Hover underline */

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
}

/* .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'
  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' 
  stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' 
  d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'
  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' 
  stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' 
  d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    50% {
        opacity: 0.5;
        backdrop-filter: blur(10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate when navbar is scrolled */

.navbar.scrolled .nav-link {
    animation: fadeInUp 0.5s forwards;
}

/* animation for navlink on white nav */

.navbar.scrolled .nav-item:nth-child(1) .nav-link {
    animation-delay: 0.2s;
}

.navbar.scrolled .nav-item:nth-child(2) .nav-link {
    animation-delay: 0.3s;
}

.navbar.scrolled .nav-item:nth-child(3) .nav-link {
    animation-delay: 0.4s;
}

.navbar.scrolled .nav-item:nth-child(4) .nav-link {
    animation-delay: 0.5s;
}

.navbar.scrolled .nav-item:nth-child(5) .nav-link {
    animation-delay: 0.6s;
}

.mainlogo {
    height: 60px;
    width: auto;
}

/* logo changing anaimation */

.navbar.scrolled .mainlogo {
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* ########### navbar styling end ############# */

.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.cust-para {
    font-size: 1.2rem;
    /*line-height: 1.6;*/
    text-align: justify;
    color: #444;
}

.cust-para span {
    color: var(--primary-color);
}

.read-more {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #222;
    border-radius: 15px;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    color: var(--primary-color);
    /* text color same as border */
    background: #fff;
    overflow: hidden;
    z-index: 0;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.read-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    /* fill color */
    border-radius: inherit;
    transform-origin: 100% 100%;
    /* start from bottom-right */
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: -1;
}

.read-more:hover,
.read-more:focus {
    color: #fff;
    /* text turns white */
    border-color: #fff;
    /* match fill color */
}

.read-more:hover::before,
.read-more:focus::before {
    transform: scale(1);
    /* expand from bottom-right to full */
}

/* readmore2 */

.read-more2 {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 15px;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    /* text color same as border */
    background: var(--primary-color);
    overflow: hidden;
    z-index: 0;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.read-more2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark-color);
    /* fill color */
    border-radius: inherit;
    transform-origin: 100% 100%;
    /* start from bottom-right */
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: -1;
}

.read-more2:hover,
.read-more2:focus {
    color: var(--primary-color);
    /* text turns white */
    border-color: #fff;
    /* match fill color */
}

.read-more2:hover::before,
.read-more2:focus::before {
    transform: scale(1);
    /* expand from bottom-right to full */
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tick-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
}

.tick-list li::before {
    font-family: "Font Awesome 6 Free";
    /* Ensure it matches FA version */
    content: "\f00c";
    /* Check mark */
    font-weight: 900;
    /* Solid style */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: green;
}

.background-pri {
    background: var(--primary-color);
}

.sub-heading {
    color: var(--light-color);
    font-size: 1.6rem;
    font-weight: 300;
}

.background-sec {
    background: var(--secondary-color);
}

.section-title {
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-sec {
    height: 95vh;
}

.flickity-viewport {
    height: 100% !important;
}

.show-on-phone {
    display: none;
}

.show-on-phone .read-more2 {
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 7px;
}

.floating-form2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.3rem;
    border-radius: 10px;
    right: 2%;
    bottom: 20%;
}

.shadow-box-custom {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.image-hover-effect {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Add animation */
    animation: zoomInOut 15s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
        /* zoom in */
    }
    100% {
        transform: scale(1);
    }
}

.image-hover-wrapper {
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.customVdo {
    object-fit: cover;
    /*height: 100vh;*/
}

.floating-form {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.texts-primary {
    color: var(--primary-color);
}

.input-group-text i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* amenities section start  */

.amenity-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
    margin: 40px auto;
    position: relative;
    height: 320px;
    transition: all 0.3s ease;
}

.amenity-top {
    height: 260px;
    background-size: cover;
    background-position: center;
    background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
    transition: height 0.4s ease;
}

.amenity-bottom {
    background: #fff;
    padding: 20px 20px 28px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out;
}

.amenity-title {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
}

.amenity-card:hover .amenity-top {
    height: 100%;
}

.amenity-card:hover .amenity-bottom {
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 10px 14px;
    backdrop-filter: blur(2px);
}

/* amenities section end  */

/* ###########shubham ############ */

.location-section {
    padding: 0;
    min-height: 100vh;
}

/* Remove default padding/margin from container-fluid and row in location-section */

.location-section .container-fluid,
.location-section .row {
    margin: 0 !important;
    padding: 0 !important;
}

.location-section .col-lg-6 {
    padding: 0 !important;
    margin: 0 !important;
}

.location-left-panel {
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.location-right-panel {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-content-header {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.location-map-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-map-wrapper {
    width: 100%;
    max-width: 600px;
}

.location-header {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-header::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.location-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.location-description {
    font-size: 16px;
    /*line-height: 1.8;*/
    color: #555;
    margin-bottom: 10px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px SOLID GREY;
    border-left: 4px solid white;
    margin-bottom: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
    border-left-width: 6px;
}

.location-icon {
    position: relative;
    padding: 18px 25px;
    width: 50px;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.location-details {
    flex: 1;
}

.location-place {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}

.location-distance {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.location-map-container {
    width: 100%;
    height: 100%;
}

.location-map-wrapper {
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-brand {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.location-brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.location-brand-text span {
    color: var(--primary-color);
}

/* gallery section */

.gallery-section .container-fluid {
    max-width: 1400px;
}

.gallery-header-label {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-header-label::before {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.gallery-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(124, 179, 66, 0.3);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-image {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item-watermark {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Modal */

.gallery-lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-modal.active {
    display: flex;
}

.gallery-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
    background: var(--dark-green);
    transform: rotate(90deg);
}

/* Contact Section */

.contact-main-section {
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Side - About Section */

.contact-about-panel {
    position: relative;
    background: #60b824;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow: hidden;
}

.contact-about-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.contact-about-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-about-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 35px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.contact-about-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-green));
    border-radius: 2px;
}

.contact-about-description {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    margin-top: 35px;
}

.contact-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding-top: 35px;
    border-top: 2px solid #e0e0e0;
}

.contact-stat-item {
    text-align: center;
}

.contact-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.contact-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side - Contact Form */

.contact-input-group {
    position: relative;
}

.contact-input-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-input-field {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
}

.contact-input-field::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-input-field:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.1);
}

.contact-textarea-field {
    min-height: 140px;
    resize: vertical;
}

.contact-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-submit-button {
    background: linear-gradient( 135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
    margin-top: 10px;
}

/* .contact-submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact-submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.contact-submit-button:hover {
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.5);
    transform: translateY(-2px);
}

.contact-submit-button:active {
    transform: translateY(0);
} */

/* Footer Section */

.footer-main-section {
    background: #333;
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-rera-info {
    text-align: center;
    margin-bottom: 30px;
}

.footer-rera-number {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-copyright-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

.footer-disclaimer-text {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.footer-navigation-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.footer-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.footer-nav-link:hover {
    color: white;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-nav-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Scroll to Top Button */

.scroll-top-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient( 135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

.scroll-top-button.visible {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-top-button:hover {
    box-shadow: 0 12px 35px rgba(124, 179, 66, 0.6);
    transform: translateY(-3px);
}

.scroll-top-button:active {
    transform: translateY(-1px);
}

/* Responsive for contact form panel */

@media (max-width: 991px) {
    .show-on-phone {
        display: block;
    }
    .plot-card {
        max-width: 300px !important;
    }
    .height-50vh {
        height: 50vh !important;
    }
    .floating-form2 {
        position: static;
    }
    .hero-sec {
        height: auto;
    }
    .floating-form {
        position: static;
        transform: none;
        box-shadow: none;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-form-panel,
    .contact-about-panel {
        min-height: unset;
        padding: 40px 20px;
        border-radius: 0;
    }
    .contact-form-container {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 450px) {
    .mainlogo {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .cust-para {
        font-size: 1rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-form-panel,
    .contact-about-panel {
        min-height: unset;
        padding: 25px 8px;
        border-radius: 0;
    }
    .contact-form-container {
        max-width: 100%;
        padding: 0;
    }
    .contact-form-title {
        font-size: 22px;
    }
    .contact-form-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .show-on-phone {
        display: block;
    }
    .location-title {
        font-size: 36px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .gallery-main-title {
        font-size: 36px;
    }
    .contact-about-content {
        padding: 40px 35px;
    }
    .contact-about-title {
        font-size: 36px;
    }
    .contact-form-title {
        font-size: 36px;
    }
    .contact-input-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .contact-stat-number {
        font-size: 24px;
    }
    .footer-navigation-links {
        flex-direction: column;
        gap: 15px;
    }
    .footer-nav-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .location-title {
        font-size: 28px;
    }
    .location-place {
        font-size: 16px;
    }
    .gallery-section {
        padding: 60px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .contact-about-panel,
    .contact-form-panel {
        padding: 40px 25px;
        min-height: 500px;
    }
    .contact-about-content {
        padding: 30px 25px;
    }
    .contact-about-title {
        font-size: 30px;
    }
    .contact-form-title {
        font-size: 30px;
    }
    .contact-about-stats {
        grid-template-columns: 1fr;
    }
    .scroll-top-button {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
    .footer-content-wrapper {
        padding: 0 25px;
    }
    .footer-disclaimer-text {
        padding: 20px;
        font-size: 12px;
    }
    .padding-less {
        padding: 1rem !important;
    }
}

.image-popup {
    background-image: url(../img/2.jpg);
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #00000077;
    background-blend-mode: multiply;
}

.form-close2 {
    position: absolute;
    right: 2px;
    top: 10px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    background-color: #212529;
}

.form-close2:hover {
    background-color: var(--secondary-color);
}

.plot-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
    max-width: 400px;
    /* adjust width */
}

.plot-size {
    background-color: var(--primary-color);
    /* green color */
    color: #fff;
    writing-mode: vertical-rl;
    /* vertical text */
    transform: rotate(180deg);
    /* flip text to read properly */
    padding: 10px 0;
    min-width: 50px;
    font-weight: 600;
    font-size: 14px;
}

.plot-content h5 {
    font-weight: 700;
}

.info-card {
    display: flex;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

/* White line using ::before */

.info-card::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background: var(--dark-color);
    left: 116px;
    /* aligns at the edge of green box */
    top: 0;
}

.info-icon {
    background-color: #4caf50;
    /* green */
    padding: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 116px;
}

.info-icon i {
    font-size: 40px;
    color: #fff;
}

.info-content {
    padding: 15px 20px;
}

.info-content h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}