
      body {
        box-sizing: border-box;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html,
      body {
        height: 100%;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      /* Header Styles */
      .header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 95vw;
        margin: 0 auto;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        animation: slideInLeft 1s ease-out;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-menu a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-menu a:hover {
        color: #00a651;
      }

      .nav-menu a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #00a651;
        transition: width 0.3s ease;
      }

      .nav-menu a:hover::after {
        width: 100%;
      }

      /* Banner Section */
      .banner {
        height: 100vh;
        background: url("./image/eldeco/Whispers\ of\ Wonder\ -\ 1.webp");
        display: flex;
        flex-direction: column;
        justify-content: end;
        text-align: center;
        padding: 0 2rem;
        color: white;
        background-repeat: no-repeat;
        background-size: cover;
      }

      .banner-content {
        z-index: 2;
        animation: fadeInUp 1.5s ease-out;
        text-align: left;
        max-height: 100vh;
      }

      .name {
        display: flex;
        flex-direction: column;
        justify-content: end;
        color: black;
        z-index: 999;
      }
.nav-menu .phone-number {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background-color: #00a651; 
  color: #000; 
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 10px #00a651, 0 0 20px #00a651, 0 0 30px #00a651;
  animation: boxGlow 1.5s infinite alternate;
  text-decoration: none; /* remove underline */
}
.nav-menu .phone-number:hover {
  color: #fff; /* text becomes white on hover */
  box-shadow: 0 0 20px #00a651, 0 0 40px #00a651, 0 0 60px #00a651; /* stronger glow on hover */
}
      .price-info {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        padding: 1rem;
        border-radius: 12px;
        margin: 7rem 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        color: #2c3e50;
        max-width: 50%;
      }

      .starting-price {
        font-size: 2rem;
        font-weight: 700;
        color: #00a651;
        margin-bottom: 0.5rem;
        letter-spacing: -1px;
        animation: blink 4s infinite;
      }

      @keyframes blink {
        0%,
        50%,
        100% {
          opacity: 1;
        }

        25%,
        75% {
          opacity: 0;
        }
      }

      .price-label {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #7f8c8d;
        font-weight: 500;
      }

      .configurations {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        font-size: 1.1rem;
        color: #333;
        padding: 1rem 0;
        max-height: 160px;
        flex-wrap: wrap;
      }

      .config-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
      }

      .config-item.visible {
        max-width: 330px;
        opacity: 1;
        transform: translateY(0);
      }

      .config-type {
        font-weight: 600;
        color: #2c3e50;
      }

      .banner h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: slideInDown 1s ease-out 0.5s both;
      }

      .banner p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        animation: slideInUp 1s ease-out 1s both;
      }

      .cta-button {
        background: #00a651;
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        margin-top: 1rem;
      }

      .cta-button:hover {
        background: #07582e;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
      }

      /* Section Styles */
      .section {
        padding: 3rem 0rem;
        margin: 0 auto;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: #2c3e50;
        position: relative;
      }

      /* Overview Section */
      .overview {
        max-width: 95vw;
      }
      .overview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .overview-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(50px);
      }

      .overview-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .overview-card.animate {
        animation: slideInUp 0.8s ease-out forwards;
      }

      .card-icon {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
      }

      .overview-card h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
      }

      /* Gallery Section */

      .gallery-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 3rem;
        width: 100%;
        justify-content: center;
      }

      .gallery-item {
        border-radius: 12px;
        display: flex;
        width: 400px;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
        position: relative;
      }

      .gallery-overlay {
        text-align: center;
        z-index: 2;
        transition: all 0.3s ease;
      }

      /* Amenities Section */
      .amenities {
        background: #000;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        max-width: 95vw;
      }

      .amenity-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .amenity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .amenity-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #00a651;
      }

      /* Location Section */
      .location {
        background: black;
        padding: 2rem;
      }
      .location h2 {
        color: white;
      }

      .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        color: white;
      }

      .location-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #00a651;
      }

      .location-map {
        height: 300px;
        background: #34495e;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
      }

      /* Nearby Locations */
      .nearby-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .nearby-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border-left: 4px solid #00a651;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .nearby-icon {
        margin-bottom: 1rem;
        padding: 0.5rem;
        background: #f8f9fa;
        border-radius: 8px;
      }

      .nearby-item h3 {
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 600;
      }

      .nearby-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }

      /* Contact Form */
      .contact-form {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: white;
        color: #2c3e50;
        width: 320px;
        height: auto;
        border-radius: 15px;
        padding: 2rem;
        cursor: pointer;
        z-index: 999;
        transition: all 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      }

      .contact-form:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 35px #07582e;
      }

      .contact-form.minimized {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #00a651;
        color: white;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
      }

      .contact-form.footer-mode {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 15px;
        background: white;
        color: #2c3e50;
        padding: 2rem;
      }

      .form-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #666;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .form-group {
        margin-bottom: 1rem;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #00a651;
      }

      .submit-btn {
        width: 100%;
        background: #00a651;
        color: white;
        padding: 0.8rem;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .submit-btn:hover {
        background: #07582e;
      }

      .form-content {
        display: block;
      }

      .contact-form.minimized .form-content {
        display: none;
      }

      .contact-form.footer-mode .form-content {
        display: block;
      }

      .form-toggle {
        display: flex;
      }

      .contact-form.minimized .form-toggle {
        display: none;
      }

      .minimized-content {
        display: none;
        align-items: center;
        justify-content: center;
      }

      .contact-form.minimized .minimized-content {
        display: flex;
      }

      .footer-contact-section {
        background: #34495e;
        padding: 3rem 2rem;
        margin-bottom: 0;
      }
      .contact-section {
        padding: 4rem 1rem;
        background-color: #000;
        text-align: center;
        display: flex;
      }

      .contact-section .section-title {
        font-size: 3rem;
        color: #00a651;
        margin-bottom: 0.5rem;
        text-align: left;
      }

      .contact-section .section-subtitle {
        font-size: 2rem;
        color: #fff;
        margin-bottom: 2rem;
      }

      .contact-form-container {
        min-width: 40%;
        margin: 0 auto;
        text-align: left;
      }

      .contact-form-1 .form-group {
        margin-bottom: 1.5rem;
      }

      .contact-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
      }

      .contact-form-1 input,
      .contact-form-1 textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 1rem;
        transition: border 0.3s;
      }

      .contact-form-1 input:focus,
      .contact-form-1 textarea:focus {
        outline: none;
        border-color: #00a651;
      }

      .btn-submit {
        background-color: #00a651;
        color: #fff;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s;
      }

      .btn-submit:hover {
        background-color: #07582e;
      }
      .contact-upper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        max-width: 50%;
      }
      /* Responsive */
      @media (max-width: 768px) {
        .contact-form-container {
          padding: 0 1rem;
        }
        .price-info {
          margin: 0;
          max-width: 100%;
          min-height: 63vh;
        }
        .contact-section {
          flex-direction: column;
        }
        .contact-upper {
          max-width: 100%;
          margin-bottom: 2rem;
        }
        .location-info {
          max-width: 96vw;
        }
        .map{
            max-width: 90vw;
        }

        .contact-section .section-title {
          font-size: 2.5rem;
          text-align: center;
          color: #00a651;
          margin-bottom: 0.5rem;
        }
        .contact-section .section-subtitle {
          font-size: 1rem;
          color: #fff;
          margin-bottom: 2rem;
        }
        
      .configurations {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        font-size: 1.1rem;
        color: #333;
        padding: 1rem 0;
        flex-wrap: nowrap;
      }
      .header{
        display: none;
      }

      }

      /* Downloads Section */
      .downloads-section {
        background: #f8f9fa;
        padding: 5rem 2rem;
      }

      .downloads-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .download-card {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        text-align: center;
        border: 1px solid #e9ecef;
      }

      .download-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .download-icon {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
      }

      .download-card h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
      }

      .download-card p {
        color: #7f8c8d;
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      .download-details {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        font-size: 0.9rem;
        color: #6c757d;
      }

      .download-btn {
        width: 100%;
        background: #00a651;
        color: white;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .download-btn:hover {
        background: #07582e;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(192, 57, 43, 0.3);
      }

      .download-btn:active {
        transform: translateY(0);
      }

      .download-btn.downloading {
        background: #f39c12;
        cursor: not-allowed;
      }

      .download-btn.completed {
        background: #27ae60;
      }

      .download-notice {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        margin-top: 3rem;
        border-left: 4px solid #074e2a;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .notice-icon {
        flex-shrink: 0;
        margin-top: 0.2rem;
      }

      .download-notice p {
        margin: 0;
        color: #2c3e50;
        line-height: 1.6;
      }

      /* Footer */
      .footer {
        background: #00a651;
        color: white;
        text-align: center;
        font-weight: 700;
      }
.video{
  display: none;
}
      /* Animations */
      @keyframes slideInLeft {
        from {
          transform: translateX(-100px);
          opacity: 0;
        }

        to {
          transform: translateX(0);
          opacity: 1;
        }
      }

      @keyframes slideInDown {
        from {
          transform: translateY(-100px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes slideInUp {
        from {
          transform: translateY(100px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes fadeInUp {
        from {
          transform: translateY(50px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.05);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }

        50% {
          transform: translateY(-20px);
        }
      }

      @keyframes slideInRight {
        from {
          transform: translateX(100px);
          opacity: 0;
        }

        to {
          transform: translateX(0);
          opacity: 1;
        }
      }
 .phone{
            display:none;
        }
      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-menu {
          display: none;
        }
        .phone{
            display:flex;
        }
.nav-menu .phone-number {
  display: inline-block;
  }
        .banner {
          padding: 2rem 1rem;
        }

        .banner h1 {
          font-size: 2rem;
        }
.config-type{
  font-size: 12px;
}
.video{
  display: flex;
}
.banner{
  display: none;
}
        .banner p {
          font-size: 1rem;
        }

        .configurations {
          grid-template-columns: 1fr 1fr;
        }
.banner-content{
  max-height: fit-content;
}
        .starting-price {
          font-size: 2rem;
        }

        .location-content {
          grid-template-columns: 1fr;
        }
        .section {
          padding: 2rem 1rem;
        }
        .amenities-grid {
          max-width: 100%;
        }
      }
        @media (max-width: 1024px) {
       
.video{
  display: flex;
}
.banner{
  display: none;
}
.header{
  display: none;
}
        }
