/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #151E20;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #E3F6E6;
  background: linear-gradient(135deg, #151E20 0%, #22573A 100%);
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  text-decoration: none;
  color: #88B04B;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
}
ul, ol {
  margin-left: 24px;
}


/* BRAND COLOR SCHEME (tech_futuristic with neon accents) */
:root {
  --primary: #22573A;
  --secondary: #88B04B;
  --accent: #FFFFFF;
  --neon: #07FFD3;
  --surface: #181D22;
  --surface-alt: #222D26;
  --border: #374B3F;
}


/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px var(--neon), 0 0 2px #151E20;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  border-left: 4px solid var(--neon);
  padding-left: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--secondary);
}
h4 {
  font-size: 1.1rem;
}
p, li {
  color: #E3F6E6;
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  max-width: 700px;
}

strong, b {
  color: var(--neon);
}
small {
  font-size: 0.9em;
  color: #A4E2B7;
}


/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section Spacing */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34, 87, 58, 0.12);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(8, 30, 16, 0.09);
  position: relative;
}


/* Content Wrappers & Flex Layout Patterns */
.content-wrapper, .feature_grid, .service_list, .blog_list, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature_grid > div, .service_list > div, .blog_list > div, .feature_grid > ul, .feature_grid > .text-section {
  background: var(--surface);
  border-radius: 15px;
  padding: 32px 22px 24px 22px;
  min-width: 240px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 32px rgba(7,255,211, 0.06), 0 1px 3px #191F1C;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.2s;
}
.service_list > div:hover, .feature_grid > div:hover {
  box-shadow: 0 0 12px 2px var(--neon), 0 2px 16px #222C;
  transform: translateY(-4px) scale(1.025);
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface-alt);
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(8,255,211,0.04), 0 1px 4px #161B19;
  border: 1px solid var(--border);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 20px 22px;
  min-width: 220px;
  background: #FAFAFA;
  color: #222;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(130,255,191,0.11), 0 2px 2px #E1F6E6;
  border: 1.5px solid #dedede;
  position: relative;
}
.testimonial-card p {
  color: #111;
  font-size: 1.04rem;
}
.testimonial-card span {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}



/* BUTTONS & CTA */
.cta-btn, button, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon);
  color: #151E20;
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  margin: 8px 0 8px 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 10px 0 var(--neon), 0 2px 8px #182C;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, button:hover, button:focus {
  background: #18B16B;
  color: #fff;
  box-shadow: 0 0 32px 4px var(--neon), 0 3px 9px #161A;
  transform: translateY(-1px) scale(1.035);
}
button[disabled], .cta-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
nav a {
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #D9FECB;
  margin: 0 22px 0 0;
  font-size: 1.08em;
  transition: color 0.2s;
}
nav a:last-child {
  margin-right: 0;
}
nav a:hover, nav a:focus {
  color: var(--neon);
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid rgba(136,176,75,0.19);
  width: 100%;
  display: block;
  text-align: left;
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #13A680;
  color: var(--neon);
}


/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: rgba(21,30,32,0.90);
  border-bottom: 2.5px solid var(--primary);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  box-shadow: 0 2px 14px 0 rgba(34,87,58,0.08);
  transition: background 0.25s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  gap: 18px;
}
header nav {
  display: flex;
  align-items: center;
}
header a.cta-btn {
  margin-left: auto;
  margin-right: 30px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--neon);
  border: none;
  font-size: 2.2rem;
  margin-left: 8px;
  padding: 8px 18px;
  transition: background 0.25s, color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--neon);
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #181D22 71%, #164d36 100%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.42,.06,.66,1.12), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: var(--neon);
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 22px 28px 16px 0;
  cursor: pointer;
  padding: 12px 22px;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}


/* FOOTER */
footer {
  width: 100%;
  background: #181D22;
  border-top: 2px solid var(--primary);
  padding: 40px 0 28px 0;
  color: #BBDBC3;
  box-shadow: 0 -2px 14px 0 rgba(44,80,56,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 0 0;
}
footer .footer-info {
  font-size: 1.05rem;
  margin: 7px 0;
  opacity: 0.98;
}
footer .footer-logo img {
  height: 44px;
}
footer .footer-copy {
  font-size: 0.96rem;
  color: #889FAA;
  opacity: 0.92;
  margin-top: 8px;
}


/* BLOG CARDS */
.blog_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: var(--surface);
  border-radius: 11px;
  padding: 26px 18px 22px 18px;
  flex: 1 1 210px;
  min-width: 180px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px 0 rgba(100,255,187,0.08), 0 1px 2px #223;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.blog-post:hover {
  box-shadow: 0 0 26px 4px #07FFD3, 0 2px 8px #161A;
  transform: translateY(-2px) scale(1.02);
}
.read-more {
  color: var(--neon);
  font-weight: 700;
  margin-top: auto;
  font-size: 1.04rem;
  transition: color 0.15s;
}
.read-more:hover, .read-more:focus {
  color: #06CAFF;
}


/* UL/LIST STYLE CUSTOMIZATION */
ul {
  list-style: disc outside;
  padding-left: 24px;
  margin-bottom: 15px;
}
ol {
  list-style: decimal outside;
  padding-left: 24px;
  margin-bottom: 15px;
}

/* FORMS (if any) */
input, textarea, select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 1rem;
  background: #171E17;
  color: #D2FDDC;
  box-shadow: 0 1px 6px #12471309;
  width: 100%;
  margin-bottom: 18px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--neon);
  outline: none;
}
label {
  font-family: 'Montserrat', 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
  color: var(--neon);
}


/* HERO / LANDING HEADERS */
.text-section h1, .text-section h2 {
  color: #fff;
  text-shadow: 0 0 18px #07FFD3, 0 1px 1.5px #2227;
}
.text-section p {
  color: #D2FDDC;
}


/* ICONS in feature/service grids */
.feature_grid img, .service_list img, .text-section img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px #07FFD388);
}


/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1337;
  background: #1A3022;
  color: #fff;
  padding: 28px 14px 22px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 -4px 22px 0 #38E1B299, 0 -2px 7px #191C;
  gap: 14px;
  border-top: 3px solid var(--neon);
  animation: fadeInBanner 0.48s cubic-bezier(.21,.9,.53,1.24);
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  background: var(--neon);
  color: #0A1910;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  padding: 11px 26px;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 0 6px 0 var(--neon);
  transition: background 0.16s, color 0.15s, transform 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #13A680;
  color: #fff;
  transform: scale(1.04);
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 430px;
  min-width: 280px;
  background: #121C1A;
  color: #fff;
  z-index: 1500;
  border-radius: 22px;
  box-shadow: 0 10px 52px 0 #2BF9E488, 0 2px 12px #132;
  padding: 38px 26px 28px 28px;
  transform: translate(-50%, -50%) scale(1);
  animation: slideInModal 0.38s cubic-bezier(.31,.91,.54,1.19);
}
@keyframes slideInModal {
  0% { opacity: 0; transform: translate(-50%,20%) scale(.91); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal .modal-categories {
  margin: 18px 0 8px 0;
}
.cookie-modal .modal-categories label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.08rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--neon);
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 90px;
}
.cookie-modal .cookie-required {
  opacity: 0.69;
  font-size: 0.97em;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--neon);
  font-size: 2rem;
  cursor: pointer;
  padding: 6px 12px 4px 10px;
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 8px;
  }
}


/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 920px) {
  section, .section { padding: 28px 6px; }
  .service_list > div, .feature_grid > div {
    min-width: 165px;
    padding: 22px 8px 18px 8px;
  }
  .blog-post { min-width: 120px; }
}
@media (max-width: 900px) {
  .content-wrapper, .feature_grid, .service_list, .blog_list, .testimonials {
    gap: 18px;
  }
  .container { padding: 0 7px; }
  header .container { gap: 6px; padding: 12px 7px; }
  nav a { font-size: 1rem; }
}
@media (max-width: 768px) {
  .content-wrapper, .feature_grid, .service_list, .blog_list, .testimonials, .footer nav {
    flex-direction: column;
    gap: 18px;
  }
  .feature_grid > div, .service_list > div, .blog-post, .testimonial-card {
    min-width: 90px;
    width: 100%;
    max-width: 100vw;
  }
  .card-container, .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 17px; }
  section, .section { padding: 21px 2px; margin-bottom: 32px; }
  h1 { font-size: 1.67rem; }
  h2 { font-size: 1.21rem; padding-left: 7px; }
  h3 { font-size: 1.07rem; }
  footer { padding: 22px 0 13px 0; }
  footer .container { gap: 6px; }
}
@media (max-width: 600px) {
  header nav, header .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }
  .container { padding: 0 2vw; }
  h1 { font-size: 1.14rem; }
  .feature_grid img, .service_list img, .text-section img { width: 32px; height: 32px; }
}


/* ANIMATIONS (micro-interactions) */
.cta-btn, button, .blog-post, .feature_grid > div, .service_list > div {
  transition: box-shadow 0.20s, background 0.18s, color 0.14s, transform 0.14s;
}
.cta-btn:active, button:active {
  transform: scale(.97);
}


/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 10px; background: #102017; }
::-webkit-scrollbar-thumb { background: #264B25; border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #407E3E; }


/* Z-INDEX for overlays */
.mobile-menu { z-index: 1200; }
.cookie-modal { z-index: 1500; }
.cookie-banner { z-index: 1337; }

/* Prevent overlaps */
.card, .feature_grid > div, .service_list > div, .blog-post, .testimonial-card {
  margin-bottom: 20px;
}

/* Hide scroll on overlay */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* UTILITIES */
.neon-glow {
  text-shadow: 0 0 16px #07FFD3, 0 1px 2px #1735;
  color: var(--neon) !important;
}

/******************************
* END OF CSS *
******************************/