/* Brand color variables for global use */
:root {
  --brand-green: #2ee59d;
  --brand-teal: #1ec9c3;
  --brand-dark: #1a3c34;
  --brand-light: #e6fff6;
  --brand-gradient: linear-gradient(135deg, #2ee59d 0%, #1ec9c3 100%);
}

/* ================================
   General Styles
================================ */

/* Box Sizing for Consistency */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 5px;
}

/* Body Styles */
body {
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #BDFCC959;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: block;
  justify-content: center;
  align-items: center;
  background: #e6fff6 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #07323e;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.5;
  padding-top: 10px;
}

/* Links */
a {
  text-decoration: none !important;
  color: inherit;
  transition: color 0.3s;
}

a:hover,
a:focus {
  color: #f33f3f;
  text-decoration: underline;
}

/* Lists */
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border: solid #00FA9A 3px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: #7db6cc;
  color: #263238;
  font-weight: 700;
  border-color: #7db6cc;
}

.btn-primary:hover {
  background-color: #FDD835;
  color: #000;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  margin: 2px;
  margin-bottom: 15px;
}

.btn-secondary:hover {
  background-color: #228B22;
  border: solid #90EE90 3px;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #7db6cc;
  outline-offset: 2px;
}

.container {
    width: 100%;
    max-width: 1600px; /* Adjust this between 1100px to 1440px based on your preference */
    margin: 0 auto; /* Centers the container */
    padding: 0 16px; /* Adds some space on smaller screens */
}


/* ================================
   Hero Section
================================ */
.hero-section {
  position: relative;
  background: url("../images/hero-image.jpeg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 390px;
  border-radius: 0 !important;
}
.hero-section img {
  border-radius: 0 !important;
}

.ai-hero-section {
  position: relative;
  background: url("../images/ai-hero-image.jpeg") center center no-repeat;
  background-size: cover;     /* Keeps the image nicely filled and responsive */
  overflow: hidden;           /* Ensures corners are clipped */
  /* If you want a minimum height so your text never overflows the image: */
  min-height: 450px;          
}

/* Keep the padding from .page-heading so text sits nicely as before */
.page-heading {
  padding: 120px 0; /* Already in your existing CSS, but confirm or tweak as needed */
  border-radius: 0px;
}

/* Make the text lighter on a darker background image */
.hero-section .text-content,
.hero-section .text-content h1,
.hero-section .text-content p {
  color: #b9ffaa;
  padding: 15px;
  font-weight: 800;
}

.hero-container {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

/* ================================
   Section Styles
================================ */
.section-heading{
  padding-bottom: 25px;
  padding-top: 15px;
  text-align: center;
}

.left-content{
  padding-top: 15px;
}

.selling-points{
  padding-bottom: 35px;
}

.ai-features{
  margin-bottom: 45px;
}

.contact-info{
  margin-bottom: 20px;
  margin-top: 20px;
}

/* ================================
   Service Box Styles
================================ */

  .service-box{
  padding-bottom: 30px;
  text-align: center;
  }

/* ================================
   Header Styles
================================ */
.page-heading{
  padding: 120px 0;
}

header {
  z-index: 99999;
  border-radius: 0px;
  width: 100%;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  position: fixed;
  background: linear-gradient(to bottom, rgba(30, 201, 195, 0.93), rgba(46, 229, 157, 0.93) 90%, rgb(144, 238, 144));
}

#navbarResponsive ul li{
  font-size: 10px;
}

.navbar-brand h2 {
  color: #FFF;
  font-size: 27px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.navbar-brand h2 .brand-teal {
  color: #15908e;
  font-weight: 900;
  text-shadow: 1px 1px 8px #fff, 0 2px 8px rgba(30,201,195,0.10);
}

.navbar-brand h2 em {
  font-style: normal;
  color: #fff;
}

.navbar-toggler {
  border-color: #232323;
  color: #FFF;
  height: 36px;
  border-radius: 0;
  position: absolute;
  right: 30px;
  top: 10px;
}

.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon::after {
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-family: 'FontAwesome';
}

.navbar-nav {
  transition: all 0.3s ease-in-out;
  font-weight: 800;
}

.nav-link {
  text-transform: capitalize;
  font-size: 17px;
  letter-spacing: 0.6px;
  color: #000;
  padding: 10px;
  display: inline-block;
  border-bottom: 4px solid transparent;
  transition: border-color 0.3s ease;
  padding-bottom: 10px;
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
  color: #000;
  padding-bottom: 10px;
  border-bottom: 3px solid #aaf9ff;
}

/* Responsive Header Styles */
@media (max-width: 992px) {
  .navbar-brand h2 {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    left: 30px;
    top: 32px;
    width: auto;
    padding-left: 10px;
  }


  .navbar-nav {
    flex-direction: column;
  }

  .nav-link {
    padding: 15px 0;
    color: #FFF8E1;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .nav-link:hover,
  .nav-link.active,
  .nav-link.show {
    color: #FFF8E1;
  }

  .navbar-toggler {
    right: 20px; /* Adjusted position */
  }
}

@media (max-width: 576px) {
  .navbar-brand h2 {
    font-size: 17px;
    padding: 5px 0px;
  }
}

@media (max-width: 768px) {
  .nav-item{
    font-size: 15px;
  }
}

/* ================================
   Banner Styles
================================ */

.banner {
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.banner-item-01,
.banner-item-02,
.banner-item-03 {
  padding: 300px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner-item-01 {
  background-image: url('../images/slide_01.jpg');
}

.banner-item-02 {
  background-image: url('../images/slide_02.jpg');
}

.banner-item-03 {
  background-image: url('../images/slide_03.jpg');
}

.banner .banner-item {
  max-height: 600px;
}

.banner .text-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

.banner .text-content h4 {
  color: #f33f3f;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner .text-content h2 {
  color: #000;
  font-size: 62px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

@media (max-width: 1200px) {
  .banner .text-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .banner .text-content h2 {
    font-size: 28px;
  }
}

/* ================================
   Latest Products
================================ */

.latest-products {
  margin-top: 100px;
}

.latest-products .section-heading a {
  float: right;
  margin-top: -35px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

/* ================================
   Product Item Styles
================================ */

.product-item {
  border: 1px solid #eee;
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
  background: #FFF8E1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
  overflow: hidden;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  padding: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-item .down-content {
  padding: 15px;
  position: relative;
}

.product-item .down-content h4 {
  height: 70px;
  font-size: 19px;
  color: #7db6cc;
  margin-bottom: 20px;
  max-width: 140px;
}

.product-item .down-content h6 {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 18px;
  color: #121212;
}

.product-item .down-content p {
  margin-bottom: 20px;
}

.product-item .down-content button.btn-primary {
  width: 100%;
  margin-bottom: 20px;
  background-color: #7db6cc;
  border-color: #7db6cc;
  color: #263238;
  transition: background-color 0.3s, border-color 0.3s;
}

.product-item .down-content button.btn-primary:hover {
  background-color: #7dcc89;
  border-color: #FDD835;
  color: #000;
}

/* ================================
   Footer Styles
================================ */

footer {
  padding: 40px 0;
}

footer .container {
  background-color: #98FF98;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-style: solid;
}

footer h5.text-uppercase {
  margin-bottom: 20px;
  font-weight: bold;
}

footer ul.list-unstyled {
  padding: 0;
}

footer ul.list-unstyled li {
  margin-bottom: 10px;
}

footer ul.list-unstyled li a {
  color: #4a4a4a;
  transition: color 0.3s;
}

footer ul.list-unstyled li a:hover {
  color: #f33f3f;
}

footer .text-center.p-3.bg-dark.text-white {
  background-color: #263238 !important; /* Darker footer bottom */
  padding: 15px 0;
  border-radius: 0px;
}

footer .text-center.p-3.bg-dark.text-white a {
  color: #f33f3f;
  text-decoration: none;
}

footer .text-center.p-3.bg-dark.text-white a:hover {
  text-decoration: underline;
}

/* Structured Data for Footer */
footer script[type="application/ld+json"] {
  display: none;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: 10px;
    max-width: max-content;
  }

  footer .col-lg-6,
  footer .col-lg-3 {
    margin-bottom: 20px;
  }

  footer .col-lg-3 ul.list-unstyled li a {
    display: block;
    text-align: center;
  }
}

@media (max-width: 576px) {
  footer .inner-content {
    padding: 40px 0;
  }

  footer h5.text-uppercase {
    font-size: 18px;
  }

  footer ul.list-unstyled li a {
    font-size: 14px;
  }
}

/* ================================
   Cookie Consent Banner Styles
================================ */

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  z-index: 1000;
  display: none;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.cookie-consent p {
  margin: 0 0 10px;
}

.cookie-consent .btn {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

/* ================================
   Notification Styles
================================ */

.notification {
  display: none;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  z-index: 1000;
  border-radius: 5px;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ================================
   Preloader Styles
================================ */

#preloader {
  overflow: hidden;
  background: #7db6cc;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  animation-delay: 0.66666s;
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* ================================
   Additional Styles
================================ */

/* Team Members */
.team-members {
  margin-top: 100px;
}

.team-member {
  border: 1px solid #eee;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  padding: 30px 30px 0 30px;
  object-fit: cover;
}

.team-member .down-content {
  padding: 30px;
  text-align: center;
}

.team-member .thumb-container {
  position: relative;
}

.team-member .thumb-container .hover-effect {
  position: absolute;
  background-color: rgba(243, 63, 63, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.team-member .thumb-container .hover-effect .hover-content {
  position: absolute;
  display: inline-block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.team-member .thumb-container .hover-effect .hover-content ul.social-icons li a:hover {
  background-color: #fff;
  color: #f33f3f;
}

.team-member:hover .hover-effect {
  visibility: visible;
  opacity: 1;
}

.team-member .down-content h4 {
  font-size: 17px;
  color: #1a6692;
  margin-bottom: 8px;
}

.team-member .down-content span {
  display: block;
  font-size: 13px;
  color: #f33f3f;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Clients */
.happy-clients {
  margin-top: 100px;
  margin-bottom: 40px;
}

.happy-clients .client-item img {
  max-width: 100%;
  transition: all 0.3s;
  cursor: pointer;
}

.happy-clients .client-item img:hover {
  opacity: 0.8;
}

/* Find Us */
.find-us h4 {
  font-size: 17px;
  color: #1a6692;
  margin-bottom: 20px;
}

.find-us .left-content {
  margin-left: 30px;
}

/* Send Message */
.send-message {
  margin-top: 100px;
}

.contact-form {
  font-size: 14px;
  width: 100%;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7db6cc;
  box-shadow: none;
}

.contact-form button.filled-button {
  background-color: #FDD835;
  color: #000;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 300;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  outline: none;
  cursor: pointer;
}

.contact-form button.filled-button:hover {
  background-color: #121212;
  color: #fff;
}

/* Accordion */
.accordion {
  margin-left: 30px;
}

.accordion a {
  cursor: pointer;
  font-size: 17px;
  color: #1a6692 !important;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.accordion a:hover {
  color: #f33f3f !important;
}

.accordion a.active {
  color: #f33f3f !important;
}

.accordion li {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.accordion li:first-child {
  border-top: 1px solid #eee;
}

.accordion li .content {
  display: none;
  margin-top: 10px;
}

/* Cart Styles */
.cart-icon-container {
  position: relative;
  margin-left: auto;
}

#cart-count {
  background-color: #7db6cc;
  color: white;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 0.75rem;
  position: absolute;
  top: -10px;
  right: -10px;
  margin-right: 10px;
}

.background-header #cart-count {
  background-color: #7db6cc;
}

.shopping-cart-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cart-item-image {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  margin: 0;
  font-size: 1.2em;
}

.cart-item-quantity,
.cart-item-price {
  margin: 5px 0;
}

.btn-remove,
.btn-clear {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-remove:hover,
.btn-clear:hover {
  background-color: #cc0000;
}

.btn-checkout {
  background-color: #0E86D4;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-checkout:hover {
  background-color: #7db6cc;
}

.btn-clear,
.btn-checkout {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 30px;
}

.empty-cart p {
  text-align: center;
  font-size: 1.2em;
}

.item-name {
  padding-bottom: 20px;
  font-size: 2em;
}


/* ================================
   Dashboard Styles
================================ */

#dashboard-card {
  background-color: #d0f2ff;
  margin: 20px 10px 10px 10px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-section {
  margin-bottom: 30px;
  padding: 5px;
  border-radius: 15px;
  background-color: #eaf9ff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-title {
  color: #7db6cc;
  margin-bottom: 20px;
  padding-top: 30px;
}

#user-details h1.dashboard-title {
  color: #0E86D4;
}

#user-details .details p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 5px 0;
}

#user-details button {
  max-width: 200px;
  background-color: #0E86D4;
  border: none;
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

#user-details button:hover {
  background-color: #7db6cc;
}

#admin-section h2.dashboard-title,
#user-dashboard h3.dashboard-title,
#recent-purchases h3.dashboard-title,
#user-orders h3.dashboard-title {
  color: #000;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
}

.dashboard-table th,
.dashboard-table td {
  text-align: left;
  padding: 12px;
}

.dashboard-header {
  background-color: #0E86D4;
  color: white;
}

.dashboard-data {
  background-color: #7db6cc;
  max-width: 80px;
  border-bottom: 1px solid #ddd;
}

.dashboard-list {
  list-style: none;
  padding: 0;
}

.dashboard-list li {
  background: #7db6cc;
  border: 1px solid #e9ecef;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #30a418;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #83cc7d;
}

/* Table Responsive */
@media (max-width: 768px) {
  .dashboard-table thead {
    display: none;
  }

  .dashboard-table tr {
    display: block;
    margin-bottom: 15px;
  }

  .dashboard-table td {
    display: block;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .dashboard-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 50%;
    padding-right: 10px;
    font-weight: bold;
    text-align: left;
  }
}

/* ================================
   Additional Components
================================ */

/* Login and Register Containers */
.login-container,
.register-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 120px 20px;
}

/* General Cards */
.card-body{
padding: 0px;
}

.card {
  background-color: #F5FFFA;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 15px 5px 15px;
}

.login-card{
margin: 120px 15px 5px 15px;
}

/* Form Containers */
.form-container {
  padding: 20px 20% 20px 20%;
  margin: 20px;
}

/* Toggle Links */
.toggle-links {
  text-align: center;
  margin-top: 10px;
}

/* ================================
   Responsive Enhancements
================================ */

/* Enhanced Responsiveness */
@media (max-width: 1200px) {
  .section-heading h2 {
    font-size: 30px;
  }

  .page-heading .text-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .page-heading {
    padding: 120px 0;
  }
}

@media (max-width: 576px) {
  .page-heading {
    padding: 50px 0;
  }

  .page-heading .text-content h4 {
    font-size: 20px;
  }

  /* Adjust social icons */
  ul.social-icons li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Adjust buttons */
  a.filled-button,
  .contact-form button.filled-button {
    font-size: 16px;
    padding: 8px 16px;
  }

  /* Adjust product-item h4 */
  .product-item .down-content h4 {
    font-size: 16px;
  }

  /* Adjust footer text */
  footer .inner-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {

  .banner .text-content h2 {
    font-size: 28px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .contact-form button.filled-button {
    font-size: 16px;
    padding: 8px 16px;
  }

  .team-member .down-content h4 {
    font-size: 16px;
  }

  .team-member .down-content span {
    font-size: 12px;
  }

  .carousel-caption {
    font-size: 14px;
  }

  footer .inner-content {
    padding: 40px 0;
  }

  footer h5.text-uppercase {
    font-size: 18px;
  }

  footer ul.list-unstyled li a {
    font-size: 14px;
  }
}

/* ================================
   Additional Enhancements
================================ */

/* Ensure responsive images */
.img-fluid {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border: solid #00FA9A 3px !important;
  margin-bottom: 15px;
}

.service-img{
  border-radius: 50% !important;
}

/* Enhance form elements */
input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  border-color: #7db6cc;
}

/* Responsive Images */
@media (max-width: 768px) {
  .team-member img {
    padding: 20px;
  }

  .team-member .down-content {
    padding: 20px;
  }
}

/* Fix: Ensure contact icons are perfectly round */
.contact-icon {
  border-radius: 50% !important;
}

/* Home Hero Section */
.home-hero {
    background: url('../images/asheville-commons.png') center center/cover no-repeat;
    color: #fff;
    padding: 152px 0 70px 0;
    text-align: center;
    position: relative;
    border-radius: 0 !important;
}
.hero-content {
    display: inline-block;
    text-align: left;
    padding: 32px 40px 28px 40px;
    background: linear-gradient(135deg, rgba(30,201,195,0.32) 0%, rgba(30,201,195,0.18) 60%, rgba(30,201,195,0.10) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(46,229,157,0.13);
    margin: 0 auto;
    max-width: 700px;
}
.home-hero h1 {
    color: #f8fafd;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
    text-shadow: 2px 2px 12px rgba(30, 60, 60, 0.38), 0 2px 12px rgba(30,201,195,0.22);
}
.home-hero h1 strong,
.home-hero h1 em,
.home-hero h1 span {
    color: #fff;
}
.home-hero .section-subtitle {
    display: block;
    text-align: left;
    background: rgba(255,255,255,0.92);
    border-radius: 10px;
    border: 2px solid rgba(30,201,195,0.18);
    color: #1a3c34;
    font-style: italic;
    font-weight: 400;
    font-size: 1.15rem;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 10px 22px;
    box-shadow: none;
    width: fit-content;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 18px 10px 16px 10px;
    max-width: 98vw;
  }
  .home-hero h1 {
    font-size: 1.5rem;
    padding-right: 0;
  }
  .home-hero .section-subtitle {
    font-size: 1rem;
    padding: 7px 10px;
  }
}

/* About/Mission Section */
.about-section, .units-section, #contact-section {
  background: #e6fff6 !important;
}
.about-card, .main-card, .units-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 32px 30px 32px 30px;
    margin-bottom: 40px;
    border: none;
}
.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(46,229,157,0.10);
    margin-bottom: 25px;
    margin-top: 0;
    padding-top: 0;
}
.section-title {
    color: var(--brand-dark);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Enhanced section title and byline styles for creative separation */
.section-title {
  color: var(--brand-dark);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 48px;
  text-align: left;
  position: relative;
  letter-spacing: 1.2px;
  padding-top: 32px;
  transition: color 0.2s, letter-spacing 0.2s;
}

.section-title::after {
  content: '';
  display: block;
  margin: 16px 0 0 0;
  width: 120px;
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-teal) 100%);
  opacity: 0.92;
}
.section-subtitle {
  color: #15908e;
  font-size: 1.15rem;
  text-align: left;
  margin-bottom: 48px;
  margin-top: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1px;
  background: #f3fffa;
  display: block;
  width: 100%;
  padding: 14px 0 14px 36px;
  border: 1px solid #b2e9d6;
  border-radius: 2px;
  box-shadow: none;
  background-color: #f3fffa;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    padding: 10px 0 10px 12px;
    margin-bottom: 28px;
    margin-top: 10px;
  }
}

/* Available Units Section */
.units-section {
    background: var(--brand-light);
    padding: 60px 0 30px 0;
}
.units-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin-top: 0;
}
.unit-link-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  margin: 24px 12px 24px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Modern creative redesign for available units cards */
.unit-link-card {
  background: linear-gradient(135deg, #e6fff6 60%, #fff 100%) !important;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(46,229,157,0.13);
  padding: 38px 28px 32px 28px;
  min-width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2.5px solid #1ec9c3;
  margin-bottom: 10px;
  position: relative;
}
.unit-link-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px rgba(46,229,157,0.18);
  border-color: #2ee59d;
}
.unit-link-card h3 {
  color: var(--brand-dark) !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.unit-link-card h3 .unit-icon {
  font-size: 1.3rem;
  color: var(--brand-green);
  margin-right: 2px;
}
.unit-link-card p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.unit-link-btn {
  background: linear-gradient(135deg, #2ee59d 0%, #1ec9c3 100%) !important;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 16px 38px;
  font-size: 1.15rem;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(46,229,157,0.13);
  text-decoration: none;
  display: inline-block;
  margin-top: 18px;
  letter-spacing: 0.5px;
}
.unit-link-btn:hover {
  background: linear-gradient(135deg, #1ec9c3 0%, #2ee59d 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(46,229,157,0.18);
  transform: scale(1.04);
}

/* Responsive fix for units section */
@media (max-width: 992px) {
  .units-links {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .unit-link-card {
    min-width: unset;
    max-width: 100%;
    margin: 12px 0;
  }
}

/* Contact Hero Section */
.contact-hero {
    background: var(--brand-gradient);
    color: #fff;
    padding: 152px 0 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    margin-bottom: 48px;
}

.contact-info-card {
    background: var(--brand-light);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}
.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46,229,157,0.12);
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
}
.contact-details h4 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 18px;
}
.contact-details p {
    margin: 5px 0 0 0;
    color: #666;
}
.office-hours {
    background: #d6f7ec;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}
.office-hours h5 {
    color: var(--brand-dark);
    margin-bottom: 15px;
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    padding: 5px 0;
    border-bottom: 1px solid #b2e9d6;
}
.hours-list li:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        margin: 15px 0;
    }
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .contact-hero {
        padding-top: 128px;
    }
}

@media (max-width: 1100px) {
  .mission-row {
    flex-direction: column !important;
  }
  .mission-row .col-md-5, .mission-row .col-md-7 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .mission-row .col-md-5 {
    margin-bottom: 24px;
  }
}

/* About highlight for green emphasis */
.about-highlight {
  color: var(--brand-green) !important;
  font-weight: 600;
}

.footer-card {
  background: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.custom-footer .container {
  background: linear-gradient(135deg, #BDFCC9 60%, #e6fff6 100%) !important;
  border-radius: 18px;
}

.footer-info-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  text-align: center;
  width: 100%;
}
.footer-links-col, .footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  min-width: 220px;
}
.footer-links, .footer-contact-list {
  text-align: center;
}
.footer-links li,
.footer-contact-list li {
  display: block;
  text-align: center;
  justify-content: center;
}

html {
  scroll-behavior: smooth;
}

#available-units {
  scroll-margin-top: -70px;
}

#about-section {
  scroll-margin-top: 40px;
}

#contact-section {
  scroll-margin-top: -10px;
}

.footer-bottom-bar a {
  color: #2ee59d !important;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom-bar a:hover {
  color: #fff !important;
}

.contact-card-header {
  max-width: 100%;
  background: #f8fafd;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(46,229,157,0.06);
  margin: 0 auto 24px auto;
  padding: 12px 18px 10px 18px;
  text-align: center;
  width: 100%;
}
.col-lg-4 .contact-card-header {
  width: 100%;
  box-sizing: border-box;
}

.text-emphasis {
  color: #16a06a;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
  font-weight: 600;
}

.what-we-do-card {
  background: rgba(46,229,157,0.08); /* very subtle green tint */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,201,195,0.07);
  padding: 32px 28px 28px 28px;
  margin-bottom: 32px;
}
.what-we-do-title {
  margin-bottom: 22px;
}
.what-we-do-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.what-we-do-list li {
  margin-bottom: 22px;
}
.what-we-do-list .text-emphasis {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.what-we-do-list .service-desc {
  display: block;
  color: #444;
  margin-left: 28px;
  font-size: 1rem;
  font-weight: 400;
}

/* Local SEO Blurb Section */
.local-seo-blurb {
  background: var(--brand-light);
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

.local-seo-blurb p {
  color: var(--brand-dark);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}


