    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background: #d2cece;
        color: #222;
        line-height: 1.7;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    /* Navbar */
    nav {
        position: sticky;
        top: 0;
        background: #004466;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        /* Removed border bottom */
        /* Removed box-shadow to eliminate any borderline effect */
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        z-index: 1000;
    }

    nav .brand {
        color: #fdb714;
        font-weight: 900;
        font-size: 1.8rem;
        letter-spacing: 1.5px;
        user-select: none;
    }

    nav ul.menu {
        display: flex;
        gap: 1.4rem;
        list-style: none;
    }

    nav ul.menu li a {
        color: white;
        font-weight: 600;
        font-size: 1rem;
        padding: 6px 10px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    nav ul.menu li a:hover,
    nav ul.menu li a:focus {
        background: #fdb714;
        color: #004466;
        outline: none;
    }

    .hamburger {
        display: none;
        font-size: 2rem;
        cursor: pointer;
        color: white;
        user-select: none;
    }

    @media (max-width: 768px) {
        nav ul.menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 0;
            background-color: #004466;
            width: 200px;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        nav ul.menu.active {
            display: flex;
        }

        .hamburger {
            display: block;
        }

        nav ul.menu li {
            margin: 10px 0;
        }
    }

    /* Property header */
    .property-header {
        background: url('pics/godrej-raipur-banner.webp') no-repeat center/cover;
        color: white;
        /*padding: 30px 2rem ;*/
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        /*gap: 1rem;*/
       margin-bottom:0;
       padding-bottom:0;
       
    }

    .property-info {
        max-width: 400px;
        height:100px;
        flex: 1 1 300px;
    }

    .property-title {
        font-size: 1.7rem;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 0.3rem;
        text-align: center; /* Align title to the left */
         margin: 0; /* Remove default margin */
    }

    .property-developer,
    .property-location,
    .property-details,
    .property-price {
        font-size: 1.1rem;
        margin: 5px 0;
        text-align:center;
    }
    
    .text-border-box {
        border: 2px rgba(255, 255, 255, 0.7); /* Light border */
        background-color: rgba(0, 0, 0, 0.5); /* Light transparent background */
        padding: 20px ; /* Padding around the text */
       
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
        padding-left:0;
        margin-left:0;
       
    }

/*ul code*/

.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style-position: inside; /* Place bullet points inside the content */
  list-style-type: disc;
  padding-left: 0;
}

.info-list li {
  flex: 0 0 calc(50% - 8px);
  margin-bottom: 8px;
  box-sizing: border-box;
}

.info-list strong {
  font-weight: bold;
}

/* Optional: Adjust for very narrow screens */
@media (max-width: 400px) {
  .info-list li {
    flex: 1 0 100%;
  }
}

    .close-btn {
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    /*Country code*/
    .country-code-select-wrapper {
            display: flex;
            align-items: center; /* Vertically align the elements */
        }

        .country-code-select {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px 0 0 5px; /* Rounded corners on the left */
            margin-right: 0; /* Remove default margin */
            width: 80px; /* Adjust as needed */
            appearance: none;  /* Remove default arrow */
            -webkit-appearance: none; /* Also remove for Safari */
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>'); /* Custom arrow */
            background-repeat: no-repeat;
            background-position: right 8px center; /* Position the arrow */
            background-size: 16px; /* Size of the arrow */
            padding-right: 25px; /* Make space for the arrow */
        }

        .country-code-select:focus {
            outline: none;
            border-color: #007bff; /* Highlight on focus */
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); /* Add a shadow */
        }

        .phone-input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 0 5px 5px 0; /* Rounded corners on the right */
            margin-left: 0; /* Remove default margin */
            flex: 1; /* Allow input to take up remaining space */
        }

        .phone-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }

        .input-group {
            display: flex;
            align-items: stretch;
            margin-bottom: 10px;
        }
        
     


    /* Large enquiry form */
    .enquiry-form-large {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        padding: 2rem;
        color: #004466;
        font-weight: 600;
        flex: 1 1 320px;
        min-width: 280px;
        max-width: 380px;
    }

    .enquiry-form-large h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .enquiry-form-large form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .enquiry-form-large input,
    .enquiry-form-large textarea {
        border: 2px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        padding: 10px 7px;
        transition: border-color 0.3s ease;
        width: 100%;
        resize: vertical;
        font-family: inherit;
    }

    .enquiry-form-large input:focus,
    .enquiry-form-large textarea:focus {
        border-color: #fdb714;
        outline: none;
    }

    .enquiry-form-large textarea {
        min-height: 80px;
    }

    .enquiry-form-large button {
        background-color: #004466;
        border: none;
        padding: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 8px;
        cursor: pointer;
        color: #ffffff;
        box-shadow: 0 6px 16px rgba(253, 183, 20, 0.6);
        transition: background-color 0.3s ease;
    }

    .enquiry-form-large button:hover,
    .enquiry-form-large button:focus {
        background-color: #fdd85c;
        outline: none;
    }

    /* Main content */
    main {
        max-width: 1100px;
        margin: 3rem auto 5rem;
        padding: 0 1.2rem;
        line-height: 1.6;
        flex-grow: 1;
    }

    section {
        margin-bottom: 4rem;
    }

    h2.section-title {
      
        font-weight: 700;
        font-size: 2.6rem;
        text-align: center;
        color: #004466;
        margin-bottom: 1rem;
    }

    #about p,
    #overview p {
        max-width: 1100px;
        margin: 0 auto 1em;
        font-size: 1.1rem;
        color: #334455;
        text-align: justify;
       padding-top:0;
       margin-top:0;
    }
    
    h3{
        font-size:1.6rem;
         margin-bottom: 1rem;
        
        
    }

    /* Gallery */
    #gallery .gallery-grid {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        max-width: 960px;
        margin: auto;
        padding: 0 1rem;
    }

    #gallery img {
        width: 380;
        height: 200;
        border-radius: 12px;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        object-fit: cover;

    }

    #gallery img:hover,
    #gallery img:focus {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(253, 183, 20, 0.6);
        outline: none;
    }

    /* Amenities */
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .amenity {
        background: rgb(187, 173, 173);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        user-select: none;
        padding: 10px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.3s ease;
        cursor: default;
    }

    .amenity img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 10px 10px 0 0;
        margin-top: 10px;
    }

    .amenity p {
        color: #004466;
        font-weight: 700;
        font-size: 1.1rem;
        padding: 10px 8px 0;
        margin: 0;
    }

    .amenity:hover,
    .amenity:focus {
        box-shadow: 0 8px 30px rgba(253, 183, 20, 0.7);
        outline: none;
    }


    /* Map */
    #map iframe {
        width: 100%;
        height: 400px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    /*FAQ*/
    
     .faq-container {
            width:100%;
            margin: 20px auto;
        }

        .faq-question {
            padding: 15px;
            background-color: #f0f0f0;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
            margin: 0;
            transition: background-color 0.3s ease;
            position: relative; /* For the arrow icon */
        }

        .faq-question:hover {
            background-color: #e0e0e0;
        }

        .faq-question.active {
            background-color: #d0d0d0;
        }

        .faq-answer {
            padding: 15px;
            background-color: #ffffff;
            display: none;
            border-bottom: 1px solid #ddd;
            margin: 0;
        }

        .faq-answer.active {
            display: block;
        }

       .faq-question::after {
            content: '+'; /* Default arrow for closed state */
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            transition: transform 0.3s ease; /* Smooth transition for rotation */
        }

        .faq-question.active::after {
            content: '−'; /* Change arrow for expanded state */
             transform: translateY(-50%) rotate(180deg); /* Rotate the arrow */
        }
        
        /*Price*/
        
         .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-family: Arial, sans-serif;
        }

        .pricing-table th, .pricing-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: center;
        }

        .pricing-table th {
            background-color: #f0f0f0;
        }

        .pricing-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .pricing-table td:nth-child(2),
        .pricing-table td:nth-child(3) {
            text-align: center;
        }

        .offer-highlight {
            font-weight: bold;
            color: #0078d7;
        }

        @media screen and (max-width: 600px) {
            .pricing-table {
                display: block;
                overflow-x: auto;
            }
            .pricing-table thead, .pricing-table tbody, .pricing-table tr, .pricing-table td, .pricing-table th {
                display: block;
            }
            .pricing-table thead tr {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            .pricing-table tr {
                border: 1px solid #ddd;
                margin-bottom: 10px;
            }
            .pricing-table td {
                border: none;
                border-bottom: 1px solid #ddd;
                position: relative;
                padding-left: 50%;
            }
            .pricing-table td:before {
                position: absolute;
                left: 6px;
                width: 45%;
                padding-right: 10px;
                white-space: nowrap;
                content: attr(data-column) ":";
                font-weight: bold;
            }
            .pricing-table td:nth-child(1):before { content: "Offers:"; }
            .pricing-table td:nth-child(2):before { content: "Sq. ft:"; }
            .pricing-table td:nth-child(3):before { content: "Prices:"; }
        }

    /* Footer */
    footer {
        background: #004466;
        color: white;
        padding: 1.6rem 2rem;
        text-align: center;
        margin-top: -3rem;
        /* Removed border top */
        /* border-top: 2px solid #004466; */
    }

    footer .contact-info p {
        margin-bottom: 0.3rem;
        font-size: 1rem;
    }

    /* Vertical open form link */
    #openFormLink {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(270deg, #ff6b6b, #feca57, #3554c3);
    background-size: 600% 600%;
    color: white;
    padding: 12px 16px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    user-select: none;
    transition: background-color 0.3s ease;
    animation: gradientAnimation 1s ease infinite;
    z-index: 1001;
    align-items:center;
    justify-content:center;
    height:auto;
    
}
    
   @keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
    #openFormLink:hover,
    #openFormLink:focus {
        background: #072e3d;
        outline: none;
    }

    /* Slideout panel */
    #enquiryFormPanel {
        position: fixed;
        top: 0;
        right: -350px;
        width: 350px;
        max-width: 90vw;
        height: auto-fit;
        background: white;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1002;
        display: flex;
        flex-direction: column;
    }

    #enquiryFormPanel.open {
        right: 0;

    }

    #enquiryFormPanel header {
        padding: 1rem;
        background: #007bff;
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #enquiryFormPanel header button.closeBtn {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        line-height: 1;
    }

    /* Slideout form styling */
    #enquiryForm {
        padding: 1rem;
        flex-grow: 1;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    #enquiryForm label {
        margin-top: 0.8rem;
        font-weight: 600;
        color: #333;
    }

    #enquiryForm input,
    #enquiryForm textarea {
        margin-top: 0.25rem;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        border: 1.5px solid #ccc;
        border-radius: 6px;
        transition: border-color 0.3s ease;
        font-family: inherit;
        resize: vertical;
        width: 100%;
        box-sizing: border-box;
    }

    #enquiryForm input:focus,
    #enquiryForm textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px #007bffaa;
    }

    #enquiryForm textarea {
        min-height: 100px;
    }

    #enquiryForm button[type="submit"] {
        margin-top: auto;
        background-color: #004466;
        border: none;
        color: white;
        padding: 12px 0;
        font-size: 1.1rem;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 700;
        transition: background-color 0.3s ease;
    }

    #enquiryForm button[type="submit"]:hover,
    #enquiryForm button[type="submit"]:focus {
        background-color: #0056b3;
        outline: none;
    }

    /* Accessibility focus outline */
    :focus-visible {
        outline: 3px solid #fdb714;
        outline-offset: 2px;
    }

    /* Mobile responsiveness */
    @media (max-width: 1024px) {
        #enquiryFormPanel {
            width: 350px;
            max-width: 80vw;
        }
    }

    @media (max-width: 768px) {
        #enquiryFormPanel {
            width: 300px;
            max-width: 80vw;
        }
    }

    @media (max-width: 480px) {
        .property-header {
            flex-direction: column;
            padding: 20px 1rem;
        }

        .property-info,
        .enquiry-form-large {
            flex: 1 1 100%;
            max-width: 100%;
        }

        .property-title {
            font-size: 2rem;
        }

        main {
            margin: 2rem 1rem 4rem;
            padding: 0;
        }

        #gallery .gallery-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 0;
        }

        #map iframe {
            height: 300px;
        }

        #enquiryFormPanel {
            width: 80vw;
            max-width: 350px;
        }
    }
    /* Add these CSS styles to your existing stylesheet or inside a <style> tag */
    .captcha-container {
      margin-top: 15px;
      margin-bottom: 20px;
    }
    .captcha-question {
      display: block;
    }
    .error-message {
      color: #ff6b6b;
      font-weight: 600;
      display: none;
    }
