
* {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

    
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  background-color: #fff;
}
    
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
}
    
.navbar-brand img {
  max-height: 45px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 40px; 
  }

  .navbar {
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #1d2944 !important;
  font-size: 1.2rem;
  font-weight: bold;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #000;
}
    
.nav-link:hover{
  color: #675541;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: linear-gradient(135deg, #fffdf8, #fff5e9);
  margin: 5% auto;
  padding: 35px;
  border: 2px solid #c39f75;
  max-width: 450px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.close-icon:hover {
  transform: rotate(90deg);
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #815a2d;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: #5c2c00;
  text-align: center;
}

.popup-form-group {
  margin-bottom: 22px;
  position: relative;
}

.popup-input-group {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  padding: 5px;
  border: 1px solid #c39f75;
  transition: all 0.3s ease-in-out;
}

.popup-input-group:focus-within {
  border-color: #a1825e;
  box-shadow: 0 0 8px rgba(153, 121, 77, 0.5);
}

.popup-input-group-prepend .popup-input-group-text {
  background-color: #c39f75;
  border: 1px solid #c39f75;
  border-radius: 6px 0 0 6px;
  padding: 10px 12px;
  color: #000;
  font-size: 1rem;
}

.popup-input-group-text i {
  font-size: 1.2rem;
}

.popup-form-control {
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #543e25;
}

.submit-button {
  font-size: 1.3rem;
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: linear-gradient(135deg, #644d33, #4c433a);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.submit-button:hover {
  background: linear-gradient(135deg, #543e25, #655c53);
  box-shadow: 0 6px 12px rgba(179, 50, 0, 0.5);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.4rem;
  }
}

/*-----------------Home Page section---------------*/
.for-desktop {
  display: block;
  width: 100%;
  height: auto;  
}
  
.for-mobile {
  display: none;
  max-width: 768px !important; 
  width: 100%;   
  height: auto;   
}
  
@media (max-width: 768px) {
  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }
}

/*-------------------Overview Section------------------*/
.oversection {
  padding: 40px 0;
  background-color: #fff;
}

.over-heading {
  font-size: 36px;
  color: #c39f75;
}

.over-subheading {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
}

.over-description {
  font-size: 20px;
  color: #000;
}

.overinfo-container {
  margin-top: 20px;
}

.overinfo-box {
  text-align: center;
}

.overinfo-box img {
  width: 50px;
}

.overinfo-box p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

@media (max-width: 768px) {
  .oversection {
    padding: 30px 20px;
    text-align: center;
  }

  .des{
    padding: 20px;
  }

  .over-heading {
    font-size: 1.7rem;
  }
  
  .over-subheading {
    font-size: 1.2rem;
  }
  
  .over-description {
    font-size: 18px;
  }

  .overinfo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .overinfo-box {
    width: 30%;
  }

  .overinfo-box img {
    width: 40px;
  }

  .overinfo-box p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .overinfo-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .oversection {
    padding: 30px 20px;
    text-align: center;
  }

  .over-heading {
    font-size: 1.7rem;
  }
  
  .over-subheading {
    font-size: 1.2rem;
  }
  
  .over-description {
    font-size: 18px;
  }

  .overinfo-box {
    width: 30%;
  }

  .overinfo-box img {
    width: 35px;
  }
}

/*----------------Project Highlights-----------------------*/
.highlights-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  background: url('images/bck.jpg') no-repeat center center;
  background-size: cover;
}

.project-heading{
  font-size: 36px;
  color: #c39f75;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight-box {
  width: 23%;
  padding: 20px;
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px solid #c39f75;
}

.icon-wrapper img {
  width: 55px;
}

.highlight-box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #c39f75;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 768px) {
  .highlights-section {
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .project-heading{
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .highlight-box {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .highlight-box {
    width: 100%;
  }
}

/*------------------------Amenities Section----------------*/
.amenities-section {
  background: url('images/amen-back.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}

.amenities-title {
  font-size: 36px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}

.amenity-item {
  text-align: center;
  color: white;
  font-weight: bold;
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.carousel-controls {
  text-align: center;
  margin-top: 20px;
}

.custom-carousel-btn {
  display: inline-block;
  margin: 0 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.custom-carousel-btn img {
  width: 35px;
  height: auto;
}

@media(max-width: 768px){
  .amenities-section {
    padding: 20px 0;
  }

  .amenities-title {
    font-size: 1.8rem;
  }

  .amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

}

/*--------------------Unitplans Section-------------------*/
.floor-plans-section {
  padding: 60px 0;
  background: #fff;
}

.floor-plans-title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: bold;
  color: #c39f75;
  margin-bottom: 30px;
}

.floor-plan-item {
  text-align: center;
  margin-bottom: 20px;
}

.floor-plan-img {
  width: 100%;
  max-width: 350px;
  height: 250px;
  filter: blur(2px);
  border: 1px solid #c39f75;
}

.floor-plan-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 10px;
}

.floor-plan-btn {
  background: #856949;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.floor-plan-btn:hover {
  background: #5a4428;
}

@media (max-width: 1024px) {
  .floor-plans-title {
    font-size: 32px;
  }

  .floor-plan-img {
    max-width: 300px;
    height: 220px;
  }

  .floor-plan-text {
    font-size: 16px;
  }

  .floor-plan-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .floor-plans-title {
    font-size: 28px;
  }

  .floor-plans-section {
    padding: 20px 20px;
  }

  .floor-plan-img {
    max-width: 250px;
    height: 200px;
  }

  .floor-plan-text {
    font-size: 15px;
  }

  .floor-plan-btn {
    font-size: 14px;
    padding: 7px 14px;
  }
}

@media (max-width: 576px) {
  .floor-plans-title {
    font-size: 24px;
  }

  .floor-plan-img {
    max-width: 100%;
    height: auto;
  }

  .floor-plan-text {
    font-size: 14px;
  }

  .floor-plan-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/*----------------------Project Gallery----------------------*/
.project-gallery {
  text-align: center;
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.gallery-heading {
  font-size: 36px;
  font-weight: bold;
  color: #c39f75;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 200px; 
  object-fit: cover; 
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 5px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*----------------Location Section------------------*/
#location{
  padding: 50px 0;
}

.location-heading {
  text-align: center;
  color: #c39f75;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 36px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #c39f75;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.map-container, .accordion-container {
  height: 400px; 
}

.accordion-header {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.accordion-body {
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
}

.location-item {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
  margin-left: 20px;
}

.accordion-header {
  color: #fff !important;
  background-color: #5f482f;
  border: none;
  text-decoration: none;
  font-size: 20px;
}

.btn-link {
  text-decoration: none;
  color: #fff !important;
}

.btn-link:hover {
  text-decoration: none !important;
}

@media(max-width: 768px){
  #location{
    padding: 30px 20px; 
  }

  .location-heading{
    font-size: 1.8rem;
  }

}

/*------------------------Footer Section----------------*/
.footer {
  background-color: #271e14;
  color: #ffffff;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
}

.footer .form-control {
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
}

.footer .form-control:focus {
  border-color: #c39f75;
  box-shadow: none;
}

.footer .btn-cnt {
  background-color: #f3ddc4;
  color: #000;
  border: none;
  border-radius: 0.25rem;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
}

.footer .btn-cnt:hover {
  background-color: #5b4225;
  color: #fff;
}

.footer .disclaimer {
  font-size: 1rem;
  color: #fff;
}

.footer .privacy-policy-link {
  color: #f3ddc4;
  font-weight: bold;
  text-decoration: none;
}

.footer .privacy-policy-link:hover {
  text-decoration: underline;
}

.reranum{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f3ddc4;
}

.mobnum{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*-----------------------------------whatsapp, phone, and enquiry code-----------------------*/
#desktop-view {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 9999; 
}

.icn {
  margin: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite; 
}

@keyframes zoomIcons {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.2); 
  }
  100% {
      transform: scale(1);
  }
}

.icn:hover {
  animation-play-state: paused; 
}

@keyframes gradient {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}

@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}

@media(max-width: 991px){
  #desktop-view{
    display: none;
  }
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #a27e54;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
  z-index: 1030;
}

.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}

.mobile-view {
  display: none;
} 

/*------------------------media screen for mobile view----------------------*/
@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}
