@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

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

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

/* Navbar styling */
.navbar {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    position: sticky; /* Make the navbar sticky */
    top: 0; /* Stick to the top */
    z-index: 10;
  }
  
  .navbar__logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .navbar__menu {
    list-style: none;
    display: flex;
  }
  
  .navbar__menu-item {
    margin-left: 20px;
  }
  
  .navbar__menu-link {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  /* Hover animation for menu items */
  .navbar__menu-link:hover {
    color: #ff6347; /* Tomato color on hover */
  }
  
  .navbar__menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .navbar__menu {
      position: absolute;
      top: 60px;
      left: 0;
      flex-direction: column;
      background-color: black;
      height: 100vh;
      width: 200px;
      transform: translateX(-100%) scale(0.95);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.5s ease; /* Enhanced sliding, fading, and scaling animation */
    }
  
    .navbar__menu.active {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
  
    .navbar__menu-item {
      margin: 20px 0;
      text-align: left;
      margin-left: 20px;
    }
  
    .navbar__menu-toggle {
      display: block;
    }
  
    /* Overlay to detect clicks outside the menu */
    .navbar__overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 9;
    }
  
    .navbar__overlay.active {
      display: block;
    }
  }
/* crousel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.slide {
    position: relative;
    width: 25%;
    height: 100%;
}

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

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-text p {
    font-size: 1.5rem;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

@media (max-width: 768px) {
    .slide-text h2 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .prev, .next {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
}
/* highlights*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.highlight-section {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-box {
    background-color: #4a90e2;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.highlight-box h3 {
    font-size: 1.2rem;
    margin-right: 1rem;
    min-width: 100px;
}

.highlight-box p {
    font-size: 1rem;
    line-height: 1.4;
}

.form-section {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #3a7bc8;
}

.brochure-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.brochure-btn:hover {
    background-color: #e67e22;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }
    
    .highlight-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .highlight-box h3 {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
/* about project */
.about-project {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #0080ff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3498db;
    margin: 10px auto 0;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.image-container {
    flex: 1 1 400px;
}

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

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

.text-container {
    flex: 1 1 400px;
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2980b9;
}

.description {
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.cta-button:hover {
    background-color: #2980b9;
}

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

    .content-wrapper {
        flex-direction: column;
    }

    .image-container, .text-container {
        flex: 1 1 100%;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .about-project {
        padding: 60px 0;
    }

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

    .subtitle {
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.9rem;
    }
}
/* highlights 8 points */
.container {
    background-color: #000;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.points-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.points-column {
    flex: 1;
    min-width: 250px;
}

.point {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

p {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

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

    .points-column {
        width: 100%;
    }
}
/* amenties */
.amenities {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.amenity-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.amenity-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.amenity-card p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .amenities {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .amenity-card {
        padding: 1.5rem;
    }

    .amenity-card i {
        font-size: 2.5rem;
    }

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

    .amenity-card p {
        font-size: 0.8rem;
    }
}
/* price and floor plan */
.price-floor-plans {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plans-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.plan {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.plan img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.size {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.price-call {
    background-color: #e50914;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-call:hover {
    background-color: #f40612;
}

@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
    }
}
/* location */
.container {
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.content {
    display: flex;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    padding: 40px;
    color: #fff;
    min-width: 300px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #3498db;
}

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

li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

li::before {
    content: '•';
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.map-container {
    flex: 1;
    min-height: 400px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.3), rgba(155, 89, 182, 0.3));
    z-index: 1;
    pointer-events: none;
}

iframe {
    filter: grayscale(0.5);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .text-content, .map-container {
        width: 100%;
    }
}
/* gallery */
.gallery-container {
    background-color: #000;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.gallery-title {
    color: #fff;
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 1000;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}
/*about builder */
container {
    background-color: black;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

.site-footer {
  background-color: #fdfeff;
  color: #ecf0f1;
  font-family: 'Roboto', sans-serif;
  padding: 50px 0 20px;
}

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

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

.footer-section {
  flex: 1;
  margin-bottom: 30px;
  min-width: 200px;
}

.footer-section h3 {
  color: #3498db;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498db;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.youtube {
  background-color: #ff0000;
}

.instagram {
  background-color: #e1306c;
}

.facebook {
  background-color: #3b5998;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}
/* brochure */
.sg-impressive-section {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
  }
  
  .sg-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .sg-image-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .sg-impressive-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .sg-content-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
  }
  
  .sg-section-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .sg-section-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .sg-request-btn {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .sg-request-btn:hover {
    background-color: #ff4757;
  }
  
  .sg-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
  
  .sg-popup-content {
    background-color: #fff;
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
  }
  
  .sg-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  
  .sg-popup-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .sg-popup-form {
    display: flex;
    flex-direction: column;
  }
  
  .sg-input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .sg-submit-btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .sg-submit-btn:hover {
    background-color: #45a049;
  }
  
  @media screen and (max-width: 768px) {
    .sg-container {
      flex-direction: column;
    }
  
    .sg-image-wrapper,
    .sg-content-wrapper {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .sg-image-wrapper {
      margin-bottom: 30px;
    }
  
    .sg-section-title {
      font-size: 28px;
    }
  
    .sg-section-description {
      font-size: 16px;
    }
  
    .sg-request-btn {
      font-size: 16px;
      padding: 12px 24px;
    }
  }
  /* offer */
  .new-launch-banner {
    position: fixed; /* Fix it to the viewport */
    top: 50%; /* Center vertically */
    right: 0; /* Stick to the right side */
    transform: translateY(-50%) scale(1); /* Start at normal scale */
    width: 120px; /* Diameter of the circular banner */
    height: 120px; /* Same height as width for circular shape */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px; /* Font size for banner text */
    text-align: center;
    z-index: 1000; /* Ensure it's above other content */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
    animation: pop-up 3s infinite, color-change-bg 6s infinite; /* Pop-up and background color change */
    transition: transform 0.6s ease-in-out; /* Smooth hover effect */
  }
  
  .new-launch-banner p {
    color: white; /* Initial text color */
    animation: color-change-text 6s infinite; /* Text color change animation */
  }
  
  /* Pop-up animation: slowly grow and shrink */
  @keyframes pop-up {
    0%, 100% {
      transform: translateY(-50%) scale(0.9); /* Smaller size */
    }
    50% {
      transform: translateY(-50%) scale(1.1); /* Bigger size */
    }
  }
  
  /* Background color change animation */
  @keyframes color-change-bg {
    0% {
      background-color: #ff5733; /* Start color (orange) */
    }
    25% {
      background-color: #33ff57; /* Green */
    }
    50% {
      background-color: #3357ff; /* Blue */
    }
    75% {
      background-color: #ff33a6; /* Pink */
    }
    100% {
      background-color: #ff5733; /* Back to start */
    }
  }
  
  /* Text color change animation */
  @keyframes color-change-text {
    0% {
      color: white; /* Start color */
    }
    25% {
      color: #ffcc00; /* Yellow */
    }
    50% {
      color: #33ff57; /* Green */
    }
    75% {
      color: #ff33a6; /* Pink */
    }
    100% {
      color: white; /* Back to start */
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .new-launch-banner {
      width: 80px; /* Smaller size for mobile screens */
      height: 80px; /* Adjust circular height */
      font-size: 12px; /* Adjust font size */
    }
  }
  
  