/* Navbar Styles */
.navbar {
  background-color: #fff !important; 
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.navbar .nav-link {
  color:#007bff !important;
  font-weight: 500;
  margin-right: 15px;
}


.navbar .call-btn {
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s ease;
   background-color: #0056b3;
}

.navbar .call-btn:hover {
  background-color: #0056b3;
  color: white;
}

.custom-logo {
  width: 180px;
}



#banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    z-index: -1;
  }



.overview-data p {
   text-align: justify;
}

/* Floor Plan Section Styles */
        #floor-plan {
            background-color: #f7fafc;
            padding: 4rem 1rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .advantages-heading {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .advantages-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background-color:#3a86ff;
        }
        
        .flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}


.floor-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: calc(25% - 20px); 
  min-width: 250px;
  max-width: 400px;
  flex-grow: 1;
}
        
        /*.floor-card {*/
        /*    background: white;*/
        /*    border-radius: 12px;*/
        /*    overflow: hidden;*/
        /*    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
        /*    transition: transform 0.3s ease;*/
        /*    width: 100%;*/
        /*    max-width: 600px;*/
        /*    margin: 0 auto;*/
        /*}*/
        
        .floor-card:hover {
            transform: translateY(-5px);
        }
        
        .image-wrapper-floor-plan {
            position: relative;
            height: 220px;
        }
        
        .image-wrapper-floor-plan img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay-floor-plan {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image-wrapper-floor-plan:hover .overlay-floor-plan {
            opacity: 1;
        }
        
        .overlay-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .overlay-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .card-body {
            padding: 1.5rem;
            color: #2d3748;
        }
        
        .floor-card-rows-container {
            /*display: flex;*/
            /*flex-wrap: wrap;*/
            /*gap: 10px;*/
        }
        .floor-card-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 2px solid rgba(0, 0, 0, 0.05);
            /*width: calc(50% - 5px);*/
            box-sizing: border-box;
        }
        
        .floor-card-project-name{
            padding:10px 5px ;
            background-color: #3a86ff;
            color:white;
            font-size:20px;
            font-weight:600;
            cursor:pointer;
        }
        

        
        .floor-card-row i {
            color:  #3a86ff;
            margin-right: 12px;
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        
        .floor-card-row span {
            font-weight: 500;
        }
        
        .rupay-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rupay-icon {
            width: 60px;
            height: auto;
            filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
        }
        .payment-text {
            font-weight: 600;
            color: #004a95;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1px;
        }
        .availability-badge {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .availability-text {
            font-weight: 600;
            color:  #3a86ff;
        }
        
.gradient-button {
    background: linear-gradient(135deg, #3a86ff, #2b6cb0);
    color: white;
    width: 60%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    margin: 15px auto 0 auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
}
        
        .gradient-button:hover {
            opacity: 0.9;
        }
        
   .gradient-button a {
    color: white;
    text-decoration: none; 
    display: block;         
    text-align: center;     
}



@media (max-width: 1024px) {
  .flex-container {
    gap: 20px;
  }

  .card-body {
    padding: 1rem;
  }

  .floor-card-row span {
    font-size: 14px;
  }

  .payment-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .advantages-heading {
    font-size: 2rem;
  }



  .floor-card-row {
    width: 100%;
  }
}

 
@media (max-width: 1024px) {
  .floor-card {
    width: calc(33.33% - 20px); 
  }
}




    @media (max-width: 768px) {
    .floor-card {
    width: calc(50% - 20px);
  }

      .advantages-heading {
        font-size: 2rem;
      }
    }
 

@media (max-width: 576px) {
  .floor-card {
    width: calc(100% - 20px);
  }
}





 .footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 40px 20px 10px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2,
.footer h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #2d3748;
  padding-top: 15px;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-social .social-icons a {
    margin: 0 10px;
  }
}


@media (max-width: 480px) {
  .footer {
    padding: 30px 15px 10px;
  }

  .footer h2,
  .footer h3 {
    font-size: 18px;
  }

  .footer-links ul li,
  .footer-contact p,
  .footer-contact a {
    font-size: 14px;
  }

  .footer-social .social-icons a {
    font-size: 18px;
    margin: 0 8px;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 10px;
  }
}
