
body {
    
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
  }

  
  
  /* Remove horizontal scroll bar on mobile devices */
  @media (max-width: 768px) {
    body {
      overflow-x: hidden; /* Prevents horizontal scrolling on mobile devices */
    }
    html {
        /* This ensures that padding and border are included in the box sizing */
        box-sizing: border-box;
        overflow-x: hidden; /* Prevents horizontal scrolling on all devices */
      }
  }
.ourproject {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* Ensures that absolute positioning inside this container works correctly */
    padding-top: 150px; /* Adjust padding as needed to avoid overlap with the navbar or other elements */
}

.ourproject h5 {
    /* Our Project */
    position: absolute;
    
    height: 22px;
    left: calc(50% - 128px); /* Center the element */
    top: 175px;
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #008081;
}

.ourproject p {
    /* Explore how our work has changed the life of our customers. */
    position: absolute;

    left: calc(50% - 359px); /* Center the element */
    top: 232px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    color: #000000;
}

.project-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 150px;
    text-align: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: #FFFFFF;
}

.heading-1, .heading-2 {
    color: #000;
    cursor: pointer; /* Indicates the items are clickable */
}

.heading-1 h3 {
    padding: 14px;
    width: 300px;
    height: 56px;
    color: #FFFFFF;
    background: #008081;
}

.heading-2 {
    width: 300px;
    height: 56px;
    padding: 14px;
    border: 1px solid #008081;
    transition: background 0.3s ease;
}

.heading-2.active {
    background: #008081;
    color: #FFFFFF;
}


@media (max-width: 768px) {
    .ourproject {
        padding-top: 300px; /* Adjust to avoid overlap on smaller screens */
        padding-left: 20px;
        padding-right: 20px;
    }

    .ourproject h5 {
        position: static;
        font-size: 50px;
        margin: 0 auto;
        text-align: center;
       
    }

    .ourproject p {
        position: static;
        font-size: 18px;
        margin: 0 auto;
        text-align: center;
        padding-top: 20px;
    }

    .project-box {
        flex-direction: column;
        margin-top: 20px; /* Adjust to provide spacing on smaller screens */
        gap: 10px;
    }

    .heading-1, .heading-2 {
        width: 100%;
    }

    .heading-1 h3, .heading-2 h3 {
        width: 100%;
        height: auto;
        padding: 0px;
        font-size: 18px; /* Adjust font size for smaller screens */
    }

    .heading-2 {
        border: 1px solid #008081;
        background: transparent; /* No background for 'heading-2' on smaller screens */
    }
}


.project-images {
    display: flex;
    flex-direction: column; /* Stack images and button vertically */
    align-items: center;
    margin-top: 50px; /* Adjust as necessary */
    background: #F4F4F4;
    padding-bottom: 60px; /* Ensure there's space for the button */
}

.column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px; /* Add margin below images */
    margin-top: 40px;
}


.property-card {
    position: relative;
    overflow: hidden;
    }
.property-card a {
        text-decoration: none; 
        display: block; 
}
.property-card img{
    width: 400px;
}

.property-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 150, 136, 0.9); /* Semi-transparent turquoise */
    color: white;
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    font-family:'Oswald';

}
.details-1{
    display: flex;
    justify-content: space-between;
}
.details-2{
    display: flex;
    justify-content: space-between;
    
}
.location{
    font-size: 22px;
    color: #fff;
}
.floor-detail{
    display: flex;
    gap: 20px;
    color: #fff;
}
.crn-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}
.size{
    margin-top: 20px;
    color: #fff;
}

.details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details p {
    font-size: 14px;
    margin: 0;
}
/* Media queries for responsiveness */
@media screen and (max-width: 1024px) {
    .column {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .crn-number {
        font-size: 32px;
    }
    .details-2 {
        gap: 40px;
    }
    .details-1 {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .property-card img{
        width:300px;
    }
    .contact-form {
        background-color: #F4F4F4;
        padding: 40px;
        margin: 40px auto;
        width: 100%;
        margin-top: 40px;
    }
    .details-1 {
        display: flex;
        justify-content: space-between;
    }
    .size{
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .property-card img{
        width:300px;
    }
    .contact-form {
        background-color: #F4F4F4;
        padding: 40px;
        margin: 40px auto;
        width: 100%;
        margin-top: 40px;
    }
}
.see-more {
    text-align: center;
    margin-top: 30px;
}

.see-more-button {
    background-color: #00AEB1;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.see-more-button:hover {
    background-color: #007f7a;
}
@media (max-width: 768px) {
    .column {
        display: flex;
        flex-direction: column; /* Stack images and button vertically */

    }
}
.see-more {
    text-align: center;
    font-family: 'Teko';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    /* identical to box height, or 108% */
    text-align: center;
    padding: 10px;
    
    color: #FFFFFF;
}

.btn-see-more {
    display: inline-block;
    padding: 14px;
    font-size: 26px;
    color: #fff;
    background-color: #008081; /* Change to your desired color */
    text-decoration: none;
    width: 300px;
    height: 56px;

    
}

.btn-see-more:hover {
    background-color: #008081; /* Darker shade for hover effect */
}
.video-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    gap: 30px;
}
.video-heading h3{
    /* Walkthroughs Video Tour */



left: calc(50% - 581px/2 + 0.5px);


font-family: 'Oswald';
font-style: normal;
font-weight: 500;
font-size: 72px;
line-height: 22px;
/* identical to box height, or 31% */
text-align: center;
text-transform: capitalize;

color: #008081;


}
.video-heading p{
    /* Over 500 happy family members are part of joshpunar family. */


align-items: center;
padding: 20px;


font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 26px;
/* identical to box height, or 108% */
text-align: center;

color: #000000;


}

@media (max-width: 768px) {
    .video-heading {
        margin-top: 40px; /* Adjust to ensure proper spacing on smaller screens */
        gap: 20px; /* Reduced gap between heading and paragraph */
        padding: 0 20px; /* Add horizontal padding for better spacing */
    }

    .video-heading h3 {
        font-size: 50px; /* Reduced font size for smaller screens */
        line-height: 1.2; /* Adjust line height for readability */
    }

    .video-heading p {
        font-size: 18px; /* Reduced font size for smaller screens */
        line-height: 1.5; /* Adjust line height for readability */
        padding: 10px 0; /* Reduced padding for smaller screens */
    }
}

.videos-container {
    position: relative;
    max-width: 640px; /* Adjust based on the size of the video */
    margin: auto;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners */
    display: flex;
    gap: 20px;
    
}

.custom-video-player {
    width: 100%;
    height: 400px;
    border-radius: 10px; /* Rounded corners to match container */
    display: block;
    background-color: black;
}



.custom-video-player::-webkit-media-controls-play-button {
    background-color: rgba(0, 0, 0, 0.6); /* Slightly transparent play button */
    border-radius: 50%; /* Round play button */
    height: 48px;
    width: 48px;
}

.custom-video-player::-webkit-media-controls-timeline-container {
    background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent timeline */
}

.custom-video-player::-webkit-media-controls-current-time-display,
.custom-video-player::-webkit-media-controls-time-remaining-display {
    color: #fff; /* White text for the time display */
}

.custom-video-player::-webkit-media-controls-volume-slider {
    filter: brightness(1.2); /* Slightly brighter volume slider */
}

.custom-video-player::-webkit-media-controls-fullscreen-button {
    background-color: rgba(0, 0, 0, 0.6); /* Fullscreen button background */
    border-radius: 50%;
}

.video-para{
    text-align: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    
}

.video-items-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth scrolling effect */
    gap: 10px;
    flex: 0 0 33.333%; /* 3 items per row */
}

.video-item {
   
    /* Ensure padding is included in the width */
   
    background-color: #FFFFFF;
    width: 100%;
  
  
}

.video-item iframe {
    width: 100%;
    height: 315px; /* Adjust height as needed */
}

.video-item p {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000;
    margin-top: -10px;
    padding: 10px;
    
    background-color: #FFFFFF;
}

.video-item h3 {
    background-color: #FFFFFF;
    font-family: 'Teko';
    font-style: normal;
    font-weight: 700;
    font-size: 20.3258px;
    line-height: 27px;
    padding: 5px;
    color: #008081;
}

.pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination-dot {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 5px;
    background-color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #818181;
}

.pagination-dot.active {
    background-color: #008081;
    border: 1px solid #818181;
}

@media (max-width: 768px) {
.videos-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.video-item{
width: 100%;
}
.pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    display: none;
}
}
.contact h3{
    margin-top: 60px;
   
   font-family: 'Oswald';
   font-style: normal;
   font-weight: 500;
   font-size: 72px;
   line-height: 22px;
   /* identical to box height, or 31% */
   text-align: center;
   text-transform: capitalize;
   
   color: #008081;
   
   
   }

   @media (max-width: 768px) {
    .contact h3 {
        margin-top: 30px; /* Reduce margin for smaller screens */
        font-size: 36px; /* Adjust font size for better readability on small screens */
        line-height: 40px; /* Adjust line height for better spacing */
    }
}

.contact-form {
    background-color: #F4F4F4; /* Adjust the background color as needed */
    padding: 40px;
    margin: 40px auto;
    width: 80%; /* Adjust width as needed */

    margin-top: 40px;
    
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.form-field {
    width: 48%; /* Two fields side by side */
}

.form-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 5px;
    color: #000;
}

@media (max-width: 768px) {
    .form-field label {
        display: block;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 12px;
        margin-bottom: 5px;
        color: #000;
    }
    .video-items-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
    flex-direction: column;
   
}
.video-items-wrapper {
    flex-wrap: nowrap;
}

.video-item {
    flex: 0 0 100%; /* Each video takes up the full width for small screens */
}
}
.form-field input {
    width: 80%;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-bottom: 1px solid #767676;
    color: #000000;
    
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit button {
    background-color: #008081; /* Adjust to match the theme */
    color: #FFFFFF;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.form-submit button:hover {
    background-color: #005f5f; /* Darker shade on hover */
}
input::placeholder {
    color: #888; /* Light grey color for the placeholder */
    font-style: italic; /* Italicize the placeholder text */
    font-size: 16px; /* Adjust the size as needed */
    text-align: center; /* Center the placeholder text */
}

input {
    border: none; /* Remove the border */
    border-bottom: 2px solid #767676; /* Add a bottom border to give a clean look */
    padding: 10px 0; /* Adjust padding as needed */
    width: 100%; /* Make sure the input takes full width */
    font-size: 16px; /* Adjust the font size as needed */
    outline: none; /* Remove outline on focus */
    background: none; /* Remove background */
}

input:focus::placeholder {
    color: transparent; /* Hide placeholder on focus */
}



@media only screen and (min-width: 1440px) and (max-width: 1920px){
    .column {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        margin-bottom: 20px;
        margin-top: 40px;
    }
}
@media (max-width: 320px){
.form-field label {
    display: block;
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    font-size: 10px;
    margin-bottom: 5px;
    color: #000;
}}