
/* Template Name: extech Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Roboto",  sans-serif;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  }
  50% {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1a3d2e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5846f9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

  <style>


@media (min-width: 992px) {
  .hero-image {
    max-width: 60%;     /* Even smaller on large screens */
  }
}



    .recycle-ring i {
      animation: spin 3s linear infinite;
      display: inline-block;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

.hero-img {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.hero-img img {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}








  </style>


.hero .hero-img {
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  height: auto;
}

.hero .hero-img:hover {
  transform: scale(1.015); /* smooth subtle zoom */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.img-fluid.animated {
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid.animated:hover {
  transform: scale(1.015); /* Optional hover effect */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}



















.light-background {
  --background-color: #f9f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #202020;
  --contrast-color: #ffffff;
}




.accent-background {
  --background-color: #1a3d2e;      /* dark green background */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #1a3d2e;
  --surface-color: #1a3d2e;         /* ? new emerald green surface */
  --contrast-color: #ffffff;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*-------------------------------------------------------------- 
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #ddebda;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  #header {
    margin-top: 0px; /* Adjust this value to move header down */
  }
}


.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0; /* Remove space above/below */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0s ease;
}

body {
  margin: 0;
  padding: 0;
}



.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  border-color: var(--contrast-color);
text: 0 0 6px var(--contrast-color);







}@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1a3d2e;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }


  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;

  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.01);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #1be610;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




















/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 100%), url("../img/footer-bg.jpg") center center no-repeat;  background-size: cover;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
:root {
  --accent-color: #14b82e;
  --contrast-color: #ffffff;
}


.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 100%), url("../img/page-title-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 77px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 0px;
  position: relative;
}


.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: rgba(32, 64, 37, 1); /* ? Your green */
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(32, 64, 37, 1); /* ? Replaces var(--accent-color) */
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section   main page 
--------------------------------------------------------------*/


/* Default (desktop) size */
.hero-image {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25); /* subtle bottom shadow */

}

/* On phones: make image smaller */
@media (max-width: 768px) {
  .hero-image {
    max-width: 65%;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}







.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 20px;
  transform: translateX(10px); /* Slight push to the right */
}

/* Bigger and pushed further right on large screens */
@media (min-width: 992px) {
  .hero-image {
    max-width: 620px;
    transform: translateX(40px); /* Push further right */
  }
}

/* Smaller on phones */
@media (max-width: 576px) {
  .hero-image {
    max-width: 300px;
    transform: none;
  }
}






.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), transparent 10%) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid var(--contrast-color);
}

.hero .btn-get-started:hover {
  color: var(--accent-color);
  background: var(--contrast-color);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px; /* ? Added top padding */
}
.about .content ul i.bi-check-circle {
  color: #14b82e !important;
  font-weight: bold;
}


.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}















/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 80px;
}

.services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  font-size: 14px;
}

.services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
}

.light-services-section {
  background-color: #ffffff; /* Light greenish background */
  padding-top: 60px;
  padding-bottom: 60px;
}

.extech-service-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.extech-service-points .point {
  flex: 1 1 220px;
  max-width: 220px;
  text-align: center;
}

.extech-service-points .point i {
  font-size: 28px;
  color: #1a3d2e;
  margin-bottom: 10px;
}

.extech-service-points .point p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: rgba(32, 64, 37, 1);
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 30px;
  transition: 0.3s ease;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



.extech-logo {
  height: 80px !important;
  width: auto !important;
  max-height: none !important;
}

.glossy-orange {
  background: linear-gradient(to bottom, #FFA500, #FF4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.glossy-green-btn {
  background: #14b82e; /* Vibrant green */
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  transition: 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.glossy-green-btn:hover {
  background: linear-gradient(to bottom, #14b82e, #14b82e); /* light gradient */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  color: #fff; /* Keep text white */
}

/* Default (before scroll) */
.logo .extech-logo {
  color: rgba(255, 255, 255, 1) !important;
  transition: color 0.3s ease;
}

/* On scroll */
body.scrolled .logo .extech-logo {
  color: #ffffff !important;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

body.scrolled .header .logo h1 {
  font-size: 28px; /* keep same size on scroll */
}


.footer .copyright {
  padding-top: 20px; /* You can increase this value if needed */
}

.header {
  padding: 14px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

body.scrolled .header {
  padding: 12px 0;
}

/* Align logo vertically with nav links */
.logo {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

@keyframes glowFadeIn {
  0% {
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
  100% {
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.85);
  }
}


.logo .sitename.extech-logo {
  color: rgb(255, 255, 255);   /* ? Green */
  font-size: 28px;
  font-weight: 800;            /* ? Bold */
  line-height: 1;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color 0.3s ease;
}


.logo .extech-logo {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  padding: 0;
  display: inline-block;
}



body.scrolled .recycle-ring {
  opacity: 1 !important;
  transform: none !important;
  display: flex !important;
align-items: center;

}

/* Default: left of EXTECH on desktop */
.recycle-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 20px;
  color: white;
  height: 100%;
}

/* Apply spin to the inner icon only */
.recycle-ring i {
  animation: spin 3s linear infinite;
  display: inline-block;
}

/* On phones: bring icon to left but stay inside screen */
@media (max-width: 576px) {
  .recycle-ring {
    position: relative;
    left: 0;
    top: auto;
    margin-right: 3px;
    font-size: 18px;
  }
}

  .logo .sitename.extech-logo {
    flex-direction: row;
    justify-content: start;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h3 {
  color: rgb(0, 55, 0);
}

h4 {
  color: rgb(0, 55, 0);
}

@media (max-width: 1199px) {
  .navmenu a,
  .navmenu a:focus {
    color: rgb(0, 55, 0) !important;  /* ? Force override with dark green */
  }
}
@media (max-width: 1199px) {
  .header .logo h1 {
    color: rgb(255, 255, 255) !important;  /* ? Extremely dark green */
  }
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

header .logo .recycle-ring i,
body.scrolled header .logo .recycle-ring i {
  animation: spin 3s linear infinite !important;
  color: #1be610 !important;
  display: inline-block !important;
  opacity: 1 !important;
  will-change: transform;
  transform-origin: center;
}

/*--------------------------------------------------------------
# hero
--------------------------------------------------------------*/


.hero .typewriter-text {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #a8e063;
}


.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
}

.hero p {
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 200;
  color: #d8ffd3;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 300 !important;
  }
}





.typewriter-text {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.static-text {
  white-space: nowrap;
}

.highlight-text {
  color: #f4a261;
  display: inline-block;
}

.blinking-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: #f4a261;
  margin-left: 2px;
  animation: blink 1s steps(2, start) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }

  .typewriter-text {
    font-size: 1.1rem !important;
    font-weight: 700 !important;  /* FORCE boldness */
    gap: 4px !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
  }

  .highlight-text {
    font-weight: 700 !important;
  }

  .blinking-cursor {
    height: 1.1em;
  }
}

@media screen and (max-width: 768px) {
  @supports (-webkit-touch-callout: none) {
    h1 {
      font-size: 1.6rem !important;
      font-weight: 700 !important;
      line-height: 1.3 !important;
    }
  }
}





/* below for how it works- How Selling Your Used IT Equipment Works (now what we do section too ) */




.how-it-works-section {
  background-color: #f9f9f9;
  padding: 40px 20px 80px 20px; /* top, right, bottom, left */
}

.how-it-works-section .section-title {
color: #1a3d2e !important;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 8px !important;  /* Reduce bottom space */
  padding: 0 !important;
}

.how-it-works-section .section-subtitle {
  margin-bottom: 20px !important; /* Reduce subtitle gap */
}

.step-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  transition: transform 0.3s;
}

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

.step-circle {
  background: #1a3d2e;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.step h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a3d2e;
}

.step p {
  font-size: 14px;
  color: #444;
}



/* Normal Step Style (green background, white text) */
.step {
  background-color: #1a3d2e;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

/* Step Circle Default Style (white digit, green circle) */
.step .step-circle {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1a3d2e;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* On Hover: white card with green text */
.step:hover {
  background-color: #1a3d2e;
  #color: #14b82e;
}

/* Step Circle on Hover: green circle, white digit */
.step:hover .step-circle {
  background-color: #1a3d2e;
  color: #ffffff;
  border-color: #1a3d2e;
}

/* Also update h5 and p colors */
.step h5,
.step p {
  color: #ffffff;
  transition: color 0.3s ease;
}

.step:hover h5,
.step:hover p {
  color: #ffffff;
}
@media (max-width: 768px) {
  .how-it-works-section .section-title {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }

  .how-it-works-section .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


/*--------------------------------------------------------------
#frequently asked question Section
--------------------------------------------------------------*/

/* FAQ Section */
.faq.section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 32px;
  color: #1a3d2e;
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  background: none;
  border: none;
  color: #1a3d2e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.faq-question i.fa-circle-question {
  margin-right: 12px;
  color: #14b82e;
  font-size: 1.2rem;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  padding: 0 24px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.toggle-icon {
  transition: transform 0.3s ease;
  color: #14b82e;
}

/* Rotate icon when open */
button[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}


.collapse.show {
  padding-bottom: 20px;
}

.faq-item {
  margin-bottom: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: none;
}


.faq-answer p {
  text-align: center;
  margin: 0 auto;
  padding: 20px 24px;
  max-width: 800px;
  font-size: 16px;
  color: #333;
}





/* Mobile adjustments */
@media (max-width: 600px) {
  .faq-question {
    font-size: 16px;
    padding: 16px 18px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 16px 18px;
  }
}




























.floating-app-icons {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .floating-app-icons {
    display: none;
  }
}









@keyframes floatAppIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.floating-app-icons img.app-icon {
  animation: floatAppIcon 3s ease-in-out infinite;
  will-change: transform;
}



@keyframes floatAppCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.floating-app-icons-pro {
  z-index: 10;
}

.app-card {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  padding: 6px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: floatAppCard 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.app-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.shadow-glass {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}























/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}