/* navbar */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.titlee{
    text-align: center;
    justify-content: center;
    color: #2980b9;
    margin-top: 5px;
}

.project-title {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.navbar {
    background-color: #2f8d46;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

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

.nav-list {
    list-style-type: none;
    display: flex;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s;
}

.nav-item:hover {
    background-color: #1f6e33;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
    }

    .nav-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .project-title {
        font-size: 1.2rem;
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 12px;
    }
}
/* video */
 /* Video section styles */
 .video-section{
    text-align: center;
    margin-top: 20px;
}
.video-section video {
    max-width: 100%;
    height: auto;
}
/* crousel */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.project-overview {
    padding: 50px 0;
    background-color: #f4f4f4;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.project-description {
    text-align: center;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    height: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

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

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .project-overview {
        padding: 30px 0;
    }

    .carousel-btn {
        padding: 5px 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 24px;
    }

    .project-description {
        font-size: 14px;
    }

    .carousel-btn {
        padding: 3px 8px;
        font-size: 14px;
    }
}
/* ... (keep the previous CSS) ... */

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* project detils */
section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

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

/* Project Details */
/* cerise */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.property-details {
    padding: 60px 0;
}

.property-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.property-image {
    flex: 1 1 400px;
    max-width: 100%;
}

.property-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.property-description {
    flex: 1 1 400px;
}

.property-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .property-container {
        flex-direction: column;
    }

    .property-image,
    .property-description {
        flex: 1 1 100%;
    }
}

.gallery-section {
    padding: 60px 0;
}

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

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4 / 3;
}

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

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

/* Media query for larger screens */
@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, minmax(250px, 300px));
        justify-content: center;
    }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
.floor-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.floor-plan-item {
    flex: 1;
    max-width: calc(33.333% - 20px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floor-plan-item:hover {
    transform: translateY(-10px);
}

.floor-plan-item img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .property-details {
        flex-direction: column;
    }

    .property-image {
        max-width: 100%;
    }

    .floor-plans {
        flex-direction: column;
    }

    .floor-plan-item {
        max-width: 100%;
    }
}
/* table */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.property-table th,
.property-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.property-table th {
    background-color: #3498db;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-table tbody tr:hover {
    background-color: #f5f5f5;
}

@media screen and (max-width: 600px) {
    .property-table thead {
        display: none;
    }
    
    .property-table, .property-table tbody, .property-table tr, .property-table td {
        display: block;
        width: 100%;
    }
    
    .property-table tr {
        margin-bottom: 15px;
    }
    
    .property-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .property-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        text-align: left;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        padding: 40px;
    }
    
    .property-table th,
    .property-table td {
        padding: 20px;
    }
}

@media screen and (min-width: 1800px) {
    body {
        font-size: 18px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    h1 {
        font-size: 3em;
    }
}
/* mikasa */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.project-features {
    list-style-type: none;
    margin-bottom: 30px;
}

.project-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #34495e;
}

.project-features i {
    margin-right: 10px;
    color: #3498db;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Large screens */
@media screen and (min-width: 768px) {
    .project-content {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .project-title {
        flex-basis: 100%;
        text-align: left;
    }

    .project-image {
        flex: 1;
        order: 2;
    }

    .project-description {
        flex: 1;
        order: 1;
    }
}

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

/* .video-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    padding: 60px 0;
} */

.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 2rem;
    color: #1a2a6c;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.3rem;
    }
}
/* amenities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.amenities-section {
    background: linear-gradient(135deg, #f6f9fc, #e9f2f9);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #3498db; /* Changed color to a vibrant blue */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.1rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.amenity-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.2);
}

.amenity-item:nth-child(3n+1) i {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item:nth-child(3n+2) i {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item:nth-child(3n) i {
    background: linear-gradient(135deg, #1abc9c, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.amenity-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.amenity-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

@media screen and (max-width: 768px) {
    .amenities-grid {
        display: block;
    }

    .amenity-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 20px;
        margin-bottom: 20px;
    }

    .amenity-item i {
        font-size: 2rem;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .amenity-item h3 {
        font-size: 1.2rem;
    }

    .amenity-item p {
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenity-item {
        padding: 40px;
    }

    .amenity-item i {
        font-size: 4rem;
    }

    .amenity-item h3 {
        font-size: 1.8rem;
    }

    .amenity-item p {
        font-size: 1.2rem;
    }
}
/* location */
.location-section {
    background: linear-gradient(135deg, #f6f9fc, #e9f2f9);
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: #3498db;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-advantages h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-advantages ul {
    list-style-type: none;
    padding: 0;
}

.location-advantages li {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location-advantages i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 1.2rem;
}

.location-map {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: scale(1.02);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

@media screen and (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-advantages h3 {
        font-size: 1.5rem;
    }

    .location-advantages li {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3rem;
    }

    .location-advantages h3 {
        font-size: 2.2rem;
    }

    .location-advantages li {
        font-size: 1.3rem;
    }
}

/* Animation for advantages */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-advantages li {
    animation: fadeInLeft 0.5s ease forwards;
    opacity: 0;
}

.location-advantages li:nth-child(1) { animation-delay: 0.1s; }
.location-advantages li:nth-child(2) { animation-delay: 0.2s; }
.location-advantages li:nth-child(3) { animation-delay: 0.3s; }
.location-advantages li:nth-child(4) { animation-delay: 0.4s; }
.location-advantages li:nth-child(5) { animation-delay: 0.5s; }
.location-advantages li:nth-child(6) { animation-delay: 0.6s; }

/* contact us */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.left-side, .right-side {
    padding: 20px;
}

h2 {
    margin-bottom: 20px;
}

.company-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.address, .social-links {
    margin-bottom: 20px;
}

.address i, .social-links i {
    margin-right: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.social-links a {
    color: #333;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
}

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

@media screen and (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .left-side {
        order: 1;
    }

    .right-side {
        order: 2;
    }
}
/* master plan image */
.master-plan-container {
    width: 100%;
    max-width: 1200px; /* Adjust this value based on your design needs */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center; /* Centers the title and image */
  }
  
  .master-plan-title {
    font-family: Arial, sans-serif; /* Change as needed */
    font-size: 2.5rem; /* Adjust size as needed */
    color: #333; /* Adjust color as needed */
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word; /* Ensures long words don't overflow */
  }
  
  .master-plan-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 90vh; /* Prevents image from being taller than the viewport */
    object-fit: contain;
    margin: 0 auto; /* Centers the image */
  }
  
  /* Media Queries for different screen sizes */
  
  /* For small phones */
  @media screen and (max-width: 480px) {
    .master-plan-container {
      padding: 10px;
    }
    .master-plan-title {
      font-size: 1.8rem; /* Smaller font size for small screens */
    }
  }
  
  /* For tablets and iPads */
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .master-plan-container {
      padding: 30px;
    }
    .master-plan-title {
      font-size: 2.2rem; /* Adjusted font size for medium screens */
    }
  }
  
  /* For large desktop screens and TVs */
  @media screen and (min-width: 1920px) {
    .master-plan-container {
      max-width: 1800px; /* Larger max-width for very large screens */
    }
    .master-plan-title {
      font-size: 3rem; /* Larger font size for very large screens */
    }
  }
  /*footer  */
  .disclaimer-footer {
    flex-shrink: 0; /* Prevent the footer from shrinking */
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Queries */
@media screen and (max-width: 480px) {
    .disclaimer-footer {
        padding: 5px 10px;
    }
    .disclaimer-text {
        font-size: 0.7rem;
    }
}

@media screen and (min-width: 1920px) {
    .disclaimer-text {
        font-size: 0.8rem;
        max-width: 1800px;
    }
}