/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  --main-colour: #f9f9f9;
  --main-dark: #d3d3d3;
  --secondary-colour: #060c11;
  --secondary-colour-light: #001f38;
  --complimentary: #3e92cc;
  --complimentary-light: #b9d8ff;
  --complimentary-dark: #2e7eb8;
  --supplement: #118ab2;
  --supplement-dark: #076c8d;
}

/* ==========================================================================
   Base Element Styles
   ========================================================================== */
body {
  overflow-x: hidden !important;
  background-color: #f9f9f9;
}

/* ==========================================================================
   Typography & Colors
   ========================================================================== */
/* Font Families */
.libre-regular {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: normal;
}

.libre-bold {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-style: normal;
}

.libre-regular-italic {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: italic;
}

/* Font Colors */
.text-main {
  color: var(--main-colour);
}
.text-second {
  color: var(--secondary-colour);
}
.text-second-light {
  color: var(--secondary-colour-light);
}
.text-complimentary {
  color: var(--complimentary);
}
.text-complimentary-light {
  color: var(--complimentary-light);
}
.text-supplement {
  color: var(--supplement);
}

/* Background Colors */
.bg-main {
  background-color: var(--main-colour);
}

.bg-secondary {
  background-color: var(--secondary-colour);
}

.bg-compliment {
  background-color: var(--complimentary);
}

.bg-complimentary-dark {
  background-color: var(--complimentary-dark);
}

.bg-complimentary-light {
  background-color: var(--complimentary-light);
}

.bg-supplement {
  background-color: var(--supplement);
}

.bg-supplement-dark {
  background-color: var(--supplement-dark);
}

/* Text Styles */
.sub-header {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0 0 0.3em 0.55em;
}

.sub-text {
  font-style: italic;
  font-size: 0.9rem;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: #0000001a;
  border: solid #00000026;
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em #0000001a, inset 0 0.125em 0.5em #00000026;
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn-bd-primary {
  --bd-violet-bg: var(--complimentary);
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--supplement);
  --bs-btn-hover-border-color: var(--supplement-dark);
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: var(--complimentary-dark);
  --bs-btn-active-border-color: var(--supplement-dark);
}

.btn-first {
  font-size: 1.2rem;
  color: var(--main-colour);
  background-color: var(--complimentary);
  padding: 0.3em 1em;
  border-radius: 0.4em;
}
.btn-first:hover {
  background-color: var(--supplement);
  transform: translateY(-5%);
}

.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

/* Logo */
.logo {
  width: 70px;
  height: 70px;
}

.logo-bottom {
  width: 150px;
  height: 150px;
}

/* ==========================================================================
   Layout & Sections
   ========================================================================== */
/* Core Values Section */
#core-values {
  background-color: #f8f9fa;
}

#core-values .card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

#core-values .card:hover {
  transform: scale(1.05);
}

#core-values .card-img-top {
  transition: transform 0.3s ease-in-out;
}

#core-values .card:hover .card-img-top {
  transform: scale(1.1);
}

#core-values .card-title {
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Hero Section */
.hero-image {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--main-colour);
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: bold;
}

.hero-text h3 {
  font-size: 1.8rem;
  font-weight: 300;
}

.hero-text p {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-justify: auto;
}

.second-header {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 0 0.3em 0.55em;
}

.hero-button a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight {
  font-weight: 600;
}

.read-more {
  display: none;
}

.link {
  text-decoration: none;
  color: var(--main-colour);
}
.link:hover {
  color: #fff;
}

/* Infinite Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.carousel {
  display: flex;
  /* flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly; */
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100px;
  height: 100%;
  object-fit: cover;
}

/* Footer */
/* footer {
  background-color: var(--secondary-colour);
  color: var(--main-colour);
  padding: 1.5em 12em;
} */

footer h5 {
  color: var(--main-colour); /* White heading color */
  margin-bottom: 20px;
}

footer p,
footer ul,
footer a {
  color: #d1d1d1; /* Light grey text color */
  text-wrap: balance;
}

.text-fine {
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--main-colour); /* White text color on hover */
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
  text-decoration: none;
}

footer .social-icons a {
  color: #d1d1d1; /* Light grey icon color */
  margin-right: 30px;
  font-size: 1rem;
}

footer .social-icons a:hover {
  color: #ffffff; /* White icon color on hover */
}

footer .text-center {
  text-align: center;
}

footer .float-end {
  float: right;
}
.section-padding {
  padding: 30px 0;
}
.card {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-3px);
}
.service-card {
  min-height: 300px;
}

/* Additional styling for the iframe */
#latest-properties {
  padding: 30px;
  text-align: center;
}
#latest-properties iframe {
  border: none;
  width: 100%;
  max-width: 1000px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#latest-properties h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
#latest-properties a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #007bff;
  text-decoration: none;
}
#latest-properties a:hover {
  text-decoration: underline;
}

/* ===========================================
   Responsive Design
   ============================================ */
/* Media Queries */
.founder-image-container {
  text-align: center;
}

.founder-image {
  border-radius: 5%;
  object-fit: cover;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff; */
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.05);
}

/* Modern Gallery Styles */
.gallery-section {
  background: var(--main-colour);
  padding: 4rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--main-colour);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-overlay p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
  transform: translateY(10px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 0;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  }

  .gallery-overlay h5,
  .gallery-overlay p {
    transform: none;
  }
}

@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-overlay {
    opacity: 1;
    padding: 1rem;
  }

  .gallery-overlay h5 {
    font-size: 1.1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-section {
    padding: 2rem 0;
  }

  .gallery-item {
    aspect-ratio: 3/2;
  }
}

/* Header Styles */
.header-top {
  background-color: var(--bs-dark);
  padding: 0.5em 5em;
  font-size: 0.9rem;
}

.header-top a {
  color: var(--complimentary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-top a:hover {
  color: var(--complimentary-light);
}

.social-links a {
  margin-left: 15px;
  font-size: 1rem;
}

.navbar {
  padding: 0.5em 2.5em;
  transition: all 0.3s ease;
}

.navbar-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-brand h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-light);
}

.navigation-link {
  position: relative;
  padding: 8px 15px !important;
  font-weight: 400;
  color: var(--complimentary) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--complimentary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.2px;
  background-color: var(--complimentary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.navbar-toggler {
  border-color: #ffffff80;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .header-top {
    font-size: 0.8rem;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-top .container {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .social-links {
    margin-top: 5px;
  }

  .navbar-brand h6 {
    font-size: 1rem;
  }
}

/* Modern Footer Styles */
.footer {
  background-color: var(--secondary-colour);
  color: var(--main-colour);
  padding: 4rem 0 2rem;
}

.footer-brand img {
  width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.footer-brand:hover img {
  transform: scale(1.05);
}

.footer h5 {
  color: var(--complimentary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--complimentary);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--main-colour);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--complimentary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--complimentary);
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--secondary-colour-light);
  color: var(--main-colour);
  margin-right: 0.8rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--complimentary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--secondary-colour-light);
  padding: 2rem 4em 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.back-to-top {
  color: var(--complimentary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  color: var(--complimentary-light);
}

@media (max-width: 767px) {
  .footer {
    padding: 3rem 0 1rem;
  }

  .footer-col {
    margin-bottom: 2rem;
  }

  .footer h5 {
    margin-bottom: 1rem;
  }

  .footer-social {
    margin-bottom: 1.5rem;
  }
}

/* Form Styles */
.application-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background-color: var(--main-colour);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-title {
  color: var(--complimentary);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--complimentary);
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: var(--secondary-colour);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: var(--complimentary);
  box-shadow: 0 0 0 4px rgba(62, 146, 204, 0.1);
  outline: none;
  background-color: #fff;
}

.form-control::placeholder {
  color: #adb5bd;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

input[type='file'].form-control {
  padding: 0.7rem;
  background-color: #fff;
  border-style: dashed;
}

input[type='file'].form-control:hover {
  background-color: #f8f9fa;
}

.btn-submit {
  min-width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--complimentary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--complimentary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .application-container {
    padding: 2rem;
    margin: 2rem;
  }

  .form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .application-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .btn-submit {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

/* Admin Applications */
.container {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Container Alternate */
.container-alt {
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
}

/* Admin Dashboard Styles */
.admin-dashboard {
  background-color: #f5f7fa;
  min-height: 100vh;
}

.admin-nav {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-nav .navbar-brand h6 {
  color: var(--complimentary-light);
}

.admin-controls .btn {
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.admin-main {
  padding: 2rem 0;
}

.admin-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--complimentary-light);
}

.admin-header h2 {
  color: var(--secondary-colour);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.admin-header p {
  color: #6c757d;
  margin-bottom: 0;
}

.admin-table {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.admin-table thead {
  background-color: var(--secondary-colour);
  color: white;
}

.admin-table th {
  padding: 1rem;
  font-weight: 500;
  border-bottom: none;
}

.admin-table td {
  padding: 1rem;
  vertical-align: middle;
}

.admin-table tbody tr {
  transition: all 0.3s ease;
}

.admin-table tbody tr:hover {
  background-color: rgba(62, 146, 204, 0.05);
}

.download-link {
  color: var(--complimentary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.download-link:hover {
  color: var(--complimentary-dark);
  text-decoration: underline;
}

/* Responsive adjustments for admin dashboard */
@media (max-width: 991px) {
  .admin-table {
    font-size: 0.9rem;
  }

  .admin-controls {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .admin-header {
    text-align: center;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
  }

  .admin-table td {
    display: block;
    text-align: right;
    padding: 0.5rem 1rem;
    border: none;
  }

  .admin-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--secondary-colour);
  }
}

/* Properties Page Styles */
.nav-link {
  color: var(--complimentary);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--complimentary-dark);
}

/* Property Gallery Styles */
.modal-body img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modal-body img:hover {
  transform: scale(1.02);
}

.btn-gallery {
  width: 100%;
  margin-top: 0.5rem;
  background-color: var(--complimentary);
  border: none;
  transition: all 0.3s ease;
}

.btn-gallery:hover {
  background-color: var(--complimentary-dark);
  transform: translateY(-2px);
}

/* Admin Login Styles */
.admin-login-body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
  padding: 1rem;
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 400px;
}

.login-container h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.login-form-group {
  margin-bottom: 1rem;
}

.login-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e1e1;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.login-input:focus {
  outline: none;
  border-color: var(--complimentary);
}

.login-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--complimentary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-button:hover {
  background: var(--complimentary-dark);
}

.login-error {
  color: var(--bs-danger);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .login-container {
    padding: 1.5rem;
  }
}

/* Public Properties Styles */
.properties-grid {
  margin: 2rem auto;
  max-width: 900px;
  padding: 0 1rem;
}

.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.property-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.property-image:hover {
  transform: scale(1.05);
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem;
}

.gallery-modal.active {
  display: flex !important;
  opacity: 1;
}

/* Sustainability Education Section Styles */
.sustainability-education {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sustainability-education h4 {
  color: var(--complimentary);
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.sustainability-education h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--complimentary);
}

.component-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.component-item:hover {
  transform: translateY(-3px);
}

.component-item h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.component-item ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.un-goals .badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
  margin: 0.25rem;
  transition: transform 0.3s ease;
}

.un-goals .badge:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sustainability-education {
    padding: 1.5rem;
  }

  .component-item {
    padding: 1rem;
  }
}
