﻿@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Quicksand:wght@300..700&display=swap');


body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    position: relative;
}
.ss-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: white;
    position: relative;
    border-bottom: 1px solid #ddd;
}

/* Logo */
.ss-logo img {
    height: 60px;
}

/* Enquire Button - center */
.ss-enquire-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ss-enquire-btn {
    padding: 0px 25px;
    border: 1px solid #000;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
}

/* Nav - desktop */
.ss-nav {
    display: flex;
    gap: 20px;
}

    .ss-nav a {
        text-decoration: none;
        color: #000;
        font-weight: 500;
        line-height: 39px;
        font-size: 16px;
    }

/* Hamburger toggle */
.ss-menu-toggle {
    display: none;
}

.ss-menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .ss-header {
        flex-wrap: wrap;
        position: relative;
    }

    .ss-menu-icon {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .ss-enquire-wrapper {
        order: 2;
        width: 100%;
        text-align: center;
        margin: 10px 0;
        position: static;
        transform: none;
    }

    .ss-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        width: 200px;
        padding: 10px;
        border-left: 1px solid #ccc;
        box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        text-align: right;
    }

    .ss-menu-toggle:checked ~ .ss-nav {
        display: flex;
    }

    .ss-nav a {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        text-align: start;
    }
}
.main-content {
    text-align: center;
    padding: 40px 20px;
}

.subtitle {
    font-size: 2.2rem;
    letter-spacing: 2px;
}

.title {
    font-size: 2.8rem;
    letter-spacing: 3px;
    margin: 10px 0;
}

.location {
    font-size: 1rem;
    color: gray;
    margin-bottom: 30px;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 10px;
}

.logo-image {
    margin-top: 40px;
}

    .logo-image img {
        width: 60%;
        max-width: 300px;
        height: auto;
    }

@media (max-width: 480px) {
    .subtitle {
        font-size: 1.5rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo-image img {
        width: 80%;
    }
}



.map-section {

    position: relative;
    background-color: #f0f0f0;
    overflow: hidden;
    height:70vh;
}

.map-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-image {
    max-width: 100%;
   
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.zoom-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

    .zoom-controls button {
        margin: 0 5px;
        padding: 5px 10px;
        font-size: 16px;
    }

.details-section {
    width: 50%;
    height: 70vh;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    border-left: 1px solid #ccc;
    font-family: Arial, sans-serif;
}

    .details-section h2 {
        margin-top: 0;
        font-size: 18px;
        font-weight: bold;
        color: #000;
    }

    .details-section h3 {
        font-size: 14px;
        font-weight: bold;
        color: #f37021;
        margin-top: 20px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .details-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .details-section li {
        font-size: 14px;
        color: #333;
        border-left: 1px solid #ccc;
        padding-left: 10px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .map-section, .details-section {
        width: 100%;
        height: 50vh;
    }

    .details-section {
        border-left: none;
        border-top: 1px solid #ccc;
    }
}


.gallery {
    margin-bottom: 2rem;
}

    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }




.link-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 100%;
}

.link-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 150px;
}

/* Modal Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
}

.popup-content {
    background-color: #555;
    margin: 10% auto;
    padding: 40px 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.close-btn {
    color: #fff;
    float: right;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}

.form-heading {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 30px;
}

.form-fields {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

    .form-fields input {
        padding: 15px 20px;
        border-radius: 30px;
        border: 1px solid #888;
        font-size: 14px;
        background: transparent;
        color: #fff;
        outline: none;
        min-width: 220px;
    }

        .form-fields input::placeholder {
            color: #ccc;
        }

.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .form-fields {
        flex-direction: column;
        align-items: center;
    }

    .popup-content {
        padding: 30px 15px;
    }

    .link-group {
        flex-direction: column;
        gap: 15px;
    }
}

.ss-callback{
    padding:40px;
}

.ss-footer {
    padding: 0 45px;
    background-color: #555;
    text-align: center;
}

.ss-heading {
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.ss-form {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    justify-content: center !important;
    margin-bottom: 0px !important;
}

.ss-input {
    padding: 15px !important;
    border: none;
    border-radius: 30px !important;
    background: #ffffff !important;
    color: white !important;
    width: 250px !important;
}

.ss-button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: black;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.ss-contact-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    text-align: left !important;
    margin-bottom: 30px !important;
}

.ss-contact-item {
    min-width: 200px;
    margin: 10px;
}

    .ss-contact-item a {
        color: white;
        text-decoration: underline;
    }

.ss-footer-bottom {
    border-top: 1px solid #777;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.9em;
    color: #ccc;
}
















.hero-section {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

    .hero-section img {
        width: 100%;
        height: auto;
        display: block;
    }

.info-box {
    position: absolute;
    right: 0%;
    bottom: 0%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width:40%;
    border-left: 5px solid #f58220;
}

    .info-box h2 {
        font-size: 30px;
        color: #f58220;
        margin-bottom: 20px;
    }

    .info-box ul {
        list-style: none;
        font-size: 16px;
        color: #333;
        padding: 12px 26px;
    }

        .info-box ul li {
            margin-bottom: 5px;
        }

            .info-box ul li strong {
                font-weight: bold;
            }

@media (max-width: 768px) {
    .info-box {
        position: static;
       width: 100%;
        border-left: none;
        border-top: 5px solid #f58220;
        margin-top: -5px;
    }

        .info-box h2 {
            font-size: 24px;
        }

        .info-box ul {
            font-size: 14px;
            padding:0px !important;
        }
   .rams {
       
        padding: 19px 0px 34px !important;
    }
}
.rams {
    text-align: center;
    margin: auto;
    display: block;
    padding: 0px 0px 40px;
}


.offer-header {
    font-size: 28px;
    font-weight: bold;
    color: gold;
}

.offer-subheader {
    font-size: 20px;
    margin-top: 10px;
}

.offer-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.circle {
    border: 8px solid #E7AD00;
    border-radius: 50%;
    padding: 40px 20px;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

    .circle h3 {
        margin: 0;
        font-size: 45px;
        font-weight: 700;
    }

    .circle p {
        margin: 5px 0 0;
        font-size: 20px;
        font-weight: 400;
    }

.brochure-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: gold;
    color: #084b3d;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .circle {
        width: 120px;
        height: 120px;
        padding: 20px 10px;
    }

        .circle h3 {
            font-size: 18px;
        }

        .circle p {
            font-size: 12px;
        }
}







a{
    text-decoration:none !important;
}




























.invest-section {
    font-family: 'Poppins', sans-serif;
  
    padding: 40px 0;
}

.invest-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .invest-heading h2 {
        font-size: 2rem;
        font-weight: 400;
    }

    .invest-heading span {
        color: #007a3d;
        font-weight: 600;
    }

.invest-box {
    border: 1px solid #eee;
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .invest-box:hover {
        transform: translateY(-5px);
    }

    .invest-box h3 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .invest-box p {
        font-size: 0.85rem;
        margin-top: 8px;
        color: #444;
    }

.invest-button {
    display: block;
    width: max-content;
    margin: 40px auto 0;
    background-color: #ffc107;
    color: black;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .invest-button:hover {
        background-color:#e6b200;
            
    }
    .jom{
        text-align:center;
        margin:auto;
        display:block;
    }


.jams {
    width: 55% !important;
    height: 100px;
    margin-top:15px;
}
.ros{
    margin:20px;
}
.res{
    color:white;
}



.now {
    background-color: #004a34;
    color:white !important;
   
}





.ss-floor-wrapper {
 
    text-align: center;
}

.ss-floor-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
}

.ss-floor-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0d1f16;
    margin-bottom: 30px;
}

.ss-floor-table {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
}

    .ss-floor-table th, .ss-floor-table td {
        border: 1px solid #fff;
        padding: 15px;
        text-align: center;
    }

    .ss-floor-table thead {
        background-color: #004A34;
        color: #fff;
        font-weight: 600;
    }

    .ss-floor-table tbody {
        background-color: #004A34;
        color: #E7AD00;
        font-weight: 700;
    }

@media (max-width: 768px) {
    .ss-floor-heading {
        font-size: 22px;
    }

    .ss-floor-table th, .ss-floor-table td {
        font-size: 14px;
        padding: 10px;
              
    }

        
}
.ross{
    margin:auto;
    text-align:center;
    display:block
}
.rs {
    font-size: 25px;
}
.roj{
    color:white;
}

.rooj{
    font-size:25px;
}



.new-form-section {
    background-color: #f5f5f5;
    padding: 0px 0px;
}

.mobile-form-wrapper {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-form-wrapper {
        display: block;
    }
    .jams {
        width: 77% !important;
        height: 45px;
        margin-top: 10px;
    }
    .new-form-section {
        padding: 35px 0px;
    }
}

.mobile-form-heading {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
}

.mobile-input {
    height: 45px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
}

.mobile-textarea {
    height: 80px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    resize: none;
}

.mobile-submit-btn {
    background-color: #ff5a3c;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

.mobile-footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

    .mobile-footer-bottom a {
        color: #333;
        text-decoration: underline;
    }
.ras {
    margin: auto;
    text-align: center;
    display: block;
    width: 20%;
    border: 1px solid #E7AD00;
    color: #E7AD00;
    background:transparent;
}
.but {
    text-align: center;
    color: black;
}

.back {
    background: #004A34;
    padding: 50px 0px 50px;
}

.rost {
    padding: 50px;
}
.hes{
    color:white !important;
}
.web-container {
    width: 80% !important;
    margin: 0 auto;
}
.del {
    padding: 40px 0px 70px;
}
.star p {
    margin: 0;
    line-height: normal;
    color: #8d8d8d;
}









/* Layout column for phone button */
.phone-column {
    width: auto;
    display: inline-block;
    padding: 10px;
}

/* Wrapper to position button */
.call-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Call button styles */
.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: #004A34;
    transition: background 0.3s ease;
}

    /* Optional hover effect */
    .call-button:hover {
        border: white;
    }

/* Phone number text (hidden on small screens) */
.phone-number-text {
    display: inline;
}

/* Hide phone number on screens smaller than 768px */
@media (max-width: 767px) {
    .call-button{
        margin:auto;
    }
    .ss-footer {
        padding: 36px 36px;
    }
    .ss-callback {
        padding: 0;
    }
}
.sal {
    text-align: center;
    margin: auto;
    display: block;
    color: black;
}