/* FontAwesome icon styling */
.fa-icon,
.svg-inline--fa,
[class*='fa-'] {
  color: #16a34a !important; /* Standard green color */
  transition: color 0.2s ease;
}

/* Specific component icons */
.support-icon,
.board-icon,
.location-icon,
.step-icon {
  color: #16a34a !important;
}

/* Icon sizes - following FontAwesome standards */
.fa-sm {
  font-size: 0.875rem;
}

.fa-lg {
  font-size: 1.25rem;
}

.fa-xl {
  font-size: 1.5rem;
}

.fa-2x {
  font-size: 2rem;
}

/* Icon hover effect */
.icon-hover:hover {
  color: #15803d !important; /* Darker green on hover */
}

/* Icon with background */
.icon-bg {
  background-color: rgba(22, 163, 74, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
}

/* Icon spacing utilities */
.icon-spacing-right {
  margin-right: 0.5rem;
}

.icon-spacing-left {
  margin-left: 0.5rem;
}

/* Icon animations */
.fa-spin {
  animation: icon-spin 2s linear infinite;
}

.fa-pulse {
  animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

l̥.about-section {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}

.about-icon {
  font-size: 2.5rem;
  color: #3498db;
}

.about-inline-icon {
  font-size: 1.25rem;
  color: #3498db;
  float: left;
  margin-top: 0.25rem;
}

.about-description {
  margin-top: 1.5rem;
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text p {
  margin-left: 2rem;
  color: #555;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 1.5rem;
  }

  .about-icon {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-container {
    padding: 1rem;
  }

  .about-section {
    padding: 1.25rem;
  }

  .about-icon {
    font-size: 1.75rem;
  }

  .about-inline-icon {
    font-size: 1.1rem;
  }

  .feature-icon {
    font-size: 1.75rem;
  }
}

.board-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.board-icon {
  font-size: 1.75rem;
  color: #3498db;
}

.tenure-badge {
  display: inline-block;
  background-color: #f8f9fa;
  color: #2c3e50;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Table Styles */
.board-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.board-table th,
.board-table td {
  padding: 1rem;
  border: 1px solid #dee2e6;
}

.board-table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #dee2e6;
}

.board-table tbody tr:hover {
  background-color: #f8f9fa;
}

.table-highlight {
  background-color: #e8f4f8 !important;
}

/* Accordion Styles */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  padding: 1rem;
  font-weight: 500;
  color: #2c3e50;
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #3498db;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
  padding: 1rem;
  background-color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .board-card {
    padding: 1rem;
  }

  .board-icon {
    font-size: 1.5rem;
  }

  .board-table th,
  .board-table td {
    padding: 0.75rem;
  }

  .tenure-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

.community-container {
  padding: 0 1rem;
}

.community-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.community-header h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 50px;
  height: 3px;
  background-color: #3498db;
  border-radius: 2px;
}

.community-header .lead {
  font-size: 1.1rem;
  max-width: 800px;
  color: #666;
}

.community-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.community-card:hover .service-icon-wrapper {
  transform: scale(1.1);
}

.service-icon {
  font-size: 1.75rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.explore-link {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.community-card:hover .explore-link {
  opacity: 1;
  transform: translateX(5px);
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-list li:last-child {
  border-bottom: none;
}

.guide-list li strong {
  color: #2c3e50;
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-header h3 {
    font-size: 1.5rem;
  }

  .community-header h3::after {
    width: 40px;
  }

  .community-header .lead {
    font-size: 1rem;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .community-container {
    padding: 0 0.5rem;
  }

  .community-header h3 {
    font-size: 1.35rem;
  }

  .community-header h3::after {
    width: 35px;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .service-icon {
    font-size: 1.5rem;
  }
}

.faq-section {
  padding: 2rem 0;
}

.faq-header {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-icon {
  font-size: 2rem;
  color: #0d6efd;
}

.category-icon {
  font-size: 1.25rem;
  color: #2c3e50;
  opacity: 0.8;
}

.faq-search {
  max-width: 100%;
}

/* Search box styles */
.faq-search .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  box-shadow: none !important;
}

.faq-search .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.faq-search .input-group-text {
  background-color: transparent !important;
}

.faq-search .form-control {
  border-radius: 0 8px 8px 0;
  border-color: #dee2e6;
}

/* Style for accordion items */
.accordion {
  margin-top: 1rem;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 0.5rem;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-header {
  background-color: #fff;
}

.accordion-button {
  font-weight: 500;
  padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #0d6efd;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1.25rem;
  background-color: #fff;
  line-height: 1.6;
}

/* Desktop styles */
@media (min-width: 768px) {
  .faq-search {
    float: right;
    width: 300px;
  }

  .faq-header h3 {
    font-size: 1.75rem;
  }
}

/* Tablet and mobile styles */
@media (max-width: 767px) {
  .faq-icon {
    font-size: 1.5rem;
  }

  .category-icon {
    font-size: 1.1rem;
  }

  .faq-search .form-control {
    padding: 0.625rem 0.875rem;
  }

  .faq-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .faq-header h3 {
    font-size: 1.35rem;
  }

  .accordion-button {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
}

/* Style for the footer text */
.footer-text {
  font-size: 12px; /* Reduced font size */
  color: #ffffff; /* White text */
}

/* Hide right section on mobile devices */
.footer-right-section {
  display: none !important;
}

/* Show right section on medium screens and larger */
@media (min-width: 768px) {
  .footer-right-section {
    display: flex !important;
  }
}

/* Style for the footer links */
.footer-link {
  font-size: 12px; /* Reduced font size */
  color: #ffffff !important; /* White color for links */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Remove underline */
  margin-left: 15px; /* Add spacing between links */
  transition: color 0.3s ease; /* Smooth hover effect */
}

.footer-link:hover {
  color: #0d6efd !important; /* Bootstrap standard blue color on hover */
}

/* Clickable Gallery Card */
.image-gallery-card-link {
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: none;
}

.image-gallery-card-link:hover .image-gallery-card,
.image-gallery-card-link:focus .image-gallery-card {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gallery Card Layout */
.image-gallery-card {
  height: 100%;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1rem 0.5rem;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  transition: transform 0.3s ease;
}

/* Stacked Image Display */
.image-gallery-image-stack {
  position: relative;
  height: 120px;
  margin: auto;
  width: 160px;
}

.image-gallery-thumbnail {
  position: absolute;
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stacked-0 {
  top: 0;
  left: 0;
  z-index: 3;
}
.stacked-1 {
  top: 12px;
  left: 18px;
  z-index: 2;
}
.stacked-2 {
  top: 24px;
  left: 36px;
  z-index: 1;
}

/* Footer Text */
.image-gallery-footer {
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.grouped-gallery-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.grouped-gallery-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grouped-gallery-slide-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  max-width: 80%;
}

/* Custom styles for yet-another-react-lightbox */
:root {
  --grouped-gallery-thumbnail-size-width: 100px;
  --grouped-gallery-thumbnail-size-height: 60px;
  --grouped-gallery-thumbnail-border: 2px;
  --grouped-gallery-thumbnail-border-radius: 4px;
  --grouped-gallery-thumbnail-padding: 4px;
}

/* Override lightbox default styles */
.yarl__thumbnails_container {
  --yarl__thumbnails_thumbnail_width: var(
    --grouped-gallery-thumbnail-size-width
  ) !important;
  --yarl__thumbnails_thumbnail_height: var(
    --grouped-gallery-thumbnail-size-height
  ) !important;
  --yarl__thumbnails_thumbnail_border: var(
    --grouped-gallery-thumbnail-border
  ) !important;
  --yarl__thumbnails_thumbnail_border_radius: var(
    --grouped-gallery-thumbnail-border-radius
  ) !important;
  --yarl__thumbnails_padding: var(
    --grouped-gallery-thumbnail-padding
  ) !important;
}

.yarl__carousel_slides_container {
  --yarl__carousel_padding: 0 !important;
  --yarl__carousel_spacing: 0 !important;
}

.collage-container {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.collage-image {
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.greenary-section {
  background-color: #f8f9fa;
  border-radius: 16px;
}

.section-header {
  margin-bottom: 2rem;
}

.initiative-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.initiative-title svg {
  color: #2e7d32;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 1rem;
}

.greenary-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.greenary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon {
  font-size: 1.8rem;
  color: #2e7d32;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.feature-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Base styles for navigation links */
.custom-color {
  font-weight: 500; /* Regular bold text */
  font-size: 14px; /* Font size */
  position: relative; /* Required for the pseudo-element */
  color: #000; /* Default text color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover effect for text color */
.custom-color:hover {
  color: #007bff; /* Custom hover color */
}

/* Add a line below the nav item */
.custom-color::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px; /* Position the line slightly below the text */
  width: 0;
  height: 2px; /* Thickness of the line */
  background-color: #007bff; /* Line color */
  transition: width 0.3s ease, opacity 0.3s ease; /* Smooth fade-in and fade-out */
  opacity: 0; /* Initially hidden */
}

/* On hover, expand the line and make it visible */
.custom-color:hover::after {
  width: 100%; /* Expand the line to full width */
  opacity: 1; /* Make the line visible */
}

/* Active state for nav items */
.custom-color.active,
.custom-color.show {
  color: #007bff !important;
  font-weight: 700;
}

/* Active state with line always visible */
.custom-color.active::after,
.custom-color.show::after {
  width: 100%;
  opacity: 1;
  background-color: #007bff;
}

/* Active state hover effect */
.custom-color.active:hover,
.custom-color.show:hover {
  color: #0056b3 !important;
}

.custom-color.active:hover::after,
.custom-color.show:hover::after {
  background-color: #0056b3;
}

/* Dropdown styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.dropdown-item.active {
  background-color: #007bff;
  color: white;
  font-weight: 700;
}

/* Custom dropdown toggle */
.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.nav-link.dropdown-toggle::after {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
  vertical-align: 0.1em;
}

.show .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Ensure COMMUNITY text has same weight as other nav items */
#community-dropdown {
  font-weight: 500;
  color: #000;
}

#community-dropdown:hover,
#community-dropdown.show {
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-link {
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-item {
    padding: 0.5rem 0;
  }
}

.notice-board {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.notice-board-header {
  background-color: #343a40;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-align: center;
}

.marquee-container {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
  animation-play-state: running;
}

.marquee-container:hover .marquee {
  animation-play-state: paused;
}

.notice {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.95rem;
}

.no-notices {
  padding: 1rem;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

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

.slider-wrapper {
  position: relative;
  width: 100%;
  /* Fixed aspect ratio using padding-bottom */
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 0.5rem;
}

.swiper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.slider-slide-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Regular slide text (top right) */
.slider-slide-text {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1rem;
  color: white;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
  z-index: 15;
  pointer-events: none;
  white-space: nowrap;
}

/* Community name text (centered) */
.slider-slide-text-community-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 15;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}

.slider-slide-text-community-name h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
  color: white;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.swiper-button-prev {
  left: 0.75rem;
}

.swiper-button-next {
  right: 0.75rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
  background: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .slider-slide-text-community-name h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .slider-slide-text-community-name h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .slider-slide-text-community-name h1 {
    font-size: 2.5rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .slider-slide-text {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 576px) {
  .slider-slide-text-community-name h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  }

  .slider-slide-text {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .slider-slide-text-community-name h1 {
    font-size: 1.5rem;
  }

  .slider-slide-text {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
  }
}

.home-slide-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.home-slide-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 8px;
  z-index: 2;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicators .active {
  background-color: #ffffff;
}

/* Fade Animation */
.carousel-fade .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-slide-container {
    height: 400px;
  }

  .home-slide-text {
    font-size: 1.8rem;
    bottom: 15%;
    width: 90%;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .home-slide-container {
    height: 300px;
  }

  .home-slide-text {
    font-size: 1.4rem;
    bottom: 10%;
    padding: 0.6rem 1rem;
  }
}

.home-description-section {
  background-color: #fff;
}

.home-description-text {
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.8;
}

.home-description-text p {
  margin-bottom: 1.5rem;
}

.community-section-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header {
  margin-bottom: 2rem;
}

.initiative-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.initiative-title svg {
  color: #2e7d32;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon {
  font-size: 1.8rem;
  color: #2e7d32;
}

.feature-title {
  color: #2c3e50;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.feature-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.highlight-box {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.commitment-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.commitment-title svg {
  color: #2e7d32;
}

.highlight-box p {
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 2rem;
}

.awm-community-info {
  width: 100%;
}

.awm-community-info .counter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 0 1rem;
}

.counter-item {
  flex: 1 1 150px;
  text-align: center;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
  max-width: 200px;
  padding: 0.5rem;
}

.counter-item .number {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #2c3e50;
}

.counter-item .heading {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .counter-item {
    flex: 1 1 120px;
    padding: 0.25rem;
  }

  .counter-item .number {
    font-size: 1.4rem;
  }

  .counter-item .heading {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .awm-community-info .counter-row {
    gap: 0.75rem;
  }

  .counter-item {
    flex: 1 1 100px;
  }
}

.home-description-text {
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.8;
}

.home-description-text p {
  margin-bottom: 0;
}

/* Container for each slide */
.home-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Text overlay in the bottom-right corner */
.home-slide-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-size: 14px; /* Smaller font size */
  font-weight: normal; /* Normal weight */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
  z-index: 10;
  text-align: right;
}

/* Ensure the image fills the container */
.home-slide-container img {
  width: 100%;
  height: auto;
  display: block;
}

.home-container {
  width: 100%;
  max-width: 100%;
}

.home-content-section {
  width: 100%;
  max-width: 1400px;
  margin: 1rem auto;
  padding: 0 0rem;
}

/* Slider section specific styles */
.home-slider-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.home-slider-section .slider-wrapper {
  padding-bottom: 36.5625% !important; /* 16:9 aspect ratio * 0.65 */
}

/* Main content layout */
.home-main-content-section {
  padding: 0.5rem 0;
}

.home-description-wrapper {
  height: 100%;
}

.home-notice-section {
  height: 100%;
}

.home-community-spirit-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.home-greenary-section {
  margin: 3rem 0;
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .home-notice-section {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .home-slider-section .slider-wrapper {
    padding-bottom: 45% !important; /* Slightly taller on tablets */
  }
}

@media (max-width: 576px) {
  .home-content-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .home-main-content-section {
    padding: 1rem 0;
  }

  .home-notice-section {
    margin-top: 1rem;
  }

  .home-slider-section .slider-wrapper {
    padding-bottom: 56.25% !important; /* Back to standard 16:9 on mobile */
  }
}

.maintenance-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}

.maintenance-info .info-card {
  border-radius: 8px;
  background-color: #f8f9fa !important;
  margin: 0 auto;
  max-width: 100%;
}

.maintenance-info .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #495057;
}

.maintenance-table {
  margin-bottom: 0;
  width: 100%;
}

.maintenance-table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  font-weight: 600;
  color: #343a40;
}

.maintenance-table thead th:first-child {
  width: 30%;
}

.maintenance-table thead th:last-child {
  width: 70%;
}

.maintenance-table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

.table-hover-active {
  background-color: rgba(0, 123, 255, 0.05);
}

.gallery-link {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.gallery-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.external-link-icon {
  font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .maintenance-container {
    padding: 0 1rem;
  }

  .maintenance-info .lead {
    font-size: 1rem;
  }

  .maintenance-table thead th,
  .maintenance-table tbody td {
    padding: 0.75rem;
  }

  .gallery-link {
    min-width: 120px;
  }

  .maintenance-table thead th:first-child,
  .maintenance-table thead th:last-child {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .maintenance-container {
    padding: 0 0.5rem;
  }

  .maintenance-card {
    border-radius: 8px;
  }

  .maintenance-table thead th,
  .maintenance-table tbody td {
    padding: 0.5rem;
  }

  .maintenance-table thead th:first-child,
  .maintenance-table thead th:last-child {
    width: auto;
  }
}

/* Adds a subtle 3D look */
.hover-zoom {
  background: linear-gradient(145deg, #ffffff, #f3f4f6);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Optional spacing for clarity on small screens */
.nearby-locality-section .card {
  padding: 0.5rem 0.75rem;
}

.nearby-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.nearby-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.nearby-subtitle {
  font-size: 1.1rem;
  color: #718096;
  margin: 0;
  font-weight: 400;
}

.locality-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  border: 1px solid #edf2f7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.locality-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.locality-card-header {
  padding: 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
}

.locality-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 1.25rem;
  color: #2d3748;
  font-weight: 600;
}

.locality-card-title .icon {
  color: #4ade80;
  transition: color 0.2s ease;
}

.locality-card-body {
  padding: 1.25rem;
}

.locality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.locality-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #edf2f7;
}

.locality-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.locality-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-icon {
  color: #4ade80;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.locality-item-name {
  margin: 0;
  font-size: 0.95rem;
  color: #4a5568;
}

.locality-item-distance {
  font-size: 0.875rem;
  color: #718096;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nearby-locality-section {
    padding: 2rem 0;
  }

  .nearby-header h3 {
    font-size: 1.75rem;
  }

  .nearby-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .nearby-header h3 {
    font-size: 1.5rem;
  }

  .nearby-subtitle {
    font-size: 0.95rem;
  }

  .locality-card-title {
    font-size: 1.1rem;
  }
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.projects-header p {
  font-size: 1.1rem;
  color: #666;
}

.projects-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-category {
  margin-bottom: 2rem;
}

.category-title {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.minor-project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.project-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.minor-project-card {
  background: white;
  border-radius: 6px;
  padding: 1rem;
  border: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.minor-project-card:hover {
  background-color: #f8f9fa;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.minor-project-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.minor-project-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.project-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.minor-project-description {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.project-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.more-details-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: rgba(37, 99, 235, 0.1);
  border: 1px solid transparent;
}

.more-details-link:hover {
  color: #1d4ed8;
  background-color: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.more-details-link .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.1em;
  line-height: 0;
  position: relative;
  top: 1px;
}

.more-details-link:hover .arrow {
  transform: translateX(4px);
}

.status-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Status colors are handled by Bootstrap classes */

/* Responsive adjustments */
@media (max-width: 768px) {
  .projects-container {
    padding: 1.5rem 1rem;
  }

  .projects-header h1 {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .minor-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .projects-header h1 {
    font-size: 1.75rem;
  }

  .project-card {
    padding: 1rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
  }

  .minor-project-card {
    padding: 0.75rem;
  }

  .minor-project-title {
    font-size: 0.95rem;
  }

  .more-details-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Animated Key Highlights */
.rain-water-harvest-list {
  list-style-type: disc;
  margin-left: 1rem;
  padding-left: 1rem;
}

.rain-water-harvest-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: rain-water-harvest-slideIn 0.5s ease forwards;
}

.rain-water-harvest-item:nth-child(1) {
  animation-delay: 0.1s;
}
.rain-water-harvest-item:nth-child(2) {
  animation-delay: 0.4s;
}
.rain-water-harvest-item:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes rain-water-harvest-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Video Container */
.rain-water-harvest-video {
  margin-top: 0.5rem;
}

/* Clickable Gallery Card */
.rain-water-harvest-gallery-card-link {
  cursor: pointer;
  display: block;
  text-decoration: none;
  outline: none;
}

.rain-water-harvest-gallery-card-link:hover .rain-water-harvest-gallery-card,
.rain-water-harvest-gallery-card-link:focus .rain-water-harvest-gallery-card {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gallery Card Layout */
.rain-water-harvest-gallery-card {
  height: 100%;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1rem 0.5rem;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  transition: transform 0.3s ease;
}

/* Stacked Image Display */
.rain-water-harvest-image-stack {
  position: relative;
  height: 120px;
  margin: auto;
  width: 160px;
}

.rain-water-harvest-thumbnail {
  position: absolute;
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stacked-0 {
  top: 0;
  left: 0;
  z-index: 3;
}
.stacked-1 {
  top: 12px;
  left: 18px;
  z-index: 2;
}
.stacked-2 {
  top: 24px;
  left: 36px;
  z-index: 1;
}

/* Footer Text */
.rain-water-harvest-footer {
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

/* SolarSection.css */

/* Key Highlights Animation */
.solar-list-quotes {
  list-style-type: disc;
  margin-left: 1rem;
  padding-left: 1rem;
}

.solar-list-item {
  opacity: 0;
  transform: translateX(-30px); /* Start position */
  animation: solar-slideIn 0.5s ease forwards;
}

.solar-list-item:nth-child(1) {
  animation-delay: 0.1s;
}

.solar-list-item:nth-child(2) {
  animation-delay: 0.4s;
}

.solar-list-item:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes solar-slideIn {
  to {
    opacity: 1;
    transform: translateX(0); /* Final position */
  }
}

/* Styling for image and layout */
.solar-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.solar-row {
  display: flex;
  justify-content: space-between;
}

.solar-col-md-9 {
  width: 65%;
}

.solar-col-md-3 {
  width: 30%;
}

.solar-img-responsive {
  width: 100%;
  height: auto;
}

.solar-services-content {
  margin-top: 1rem;
}

.support-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.support-card-icon {
  font-size: 2rem;
  color: #0d6efd;
}

.support-team-table {
  margin-bottom: 0;
}

.support-team-table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  font-weight: 600;
}

.support-team-table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

.support-team-table tr.table-active {
  background-color: rgba(13, 110, 253, 0.05);
}

.support-team-table tr:hover {
  background-color: #f8f9fa;
}

.support-icon {
  font-size: 2rem;
  color: #3498db;
}

.support-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.support-card-icon {
  font-size: 1.5rem;
  color: #3498db;
}

.support-team-table {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.support-team-table thead {
  background-color: #f8f9fa;
}

.support-team-table th {
  font-weight: 600;
  color: #2c3e50;
  border-bottom: 2px solid #dee2e6;
}

.support-team-table td {
  vertical-align: middle;
}

.support-step {
  padding: 1rem;
  border-left: 3px solid #3498db;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  border-radius: 0 8px 8px 0;
}

.support-step-icon {
  color: #3498db;
  margin-right: 0.5rem;
}

/* Map container styles */
.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .support-icon {
    font-size: 1.75rem;
  }

  .support-card {
    padding: 1rem;
  }

  .map-container {
    height: 250px;
  }
}

/* Add responsive margins to the main content */
.app-content {
  margin-top: 10px; /* Default top margin */
  margin-bottom: 60px; /* Space for the sticky footer */
  font-family: 'Roboto', sans-serif; /* Font family for the app content */
}

.app-content p {
  color: #787878;
  line-height: 1.7; /* Improved line height for readability */
}

.app-content ul {
  color: #787878;
  line-height: 1.7; /* Improved line height for readability */
}

@media (max-width: 768px) {
  .app-content {
    margin-top: 10px; /* Smaller top margin for mobile */
    margin-bottom: 120px; /* Adjust bottom margin for mobile */
  }
}

.nearby-locality-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}

.card-title {
  font-size: 1.2rem;
}

.hover-zoom {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.list-group-item {
  font-size: 0.95rem;
  border: none;
  background: transparent;
}

@media (max-width: 576px) {
  .nearby-locality-section h2 {
    font-size: 1.5rem;
  }
}

.loading-spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  z-index: 9999;
}

.loading-spinner-content {
  text-align: center;
}

.loading-spinner-text {
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/*# sourceMappingURL=main.5baff880.css.map*/