/* Hero Section  */
.hero-section {
    height: 100vh;
    background-image: url("/assets/vrindavan-1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding-top: 60px;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0,0,0,0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
  }
  
  .hero-text {
    max-width: 700px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .hero-text .highlight {
    color: #f5c96a;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .explore-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f5c96a;
    color: #3e3e3e;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .explore-btn:hover {
    background-color: #f5c96acc;
    transform: scale(1.05);
  }
  
  .explore-btn:active {
    transform: scale(0.95);
  }
  
  .arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
  }
  
  /* Animation replacement for framer-motion fadeIn */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  /* Whatsapp logo */
 /* for desktop */
 .whatsapp_float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 90px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
      margin-top: 10px;
  }

  .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
  }
}

  /* About Section */
  .about-section {
    position: relative;
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, #2a2a2a, #3e3e3e);
    overflow: hidden;
    color: white;
  }
  
  .about-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .highlight {
    color: #f5c96a;
  }
  
  .about-text p {
    color: #ccc;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
  }
  
  .star-icon {
    color: #f5c96a;
    font-size: 1.25rem;
    margin-right: 0.75rem;
  }
  
  /* Image Styling */
  /* .about-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  } */
  
  /* .about-image img {
    width: 100%;
    height: auto; 
    object-fit: contain; 
    transition: transform 0.5s ease;
}  */
  
  /* .about-image:hover img {
    transform: scale(1.05);
  } */

  .about-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 400px; /* Set a fixed height for the container */
    /* position: relative; */
  }
  
  .about-image img {
    width: 100%;
    height: auto; /* Fill the container completely */
    object-fit: cover; /* Ensure the image covers the container fully */
    transition: transform 0.5s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
  }
  
  /* Floating Blobs */
  .floating-blob {
    position: absolute;
    background-color: #f5c96a;
    opacity: 0.1; /* More subtle */
    border-radius: 50%;
    filter: blur(60px); /* Creates soft glow */
    z-index: 0;
    animation: floatBlob 6s ease-in-out infinite;
  }
  
  .blob-top-left {
    top: 3rem;
    left: 3rem;
    width: 160px;
    height: 160px;
  }
  
  .blob-bottom-right {
    bottom: 4rem;
    right: 3rem;
    width: 200px;
    height: 200px;
  }
  
  @keyframes floatBlob {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Animation for fade in up */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-up {
    animation: fadeInUp 1s ease-out forwards;
  }
  

/* Featured Properties */
:root {
    --yellow: #f5c96a;
    --blue: #6bbaff;
    --bg-dark: #2e2e2e;
    --bg-dark2: #3e3e3e;
    --text-light: #ccc;
    --text-white: #fff;
  }
  
  .featured-section {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 20px;
    overflow: hidden;
  }
  
  .floating-box,
  .floating-circle {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
  }
  
  .yellow-box {
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-color: var(--yellow);
    border-radius: 12px;
  }
  
  .yellow-circle {
    bottom: 80px;
    right: 40px;
    width: 120px;
    height: 120px;
    background-color: var(--yellow);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.2;
  }
  
  .blue-circle {
    top: 30%;
    left: 50%;
    width: 96px;
    height: 96px;
    background-color: var(--blue);
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.25;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: bold;
  }
  
  .section-header span {
    color: var(--yellow);
  }
  
  .section-header p {
    color: var(--text-light);
  }
  
  /* Grid Layout */
  .property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  @media (min-width: 768px) {
    .property-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  /* Image */
  .property-image {
    width: 100%;
  }
  
  .image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background-color: #444;
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .image-wrapper img:hover {
    transform: scale(1.05);
  }
  
  /* Info */
  .property-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .price {
    color: var(--yellow);
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 24px;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
  }
  
  .description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  
  /* Buttons */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  @media (min-width: 500px) {
    .buttons {
      flex-direction: row;
    }
  }
  
  button {
    flex: 1;
    padding: 14px 20px;
    background-color: var(--yellow);
    color: #2e2e2e;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  button.outline {
    background-color: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
  }
  
  button.outline:hover {
    background-color: var(--yellow);
    color: #2e2e2e;
  }

  /* Testimonials */
  .testimonials-section {
    background-color: #3e3e3e;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 36px;
    font-weight: bold;
  }
  
  .section-title h2 span {
    color: #f5c96a;
  }
  
  .section-title p {
    color: #ccc;
    margin-top: 10px;
  }
  
  .testimonial-card {
    background: #2e2e2e;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ccc;
  }
  
  .stars {
    color: #f5c96a;
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .client-info .name {
    font-weight: bold;
    color: #fff;
  }
  
  .client-info .role {
    font-size: 14px;
    color: #f5c96a;
  }
  
  .swiper {
    padding-bottom: 40px;
  }
  
  .swiper-pagination-bullet {
    background: #f5c96a;
  }
  
  /* Get in Touch */
  .contact-card {
    background: linear-gradient(to right, #282828, #202020);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: scale(1.05);
  }
  
  .icon-style {
    font-size: 2.5rem;
    color: #f5c96a;
  }

  .bg-gray{
    background-color:#3e3e3e;
  }