/* Simple fade-in-up animation for main sections */
.simple-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.simple-fade-up.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Banner Content Box Animation --- */
.banner-content-box {
    opacity: 0;
    transform: translateY(40px);
    /* Animation will be triggered by JS after preloader */
}


.banner-content-box.animate {
    animation: bannerFadeInUp 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.banner-content-box.animate.delay {
    animation-delay: 0.5s;
}

@keyframes bannerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Carousel Navigation Two Boxes --- */
.carousel-nav-boxes {
    position: absolute;
    bottom: 2.5vw;
    right: 3vw;
    z-index: 10;
    display: flex;
    gap: 1.2rem;
}

.carousel-nav-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
    outline: none;
}

.carousel-nav-box:hover,
.carousel-nav-box:focus {
    background: #fff;
    color: #222;
    border: 2px solid #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.carousel-nav-box.prev-box {
    /* Optionally, move left if you want them separated */
}

.carousel-nav-box.next-box {
    /* Optionally, move right if you want them separated */
}

@media (max-width: 900px) {
    .carousel-nav-boxes {
        right: 1vw;
        bottom: 1vw;
        gap: 0.7rem;
    }

    .carousel-nav-box {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Black Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-SemiBold Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Regular Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('font/Gelion-Thin Italic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'PowerGrotesk';
    src: url('font/PowerGrotesk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Gelion', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: transparent;
}

.navbar {
    padding: 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.logo-icon {
    color: #C8A87E;
    font-size: 1.5rem;
}

.logo span {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.enquire-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    height: fit-content;
}

.enquire-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Carousel Section */
.hero-carousel {
    height: 95vh;
    position: relative;
    overflow: hidden;
    color: white;
}

.her-sec {
    margin: 25px;
}

.carousel-container {
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-image:
        url('image/home1.png'),
        url('image/home2.png'),
        url('image/home3.jpg');
    background-position: top, var(--bg2-pos, 0) top, top;
    background-size: cover, 200vw, cover;
    background-repeat: no-repeat, repeat-x, no-repeat;
    /* position: relative; */
    /* background-size: cover;
    background-position: top; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

@media (max-width: 786px) {
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        background-image:
            url('image/home1.png'),
            url('image/home2.png'),
            url('image/home3.jpg');
        background-position: center, var(--bg2-pos, 0)22%, center;
        background-size: cover, 269vw, cover;
        background-repeat: no-repeat, repeat-x, no-repeat;
        /* position: relative; */
        /* background-size: cover;
    background-position: top; */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
    }
}

@media (max-width: 586px) {
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        background-image:
            url('image/home1.png'),
            url('image/home2.png'),
            url('image/home3.jpg');
        background-position: center, var(--bg2-pos, 0)34%, center;
        background-size: cover, 192vw, cover;
        background-repeat: no-repeat, repeat-x, no-repeat;
        /* position: relative; */
        /* background-size: cover;
    background-position: top; */
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
    }
}



.carousel-slide.active {
    opacity: 1;
}

/* Property Hero Carousel Styles */
.property-hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.property-hero .carousel-container {
    height: 100%;
    position: relative;
    border-radius: 35px;
}

.property-hero .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 50px;
}

.property-hero .carousel-slide.active {
    opacity: 1;
}

.property-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.property-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.property-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
}

.property-hero .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.property-hero .carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(51, 51, 51, 0.8);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.property-hero .carousel-btn:hover {
    background-color: rgba(51, 51, 51, 1);
    transform: scale(1.1);
}

.ext {
    height: 100%;
    width: -webkit-fill-available;
}

.property-hero .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
}

.property-hero .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-hero .indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.property-hero .indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slide 2 background */
.carousel-slide[data-slide="2"] {
    background-image:
        url('image/cr4.png'),
        url('image/home2.png'),
        url('image/cr5.jpg');
}

/* Slide 3 background */
.carousel-slide[data-slide="3"] {
    background-image:
        url('image/cr6.png'),
        url('image/home2.png'),
        url('image/cr7.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #000;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #000;
}

.btn:hover {
    transform: translateY(-2px);
}

.property-card {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(51, 51, 51, 0.9);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    max-width: 300px;
}

.card-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #C8A87E;
}

.card-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.floor-plan {
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(51, 51, 51, 0.8);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background-color: rgba(51, 51, 51, 1);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
    background-image: url(image/Union.png);
    background-size: cover;
    background-position: top;
}

.about-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-left: 10rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.section-icon {
    color: #C8A87E;
    font-size: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 2.1;
    margin-bottom: 1.5rem;
    font-weight: 100;
}

.about-image .image-placeholder {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 1.2rem;
    color: #999;
}

/* Property Listings */
.property-listing {
    padding: 80px 0 0;
}

.property-listing.lakeview {
    background-color: #D2F8DC;
}

.property-listing.rooftop {
    background-color: #FDE3C4;
}

.property-listing.lakeview-blue {
    background-color: #D3EBF6;
}

.lakeview-yellow {
    background-color: #EFF2C9;
}

.property-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: start;
}

.mr-3 {
    margin-right: 3rem;
}

.property-left {
    /* display: flex;
    flex-direction: column;
    gap: 2rem; */
}

.property-title {
    margin-bottom: 1rem;
    margin-left: 3rem;
}

.property-title h2 {
    font-size: 6rem;
    font-weight: 100;
    color: #586D44;
    line-height: .8;
    margin: 0;
    font-family: 'PowerGrotesk', sans-serif;
}

.property-title h2:first-child {
    margin-bottom: 0.5rem;
}

.property-title .location {
    font-size: 1.5rem;
    color: #586D44;
    margin-top: 0.5rem;
    font-weight: 200;
}

.property-image .image-placeholder {
    width: 100%;
    background: center/cover;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 1.2rem;
    color: #666;
}

.property-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rooftop .property-details h2 {
    color: #663300;
}

.lakeview-blue .property-details h2 {
    color: #336699;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.property-details .location {
    display: none;
}

.details-card {
    background-color: #ffffff7d;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.details-tabs {
    display: flex;
    gap: 2rem;
    /* margin-bottom: 2rem; */
    /* border-bottom: 1px solid #e0e0e0; */
    /* padding-bottom: 1rem; */
    justify-content: space-around;
}

.tab {
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 300;
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
}

.tab.active {
    color: #333;
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4CAF50;
    display: none;
}

/* Tab Content Styles */
.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Price Plans Styles */
.price-plans {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 1rem;
}

.price-plan-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
}

.plan-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.plan-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.price-plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-item.featured {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: 2px solid #4CAF50;
    transform: scale(1.05);
}

.price-plan-item.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-plan-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-plan-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.price-plan-item.featured .price {
    color: white;
}

.total-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.price-plan-item.featured .total-price {
    color: white;
}

.conversion-note {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

.price-plan-item.featured .conversion-note {
    color: rgba(255, 255, 255, 0.8);
}

.price-plan-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-plan-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.price-plan-item.featured li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for pricing */
@media (max-width: 768px) {
    .price-plans {
        gap: 1rem;
    }

    .price-plan-item {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.1rem;
    }

    .plan-icon {
        font-size: 1.5rem;
    }
}

/* Plot Details Styles */
.plot-details {
    margin-top: 1rem;
}

.plot-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 0.2rem;
    width: 24px;
}

.info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.detail-item i {
    color: #333;
    width: 16px;
}

.description {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 200;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 1.5rem;
}

.cl-grn {
    background: #A7C48C !important;
}

.cl-org {
    background: #CAB194 !important;
}

.cl-blu {
    background: #8FDDFF !important;
}

.cl-ylw {
    background: #a7ab77 !important;
}

.btn-view {
    border-radius: 10px !important;
    padding: 1rem !important;
    font-size: 1.3rem !important;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #000;
}

.feature-item i {
    color: #4CAF50;
    width: 16px;
}

/* Available Plots Section */
.available-plots {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.available-plots h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.plots-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.plots-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plot-item {
    background-color: #558855;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plot-item:hover {
    background-color: #447744;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    color: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-left h2 {
    font-size: 5rem;
    font-weight: 100;
    margin-bottom: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: right;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 100;
    color: #858585;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.trust-image .image-placeholder {
    display: flex;
    justify-content: end;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.sliding-villas-card {
    background-color: rgb(51 51 51 / 58%);
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(25%, -50%);
    text-align: left;
    min-width: 300px;
}

.sliding-villas-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 100;
}

.sliding-villas-card p {
    opacity: 0.8;
    font-weight: 100;
}

.learn-more-btn {
    background: none;
    border: none;
    color: white;
    font-size: 0.7rem;
    text-align: right;
    width: 100%;
    font-weight: 100;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 5rem;
    font-weight: 100;
    color: #333;
    margin-bottom: 1rem;
}

.questions-indent {
    margin-left: 2rem;
    display: inline-block;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

/* .faq-item {
    background: #f0f8f0;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
} */

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
}

.faq-question {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 175, 80, 0.05);
}

.faq-question i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-left: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-answer {
    padding: 0 1.5rem 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .questions-indent {
        margin-left: 1rem;
    }
}

/* Footer */
.footer {
    background-color: #333D29;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: #C8A87E;
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.contact-item a {
    color: #3d4145;
    text-decoration: none;
    cursor: pointer;
}

.contact-info a {
    color: #b2b2b2;
    text-decoration: none;
    cursor: pointer;
}

.contact-item i {
    color: #C8A87E;
    width: 20px;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.slide-up {
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.stagger-item {
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Text reveal animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.animate span {
    transform: translateY(0);
}

/* Parallax effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth page transitions */
.page-transition {
    opacity: 1;
    /* transform: translateY(20px); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-transition.loaded {
    opacity: 1;
    /* transform: translateY(0); */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .enquire-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .navbar {
        height: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .property-card {
        position: static;
        transform: none;
        margin-top: 2rem;
        max-width: 100%;
    }

    .about-content,
    .property-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        overflow-x: hidden;
        position: relative;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        display: grid !important;
        visibility: visible !important;
    }

    .faq-section {
        padding: 60px 0;
        display: block !important;
        visibility: visible !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .carousel-nav {
        padding: 0 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .details-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .features {
        flex-direction: column;
    }
}

/* Enhanced Available Plots Section */
.plots-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plots-header h2 {
    font-size: 7rem;
    font-weight: 100;
    color: #333;
    margin-bottom: 1rem;
}

.plots-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 100;
}

/* Filters */
.plots-filters {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}

.filter-btn.active {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

/* Plots Grid */
.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plot-card .plot-title {
    font-weight: 100;
    margin-bottom: 2rem;
}

.plot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.plot-card.hidden {
    display: none;
}

.plot-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
}


.plot-card:hover .plot-image img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: #4CAF50;
    color: white;
}

.status-badge.booked {
    background: #f44336;
    color: white;
}

.status-badge.on-hold {
    background: #ff9800;
    color: white;
}

/* Plot Content */
.plot-content {
    padding: 1.5rem;
}

.plot-header {
    margin-bottom: 1rem;
}

.plot-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.plot-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.plot-location i {
    color: #4CAF50;
}

/* Plot Details */
.plot-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-row .label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.detail-row .value {
    color: #666;
    font-size: 0.9rem;
    text-align: right;
    max-width: 60%;
}

/* Plot Actions */
.plot-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.enquire-btn {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.enquire-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.enquire-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.view-details-btn {
    padding: 0.75rem 1rem;
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.view-details-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.map-link {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #e9ecef;
}

.map-link:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
}

/* Load More */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: #4CAF50;
    color: white;
}

/* Responsive Design for Plots */
@media (max-width: 768px) {
    .plots-filters {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .filter-group {
        flex: none;
    }

    .filter-buttons {
        justify-content: center;
    }

    .plots-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 0rem;
    }

    .plot-actions {
        flex-direction: column;
    }

    .enquire-btn,
    .map-link {
        width: 100%;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-row .value {
        text-align: left;
        max-width: 100%;
    }
}

/* Plot Details Page Styles */
.plot-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.plot-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plot-badge .status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plot-badge .status.available {
    background: #4CAF50;
    color: white;
}

.plot-badge .plot-id {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #4CAF50;
}

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

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plot-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.plot-header .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.plot-header .location i {
    color: #4CAF50;
}

.plot-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    width: 30px;
}

.highlight-item .label {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.highlight-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: block;
}

.plot-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: #586D44;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #2196F3;
    color: white;
}

.btn-secondary:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-outline:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Plot Details Section */
.plot-details-section {
    padding: 5rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 4.5rem;
    font-weight: 100;
    color: #333;
    margin-bottom: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.detail-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 600;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card,
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-card h3,
.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.price-breakdown {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4CAF50;
}

.payment-options {
    margin-bottom: 2rem;
}

.payment-options h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.payment-options ul {
    list-style: none;
    padding: 0;
}

.payment-options li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.payment-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #d5d5d5;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item .label {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.contact-item .value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item.large img {
    height: 400px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-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: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.location-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    font-size: 0.9rem;
}

.map-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 3rem;
    color: #ccc;
}

.map-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

/* Similar Plots Section */
.similar-plots {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Responsive Design for Plot Details */
@media (max-width: 768px) {
    .plot-hero {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail-gallery {
        justify-content: center;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-card {
        flex-direction: column;
        text-align: center;
    }

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

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .plot-actions {
        flex-direction: column;
    }

    .btn {
        /* width: 100%; */
    }
}

.btn:hover {
    background: #748664;
}

/* New Property Details Page Styles */
/* .property-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 38px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-title h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-icon i {
    font-size: 1.5rem;
    color: white;
}

/* About Property Section */
.about-property .section-title {
    font-size: 4rem;
}

.about-property a {
    text-decoration: none;
    color: #D1D1D1;
}

.about-property button {
    background: #748664;
    color: #D1D1D1;
    font-weight: 100;
    border-radius: 50px;
    font-size: 1rem;
}

.about-property button span {
    color: #fff;
}

.company-value .section-title {
    font-size: 4rem;
}

.about-property-section {
    padding: 5rem 0;
    background: white;
}

.about-property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-property-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-property-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.book-now-btn {
    padding: 1rem 2rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-now-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.about-property-right h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-property-right p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.property-metrics {
    display: flex;
    gap: 2rem;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Property Gallery Section */
.property-gallery-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gallery-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-gallery-image {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail-item {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-photos {
    position: relative;
}

.more-photos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Property Information Grid */
.property-info-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.info-category {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-category .category-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.info-category .category-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-category .category-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.info-content {
    padding: 2rem;
}

/* Pricing Card Styles */
.price-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #4CAF50;
    border-top: 2px solid #4CAF50;
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.payment-options {
    margin-bottom: 1.5rem;
}

.payment-options h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-options li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.payment-options li:last-child {
    border-bottom: none;
}

.payment-options li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Description Section */
.description-section h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.description-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Features List */
.features-list h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.features-list .feature-item:hover {
    background: #e9ecef;
}

.features-list .feature-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.features-list .feature-item span {
    color: #333;
    font-weight: 500;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.offer-card:hover::before {
    transform: scaleX(1);
}

.offer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.offer-icon-wrapper {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.offer-number {
    background: #f8f9fa;
    color: #4CAF50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #4CAF50;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-number {
    background: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.offer-card-content h4 {
    color: #333;
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.offer-card-content p {
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.offer-features li:last-child {
    margin-bottom: 0;
}

.offer-features li i {
    color: #4CAF50;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-grid .feature-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.features-grid .feature-category:hover {
    background: #e9ecef;
}

.features-grid .feature-category h4 {
    color: #333;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-grid .feature-category h4::before {
    content: '📍';
    font-size: 1.2rem;
}

.features-grid .feature-category:nth-child(2) h4::before {
    content: '⚡';
}

.features-grid .feature-category:nth-child(3) h4::before {
    content: '🏗️';
}

.features-grid .feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-grid .feature-category li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.features-grid .feature-category li:last-child {
    border-bottom: none;
}

.features-grid .feature-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reviews-list .review-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.reviews-list .review-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.reviews-list .review-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Climate Section Styles */
.climate-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.temperature-graphs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.temp-graph {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.temp-graph:hover {
    background: #e9ecef;
}

.temp-graph label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.graph-container {
    position: relative;
    height: 40px;
    background: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
}

.graph-bar {
    height: 100%;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.graph-bar.winter-min {
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    width: 95%;
}

.graph-bar.winter-max {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    width: 65%;
}

.graph-bar.summer-min {
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    width: 70%;
}

.graph-bar.summer-max {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    width: 45%;
}

.graph-scale {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.climate-conditions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.climate-conditions:hover {
    background: #e9ecef;
}

.climate-conditions h4 {
    color: #333;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.condition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.condition-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.condition-label {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.condition-value {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-align: center;
}

.condition-value.no {
    background: #ffebee;
    color: #d32f2f;
}

.condition-value.yes {
    background: #e8f5e8;
    color: #2e7d32;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.features-list .feature-item i {
    color: #4CAF50;
    font-size: 1rem;
}

.features-list .feature-item span {
    color: #333;
    font-weight: 500;
}

/* Offers Content */
.offers-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

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

.offer-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-item i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.offer-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.offer-item p {
    color: #666;
    line-height: 1.5;
}

/* Features Content */
.features-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 600;
}

/* Reviews Content */
.reviews-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

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

.review-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #748664 !important;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-item p {
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: #333;
}

.video-placeholder {
    height: 400px;
    background: #000;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 0.3rem;
}

.video-placeholder p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer Updates */
.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

/* Responsive Design for New Property Page */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        flex-direction: column;
        gap: 1rem;
    }

    .about-property-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-details-grid {
        grid-template-columns: 1fr;
    }

    .main-gallery-image {
        height: 300px;
    }

    .thumbnail-gallery {
        flex-direction: row;
        overflow-x: hidden;
    }

    .thumbnail-item {
        min-width: 120px;
        height: 100px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-content {
        padding: 0rem 1rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Property Info Grid Responsive */
    .property-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-content {
        padding: 1.5rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-card {
        padding: 1rem;
    }

    .offer-card-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .offer-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .offer-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .offer-card-content h4 {
        font-size: 1.1rem;
        text-align: center;
    }

    .offer-features {
        text-align: left;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-card {
        padding: 1rem;
    }

    .price-item {
        font-size: 0.9rem;
    }

    .payment-options li {
        font-size: 0.9rem;
    }

    /* Climate Section Responsive */
    .condition-grid {
        grid-template-columns: 1fr;
    }

    .temp-graph {
        padding: 1rem;
    }

    .temp-graph label {
        font-size: 0.9rem;
    }

    .graph-scale {
        font-size: 0.7rem;
    }

    .condition-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .condition-label {
        font-size: 0.85rem;
    }

    .condition-value {
        font-size: 0.85rem;
    }
}

/* Verified Documents Section */
.verified-documents-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.documents-header {
    text-align: center;
    margin-bottom: 4rem;
}

.documents-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.documents-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.document-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #666;
    font-size: 0.95rem;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.document-item:hover {
    background: #e9ecef;
}

.document-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.document-content {
    flex: 1;
}

.document-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.document-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.verified {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.on-request {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.checklist-style .document-item {
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
}

.document-request-section {
    margin-top: 3rem;
}

.request-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.request-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.request-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.request-benefits {
    list-style: none;
    padding: 0;
}

.request-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.95rem;
}

.request-benefits li i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.request-action {
    text-align: center;
}

.request-docs-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.request-docs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.request-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .request-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .documents-header h2 {
        font-size: 2rem;
    }

    .document-category {
        padding: 1.5rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0 40px 0;
    background: #f8f9fa;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-header i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.blog-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.3s cubic-bezier(.4, 0, .2, 1);
    border: 1.5px solid #e9ecef;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.13);
    transform: translateY(-6px) scale(1.02);
    border-color: #4CAF50;
}

.blog-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #4CAF50;
    border-radius: 25px;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    background: #fff;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.read-more-btn:hover {
    background: #4CAF50;
    color: #fff;
    border-color: #388e3c;
}

.read-more-btn i {
    font-size: 1rem;
}

/* --- Hero Banner Custom Styles --- */
.hero-title-bg {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    font-size: 8vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    font-family: 'Inter', 'Gelion Black', sans-serif;
}

.carousel-slide.active {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.banner-content-box {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 2rem;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    color: #fff;
    z-index: 3;
    margin: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-items: end;
}

.banner-content-box>div:first-child {
    justify-self: start;
}

.banner-heading {
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.banner-desc-list {
    padding: 0;
    margin: 0 0 0.5rem 0;
    font-size: 1.08rem;
    font-weight: 100;
    line-height: 1.2;
    color: #a7a7a7;
}

.banner-desc-list li {
    margin-bottom: 0.3rem;
}

.banner-features-floor {
    display: flex;
    /* align-items: flex-end; */
    gap: 2.5rem;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.08rem;
    align-items: end;
    font-weight: 400;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* .feature-icon {
    font-size: 1.2em;
    margin-left: 0.3em;
} */

.banner-floorplan {
    min-width: 110px;
    max-width: 140px;
}

.floorplan-img {
    width: 100%;
    border-radius: 1rem;
    background: #222;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.banner-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
    grid-column: 1 / -1;
}

.banner-btn {
    font-size: 1rem;
    border-radius: 2rem;
    padding: 0.7rem 3rem;
    font-weight: 100;
    transition: background 0.2s, color 0.2s;
    background: #000;
    color: #b8b8b8
}

.banner-btn:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
}

@media (max-width: 900px) {
    .navbar-collapse {
        background: rgb(20 20 20);
        padding: 1rem;
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

    .banner-content-box {
        max-width: 95vw;
        left: 1vw;
        right: 1vw;
        padding: 1.5rem 1rem 1rem 1rem;
        grid-template-columns: 1fr;
    }

    .banner-content-box:nth-child(2) {
        display: none;
    }

    .feature-item {
        display: none !important;
    }

    .hero-carousel .banner-content {
        grid-template-columns: 1fr !important;
    }

    .banner-btn {
        padding: 0.7rem 2rem;
        font-size: .8rem;
    }

    .hero-title-bg {
        font-size: 12vw;
    }

    .banner-features-floor {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .banner-floorplan {
        max-width: 100px;
    }
}

.blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-content {
    padding: 1.5rem 1rem 1rem 1rem;
}

.blog-image {
    height: 140px;
}


/* Blog Detail Page Styles */
.breadcrumb {
    margin: 2rem auto 1.5rem auto;
    max-width: 900px;
    font-size: 0.98rem;
    color: #888;
    letter-spacing: 0.01em;
}

.breadcrumb a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #388e3c;
    text-decoration: underline;
}

.blog-detail-article {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(76, 175, 80, 0.07);
    padding: 2.5rem 2rem 2.5rem 2rem;
    position: relative;
}

.blog-hero-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(76, 175, 80, 0.10);
}

.blog-hero-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.blog-detail-article header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.blog-meta {
    color: #888;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.blog-meta span {
    color: #4CAF50;
    font-weight: 600;
}

.blog-content {
    font-size: 1.13rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-content h2 {
    font-size: 1.35rem;
    color: #388e3c;
    margin: 2.2rem 0 1rem 0;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 1.2rem;
}

.blog-content a {
    color: #4CAF50;
    text-decoration: underline;
    transition: color 0.2s;
}

.blog-content a:hover {
    color: #222;
}

.blog-content blockquote {
    border-left: 4px solid #4CAF50;
    background: #f8f9fa;
    color: #222;
    font-style: italic;
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .blog-detail-article {
        padding: 1.2rem 0.5rem 2rem 0.5rem;
    }

    .blog-hero-image img {
        height: 180px;
    }

    .breadcrumb {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .blog-detail-article header h1 {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 1.1rem;
    }
}

/* Enquiry Form Section */
.enquiry-section {
    padding: 70px 0 40px 0;
    background: #fff;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.enquiry-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.enquiry-header i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.enquiry-header p {
    color: #666;
    font-size: 1.08rem;
    margin: 0 auto;
    max-width: 500px;
}

.enquiry-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #333;
    font-size: .9rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: transparent;
    color: #222;
    transition: border 0.2s;
}

.bt-sub {
    background: #292F24 !important;
    font-weight: 200;
}

.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    background: transparent;
    color: #222;
    transition: border 0.2s;
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
    background: #f1f8e9;
}

.enquiry-form .btn {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

@media (max-width: 700px) {
    .enquiry-form {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.blog-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.blog-hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Posts Column */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-meta .dot {
    color: #4CAF50;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-content .btn {
    margin-top: 1rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: #f0f8f0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.1);
}

.sidebar-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.search-box input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-content {
    flex: 1;
}

.recent-content .author {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Categories */
.categories {
    display: flex;
    flex-direction: column;
}

.small-btn {
    background: #586d44;
    border-radius: 15px;
    display: flex;
    padding: 15px !important;
}

.color-black {
    color: #333;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.category-item .count {
    color: #4CAF50;
    font-weight: 600;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: white;
    color: #333;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.tag.active {
    background: #4CAF50;
    color: white;
}

/* Feedback Items */
.feedback-items {
    display: flex;
    flex-direction: column;
}

.feedback-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feedback-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-icon i {
    color: #4CAF50;
    font-size: 1rem;
}

.feedback-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-hero .hero-content h1 {
        font-size: 3rem;
    }

    .blog-main {
        padding: 40px 0;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .sidebar-section {
        padding: 1.5rem;
    }

    .recent-post img {
        width: 50px;
        height: 50px;
    }

    .tags {
        gap: 0.5rem;
    }

    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        height: 50vh;
    }

    .blog-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-content h2 {
        font-size: 1.3rem;
    }

    .sidebar-section {
        padding: 1rem;
    }
}

/* About Us Page - Bootstrap Styles */

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333 !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.btn-est {
    background: #ffffff30;
    color: #fff;
    font-weight: 100;
    border-radius: 50px;
    padding: 5px;
    padding-left: 25px;
}

.btn-est i {
    background: #fff;
    padding: 15px;
    border-radius: 50px;
    color: #ddd;
    rotate: 319deg;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #4CAF50 !important;
}

.mr0-auto {
    margin: 0 auto;
}

.btn-primary {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 100;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin: 25px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 2;
}

.no-border {
    border: none !important;
}

.bg {
    background: #E4EEDB !important;
}

.calender {
    background: #586d44 !important;
}

.btn-dic {
    background: #586D44;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 14px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 100 !important;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid #dddd;
    padding-bottom: 20px;
}

.hero-description {
    position: relative;
    z-index: 3;
    opacity: 0;
    font-weight: 100;
}

/* Statistics Section */
.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    color: #333;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 100;
}

.font-200 {
    font-weight: 200;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    line-height: 1;
    font-weight: 100;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    background: #F5F7F9;
    border-radius: 50px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-item i {
    background: #293024;
    padding: 1rem;
    border-radius: 50px;
    color: #ffffff;
}

.service-item.active i {
    background: #ffffff;
    color: #293024;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #4CAF50;
}

.service-item.active {
    background: #292F24;
    color: white;
}

.service-item.active .service-description {
    color: #fff;
}

.service-item.active .service-title {
    color: #fff;
}

.service-item h4 {
    font-weight: 300;
}

.service-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 200;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.service-item .fa-arrow-right {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-item:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* Success Stories Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: transparent;
}

.width-fit-content {
    width: fit-content;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.card-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.spaces {
    justify-content: space-between;
    align-items: center;
}

.badge.bg-success {
    background: #D1E6BF !important;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    color: #000;
    border: none !important;
}

/* Testimonial Section */
.testimonial-content {
    padding: 2rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stars {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    position: relative;
    font-weight: 300;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #4CAF50;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 100;
    letter-spacing: 1px;
}

.fw-300 {
    font-weight: 100;
    color: #b2b2b2;
}

/* Footer Enhancements */
footer {
    background: #333 !important;
}

footer .logo-icon {
    background: white;
    color: #333;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* footer .contact-info div {
    margin-bottom: 1rem;
} */

footer .social-media a {
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #4CAF50 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    /* .testimonial-image img {
        width: 250px !important;
        height: 250px !important;
    } */
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-item {
        padding: 1rem;
    }

    .card-img-top {
        height: 200px;
    }
}

/* Custom Bootstrap Overrides */
.bg-light {
    background-color: #f8f9fa !important;
}

.text-muted {
    color: #b2b2b2 !important;
    font-weight: 100;
}

.shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
    border-radius: 12px !important;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom Badge Styling */


.date-card {
    display: grid;

}

/* .badge {
    font-weight: 200;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: 7px;
    z-index: 1;
}

.badge.two {
   
    background-color: white !important;
    color: #000;
    font-weight: 200;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: unset !important;
    border-bottom-left-radius : 7px !important;
    border-bottom-right-radius : 7px !important;
    margin-top: -7%;
    padding-top: 10px !important;
    padding-bottom: 7px !important;
    z-index: 0;
} */

.badge-one {
    width: 60px;
    font-weight: 200;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 2px;
    border-radius: 7px;
    z-index: 1;
    font-size: 15px;
    text-align: center;
}

.badge-two {
    width: 60px;
    background-color: white !important;
    color: #000;
    font-weight: 200;
    letter-spacing: 0.5px;
    border-radius: unset !important;
    border-bottom-left-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
    margin-top: -7%;
    padding-top: 5px !important;
    padding-bottom: 0px !important;
    z-index: 0;
    font-size: 14px;
    text-align: center;
}

/* Button Enhancements */
.btn-lg {
    padding: .7rem 2rem;
    font-size: 1.1rem;
}

/* Image Enhancements */
img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Mudipara Property Page Styles */

/* Property Hero Section */
.property-hero {
    position: relative;
    margin: 1rem;
    overflow: visible;
}

.property-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.property-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.property-hero .hero-content {
    position: absolute;
    z-index: 3;
    height: 90%;
    display: flex;
    align-items: flex-end;
    width: 100%;
    text-align: right;
    right: 10rem;
}

.mb-10 {
    margin-bottom: 10vh;
}

.property-hero .hero-title {
    font-size: 5rem;
    font-weight: 100 !important;
    text-shadow: none !important;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border: none;
}

.property-hero .hero-location {
    font-size: 1.4rem;
    font-weight: 100;
}

/* Property Metrics Card */
.property-metrics-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
    margin-top: 10vh;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1rem 0;
    transform: translateY(-50%);
}

.thumbnail-gallery .gallery-nav {
    background: none;
    backdrop-filter: none;
    border-radius: 15px;
    padding: 1rem;
    margin: 0 3rem;
}

.thumbnail-gallery .gallery-btn {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: none;
}

.thumbnail-gallery .gallery-btn:hover {
    background: #2E7D32;
    transform: scale(1.1);
}

.thumbnail-gallery .thumbnails {
    flex: 1;
    justify-content: center;
}

.thumbnail-gallery .thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    border: 2px solid transparent;
}

.thumbnail-gallery .thumbnail-img.active,
.thumbnail-gallery .thumbnail-img:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: #4CAF50;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
}

.gallery-btn {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #2E7D32;
    transform: scale(1.1);
}

.thumbnails {
    flex: 1;
    justify-content: center;
}

.thumbnail-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-img.active,
.thumbnail-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #bbbbbb;
    font-weight: 100;
}

.feature-item span {
    color: #000000;
    font-weight: 400;
}

/* .feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
} */

/* .feature-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
} */

/* Property Overview Cards */
.pricing-card {
    background: #333 !important;
    color: white;
}

.suitability-card {
    background: #4CAF50 !important;
    color: white;
}

/* Map Container */
.map-container {
    background: #f0f8f0 !important;
}

.map-placeholder {
    background: #e8f5e8 !important;
    border: 2px dashed #4CAF50 !important;
}

/* Land Use Cards */
.land-use-card {
    background: #e8f5e8 !important;
    border: 1px solid #4CAF50;
    transition: all 0.3s ease;
}

.land-use-card:hover {
    background: #4CAF50 !important;
    color: white;
    transform: translateY(-2px);
}

/* Views Grid */
.views-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.view-tag {
    background: #f0f8f0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #4CAF50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-tag:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Gallery Side */
.gallery-side img {
    transition: transform 0.3s ease;
}

.gallery-side img:hover {
    transform: scale(1.05);
}

/* Document Cards */
.document-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border-radius: 35px;
}

.document-card p {
    color: #464646;
    font-weight: 100;
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 1rem;
}

.document-card .eye {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    transform: translateY(-50%);
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Document Pack Card */
.document-pack-card {
    background: #4CAF50 !important;
    color: white;
}

/* Service Icon Cards */
.service-icon-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-icon-card:hover .service-icon-wrapper {
    background: #4CAF50;
    color: white;
}

/* Video Placeholder */
.video-placeholder {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

/* Feature Cards */
.feature-card {
    background: #4CAF50 !important;
    color: white;
}

/* Climate Section */
.climate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.climate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.climate-bg .container {
    position: relative;
    z-index: 3;
}

.weather-card {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
}

.calendar-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.weather-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-item:last-child {
    border-bottom: none;
}

/* FAQ Section for Property Page */
.faq-item {
    background: #D1E4BE;
    background: linear-gradient(90deg, rgba(209, 228, 190, 0.41) 0%, rgba(116, 134, 100, 0.18) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.15);
}

.faq-question {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 100;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 175, 80, 0.05);
}

.faq-question i {
    color: #000000;
    font-size: .8rem;
    margin-left: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-answer {
    padding: 0 1.5rem 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #868686;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    font-weight: 100;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-hero {
        height: 60vh;
        min-height: 400px;
    }

    .property-hero .hero-title {
        font-size: 2.5rem;
    }

    .property-metrics-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .views-grid {
        gap: 0.5rem;
    }

    .view-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .thumbnail-img {
        width: 60px;
        height: 45px;
    }

    .gallery-nav {
        padding: 0.5rem;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .property-hero .hero-title {
        font-size: 2rem;
    }

    .property-hero .hero-location {
        font-size: 1.2rem;
    }

    .property-metrics-card {
        padding: 1rem;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .service-icon-card {
        padding: 1.5rem 1rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
}

/* Custom Bootstrap Overrides for Property Page */
.bg-success-light {
    background-color: #e8f5e8 !important;
}

.nav-tabs .nav-link {
    color: #333;
    border: none;
    border-bottom: 2px solid transparent;
    padding: .5rem 2rem;
    font-weight: 100;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.nav-tabs .nav-link.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
    background: transparent;
}

/* Animation Enhancements */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Image Enhancements */
img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Ramakkalmedu Property Page Styles */

/* Property Hero with Metrics Badges */
.property-hero .property-metrics-badges {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    display: flex;
    gap: 1rem;
    background: #00000069;
    padding: 2rem 4rem;
    border-radius: 20px;
}

.property-hero .metric-badge {
    background: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 100;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #9c9c9c;
    border-radius: 0;
}

.property-hero .metric-badge:last-child {
    border-right: none;
    border-radius: 0;
}

.property-hero .metric-badge span {
    font-size: 1rem;
}

.property-hero .property-info {
    z-index: 5;
}

.property-hero .hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.metric-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Distance Badges */
.distance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.distance-badge {
    background: #e8f5e8;
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #4CAF50;
    transition: all 0.3s ease;
}

.distance-badge:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Property Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 1rem;
}

.detail-item {
    display: flex;
    /* justify-content: space-between; */
    padding: 0.5rem 0;
    /* border-bottom: 1px solid #e9ecef; */
    flex-direction: column;
    gap: 0;
}

.detail-label {
    font-weight: 100;
    color: #333;
    width: 100%;
}

.detail-value {
    color: #666;
    width: 100%;
    font-size: 1.3rem;
    font-weight: 100;
}

/* Hexagonal Service Icons */
.service-hex-card {
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #c1c1c1;
    border-radius: 50px;
}

.service-hex-card li {
    font-weight: 100;
    color: #dbdbdb;
}

.service-hex-card h5 {
    font-weight: 100;
    color: #dbdbdb;
}

.service-hex-card p {
    font-weight: 100;
    color: #dbdbdb;
}

.service-hex-card:hover {
    transform: translateY(-5px);
}

.hex-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hex-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-hex-card:hover .hex-icon {
    background: #2E7D32;
    transform: scale(1.1);
}

/* Weather Widget */
.weather-widget {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
}

.current-temp {
    font-size: 3rem;
    font-weight: 700;
}

.forecast-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.forecast-item:last-child {
    border-bottom: none;
}

.calendar-widget {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Property Cards */
.property-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

/* Document Pack Section */
.document-pack-section {
    background: #4CAF50 !important;
    color: white;
}

.document-features {
    margin-top: 1rem;
}

/* Responsive Design for Ramakkalmedu */
@media (max-width: 768px) {
    .property-hero .property-metrics-badges {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        justify-content: center;
        display: none;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .distance-badges {
        gap: 0.3rem;
    }

    .distance-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .hex-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .hex-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -8px;
        right: -8px;
    }

    .current-temp {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .metric-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .experience-item {
        padding: 0.8rem;
    }

    .experience-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-hex-card {
        padding: 2rem;
    }

    .weather-widget {
        padding: 1.5rem !important;
    }

    .current-temp {
        font-size: 2rem;
    }
}

/* Custom Bootstrap Overrides for Ramakkalmedu */
.navbar {

    padding: 1rem 0;
}

.navbar-brand {
    color: white !important;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 1rem;
    font-weight: 100;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #4CAF50 !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Animation Enhancements */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Image Enhancements */
img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* GSAP Animation Support */
.hero-title,
.hero-description,
.stat-item,
.section-title,
.badge,
.service-item {
    opacity: 0;
    transform: translateY(0);
}

/* Ensure elements are visible for GSAP animations */
[data-scroll] {
    will-change: transform, opacity;
}

/* Service items initial state for animations */
.service-item {
    transform: translateX(0);
    opacity: 1;
}

/* Plots Page Styles */
.plots-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.plots-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/bg.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.plots-hero .hero-content {
    position: relative;
    z-index: 2;
}

.plots-hero .hero-stats {
    margin-top: 2rem;
}

.plots-hero .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.plots-hero .stat-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.plots-hero .stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Filter Styles */
.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #374151;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

/* Plot Card Styles */
.plot-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.plot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}


.plot-card:hover .plot-image img {
    transform: scale(1.05);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.booked {
    background: #dc2626;
    color: #fff;
}

.status-badge.available {
    background: #059669;
    color: #fff;
}

.status-badge.on-hold {
    background: #d97706;
    color: #fff;
}

.plot-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.plot-location {
    font-size: 0.9rem;
}

.plot-details .detail-row {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.plot-details .detail-row:last-child {
    border-bottom: none;
}

.plot-details .label {
    color: #6b7280;
    font-size: 0.875rem;
}

.plot-details .value {
    color: #374151;
    font-size: 0.875rem;
}

.plot-actions .btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plot-actions .btn:hover {
    transform: translateY(-2px);
}

/* Load More Button */
.load-more-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .plots-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .plot-card {
        margin-bottom: 1.5rem;
    }

    .plot-details .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Statistics items for counter animations */
.stat-item {
    opacity: 1;
    transform: translateY(0);
}

/* Badge animations */
.badge {
    opacity: 1;
    transform: scale(1);
}

/* Ramakkalmedu Page Specific Styles - Moved from inline styles */

/* Header and Navigation Styles */
.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link-custom {
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-enquire {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Hero Section Styles */
.hero-title-large {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-location-custom {
    font-size: 1.2rem;
    font-weight: 400;
}

/* About Property Section Styles */
.section-title-large {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-title-medium {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-muted-custom {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

.property-feature-item {
    font-size: 1rem;
    font-weight: 400;
}

/* Footer Styles */
.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-link {
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-copyright {
    font-size: 0.8rem;
    font-weight: 400;
}

/* Video and Image Styles */
.video-placeholder-custom {
    height: 400px;
}

.image-cover-custom {
    height: 400px;
    object-fit: cover;
}

.property-card-image {
    height: 120px;
    object-fit: cover;
}

/* Property Metrics/Features */
.property-metrics-section {
    margin-top: 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.metric-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-direction: column;
}

.metric-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.metric-icon {
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-item span {
    font-size: 0.95rem;
    font-weight: 400;
    color: #586D44;
    line-height: 1.4;
    text-align: left;
}

/* Responsive design for metrics grid */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-item {
        padding: 0.75rem;
    }

    .metric-icon {
        width: 35px;
        height: 35px;
    }

    .metric-item span {
        font-size: 0.9rem;
    }
}

/* Pricing Details Section */
.pricing-details-section {
    margin-top: 2rem;
}

.pricing-card {
    background: #343a40 !important;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 40px !important;
    padding: 2rem;
    text-align: center;
}

.pricing-card h4 {
    font-size: 1.1rem;
    font-weight: 100;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    /* gap: 0.75rem; */
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 100;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item.total {
    font-weight: 600;
}

.pricing-label {
    font-size: 0.95rem;
    color: #b8b8b8;
}

.pricing-value {
    font-size: 1rem;
    font-weight: 100;
    color: #b8b8b8;
}

.pricing-item.total .pricing-label {
    color: #fff;
    font-weight: 100;
}

.pricing-item.total .pricing-value {
    color: #fff;
    font-weight: 100;
}

/* LA Pattayam Section */
.pattayam-section {
    margin-top: 1.5rem;
}

.pattayam-card {
    background: #D8EAC7 !important;
    text-align: center;
    font-weight: 100;
    border-radius: 40px !important;
    padding: 3rem;
}

.pattayam-card h5 {
    color: #155724;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pattayam-card p {
    color: #155724;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Responsive design for pricing and pattayam sections */
@media (max-width: 768px) {

    .pricing-card,
    .pattayam-card {
        padding: 2rem !important;
        margin-bottom: 1rem;
    }

    .pricing-item {
        padding: 0.4rem 0;
    }

    .pricing-label,
    .pricing-value {
        font-size: 0.9rem;
    }

    .pattayam-card h5 {
        font-size: 1rem;
    }

    .pattayam-card p {
        font-size: 0.9rem;
    }
}

/* Utilities Information Section */
.utilities-section {
    margin-top: 2rem;
}

.utilities-list {
    padding: 0;
    padding-left: 4rem;
}

.utilities-list li {
    font-size: 1rem;
    color: #495057;
    font-weight: 400;
}

.utilities-list li strong {
    color: #333;
    margin-right: 0.5rem;
}

/* Amenities Section */
.amenities-section {
    margin-top: 2rem;
}

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

.amenity-card {
    background: #E5EEDD;
    border-radius: 50px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nearby-places li {
    font-size: 1.3rem;
    font-weight: 100;
}

.amenity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.amenity-title {
    color: #5C5E60;
    font-size: .9rem;
    font-weight: 100;
    margin-bottom: 0;
}

.amenity-detail {
    color: #000000;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    font-weight: 100;
    line-height: 1;
}

.amenity-distance {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Responsive design for amenities */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .amenity-card {
        padding: 1rem;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .amenity-title {
        font-size: 0.9rem;
    }

    .amenity-detail {
        font-size: 0.85rem;
    }

    .amenity-distance {
        font-size: 0.75rem;
    }
}

.property-details h4 {
    font-weight: 100;
    border-bottom: 1px solid #eaeaea;
    padding: 0 1rem 1rem;
}

.document-pack {
    background: #32392B;
    border-radius: 35px;
    position: relative;
}

.document-pack h3 {
    font-weight: 100;
    color: #e8e8e8;
}

.document-pack p {
    font-weight: 100;
    color: #929292;
}

.document-pack span {
    font-weight: 100;
    color: #cfcfcf;
}

.document-pack button {
    font-weight: 100;
    border-radius: 50px;
    top: 2rem;
    right: 2rem;
    position: relative;
    float: right;
}

.no-align {
    align-self: flex-start;
}

.offer-section {
    background-image: url(image/bg21.png);
    background-size: cover;
    background-position: top;
}

.offer-section .btn-outline-light {
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 100;
}

@media screen and (max-width: 991px) {
    .property-hero .property-info {
        width: 100%;
    }

    .vid-texts {
        align-items: center !important;
    }

    .pad-5 p {
        text-align: center;
    }

    .document-pack button {
        width: 100%;
    }

    .villa {
        position: relative;
        overflow-x: hidden;
    }

    .company-value .section-title {
        font-size: 3rem;
    }

    .copyrights_div {
        flex-direction: column;
        padding: 0 1rem;
    }

    .banner-buttons {
        width: 100%;
    }

    .gap-m3 {
        gap: 2rem;
    }

    .pad-5 {
        padding: 0 2rem ! important;
    }

    .about-text {
        font-size: 1.1rem;
        padding: 1rem
    }

    .section-header h2 {
        font-size: 4.5rem;
        text-align: left;
    }

    .property-title h2 {
        font-size: 3.5rem;
    }

    .mr-3 {
        margin: 1rem;
    }

    .p-5 {
        padding: 1rem !important;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .plots-header h2 {
        font-size: 4rem;
    }

    .mt-5 {
        margin-top: 0rem !important;
    }

    .social-links h4 {
        font-size: 1rem;
    }

    .hero-section {
        margin: 10px;
    }

    .property-hero .hero-content {
        right: 0;
        left: 0;
        text-align: center;
    }

    .mb-10 {
        margin-bottom: 5vh;
    }

    .gallery .row {
        gap: 1rem;
    }

    .document-pack {
        margin: 1rem;
        width: auto;
    }

    .document-pack h3 {
        margin-top: 1rem;
    }

    .document-pack button {
        position: unset;
        margin-top: 1rem;
    }

    .her-sec {
        margin: 10px;
    }
}

.hero-carousel .banner-content {
    display: grid;
    grid-template-columns: 1fr .5fr;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.hero-carousel .banner-content .banner-map {
    background: #000;
    padding: 1.3rem;
    border-radius: 50%;
    width: fit-content;
}

.hero-carousel .banner-content .banner-content-box:nth-child(2) .banner-desc {
    grid-column: 1 / -1;
    text-align: right;
    width: 100%;
}

.preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #748664;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100000000;
}

.progress-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--color-foreground);
}

.percentage {
    position: absolute;
    bottom: 2rem;
    right: 5rem;
    font-weight: 700;
    font-size: 40vw;
    line-height: 0.8;
    color: var(--color-foreground);
    opacity: 0.1;
}

@media (max-width: 500px) {
    .percentage {
        position: absolute;
        top: -12rem;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1000;
    }
}

.text-container {
    height: 3em;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    width: 200px;
}

.loading-text {
    font-weight: 300;
    font-family: "Gelion";
    color: var(--color-foreground);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: absolute;
    width: 100%;
    text-align: center;
}

.loading-text.initial {
    transform: translateY(0);
}

.loading-text.complete {
    transform: translateY(100%);
    opacity: 0;
}

.loading-text .char {
    display: inline-block;
}

.preloader-item {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    #headerLogo {
        width: 60%;
    }
}

@keyframes zoomInBackgrounds {
    0% {
        background-size: 100%;
    }

    50% {
        background-size: 120%;
    }

    100% {
        background-size: 100%;
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        /* Zoom in */
    }

    100% {
        transform: scale(1);
        /* Zoom out */
    }
}

.text-placeholder {
    background: url(image/bg22.jpg);
    background-position: bottom left;
}

.card-placeholder {
    background: url(image/bg23.png);
    background-position: bottom left;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.card-placeholder ul {
    padding: 2rem 4rem !important;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
}

.card1-placeholder ul {
    padding: 2rem 4rem !important;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 0;
}

.card1-placeholder {
    background: url(image/bg24.png);
    background-position: bottom left;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.text-placeholder ul {
    background-color: #333d29ad;
    height: 100%;
    color: #ebebeb;
    font-weight: 100;
    padding: 4rem;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    line-height: 2.2;
}

.pad-5 {
    padding: 0 5rem;
}

.pad-5 p {
    font-weight: 100;
    line-height: 1.2;
    color: #dcdcdc;
    font-size: 1rem;
}

.vid-texts {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 3rem;
    justify-content: end;
}

.vid1 {
    align-items: start;
    gap: 0;
    height: 100%;
}

.vid1 .section-title1 {
    font-weight: 100;
    color: #e5e5e5;
}

.align-left {
    left: 10rem;
    right: 0;
}

.left-auto {
    left: auto !important;
}

.tel,
.float {
    position: fixed;
    width: 45px;
    height: 45px;
    right: 20px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 23px;
    z-index: 99999999;
    transition: all 0.3s;
    text-decoration: none !important;
}

.tel:hover,
.float:hover {
    opacity: 0.9;
    transform: scale(1.05);
    text-decoration: none;
    color: #fff;
}

.tel {
    bottom: 70px;
    background-color: #FF0030;
}

.float {
    bottom: 10px;
    background-color: #25D366;
}

.my-float {
    width: 100%;
    height: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#loading2 {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #586d44a8;
    -webkit-transition: 1s 0.4s;
    transition: 1s 0.4s;
    font-size: 0px !important;
    visibility: hidden;
}

#loading2 .load {
    width: 7rem;
    height: 7rem;
    border: 5px solid #c0e09e;
    border-top: 6px solid #c0e09e;
    border-radius: 100%;
    margin: auto;
    -webkit-animation: spin 1s infinite;
    animation: spin 1s infinite;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bt-sub:hover {
    color: white !important;
}

.copyrights {
    padding: 25px 0px 0;
    border-top: 1px solid #404040;
}

.copyrights .saihasoft-link {
    font-weight: 300;
    font-size: 14.1334px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #ababab;
    text-decoration: none;
    margin-bottom: 0;
}