* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1A202C;
  --accent-gold: #BC986A;
  --light-bg: #F8F8F8;
  --medium-grey: #CBD5E0;
  --text-dark: #2D3748;
  --text-light: #E2E8F0;
  --secondary-light: #A0AEC0;
  --dark-overlay: rgba(0, 0, 0, 0.6);
  --white: #ffffff;
}
.text-accent-gold {
  color: var(--accent-gold);}

 body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden; /* Prevent horizontal scrolling */
            line-height: 1.7; /* Improved readability */
            scroll-behavior: smooth;
        }
/* Primary button style using gold theme */
.btn {
            background: linear-gradient(45deg, var(--accent-gold), #D4AF37); /* Gold gradient */
            border: none;
            color: var(--text-light);
            font-weight: 600;
            padding: 0.85rem 2rem; /* More substantial button */
            border-radius: 0.75rem; /* More rounded */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;  
            font-size: 1.1rem;
        }

  h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
        }
        img{
          border-radius: 10px; /* Rounded corners for images */
        }

.btn:hover {
  background: linear-gradient(45deg, #D4AF37, var(--accent-gold)); /* Reverse gradient on hover */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
            color: var(--text-light);
}
 .small-button {
  
    line-height: 1;  /* optional: थोड़ा और tight look */
  }

/* Logo sizing */
.logo-img {
  height: 100px;
  transition: height 0.3s ease;
  margin: 0 auto;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .logo-img {
    height: 100px;
  }
}

/* RERA details container */
.rera-main {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.2;
  margin: 0;
  color: var(--text-dark);
  user-select: none;
  max-width: 320px;
  text-align: right;
}

.rera-with-qr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.rera-detail-01 p {
  margin: 0;
}

.rera-detail-01 p a {
  text-decoration: none;
  color: var(--primary-dark);
}

.rera-qr img {
  height: 50px;
  width: auto;
  display: block;
}

/* Navigation links */
.text-hover-gradient {
  color: var(--primary-dark);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  background-color: transparent;
}

.text-hover-gradient:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

/* Bank details */
.bank-details {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  color: var(--primary-dark);
}

/* Hide QR on mobile */
@media (max-width: 768px) {
  .rera-qr {
    display: none !important;
  }
}
.carousel-item {
    position: relative;
    overflow: hidden;
  
  }
  .carousel-item .img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }

@keyframes zoomInOut {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.nav {
  background: rgb(253, 249, 249);
  height: 60px;
  
}
/* Add to your style.css */
html {
  scroll-behavior: smooth;
}

/* Fix for mobile menu links */
.nav-link {
  cursor: pointer;
  text-decoration: none;
}

.call-link {
  text-decoration: none !important;
}
section {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 1rem;
}
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
/* project specification */
.feature-card {
            height: 100%;
            border: none;
            border-radius: 0;
            transition: transform 0.3s ease;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #fafaf8, #c4b68b);
}
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        
        .pricing-table {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border-bottom: none;
            padding: 1.25rem;
            text-align: center;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .table tbody td {
            padding: 1.25rem;
            vertical-align: middle;
            border-color: #f0f0f0;
        }
        
        .table tbody tr:nth-child(odd) {
            background-color: rgba(139, 107, 74, 0.05);
        }
        
        .price-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        .key-feature {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .table thead {
                display: none;
            }
            
            .table, .table tbody, .table tr, .table td {
                display: block;
                width: 100%;
            }
            
            .table tr {
                margin-bottom: 1.5rem;
                border: 1px solid #f0f0f0;
                border-radius: 5px;
            }
            
            .table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
            }
            
            .table td::before {
                content: attr(data-label);
                position: absolute;
                left: 1rem;
                width: calc(50% - 1rem);
                padding-right: 1rem;
                text-align: left;
                font-weight: 500;
                color: var(--primary-color);
            }
        }

 
   .accordion-button:not(.collapsed) {
    color: var(--accent-gold) !important;
    background-color: white !important;
    box-shadow: none;
  }
  
  /* Focus state styling */
  .accordion-button:focus {
    border-color: #8B4513;
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
  }
  .swiper {
  padding: 20px 0;
}

.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}

.custom-card {
  width: 250px;
  height: 250px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* or try 'cover' if you're okay with little cropping */
  /* border-radius: 8px; */
}
   .amenities-section {
  font-family: 'Inter', sans-serif;
}

.amenity-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 150px;
  cursor: grab;
  transition: box-shadow 0.3s ease;
}

.amenity-card:hover {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.15);
   background: linear-gradient(45deg,  #c4b68b ,#fafaf8);
}

.amenity-card i {
  font-size: 30px;
  color: #bc986a; /* accent gold */
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

/* Swiper navigation button color */
.swiper-button-next,
.swiper-button-prev {
  color: #bc986a;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .amenity-card {
    width: 130px;
    height: 120px;
    padding: 15px 10px;
  }
  .amenity-card i {
    font-size: 26px;
  }
  .amenity-card p {
    font-size: 13px;
  }
}
  .table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .fixed-table {
    width: 100%;
    min-width: 600px; /* Minimum width to maintain layout */
    border-collapse: collapse;
  }
  
  .fixed-table th, 
  .fixed-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
    white-space: nowrap;
  }
  
  .fixed-table th {
    background-color: #885f39;
    color: white;
    font-weight: bold;
  }
  
  .price-link {
    color: #885f39;
    font-weight: 600;
    text-decoration: underline;
  }
  
  @media (max-width: 767px) {
    .fixed-table {
      font-size: 14px;
    }
    .fixed-table th,
    .fixed-table td {
      padding: 8px 4px;
    }
  }
  /* Sticky Mobile Footer */
.mobile-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-gold);
    padding: 10px;
    z-index: 1000;
    display: none; /* Hidden by default, shown only on mobile */
}

.mobile-fixed-footer .btn {
    /* background: #a78552; */
    
    color: white !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-fixed-footer {
        display: flex;
    }
    
    /* Add padding to body to prevent footer from covering content */
    body {
        padding-bottom: 50px;
    }
}