.services-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #28a745; /* slight green */
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #333;
}

.service-card p {
  font-size: 15px;
  padding: 0 15px;
  color: #555;
  line-height: 1.5;
}

.btn-learn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 25px;
  background: #28a745;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-learn:hover {
  background: #1e7e34;
  transform: translateY(-3px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.site-footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
  text-align: center; /* make all text center */
}

.footer-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center items horizontally */
  align-items: center; /* center items vertically */
  gap: 40px;
}

.footer-sitemap h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #28a745; /* green heading */
}

.footer-sitemap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sitemap ul li {
  margin-bottom: 10px;
}

.footer-sitemap ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-sitemap ul li a:hover {
  color: #28a745;
}

.footer-copy {
  font-size: 14px;
  margin-top: 30px;
  width: 100%;          /* full width */
  text-align: center;   /* center text */
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-sitemap {
    margin-bottom: 20px;
  }
}

html, body {
  overflow-x: hidden;
}

img, .container {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop view */
.mobile-logo, .mobile-header {
    display: none;  /* Hide mobile elements on desktop */
}

/* Hide mobile logo by default */
.mobile-logo {
  display: none !important;
}

/* Show/hide on screen size */
@media (max-width: 768px) {
  .desktop-logo {
    display: none !important;  /* force hide desktop logo */
  }
  .mobile-logo {
    display: block !important; /* force show mobile logo */
  }
}




