/* =Reset & Base Styles with CSS Variables */
:root {
  /* Existing Colors */
  --primary-color: #1d7363;
  --primary-dark: #1d7363;
  --secondary-color: #f9fafb; /* previously #E7FDE3 */
  --text-primary: #333;
  --text-secondary: rgba(13,13,13,.6);
  --heading-color: #ffffff;
  --white: #D9E1D7; 
  --whitetxt: #ffffff;
  --burgertxt: #ffffff;
  --burgertxt-hover: #f0f0f0;
  --menu-bg: var(--primary-dark);

  /* New Colors for EchoDesk Page */
  --echodesk-blue: #1d7363;       /* bg-blue-900 */
  --echodesk-light-blue: #1d7363; /* bg-blue-100 */
  --echodesk-dark-blue: #1d7363;  /* hover blue */
  --echodesk-gray-bg: #f9fafb;    /* bg-gray-50 */
  --echodesk-gray-text: #1f2937;  /* text-gray-800 */
  --echodesk-card-bg: #ffffff;
  --echodesk-card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Spacing */
  --container-padding: 20px;
  --section-gap: 2em;
  --card-gap: 1.5rem;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0;
  background: var(--secondary-color);
  font-family: 'Questrial', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =Header Styles */
#header-wrapper {
  background: var(--primary-color);
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

#header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

#header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem var(--container-padding);
  position: relative;
}

/* =Logo & Navigation */
#logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

#logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

#logo h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
  color: var(--heading-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
  line-height: 1.2;
}

.nowrap {
  white-space: nowrap;
}

#menu {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}

#menu ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 1rem;
}

#menu a {
  color: var(--burgertxt);
  text-decoration: none;
  padding: 0.5em;
  transition: all 0.2s;
  display: block;
  white-space: nowrap;
}

#menu a:hover {
  color: var(--burgertxt-hover);
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  color: var(--burgertxt);
}

/* =Mobile Menu Styles */
@media (max-width: 991px) {
  #header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
    position: relative;
    min-height: 80px;
    padding-right: 60px;
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border: none;
    color: var(--burgertxt);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  #menu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--menu-bg);
    flex-direction: column;
    padding: 1rem 0;
    margin: 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
  }

  #menu ul.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  #menu li {
    width: 100%;
    text-align: center;
  }

  #menu a {
    padding: 1rem;
	color: var(--burgertxt);/*changed by JM*/
  }

  #logo {
    flex-direction: row;
    gap: 1rem;
    width: auto;
    order: 1;
  }

  #logo img {
    max-width: 150px;
  }

  #logo h1 {
    flex-direction: column;
    text-align: left;
  }

  .nowrap {
    white-space: normal;
  }

  #menu {
    order: 3;
    width: 100%;
    flex: 1 0 100%;
  }
}

/* ===== Rest of Your Existing CSS ===== */
/* [All your other CSS remains exactly the same below this point] */
/* =Typography */
.title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8em);
}
.title {
text-align: center
}


#welcome h2 {
  color: var(--primary-color, var(--heading-color));
}

/* =Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* =Content Sections */
#welcome {
  width: 100%;
  max-width: 1000px;
  padding: 4em 2em;
  margin: 0 auto;
  text-align: center;
}

/* =Grid Layouts */
#three-column,
.portfolio-flex,
.echodesk-layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-gap);
  justify-content: center;
  margin: 3em 0;
}

/* =Services Grid */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
	text-align: center
}

.service {
  flex: 1 1 300px;
  padding: 1rem;
  background: var(--white);
  border-radius: 4px;
}
.center-text {
  text-align: center;
}

#three-column > div,
.column1, .column2, .column3, .column4,
.echodesk-text {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 1em;
  box-sizing: border-box;
}
.principles-list {
  text-align: center;
  margin: 2em auto;
}

.principles-list ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.principles-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.principles-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2em;
}

/* =Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2em;
  background: var(--primary-color);
  color: var(--white);
  transition: all 0.3s;
  border-radius: 4px;
  min-height: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button-container {
  text-align: center;
  width: 100%;
  margin: 2em 0;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =Footer */
#footer {
  background: var(--primary-color);
  width: 100%;
  padding: 2rem 0;
  margin-top: auto;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  color: var(--white);
}

.footer-content {
  margin-bottom: 1.5rem;
}

.footer-content p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-content a {
  color: var(--whitetxt);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-content a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .footer-content p {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Font Awesome icons */
.fa {
  width: 1.25rem;
  text-align: center;
}

/* =Utility Classes */
.center-button {
  text-align: center;
  margin: 2em 0;
}

.image-full {
  width: 100%;
  height: auto;
}

/* =Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== 2x2 Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: var(--section-gap);
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
}

.service-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-3px);
}

.service-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
}

.hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* [Continue with all other existing styles...] */

/* ===== Our Services Page Styles ===== */
.services-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
}

.service-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.service-intro h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-image {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  overflow: hidden;        /* Contain the image */
  margin: 0 auto;          /* Center the container */
  max-width: 800px;        /* Optional: constrain max width */
}

.feature-image img {
  width: auto;
  max-width: 100%;
  max-height: 400px;       /* Optional: constrain height */
  object-fit: contain;     /* Maintain aspect ratio */
  display: block;          /* Remove inline spacing */
}

.feature-grid {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-box ul {
  padding-left: 1.5rem;
  margin: 0;
}

.feature-box li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .service-features {
    flex-direction: column;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== About Page Specific Styles ===== */
.about-section {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.about-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

/* Fix for feature grid on about page */
.services-container .feature-grid {
  margin-top: 0; /* Remove extra top margin */
}

/* Ensure proper footer spacing */
#footer {
  margin-top: 3rem;
}

/* ===== Contact Form Styles ===== */
.form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

.contact-form {
  display: flex;
	max-width: 800px; /* Wider form */
	margin: 0 auto;
  flex-direction: column;
  gap: 1.2rem; /* Slightly increased gap for better separation */
  background: transparent; /* Remove white background */
  padding: 0; /* Remove padding */
  border-radius: 0;
  box-shadow: none; /* Remove shadow */
}

.form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem; /* Tighter spacing */
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem; /* Smaller font size */
}

.contact-form input,
.contact-form select{
 /* width: 100%;*/
  min-width: 100%; /* Full width fields */
  padding: 0.7rem;
  border: 1px solid #ccc; /* Simpler border */
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--white); /* Solid white background */
	box-sizing: border-box;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
	padding-right: 30px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.form-submit {
  margin-top: 0.5rem;
}

.contact-form .submit-button {
  width: auto; /* Not full-width */
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem; /* Wider horizontal padding */
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start; /* Align left */
}

.contact-form .submit-button:hover {
  background-color: var(--primary-dark);
}

/* Remove asterisks from labels */
.contact-form label:after {
  display: none !important;
}

/* Add "*" to required field placeholders instead */
.contact-form input::placeholder:required:after,
.contact-form textarea::placeholder:required:after {
  content: " *";
  color: #d32f2f;
}
/* ===== Responsive Menu System ===== */
/* Mobile-First Defaults */
.mobile-menu-btn {
  display: none; /* Hidden by default */
  color: var(--burgertxt); /* Using root variable */
}

#main-menu {
  display: flex; /* Visible by default (desktop) */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Styles (<= 991px) */
@media (max-width: 991px) {
  /* Header adjustments */
  #header {
    position: relative;
    min-height: 80px;
    padding-right: 60px; /* Space for burger button */
  }

  /* Burger button styling */
  .mobile-menu-btn {
    display: flex !important; /* Force show on mobile */
    align-items: center;
    justify-content: center;
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border: none;
    color: var(--burgertxt); /* Changed to use root variable */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  /* Mobile menu list */
  #main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  #main-menu.show {
    display: flex;
  }

  /* Menu items */
  #main-menu li {
    margin: 0;
    padding: 0;
  }

  #main-menu li a {
    padding: 12px 20px;
    color: var(--burgertxt); /* Match burger button text */
  }

  #main-menu li a:hover {
    color: var(--burgertxt-hover); /* Using hover variable */
  }
}

/* Desktop Styles (>= 992px) */
@media (min-width: 992px) {
  /* Completely hide burger button */
  .mobile-menu-btn {
    display: none !important;
    visibility: hidden;
  }

  /* Restore original desktop menu */
  #main-menu {
    display: flex;
    position: static;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: normal; /* Remove if spacing looks wrong */
    width: auto;
    padding: 0;
  }

  /* Reset header styles */
  #header {
    position: static;
    min-height: auto;
    padding-right: 0;
  }

  /* Original menu item styling */
  #main-menu li {
    margin: 0 15px; /* Adjust to match original spacing */
  }

  #main-menu li a {
    padding: 8px 0;
    color: var(--burgertxt); /* Or use var(--burgertxt) if you want consistency */
  }

  /* Remove mobile-specific styles */
  #header-wrapper {
    position: static;
    z-index: auto;
  }
}

/* ===== Menu Item Styling (Preserve Original) ===== */
#main-menu li a {
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
}

#main-menu li a:hover {
  color: var(--accent-color);
}

/* ===== EchoDesk Shared Service Page Styles ===== */
body.echodesk-page {
  overflow-x: hidden; /* Prevents horizontal scrolling */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.echodesk-page {
  background: var(--echodesk-gray-bg);
  color: var(--echodesk-gray-text);
}

.echodesk-hero {
  background: var(--echodesk-blue);
  color: var(--whitetxt);
  padding: 4rem var(--container-padding);
  text-align: center;
}

.echodesk-tiers, .echodesk-features, .echodesk-cta {
  padding: 3rem var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.echodesk-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 1.5rem;
}

.echodesk-tier-card {
    background: var(--echodesk-card-bg);
    box-shadow: var(--echodesk-card-shadow);
    padding: 1.5rem;
    border-radius: 0.375rem;
    transition: transform 0.2s ease;
}


.echodesk-button {
  display: inline-block;
  background: var(--echodesk-blue);
  color: var(--whitetxt);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
}

.echodesk-button:hover {
  background: var(--echodesk-dark-blue);
}
.echodesk-tier-card:hover {
    transform: translateY(-5px);
}
.echodesk-tiers h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.echodesk-tier-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--echodesk-blue);
    border-bottom: 2px solid var(--echodesk-light-blue);
    padding-bottom: 0.5rem;
}

.echodesk-tier-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.echodesk-tier-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.echodesk-tier-card li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .echodesk-tier-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .echodesk-tier-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Features & Benefits Section */
.echodesk-features {
    background: var(--echodesk-card-bg);
    padding: 3rem var(--container-padding);
    text-align: center; /* Center the heading */
    max-width: 1200px;
    margin: 0 auto;
}

.echodesk-features h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--echodesk-blue);
	text-align: left; /* Center the heading */
}

.echodesk-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Reset text alignment for list items */
}

.echodesk-features ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.echodesk-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.echodesk-features li:before {
    content: "•";
    color: var(--echodesk-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

/* Features Container */
.echodesk-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* Makes both columns equal height */
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
  gap: 3rem;
}

/* Image Container - Now matches features height */
.feature-image {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  display: flex;
  align-items: center; /* Vertically centers image */
}

.feature-image img {
  width: 100%; /* Keeps it responsive */
  max-height: 600px; /* Adds height constraint if needed */
  object-fit: contain; /* Preserves aspect ratio */
}

/* Features Section - Height matched to image */
.echodesk-features {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background: var(--echodesk-card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--echodesk-card-shadow);
}

.echodesk-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 1rem auto 0;
    text-align: left;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .echodesk-features-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .feature-image,
  .echodesk-features {
    max-width: 100%;
  }
    
    .echodesk-features {
        flex: 1;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .echodesk-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .echodesk-features-container {
        gap: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .echodesk-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Optional refinements (can be skipped if you prefer minimal changes) */
.echodesk-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.echodesk-hero p {
  font-size: 1.25rem;
}

.echodesk-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--card-gap);
}

@media (max-width: 768px) {
  .echodesk-hero {
    padding: 3rem var(--container-padding);
  }
  .echodesk-hero h1 {
    font-size: 1.75rem;
  }
}

/* Contact CTA Section */
.echodesk-cta {
    background: var(--echodesk-gray-bg);
    padding: 4rem var(--container-padding);
    text-align: center; /* Centers all content */
    max-width: 800px;
    margin: 0 auto;
}

.echodesk-cta h2 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--echodesk-blue);
}

.echodesk-cta p {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.echodesk-button {
    display: inline-block;
    background: var(--echodesk-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.echodesk-button:hover {
    background: var(--echodesk-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Footer Styles */
.echodesk-footer {
    background: var(--white);
    text-align: center;  /* Centers the text horizontally */
    padding: 1.5rem 0;
    font-size: 0.75em;   /* 25% smaller than parent element */
    line-height: 1.5;    /* Better readability */
    color: var(--echodesk-light-blue); /* Optional: matches your text color scheme */
	margin-top: auto; /* Pushes footer to bottom */
    order: 1; /* Ensures footer stays at bottom */
	width: 100%; /* Full page width */
}

/* Logo Carousel */
.logo-carousel {
  background: var(--white);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.carousel-slide {
  display: flex;
  gap: 3rem;
  padding: 0 2rem;
}

.logo-carousel img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-carousel img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.logo-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-slide {
    gap: 1.5rem;
  }
  
  .logo-carousel img {
    height: 40px;
  }
}

/* Logo Carousel - Fixed Version */
.logo-carousel {
  background: var(--white);
  padding: 3rem 1rem;
  overflow: hidden;
  position: relative;
}

.logo-carousel h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center; /* Centers all content */
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.carousel-slide {
  display: flex;
  padding: 0 2rem;
  align-items: center;
  gap: 3rem;
}

.logo-carousel img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  /* Debug styling */
  background: rgba(255,0,0,0.1);
  border: 1px dashed #ccc;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Features Section */
* ===== Service Features Section ===== */
.service-featuresED {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
  box-sizing: border-box;
}

.service-featuresED h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  font-size: 1.8rem;
  width: 100%;
}

.feature-gridED {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

.feature-boxED {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
  margin: 0 auto; /* Centers boxes */
  box-sizing: border-box;
}
/* ===== Mobile Responsive Fixes ===== */
@media (max-width: 768px) {
  /* Fix for all sections being right-aligned */
  .echodesk-tiers,
  .echodesk-features-container,
  .logo-carousel,
  .service-featuresED,
  .echodesk-cta {
    width: 100% !important;
    padding: 2rem var(--container-padding) !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
  
  /* Stack feature boxes in single column */
  .feature-gridED {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Fix image container */
  .feature-image {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  /* Center all headings */
  h1, h2, h3, h4 {
    text-align: center !important;
  }
}

/* ===== Desktop Specific Fixes ===== */
@media (min-width: 769px) {
  /* Ensure 2 feature boxes per row */
  .feature-gridED {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Center the grid */
  .feature-gridED {
    justify-items: center;
  }
}
.checklist-fa {
  list-style: none;
  padding: 0;
  margin: 2em auto;
  text-align: center;
  font-size: 1.2em; /* added by jm*/
	
}

.checklist-fa li {
  margin-bottom: 0.75em;
  font-size: 1.1em;
  display: flex;
  align-items: left;
	 justify-content: center;
 
  gap: 0.5em;
   padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.checklist-fa i {
  color: var(--primary-color);
  font-size: 1.2em;
}

.public-sector-checklist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.public-sector-checklist h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
}

.public-sector-checklist ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.public-sector-checklist li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.numbered-checklist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.numbered-checklist ol {
  counter-reset: section;
  padding-left: 1.5rem;
}

.numbered-checklist > ol > li {
  margin-bottom: 1.5rem;
}

.numbered-checklist > ol > li > ol {
  list-style-type: decimal;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.numbered-checklist li strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}


/* Temporary debug borders */
/* {
  outline: 1px solid rgba(255,0,0,0.2);
} */