:root {
  --primary-color: #2ecc71;
  --primary-color-hover: #27ae60;
  --background-color: #eaffea;
  --text-color: #1b5e20;
  --header-bg: #d0f0c0;
  --header-text-color: #145214;
  --banner-right-bg: #f0fff0;
  --banner-text-color: #fff;
  --banner-text-shadow: rgba(21, 66, 21, 0.6);
  --overview-point-bg-odd: #e0f0d0;
  --overview-point-bg-even: #d0e0c0;
  --enquiry-bg: #ddf0d0;
  --enquiry-text-color: #154215;
  --enquiry-button-bg: var(--primary-color);
  --enquiry-button-hover-bg: var(--primary-color-hover);
  --footer-bg: #145214;
  --footer-text: #d0f0c0;
  --footer-link: #a5d6a7;
  --footer-link-hover: #81c784;
  --mobile-bar-bg: #145214;
  --mobile-bar-text: #d0f0c0;
  --amenity-bg: #f4fff4;
  --amenity-hover-bg: #e0f0d0;
  --amenity-box-shadow: rgba(20, 66, 20, 0.1);
  --amenity-hover-box-shadow: rgba(20, 66, 20, 0.2);
  --faq-border: #a0c080;
  --faq-text-color: #154215;
}

/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  padding-top: 30px; /* for top bar */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: var(--header-bg);
  position: relative;
  z-index: 1100;
  color: var(--header-text-color);
}
.logo img {
  height: 50px;
}
.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--header-text-color);
  font-weight: 600;
  font-size: 16px; /* desktop font size */
}
.menu a:hover {
  color: var(--primary-color-hover);
}

/* Menu toggle (hamburger icon) */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

/* Banner */
.banner {
  display: flex;
  height: 500px;
}
.banner-left {
  width: 70%;
  position: relative;
}
.banner-right {
  width: 30%;
  background: var(--banner-right-bg);
  padding: 20px;
  overflow-y: auto;
}
.banner-text {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: var(--banner-text-color);
  z-index: 2;
  text-shadow: 1px 1px 5px var(--banner-text-shadow);
}
.banner-text h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.banner-text p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 16px;
  }
}

/* Slider */
.slider img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: none;
  transition: height 0.3s ease;
}
.slider img.active {
  display: block;
}

/* Overview points */
.overview-points {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  border-radius: 5px;
  overflow: hidden;
}
.overview-points .point {
  padding: 10px 15px;
}
.overview-points .point:nth-child(odd) {
  background-color: var(--overview-point-bg-odd);
}
.overview-points .point:nth-child(even) {
  background-color: var(--overview-point-bg-even);
}

/* Enquiry Form */
.enquiry-form {
  background: var(--enquiry-bg);
  padding: 15px;
  text-align: center;
  color: var(--enquiry-text-color);
}
.enquiry-form form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.enquiry-form input,
.enquiry-form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.enquiry-form button {
  background: var(--enquiry-button-bg);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.enquiry-form button:hover {
  background: var(--enquiry-button-hover-bg);
}
.enquiry-form h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Sections */
.content-section {
  padding: 40px 20px;
}
.content-section h2 {
  margin-bottom: 20px;
  text-align: center;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  text-align: center;
}
.amenity {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--amenity-bg);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--amenity-box-shadow);
}
.amenity:hover {
  background-color: var(--amenity-hover-bg);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px var(--amenity-hover-box-shadow);
}
.amenity i {
  font-size: 40px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

/* Map */
.map {
  margin-top: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 30px 20px;
  text-align: center;
}
.footer a {
  color: var(--footer-link);
  text-decoration: none;
}
.footer a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* Mobile Sticky Bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--mobile-bar-bg);
  color: var(--mobile-bar-text);
  justify-content: space-around;
  padding: 10px 0;
  z-index: 999;
}
.mobile-bar a {
  color: var(--mobile-bar-text);
  text-decoration: none;
  font-weight: bold;
}

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  color: var(--enquiry-text-color);
  text-align: right;
  padding: 5px 20px;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.top-bar a {
  color: #ffffff;
  text-decoration: none;
}
.top-bar a:hover {
  color: #145214;
  text-decoration: none;
}

/* Responsive - Mobile styles */
@media (max-width: 768px) {
  /* Reduce menu font size */
  .menu a {
    font-size: 14px;
  }

  /* Banner stacked */
  .banner {
    flex-direction: column;
    height: auto;
  }
  .banner-left,
  .banner-right {
    width: 100%;
  }
  .slider img {
    height: 250px;
  }

  /* Hide desktop menu initially */
  .menu {
    display: none;
    flex-direction: column;
    background-color: var(--header-bg);
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .menu a {
    padding: 10px 20px;
    display: block;
    border-top: 1px solid #ddd;
  }

  /* Show active menu */
  .menu.active {
    display: flex;
  }

  /* Hamburger icon visible */
  .menu-toggle {
    display: block;
  }

  /* Change hamburger to X when active */
  .menu-toggle.active::after {
    content: "✖";
    font-size: 26px;
  }

  /* Hide ☰ when menu active */
  .menu-toggle.active {
    color: transparent;
  }

  /* Mobile sticky bar */
  .mobile-bar {
    display: flex;
  }
}



/* Floorplans */
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.floorplan-item {
  text-align: center;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--banner-right-bg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.floorplan-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.floorplan-item p {
  font-weight: 600;
  color: var(--text-color);
  font-size: 16px;
}

/* FAQ */
.faq-section {
  max-width: 90%;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  color: var(--text-color);
}

.faq-question span {
  float: right;
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 14px;
  color: var(--faq-text-color);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* changes + to × */
}
/* Layout adjustments for the overview section */
.overview-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.image {
  flex: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image img {
  max-width: 100%;
  max-height: 250px; /* Limit the image height */
  object-fit: cover; /* Ensure images cover their containers */
}

.overview-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 70%; /* Content takes up 70% of the space */
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}
/* Size and Resale Price Tags */
.size-tag, .resale-tag {
  background-color: #2ecc71;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
/* View Details Link as Tag */
.view-details-link {
  display: inline-block;
  background-color: #2ecc71;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.view-details-link:hover {
  background-color: #27ae60;
}



/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .overview-item {
    flex-direction: column; /* Stack images and content vertically */
  }

  /* Change the order of content and image on mobile */
  .overview-content {
    order: 1; /* Content first */
  }

  .image {
    order: 2; /* Image second */
    flex: 0 0 80%; /* Image takes up 80% of the screen width */
    margin-bottom: 20px; /* Add some space between image and content */
  }

  .image img {
    max-height: 200px; /* Reduce image size for mobile */
    margin: 0 auto; /* Center the image */
  }
}


.faq-item ul {
  list-style-position: inside;  /* Ensures the bullet point is part of the list item container */
  padding: 0;
  margin: 0;
}

.faq-item ul li {
  padding: 0 20px;  /* Horizontal padding for the list items */
  font-size: 15px;
  
}
/* Container for all villa/office cards */
.villa-types-container {
  display: grid;
  gap: 30px;
  justify-items: center;  /* Centers the cards horizontally */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* fallback */
  max-width: 1200px;   /* max width for container */
  margin: 0 auto;      /* center the container */
  padding: 0 20px;     /* some padding on sides */
  justify-content: center; /* Center grid content when fewer than 3 cards */
}

/* Desktop: show exactly 3 cards per row */
@media (min-width: 1024px) {
  .villa-types-container {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch; /* Stretch the items to fill the grid */
  }
}

/* Tablet: 2 cards per row */
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-types-container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch; /* Stretch the items to fill the grid */
  }
}

/* Mobile: 1 card per row */
@media (max-width: 767px) {
  .villa-types-container {
    grid-template-columns: 1fr;
    justify-items: stretch; /* Stretch the items to fill the grid */
  }
}

/* Center the cards when there are less than 3 floor plans (1 or 2 cards) */
.villa-types-container {
  display: grid;
  gap: 30px;
  justify-items: center;  /* Centers the cards horizontally */
  align-items: center;    /* Centers the cards vertically */
}

/* General Style for All Cards */
.villa-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

/* Tighter Title Spacing */
.villa-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 15px;
  color: #2c3e50;
}

/* Detail Block */
.villa-details {
  margin-bottom: 10px;
}

/* Each Detail Item */
.villa-details .detail-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  padding: 6px 12px;
  background: #f8f8f8;
  border-radius: 6px;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

/* Button spacing */
.view-floor-plan-btn {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.view-floor-plan-btn:hover {
  background-color: #e67e22;
}

/* Small Floor Plan Image */
.villa-floor-plan {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 10px auto 15px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* Optional: hover zoom effect for floor plan */
.villa-floor-plan:hover {
  transform: scale(1.05);
}




.horizontal-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.horizontal-form .form-group input,
.horizontal-form .form-group select,
.horizontal-form .form-group button {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  flex: 1;
  min-width: 180px;
}

.horizontal-form .form-group select {
  cursor: pointer;
}

.horizontal-form .form-group button {
  background-color: #f39c12;
  color: #fff;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.horizontal-form .form-group button:hover {
  background-color: #e67e22;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .horizontal-form .form-group {
    flex-direction: column;
    gap: 15px;
  }

  .horizontal-form .form-group input,
  .horizontal-form .form-group select,
  .horizontal-form .form-group button {
    width: 100%;
  }
}

.villa-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.villa-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-width: 800px;
}

.villa-table thead {
  background-color: #f39c12;
  color: #fff;
  text-align: center;
}

.villa-table th,
.villa-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #eee;
}

.villa-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.villa-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* Responsive Font Size for Mobile */
@media (max-width: 768px) {
  .villa-table {
    font-size: 12px;
  }

  .villa-table th,
  .villa-table td {
    padding: 8px;
  }
}

.villa-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Adjust spacing here */
  margin-bottom: 30px;
  justify-content: space-between;
}

.villa-image {
  flex: 1 1 calc(33.33% - 12px);
  border: 6px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}

.villa-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.villa-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .villa-image-row {
    flex-direction: column;
  }

  .villa-image {
    flex: 1 1 100%;
  }

  .villa-caption {
    font-size: 12px;
  }
}

/* ===== Features Section ===== */
.feature-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* Horizontal slider layout */
.feature-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* allows horizontal scroll if needed */
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;

  /* Center items when total width is less than container */
  justify-content: center;
}

/* Individual feature card */
.feature-item {
  flex: 0 0 300px; /* Each slide has a fixed width */
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* Restrict image sizes */
.feature-item img {
  width: 100%;
  height: 200px;          /* Restrict image height */
  object-fit: cover;      /* Ensures image fills area neatly */
  display: block;
  border-radius: 6px 6px 0 0;
}

/* Description text under each image */
.feature-description {
  padding: 15px;
  text-align: center;
}

.feature-description h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.feature-description p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
}

/* === Feature Slider Arrows === */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(20, 82, 20, 0.7);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.slider-arrow:hover {
  background-color: var(--primary-color-hover);
  opacity: 1;
}

/* Left and Right arrow positioning */
.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

/* Hide scrollbar for a cleaner look */
.feature-slider::-webkit-scrollbar {
  display: none;
}
.feature-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .feature-slider {
    justify-content: flex-start; /* Align left on tablets if needed */
  }
}

@media (max-width: 768px) {
  .feature-slider {
    flex-direction: column;
    overflow-x: hidden;
    justify-content: center; /* Keep centered for few items */
  }

  .feature-item {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .feature-item img {
    height: 180px; /* Slightly smaller images for mobile */
  }

  /* Hide arrows on mobile for simplicity */
  .slider-arrow {
    display: none;
  }
}


/* Locality Map Section Styles */
.locality-map-section {
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 0;
}

.locality-map-section h2 {
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  color: #333;
}

/* Flip Card Container */
.locality-card {
  perspective: 1000px;
  cursor: pointer;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.6s;
}

.locality-card-inner {
  position: relative;
  width: 100%;
  height: 250px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.locality-card:hover .locality-card-inner {
  transform: rotateY(180deg);
}

/* Card Front */
.card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #ffffff, #e9f5e9); /* light green gradient */
  color: #333;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  backface-visibility: hidden;
  padding: 20px;
  transition: all 0.3s ease;
}

.card-front:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-front i {
  font-size: 48px;
  color: #28a745; /* light green icon */
  margin-bottom: 10px;
}

.card-front h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* Card Back */
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #28a745; /* light green */
  color: #fff;
  border-radius: 12px;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify; /* justify content */
}

.card-back ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
}

.card-back img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 8px;
  animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation for images */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .locality-card-inner {
    height: 220px;
  }

  .card-front i {
    font-size: 36px;
  }

  .card-back ul {
    font-size: 13px;
  }
}

/* Compact Other Projects Section */
.other-projects {
  background: #f7f9fb;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.other-projects h2 {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 50px;
  position: relative;
}

.other-projects h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #7ac27e;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.projects-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Project Card */
.project-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Card Content */
.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1b4d3e;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #666;
}

.explore-link {
  font-size: 13px;
  color: #5aa469;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-card:hover .explore-link {
  color: #388e3c;
}

/* Responsive */
@media (max-width: 768px) {
  .other-projects {
    padding: 60px 15px;
  }

  .other-projects h2 {
    font-size: 26px;
  }

  .projects-showcase {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content h4 {
    font-size: 13px;
  }

  .explore-link {
    font-size: 12px;
  }
}

  .reason-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }

  @media (max-width:768px) {
    .investment-reasons {
      flex-direction: column;
      align-items: center;
    }
    .reason-card {
      max-width:90%;
      margin-bottom:20px;
    }
  }
