/* ================= GLOBAL ================= */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;  
  color: #212529;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* ================= HEADER ================= */
.top-header {
  background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(13, 110, 253, 0.85)); /* blue */
  color: white;
  padding: 20px 10px;
  border-radius: 0px;
  text-align: center;
}

/* Flex container */
.top-header .d-flex {
  display: flex;
  flex-wrap: wrap;             /* allow wrapping on small screens */
  justify-content: center;
  align-items: center;         /* vertical alignment */
  gap: 10px;
}

.hanuman-img {
  height: 80px; /* small mobile default */
  width: auto;
}

/* Text */
.welcome-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffffcc;
}

.villa-title {
  color: rgb(255, 223, 43);
  margin: 5px 0 0;
  font-size: 2rem; /* mobile */
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Force left-right layout even on small screens */
@media (max-width: 576px) {
  .top-header .d-flex {
    flex-wrap: nowrap;         /* prevent wrapping */
    justify-content: space-between; /* spread them left/right */
    align-items: center;
  }

  .hanuman-img {
    height: 60px;  /* smaller size for mobile */
    width: auto;
  }

  .villa-title {
    font-size: 1.5rem; /* smaller title for mobile */
    margin: 0 10px;    /* add little spacing */
  }
}
/* ================= INFRASTRUCTURE ================= */
.infrastructure-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 70px 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.15);
}

.decor-circle1 {
  width: 150px;
  height: 150px;
  top: -40px;
  left: -40px;
}

.decor-circle2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -60px;
}

/* Big Logo */
.infrastructure-logo {
  height: 200px;
  width: auto;
  margin-bottom: 25px;
}

/* Description */
.infra-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #495057;
  max-width: 900px;
}

/* Feature cards */
.infra-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 10px;
}

.infra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.infra-card i {
  color: #0d6efd;
}

.infra-card h6 {
  margin: 0;
  font-size: 1rem;
}

/* ================= CAROUSEL ================= */
#propertyCarousel .carousel-item img {
  max-height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ================= THUMBNAILS ================= */
.thumbnail {
  cursor: pointer;
  border: 2px solid transparent;
  height: 90px;
  width: auto;
  border-radius: 5px;
  transition: 0.3s;
}

.thumbnail:hover {
  border: 2px solid #0d6efd;
}

/* ================= PROPERTY INFO ================= */
.info-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-box i {
  font-size: 24px;
  color: #0d6efd;
  margin-bottom: 5px;
}

/* ================= ABOUT US ================= */
.about-section {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-section h4 {
  font-weight: 600;
  font-size: 1.8rem;
}

.about-section p {
  color: #495057;
}

/* ================= LOCATION ================= */
.location-section {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ================= CONTACT ================= */
.contact-section {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-section h4 {
  margin-bottom: 15px;
  font-weight: 600;
}


/* plan footer*/
.carousel-inner img {
    width: 100%;        /* Full width of carousel */
    height: auto;       /* Keep aspect ratio */
    max-height: 500px;  /* Limit vertical size */
    object-fit: contain; /* Fit the image inside without cropping */
    border-radius: 10px; /* Optional: rounded corners */
}
/* ================= FOOTER ================= */
footer {
  background: #212529;
  color: #fff;
  font-size: 0.9rem;
}
.scrolling-text {
    overflow: hidden;       /* Hide overflow */
    white-space: nowrap;    /* Keep text in a single line */
}

.scrolling-text p {
    display: inline-block;
    padding-left: 100%;    /* Start from the right */
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  #propertyCarousel .carousel-item img {
    max-height: 350px;
  }

  .thumbnail {
    height: 70px;
  }

  .infra-description {
    font-size: 1.1rem;
  }
}

