/**
* Custom Enhanced CSS for eNno Template
* Author: Optimized by ChatGPT
*/

/*--------------------------------------------------------------
# Fonts & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Ubuntu", sans-serif;

  /* Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #2b3a67;
  --accent-color: #10bc69;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Navigation */
  --nav-color: #5f687b;
  --nav-hover-color: #10bc69;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #5f687b;
  --nav-dropdown-hover-color: #10bc69;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  padding: 12px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.header .logo img { height: 50px; margin-right: 10px; }
.header .logo h1 { font-size: 28px; margin: 0; }

.scrolled .header {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Navigation (Left Aligned)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
    justify-content: flex-start; /* move menu left */
  }
  .navmenu ul {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
  }
  .navmenu li { position: relative; }
  .navmenu a {
    display: flex;
    align-items: center;
    font-family: var(--nav-font);
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-color);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
    background: rgba(16,188,105,0.1);
  }
  .navmenu .dropdown ul {
    position: absolute;
    top: 110%;
    left: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    border-radius: 8px;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1; visibility: visible; top: 100%;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    background: rgba(16,188,105,0.1);
  }
}

/*--------------------------------------------------------------
# Anchor Link Offset
--------------------------------------------------------------*/
/* Prevents content from being hidden under the sticky header when jumping to an anchor link. */
section:target, div:target {
  scroll-margin-top: 100px; /* Adjust this value to match your header's height */
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  min-height: 70vh;
  padding: 100px 20px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f8f9fb, #ffffff);
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}
.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(16,188,105,0.25);
  transition: all 0.3s ease;
}
.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  width: 60px; height: 3px;
  background: var(--accent-color);
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  border-radius: 2px;
}
.section-title p { color: #777; }

/*--------------------------------------------------------------
# Cards / Services
--------------------------------------------------------------*/
.services .service-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 50px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}
.services .icon {
  width: 64px; height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--contrast-color);
  font-size: 28px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f9f9f9;
  color: #555;
  font-size: 14px;
  padding-top: 50px;
}
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer .social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #eee;
  display: flex; align-items: center; justify-content: center;
  margin-right: 8px;
  transition: all 0.3s;
}
.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.footer .copyright {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #eaeaea;
  margin-top: 20