 /* amenities section css start */
        
        .amenities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .amenity {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .amenity:hover {
            transform: translateY(-5px);
        }

        .amenity img {
            max-width: 50px;
            margin-bottom: 15px;
        }

        .amenity h3 {
            font-size: 18px;
            margin: 0;
            color: #333;
        }

        @media (max-width: 600px) {
            .amenities-container {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 400px) {
            .amenities-container {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
        }
   /* amenities section css end */

   /* gallery section css start */

    .gallery-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
}

.gallery-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


   /* gallery section css end */


   /* near by places section css start */

    .nearby-places {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff;
}

.nearby-places h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.place-box {
  background-color: #800000;
  color: #fff;
  padding: 20px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.place-box:hover {
  background-color: #800000;
}


/* near by places section css end */



/* account section places section css start*/

   
   

    h2 {
      font-size: 24px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    h3 {
      font-size: 20px;
      margin-bottom: 15px;
      /* text-decoration: underline; */
      font-weight: 600;
    }

    .details {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .account-info, .rera-info {
      flex: 1 1 300px;
    }

    .account-info h4, .rera-info h4 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .account-info p, .rera-info p {
      margin-bottom: 8px;
      font-size: 16px;
      color: #111;
    }

    .bold {
      font-weight: 800;
    }

    .qr {
      width: 123px;
      height: auto;
    }

    @media (max-width: 600px) {
      .container {
        padding: 20px;
      }

      h2 {
        font-size: 20px;
      }

      h3 {
        font-size: 18px;
      }
    }
  

/* account section places section css end */





   /* FAQ Section Base */
.section-faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.tf-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Heading Section */
.heading-section {
    text-align: center;
}

.heading-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* FAQ Box */
.box-faq {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-item.active {
    border-color: #007bff;
}

/* FAQ Header */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    background-color: #f1f1f1;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background-color: #e2e2e2;
}

.faq-header i {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.faq-header.collapsed i {
    transform: rotate(0deg);
}

.faq-header:not(.collapsed) i {
    transform: rotate(180deg);
}

/* FAQ Body */
.faq-body {
    padding: 18px 24px;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

/* Accordion animation */
.collapse:not(.show) {
    display: none;
}

.collapse {
    transition: height 0.3s ease;
}




@media  (max-width:600px){
     .card {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      width: 361px!important;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      margin: 40px auto;
          height: 449px;
    }
    
    
    .mybannercss{
            margin-top: 29.5%!important;
    }
}

@media (min-width:992px){
    
    .mybannercss{
           margin-top: 6.5%;
    }
}

   
    .card {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      width: 475px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      margin: 40px auto;
          height: 449px;
    }
    .card h2 {
      font-size: 22px;
      margin-bottom: 20px;
      font-weight: bold;
    }
    .info {
      margin-bottom: 15px;
      font-size: 16px;
    }
    .info i {
      margin-right: 10px;
      color: #000;
    }
    .qr {
      margin-top: 20px;
      text-align: center;
    }
    .rera-link {
      margin-top: 15px;
      font-size: 14px;
    }
    .rera-link a {
      color: #007bff;
      text-decoration: none;
    }
    
    
    
