.heading {
  display: block;
  color: black;
  text-align: center;
  padding: 5px 0;
  font-size: 13px;
  line-height: 1;
  margin: 20px;
}

h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
}
h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  color: #272566;
}
@media (max-width: 768px) {
  h1 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px !important;
  }
  
  .section-heading {
    font-size: 24px !important;}
    
    .section-headings {
    font-size: 23px !important;}
  
}
#project-image-section {
  padding: 00px 0 00px 0;
    padding-bottom: 0px;
}
#project-image-section {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  position: relative;
}
.project-image-container {
  position: relative;
  width: 100%;
  box-shadow: 3px 3px 7px #cda549;
  border: 1px solid #ddd;
  border-radius: 0px;
  overflow: hidden;
}
.project-image.desktop-image {
  display: block;
  width: 100%;
  max-height: 570px;
}
.project-image.mobile-image {
  display: none;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  #project-image-section {
    padding: 0px 0 0px 0;
    padding-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .project-image-container {
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .project-image.desktop-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .project-image.mobile-image {
    display: block;
  }
}

/* Configurations Section */
#configurations-section {
    text-align: center;
	padding: 30px 0px 80px 0px;
	background-color: #edf8fA;
}


.configurations-table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;margin: auto;
    
}

.configurations-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
   height: 300px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    
}

.configurations-table th, .configurations-table td {
    padding: 10px;
    text-align: center;
    width: 30%;
    
}

.configurations-table th {
    background-color: #cda549;
    font-weight: bold;
    font-size: 20px;
}

.configurations-table td {
    background-color: #fff;
    font-size: 19px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .configurations-table th, .configurations-table td {
        padding: 8px;
        font-size: 0.9rem;
    }

    .configurations-table {
        width: 100%;
        font-size: 0.9rem;
    }
}


/* General Section Styling */
#project-highlights {
    padding: 0px 0px 30px 0px;
    text-align: center;
    background-color: #edf8fA;
}

.section-heading {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #272566;
}

/* Highlights Container for PC */
.highlights-container {
    display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 10px;
  max-width: 1600px;
  margin: 30px auto 50px auto;
  overflow: hidden;
}

.highlight-item {
    flex: 0 0 calc(25% - 20px); /* 4 items per row with spacing */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.highlight-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mobile Styling: Single Image with Scroll */
@media (max-width: 768px) {
    .highlights-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-behavior: smooth;
        gap: 10px;
    }

    .highlight-item {
        flex: 0 0 100%; /* Show one item at a time on mobile */
    }

    /* Hide scrollbar on mobile */
    .highlights-container::-webkit-scrollbar {
        display: none;
    }
}


/* General Styling */
.responsive-images-container {
    padding: 20px;
    background-color: #f9f9f9;
}

.images-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    overflow: hidden; /* Prevent overflow for PC */
    max-width: 1200px;
    margin: 50px auto;
    
}

.image-item {
    flex: 0 0 calc(33.33% - 20px); /* 3 items per row on PC */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Hover Effect */
.image-item:hover {
    transform: scale(1.05);
}

/* Mobile View: Single Image with Scroll */
@media (max-width: 768px) {
.images-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Enable snapping */
    gap: 0; /* No gaps for clean snapping */
    width: 100%; /* Ensure the wrapper spans the full width */
}

/* Each image item */
.image-item {
    flex: 0 0 100%; /* Take up full width of the viewport */
    scroll-snap-align: center; /* Snap each image to the center */
}


/* Image styles */
.image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
    /* Hide scrollbar */
    .images-wrapper::-webkit-scrollbar {
        display: none;
    }
}

/* Project Features Section */
.project-features {
    background-color: #edf8fA;
    padding: 50px 20px;
    color: #fff;
}

.project-features .section-heading {
    font-size: 32px;
    text-align: center;
    color: black;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 70px;
    border: 3px solid #cda549;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: black;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    width: 40px;
    margin-right: 15px;
}

.feature-item p {
    font-size: 18px;
    color: #cda549;
    margin: 0;
    line-height: 1.6;
}

.features-list {
    max-width: 860px;
    margin: 20px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.features-list li::before {
    content: "✓"; /* Custom symbol */
    color: #272566; /* Color of the symbol */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.8;
}



/* Main container layout */
.location-container {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    max-width: 1280px;
    height: 583px;
    margin: 50px auto 80px auto;
    padding: 0px;
}

.location-image {
    flex: 1;
    width: 50%; /* Set the image container width to 50% */
    height: 100%; /* Let the image container take full height of the section */
}

/* Image styling */
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    
    border: 3px solid #cda549;
  box-shadow: 3px 3px 7px #cda549
}

/* Right side collapsible content */
.location-details {
     flex: 1;
    width: 50%; /* Set the right container to 50% width */
    height: 100%; /* Full height of the section */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    
    background-color: #cda549;
}


.location-item:last-child {
    border-bottom: none;
}



.location-item .location-info {
    display: none;
}

.location-item.active .location-info {
    display: block;
    padding-top: 10px;
}

.location-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}


/* Default color for closed items */
.location-item h3 {
    color: black; /* Inactive color */
}

/* Highlight the active heading */
.location-item.active h3 {
    color: white; /* Active heading color */
    font-weight: bold;
}

/* Hide the paragraph for inactive items */
.location-info {
    display: none;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 18px;
    margin-top: 13px;
  border-radius: 5px;list-style: none;
  line-height: 1.6;
}

/* Show the paragraph when the section is active */
.location-item.active .location-info {
    display: block;
}

/* Mobile layout */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        height: auto;
    }

    .location-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .location-details {
        width: 100%;
        height: auto;
    }

    .location-item {
        height: auto;
    }
    
    .hello-next h3{font-size: 24px !important;}
}

/* General Styles for the Video Section */
.video-testimonials-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #edf8fA;
}

.video-testimonials-section .section-heading {
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #272566;
    padding:0;
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto; /* Center-align the container */
}

.video-item {
    flex: 0 0 calc(50% - 20px); /* Two videos per row on PC */
    max-width: 700px;
}

.video-item iframe {
    width: 100%;
    height: 315px; /* Maintain 16:9 aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .video-item {
        flex: 0 0 100%; /* Single video per row on mobile */
    }

    .video-item iframe {
        height: 250px; /* Adjust height for smaller screens */
    }
}

.hello-next p{margin-bottom: 25px !important;font-size: 19px !important;}

#faq {
    width: 90%;
    margin: auto;
}

#faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#faq li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

#faq p {
    margin: 10px 0;
    line-height: 1.6;
    color: #333;
    font-size: 20px;
}

#faq p strong {
    color: #272566;
    font-weight: bold;
    font-size: 20px;
}

#faq p span.q {
    font-weight: bold;
    font-size: 20px;
    color: #272566;
}

#faq a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

#faq a:hover {
    text-decoration: underline;
}


.hello-next .container {
  max-width: 1450px !important;
  margin: 0 auto;
}

.hello-next h3{font-size: 30px;}

















/* Gallery Container */
.responsive-gallery {
    position: relative;
    max-width: 1400px;
    margin: auto;
    text-align: center;
    padding: 20px;
    margin-bottom: 50px;
}

/* Heading */
.gallery-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Gallery Wrapper */
.gallery-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px;
    justify-content: space-evenly;
}

.gallery-item {
    flex: 0 0 24%; /* PC: Show 4 images in one row */
    height: 350px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Arrows */
.gallery-arrow {
    display: none;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  
  width: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.gallery-arrow-left {
    left: 10px;
}

.gallery-arrow-right {
    right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 95%; /* Show one image and hint of the next */
    }

    .gallery-arrow {
        display: flex; /* Show arrows only on mobile */
    }
}

@media (max-width: 767px) {
    .gallery-wrapper {
        justify-content: unset;
    }
}


/* Container for Amenities Section */
.amenities-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.section-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 10px;
}

/* Individual Amenity Item */
.amenity-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: #fff;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 150px;
}

.amenity-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.amenity-item p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Hover Effect */
.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 amenities per row */
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 amenities per row */
    }
}







