/*
Theme Name: Powerrep
Theme URI: https://dreamcowebsites.com/
Author: Dreamcowebsites
Author URI: https://dreamcowebsites.com/
Description: Do justice, love mercy, and walk humbly with your God
Requires at least: 5.9
Tested up to: 6.2
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: powerrep

*/
/* Fonts */
:root {
  --default-font: "Rubik", sans-serif;
  --heading-font: "Rubik", sans-serif;
  --nav-font: "Rubik", sans-serif;
}

/* Global Colors */
:root {
  --accent-color: #39B547; /* Accent color */
  --background-color: #ffffff; /* Background color */
  --contrast-color: #ffffff; /* Contrast color for text on accent/heading backgrounds */
  --default-color: #000; /* Default text color */
  --heading-color: #000; /* Heading color */
}

/* Nav Menu Colors */
:root {
  --nav-color: #000; /* Default nav link color */
  --nav-dropdown-background-color: #ffffff; /* Dropdown background */
  --nav-dropdown-color: #000; /* Dropdown link color */
  --nav-dropdown-hover-color: #000; /* Dropdown link hover color */
  --nav-hover-color: #000; /* Main nav link hover color */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: var(--background-color);
  color: var(--default-color);
  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);
}

html body {
  position: static; /* Note: This might override sticky behavior intended elsewhere */
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 0 0;
  transition: all 0.5s;
  z-index: 9999;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--accent-color);
  border-radius: 0;
  color: var(--nav-hover-color);
  margin: 0 0 0 20px;
  padding: 26px 12px;
  transition: 0.3s;
}

.header .btn-getstarted i {
  color: #333;
  font-size: 16px;
  margin-left: 8px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}
header a.btn-getstarted .bi {
    display: none;
}

/* Index Page Header on Scroll */
.index-page.scrolled .header {
  --background-color: #ffffff;
}

.scrolled .header { /* Combined with .index-page.scrolled .header if logic is same */
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

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

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

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

.navmenu .current-menu-item a, 
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
      color: var(--contrast-color);
    background: var(--accent-color);
    border-radius: 50px;
}

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

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

.navmenu .dropdown ul {
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  position: static;
  transition: all 0.5s ease-in-out;
  z-index: 99;
}

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

.navmenu ul {
  background-color: var(--nav-dropdown-background-color);
  border-radius: 6px;
  inset: 60px 20px 20px 20px;
  margin: 0;
  overflow-y: auto;
  padding: 10px 0;
  position: absolute;
  transition: 0.3s;
  z-index: 9998;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #262626;
  font-size: 14px;
  padding-bottom: 0;
  padding-top: 80px;
  position: relative;
}

footer#footer .footerbx1 {
  max-width: 450px;
}

footer#footer .footerlogo {
  margin-bottom: 20px;
}

footer#footer .footerlogo img {
  max-width: 250px;
  width: 100%;
}

footer#footer .fs-top {
  margin-top: 20px;
}

footer#footer .fs-top p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

footer#footer .fs-top a {
  display: block;
  margin-top: 10px;
}

footer#footer .fs-top a img {
  max-width: 170px;
}

footer#footer h3 {
  color: #fff;
  margin-bottom: 30px;
}

footer#footer h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
  padding: 0;
}

footer#footer p {
  color: #a8a8a8;
  font-size: 16px;
}

footer#footer .social-links {
  margin-top: 32px;
}

footer#footer .download-powerrep.navpdf {
  margin-top: 50px;
}

footer#footer .navpdf a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
}

footer#footer .navpdf a i.bi {
  font-size: 40px;
  margin-right: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-newsletter .error-message {
  background: #df1529;
  border-radius: 4px;
  color: #ffffff;
  display: none;
  font-weight: 600;
  margin-top: 10px;
  padding: 15px;
  text-align: left;
}

.footer .footer-newsletter .loading {
  background: var(--background-color);
  display: none;
  margin-top: 10px;
  padding: 15px;
  text-align: center;
}

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

.footer .footer-newsletter .newsletter-form {
  background-color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 50px;
  display: flex;
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  background-color: var(--contrsast-color); /* Typo? Should be --contrast-color? */
  border: 0;
  color: var(--default-color);
  padding: 4px 10px;
  width: 100%;
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  background: var(--accent-color);
  border: 0;
  border-radius: 50px;
  color: var(--contrast-color);
  font-size: 16px;
  margin: -7px -9px -7px 0;
  padding: 0 20px;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-newsletter .sent-message {
  background: #059652;
  border-radius: 4px;
  color: #ffffff;
  display: none;
  font-weight: 600;
  margin-top: 10px;
  padding: 15px;
  text-align: center;
}

.footer .footer-top {
  padding-top: 50px; /* This seems redundant with the main .footer padding-top */
}

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

.footer .social-links a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 18px;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a i.bi {
  font-size: 60px; /* Large icon size */
  margin-right: 20px;
}

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

.footer .copyright {
  background: #000;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: 60px !important;
  padding-bottom: 15px;
  padding-top: 15px;
}

.footer .copyright p {
  color: #6A6A6A;
  font-size: 14px;
  margin-bottom: 0;
}

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

ul.quicklinks-nav {
  margin-bottom: 30px;
  padding: 0;
}

ul.quicklinks-nav li {
  list-style: none;
}

ul.quicklinks-nav li a {
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 5px 0;
}

ul.quicklinks-nav li a:before {
  content: "-";
  margin-right: 10px;
}


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

#preloader:before,
#preloader:after {
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  content: "";
  position: absolute;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    height: 10px;
    left: calc(50% - 5px);
    opacity: 1;
    top: calc(50% - 5px);
    width: 10px;
  }
  100% {
    height: 72px;
    left: calc(50% - 36px);
    opacity: 0;
    top: calc(50% - 36px);
    width: 72px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  background-color: var(--accent-color);
  border-radius: 50px;
  bottom: -15px; /* Hidden initially */
  height: 44px;
  opacity: 0;
  position: fixed;
  right: 15px;
  transition: all 0.4s;
  visibility: hidden;
  width: 44px;
  z-index: 99999;
}

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

.section-title h2 {
  color: var(--nav-color);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px; /* Corrected from list-style */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2 span {
  border-bottom: 2px solid var(--accent-color);
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  align-items: center;
  display: flex;
  min-height: 750px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero .hero-bg img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero .hero-bg::before {
  background: linear-gradient(170.3deg, rgba(0, 0, 0, 0.8) 8.96%, rgba(0, 0, 0, 0.491806) 34.04%, rgba(0, 0, 0, 0) 62.55%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .hero-container { /* Specific to inner hero? */
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
}

.hero h1 {
  color: var(--contrast-color);
  font-size: 46px;
  font-weight: 700;
  line-height: 67px;
  margin: 0 0 26px 0;
  text-shadow: 0px 4px 12.2px rgba(0, 0, 0, 0.75);
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  margin: 5px 0 30px 0;
  text-shadow: 0px 4px 12.2px rgba(0, 0, 0, 0.75);
}

.hero .btn-get-started {
  background: var(--accent-color);
  border-radius: 0;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--nav-color);
  display: block;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 auto;
  padding: 6px 21px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
  color: var(--contrast-color);
}

.hero .btn-get-started i.bi {
  color: #333;
  font-size: 30px;
  margin-left: 18px;
}

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

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

.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%);
}

/* Inner Hero (Used on subpages) */
section.inner-hero.section {
    align-items: center;
    background: url(assets/img/suppliers-bx-bg.png) repeat center / cover;
    display: flex;
    min-height: 25vh;
    overflow: hidden;
    background-size: 400px;
    padding: 7rem 0 40px 0;
    position: relative;
    width: 100%;
    vertical-align: top;
}

section.inner-hero.section .hero-bg img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

section.inner-hero.section .hero-bg::before {
  /* Original complex gradient commented out, simple overlay may be intended */
  /* content: ""; */
  /* background: linear-gradient(246.31deg, rgba(0, 0, 0, 0) 50.11%, #000000 91.14%), linear-gradient(170.3deg, rgba(0, 0, 0, 0.8) 8.96%, rgba(0, 0, 0, 0.491806) 34.04%, rgba(0, 0, 0, 0) 62.55%); */
  /* position: absolute; */
  /* inset: 0; */
  /* z-index: 2; */
}

section.inner-hero.section .container {
  position: relative;
  z-index: 99; /* Seems high, perhaps 2 or 3 is enough */
}

section.inner-hero.section .container h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 12.2px rgba(0, 0, 0, 0.75);
}

section.inner-hero.section .hero-container {
  background: transparent;
  margin: 0 auto;
  max-width: 800px;
  padding: 0;
}

.inner-hero { /* Combined styles for subpage hero */
  background-color: #262626;
  padding: 120px 0 60px;
  position: relative;
  text-align: center;
}

.inner-hero .hero-bg img {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  background-color: var(--background-color); /* Apply the variable */
  padding: 40px 0;
}

.featured-services .service-item {
  padding-top: 20px;
  position: relative;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.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 {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 4px;
}

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

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

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

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

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

.about .about-images img {
  border-radius: 10px;
}

#aboutus { /* Specific About page styles */
  background: #F0F0F0;
}

#aboutus .aboutimg img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

#aboutus .aboutimg img:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

#aboutus .about-content h3 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

#aboutus .about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

#aboutus .about-custom {
  margin: 0 auto;
  max-width: 800px;
}

#aboutus h4 {
  margin-top: 20px;
}

#aboutus strong {
  display: block;
  margin-bottom: 20px;
}

#aboutus .social-links {
  margin-top: 32px;
}

#aboutus .social-links a {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
  width: 32px;
}

#aboutus .social-links a:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section (Suppliers)
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.clients .client-logo img {
  filter: grayscale(100);
  max-width: 90%;
  opacity: 0.5;
  padding: 20px 40px;
  transition: 0.3s;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

.suppliers-list ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3%;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.suppliers-list ul li {
  flex: 0 0 24%;
  list-style: none;
  margin-bottom: 1.3%;
  max-width: 24%;
}

.suppliers-list .suppliers-bx {
  background: url("assets/img/suppliers-bx-bg.png") no-repeat center / cover;
  height: 240px; 
}

.suppliers-list ul li .suppliers-img {
  align-items: center;
  background: #F0F0F0;
  display: flex;
  height: 170px; /* Fixed height */
  justify-content: center;
  transition: all 0.5s ease;
  padding:40px;
}

.suppliers-list .suppliers-bx:hover .suppliers-img {
  opacity: 0;
}

.suppliers-list ul li .suppliers-img img {
  display: block;
  height: 104px !important;
  margin: 0 auto;
  max-width: 230px;
  object-fit: contain;
  width: 100%;
}

.suppliers-list .suppliers-content {
  -moz-transition: margin 0.5s ease-out;
  -o-transition: margin 0.5s ease-out;
  -webkit-transition: margin 0.5s ease-out;
  margin: 18px 0;
  padding: 0 12px;
  text-align: center;
  transition: margin 0.5s ease-out;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  
}

.suppliers-list .suppliers-content h5 {
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 0 auto;
}

.suppliers-list .suppliers-content a {
  -moz-transition: opacity .5s ease-out;
  -o-transition: opacity .5s ease-out;
  -webkit-transition: opacity .5s ease-out;
  opacity: 0;
  transition: opacity .5s ease-out;
  font-size:14px;
}

.suppliers-list .suppliers-bx:hover .suppliers-content {
  margin-top: -70px; /* Adjust for hover effect */
  position: relative;
}

.suppliers-list .suppliers-bx:hover .suppliers-content a {
  opacity: 1;
}

section#suppliers .readmore a {
  color: #2188CE; /* Consider using --accent-color? */
  display: block;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

section#suppliers .section-title {
  margin: 0 auto 40px;
  max-width: 908px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  margin-bottom: 15px;
  width: 100%;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  border: 0;
  border-radius: 10px;
  color: var(--heading-color);
  cursor: pointer;
  display: flex;
  padding: 30px;
  transition: 0.3s;
}

.features .nav-link i {
  align-items: center;
  background-color: var(--contrast-color);
  border-radius: 50px;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
  display: flex;
  flex-shrink: 0;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
}

.features-details .features-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  border-radius: 6px;
  color: var(--contrast-color);
  padding: 6px 30px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  align-items: center;
  display: flex;
  padding-bottom: 10px;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  background-color: var(--background-color); /* Apply variable */
}

.services .service-item {
  background-color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  height: 100%;
  padding: 30px;
  transition: 0.3s;
}

.services .service-item .icon {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 32px;
  height: 72px;
  justify-content: center;
  margin-right: 25px;
  position: relative;
  width: 72px;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-size: 22px;
  font-weight: 700;
  transition: 0.3s;
}

.services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  transition: 0.3s;
}

.services .service-item .read-more {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  margin-top: 10px;
  transition: 0.3s;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  background: rgba(13, 202, 240, 0.1);
  border: 1px solid #0dcaf0;
  color: #0dcaf0;
}

.services .service-item.item-orange .icon {
  background: rgba(253, 126, 20, 0.1);
  border: 1px solid #fd7e14;
  color: #fd7e14;
}

.services .service-item.item-teal .icon {
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid #20c997;
  color: #20c997;
}

.services .service-item.item-red .icon {
  background: rgba(223, 21, 4, 0.1);
  border: 1px solid #df1529;
  color: #df1529;
}

.services .service-item.item-indigo .icon {
  background: rgba(102, 16, 242, 0.1);
  border: 1px solid #6610f2;
  color: #6610f2;
}

.services .service-item.item-pink .icon {
  background: rgba(243, 38, 140, 0.1);
  border: 1px solid #f3268c;
  color: #f3268c;
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* Services Page Specific Styles */
#services-intro {
  padding: 60px 0;
}

#services-intro p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

#service-section {
  background-color: #F0F0F0;
  padding: 60px 0;
}

#service-section .servicerow {
  margin-bottom: 60px;
  padding: 20px 0;
}

#service-section .servicerow:last-child {
  margin-bottom: 0;
}

#service-section .servicebx {
  padding: 30px;
}

#service-section h3 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

#service-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

#service-section .servicelist ul {
  list-style-type: none;
  padding-left: 0;
}

#service-section .servicelist ul li {
  align-items: flex-start;
  display: flex;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

#service-section .servicelist ul li .check-icon {
  background-color: #39B547;
  border-radius: 2px;
  display: inline-block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 16px;
}

#service-section .servicelist ul li .check-icon:after {
  border: solid white;
  border-width: 0 2px 2px 0;
  content: '';
  height: 9px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 6px;
}

#service-section .service-image {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: auto;
  max-height: 350px;
  object-fit: cover;
  transition: all 0.3s ease;
  width: 100%;
}

#service-section .service-image:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

section#service-section .servicerow { /* Specific layout adjustments */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section#service-section .servicelist .servicebx {
  align-content: center;
  align-items: baseline;
  display: flex;
  flex: 0 0 50%;
  flex-wrap: wrap;
  height: 450px; /* Fixed height */
  max-width: 50%;
}

section#service-section .servicelist ul {
  margin-top: 20px;
  padding: 0 60px 0 20px; /* Adjusted padding */
}



section#service-section .servicerow:nth-child(even) .servicebx:first-child {
  order: 1; /* Check if this is correct, usually order swaps image/text */
  padding-left: 60px;
}

section#service-section .servicerow:nth-child(even) .servicebx:first-child ul {
  padding-right: 0;
}


/* Feature Cards (Used on Services and About pages) */
.feature-cards {
  margin-top: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-card .icon-container {
  align-items: center;
  background-color: rgba(57, 181, 71, 0.1);
  border-radius: 50%;
  display: flex;
  height: 60px;
  justify-content: center;
  margin-bottom: 20px;
  width: 60px;
}

.feature-card .icon-container i {
  color: #39B547;
  font-size: 28px;
}

.feature-card h3 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

#suppliers-list .manufacturer-list {
    gap: 0;
}
.manufacturer-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manufacturer-item {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.manufacturer-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.manufacturer-logo img {
    max-width: 100px;
    height: auto;
}

.manufacturer-info h5 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.manufacturer-desc p {
    font-size: 16px;
}
.mfg-img {
    background: #f0f0f0;
    height: 224px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eaeaea;
}
.mfg-img img{
    object-fit: contain;
    height:104px;
}
.manufacturer-info a.more-link, .manufacturer-desc .more-link {
    display: none;
}
.btn-learn-more {
    background: #39b547;
    color:#fff;
    border: none;
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
transition: all 0.3s ease;
}

.btn-learn-more:hover {
        background-color: #2c9038;
    box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
    transform: translateY(-3px);
color:#fff;
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  min-height: 400px;
  position: relative;
}

.more-features .features-image img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1.2;
  margin-right: 15px;
}

.more-features .icon-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.more-features .icon-box p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 15px;
  height: 100%;
  padding: 40px 40px;
}

.pricing h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing h4 {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  background-color: var(--default-color);
  border-radius: 5px;
  color: var(--contrast-color);
  display: block;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 20px;
  padding: 10px 35px;
  text-align: center;
  transition: 0.3s;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing ul {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 20px;
  list-style: none;
  padding: 0;
  text-align: left;
}

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

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  background-color: var(--accent-color);
  border-radius: 5px;
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 5px 15px;
  position: absolute;
  right: 15px;
  top: 15px;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: 0.3s ease-in-out;
  visibility: hidden;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  cursor: pointer;
  font-size: 16px;
  line-height: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.3s;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-top: 10px;
  visibility: visible;
}

.faq .faq-container .faq-active .faq-toggle {
  color: var(--accent-color);
  transform: rotate(90deg);
}

/* FAQs Page Accordion Styles */
section#faqsec {
  background: #f6f6f6;
}

.accordion-container {
  margin: 0 auto;
  max-width: 800px; /* Matches .faq .faq-container if intended */
  width: 100%;
}

.accordion-container .accordion-title {
  background-color: #fff;
  color: #000;
  cursor: pointer;
  font-size: 1.25em; /* Consider using rem or px */
  font-weight: normal; /* Overrides .faq-item h3? */
  margin: 0;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { /* Consider combining with .faq-active */
  background-color: var(--accent-color);
  color: #fff;
}

.accordion-container h4.accordion-title.open {
  color: #fff;
  margin-bottom: 0;
}

.accordion-container h4.accordion-title.open:hover {
  color: #fff;
}

.accordion-container .accordion-content {
  background: #fff;
  border: 0; /* Overrides .faq-item border? */
  margin-bottom: 20px;
  padding: 20px;
}

.accordion-container h4.accordion-title i.bi {
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  color: #000; /* Base color */
  float: right;
  transition: all 0.3s ease;
}

.accordion-container h4.accordion-title.open i.bi,
.accordion-container h4.accordion-title:hover i.bi {
  color: #fff;
}

.accordion-container h4.accordion-title.open i.bi {
  transform: rotate(45deg);
}

.accordion-content { /* General accordion content styles */
  background: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: none;
  margin-bottom: 20px;
  padding: 20px;
}

.accordion-content h5 {
  color: #39B547;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.accordion-content h5:first-child {
  margin-top: 0;
}

.accordion-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.accordion-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.accordion-content ul li {
  padding: 5px 0;
  position: relative;
}

.accordion-content a {
  color: #39B547;
  text-decoration: none;
  transition: all 0.3s ease;
}

.accordion-content a:hover {
  text-decoration: underline;
}

.accordion-title { /* General accordion title */
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #000;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-title:hover {
  background-color: #39B547;
  color: #fff;
}

.accordion-title.open {
  background-color: #39B547;
  border-radius: 5px 5px 0 0;
  color: #fff;
  margin-bottom: 0;
}

.accordion-title i.bi {
  float: right;
  transition: all 0.3s ease;
}

.accordion-title:hover i.bi {
  color: #fff;
}

.accordion-title.open i.bi {
  color: #fff;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  --background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  background-color: var(--background-color); /* Apply variable */
}

.testimonials .testimonial-item {
  background-color: var(--contrast-color);
  box-shadow: 0px 0 20px color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  margin: 40px 30px;
  min-height: 320px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  border: 4px solid var(--background-color);
  border-radius: 50%;
  margin: 0 auto;
  width: 90px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto; /* Needed for variable height slides */
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  height: 12px;
  opacity: 1;
  width: 12px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 4px color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 3px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
  display: flex;
  font-size: 24px;
  height: 56px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  width: 56px;
}

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

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

.contact .php-email-form {
  box-shadow: 0 0 4px color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
}

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

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

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

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

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

.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: var(--accent-color);
  border: 0;
  border-radius: 50px;
  color: var(--contrast-color);
  padding: 10px 30px;
  transition: 0.4s;
}

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

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Page Specific */
#contact-intro {
  padding: 60px 0 30px;
}

#contact-intro p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

#contact-details {
  background-color: #F6F6F6;
  padding: 60px 0;
}

.contact-info {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 40px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-line {
  background-color: #39B547;
  height: 3px;
  margin-bottom: 30px;
  width: 60px;
}

.content-line { /* Used on About page */
  background-color: #39B547;
  height: 3px;
  margin-bottom: 20px;
  width: 60px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  color: #39B547;
  font-size: 28px;
  margin-right: 20px;
  min-width: 28px;
}

.info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-item p,
.info-item p a {
  color: #666;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.info-item p a:hover {
  color: #39B547;
}

.download-linecard {
  margin-top: 40px;
}

.line-card-btn {
  align-items: center;
  background-color: #39B547;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.line-card-btn i {
  font-size: 20px;
  margin-right: 10px;
}

.line-card-btn:hover {
  background-color: #2c9038;
  box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  color: #333;
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  height: auto;
  padding: 12px 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: #39B547;
  box-shadow: 0 0 0 0.25rem rgba(57, 181, 71, 0.2);
  outline: none;
}

textarea.form-control {
  resize: vertical;
}

.submit-btn {
  background-color: #39B547;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #2c9038;
  box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
  transform: translateY(-3px);
}

#location-map {
  padding: 0 0 60px;
}

.map-container {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px;
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.service-details .services-list a {
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  margin-top: 15px;
  padding: 12px 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 8px;
}

.service-details .services-list a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  align-items: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  display: flex;
  padding: 10px 0;
  transition: 0.3s;
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  color: var(--accent-color);
  font-size: 24px;
  margin-right: 8px;
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  font-size: 15px;
  list-style: none;
  padding: 0;
}

.service-details ul li {
  align-items: center;
  display: flex;
  padding: 5px 0;
}

.service-details ul i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Starter Section / Custom Sections
--------------------------------------------------------------*/
.starter-section {
  /* Base styles if any */
}

.market-slide {
  padding: 0 44px;
  position: relative;
}

.market-slide .market-bx {
  padding: 0 8px;
}

.market-slide .market-bx a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.market-slide .market-bx a img {
  height: 187px;
  object-fit: cover;
  width: 100%;
}

.market-slide .market-bx a:after {
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000000 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.market-slide .market-bx:hover a:after {
  background: rgba(0, 0, 0, 0.8);
}

.market-slide .market-bx a span {
  bottom: 14px;
  color: var(--contrast-color);
  display: block;
  font-size: 16px;
  line-height: 19px;
  max-width: 230px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: auto;
  z-index: 999;
}

.market-slide button.slick-arrow {
  height: 64px;
  width: 32px;
}

.market-slide button.slick-arrow:hover {
  background: var(--accent-color);
}

.market-slide button.slick-arrow::before {
  display: none;
}

.market-slide button.slick-prev-c.slick-arrow,
.market-slide button.slick-prev.slick-arrow {
  left: 0;
}

.market-slide button.slick-next-c.slick-arrow,
.market-slide button.slick-next.slick-arrow {
  right: 0;
}

.slick-next-c,
.slick-prev-c { /* Slider Arrows */
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  background: 0 0;
  border: none;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
}

section#PowerRep {
  background: url("assets/img/contract-manufacturing-design.jpg") no-repeat center / cover;
  position: relative;
}

section#PowerRep:after {
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

section#PowerRep > .container {
  position: relative;
  z-index: 999;
}

section#PowerRep .PowerRep-bx {
  background: #F0F0F0;
  display: inline-block; /* May cause alignment issues */
  margin: 8px auto;
  padding: 24px;
  width: 100%;
}

section#PowerRep .PowerRep-bx h3 {
  color: var(--nav-color);
  font-size: 24px;
  line-height: 28px;
}

section#PowerRep .PowerRep-bx p {
  color: var(--nav-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

section#PowerRep .PowerRep-bx .col-lg-2 {
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
  padding-top: 24px;
}

section#PowerRep .PowerRep-bx .col-lg-10 {
  padding: 24px;
}

section#PowerRep .PowerRep-bx .col-lg-2 img {
  margin: 0 auto;
}


section#proudly {
  background: #F2F2F2;
}

section#proudly .proudly-dark {
  background: #262626;
  position: relative;
}

section#proudly .proudly-dark h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
}

section#proudly .proudly-light {
  background: #fff;
  padding-bottom: 32px;
  padding-top: 32px;
}

section#proudly .proudly-light img {
  margin: 0 auto;
  max-width: 356px;
}

section#proudly .proudly-dark:after { /* Triangle connector */
  background: #262626;
  content: "";
  height: 53px;
  left: auto;
  position: absolute;
  right: -27px; /* Adjust for positioning */
  transform: rotate(45deg);
  width: 53px;
}

section#innovative .innovative-content p {
  color: #000;
}

.innovative-content { /* Base */
  margin-top: 0;
}

.innovative-btn a {
  border: 1px solid #39B547;
  color: #000;
  display: table;
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  padding: 14px 16px;
}

.innovative-btn a:hover {
  background: #39B547;
  color: #fff;
}

section#innovative img {
  height: auto;
  object-fit: contain;
  width: 90%;
}

.innovative-btn a i.bi {
  margin-left: 12px;
}

section#innovative .innovative-logo-content {
  margin-top: 20px;
}

.innovative-logo p {
  text-align: center;
}

.innovative-logo .innovative-btn a {
  flex: 0 0 48%;
  text-align: center;
  width: 48%;
}

section#productgallery {
  /* background: #F0F0F0; */ /* Uncomment if needed */
}

section#productgallery .market-slide .market-bx a:after {
  display: none; /* No overlay for product gallery */
}

.productgrid-bx img {
  width: 100%;
}

.productgrid-bx h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  padding: 20px 24px 10px 24px;
  text-align: left;
}

.productgrid-bx li {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.productgrid-bx ul {
  margin-left: 10px;
}

section#productgrid .productgrid-bx {
  background: #F0F0F0;
  width: 100%;
}

section#productgrid .productgrid-btm {
  justify-content: center;
  padding: 40px 0 0;
}

section#productgrid .productgrid-btm .productgrid-bx {
  background: #39B547;
}

section#productgrid .productgrid-btm .productgrid-bx h4 {
  color: #fff;
}

section#productgrid .productgrid-btm .productgrid-bx li {
  color: #fff;
}

section#productgrid .productgrid-btn a {
  align-items: center;
  background: var(--accent-color);
  border-radius: 0;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--nav-color);
  display: flex;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  justify-content: center;
  letter-spacing: 1px;
  padding: 0;
  transition: 0.5s;
  width: 186px;
}

.productgrid-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

section#market h5 {
  font-size: 18px;
  padding: 10px 8px;
}

section#market h5 a {
  color: #000;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

section#market h5 a i.bi {
  color: #39B547;
  font-size: 20px;
}

section#certifications {
  padding: 30px 0;
}

section#certifications .productgrid-img img {
  width: 100%;
}

section#certifications .productgrid-bx {
  background: #39B547;
  padding-bottom: 20px;
  padding-top: 20px;
}

section#certifications h4 {
  color: #fff;
  font-size: 30px;
}

section#certifications li {
  color: #fff;
}

.marquee-certificate .slick-track {
  align-items: center;
  display: flex;
}

section#certifications .row.gy-4 {
  align-items: center;
  display: flex;
}

section#certifications .productgrid-img button img {
  width: auto;
}

section#address i.bi.bi-geo-alt {
  font-size: 110px;
}

section#address .innovative-content p {
  font-size: 24px;
}

section#address .innovative-btn {
  gap: 20px;
}

section#address .innovative-btn a {
  text-align: center;
  width: 200px;
}

section#address .innovative-btn a.request-quote {
  background: #39B547;
  color: #fff;
}

/* Team Section Specific */
#team {
  padding: 60px 0;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.team-img {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  border: 4px solid #39B547;
  max-width: 150px;
  transition: all 0.3s ease;
  width: 100%;
}

.team-info h3 {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info .position {
  color: #39B547;
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}

.team-info p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-info .social-links {
  display: flex;
  gap: 10px;
}

.team-info .social-links a {
  align-items: center;
  background-color: rgba(57, 181, 71, 0.1);
  border-radius: 50%;
  color: #39B547;
  display: flex;
  font-size: 16px;
  height: 36px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 36px;
}

.team-info .social-links a:hover {
  background-color: #39B547;
  color: #fff;
}

/* Market Coverage Specific (About Page) */
.market-coverage {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  padding: 30px;
}

.market-coverage h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.market-coverage .content-line {
  margin: 0 auto 20px;
}

.states-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.states-list span {
  background-color: #39B547;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(57, 181, 71, 0.2);
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.3s ease;
  width: 60px;
}

.states-list span:hover {
  box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
  transform: translateY(-5px);
}

/* Blog / Resources Page */
#mfg_resources {
  background-color: #F6F6F6;
  padding: 60px 0;
}

.blog-post {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-post:hover .post-img img {
  transform: scale(1.05);
}

.post-img {
  overflow: hidden;
}

.post-img img {
  height: 300px;
  object-fit: contain;
  transition: transform 0.5s ease;
  width: 100%;
}

.post-content {
  padding: 25px;
}

.post-date {
  background-color: #39B547;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 4px 12px;
}

.post-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.post-content h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h3 a:hover {
  color: #39B547;
}

.post-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.post-meta {
  margin-bottom: 15px;
}

.post-meta span {
  color: #666;
  font-size: 14px;
  margin-right: 20px;
}

.post-meta span i {
  color: #39B547;
  margin-right: 5px;
}

.read-more {
  align-items: center;
  color: #39B547;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2c9038;
}

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

/* Blog Pagination */
.blog-pagination {
  margin-top: 50px;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.blog-pagination ul li {
  margin: 0 5px;
}

.blog-pagination ul li a {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
  width: 40px;
}

.blog-pagination ul li.active a,
.blog-pagination ul li a:hover {
  background-color: #39B547;
  color: #fff;
}

/* Blog Sidebar */
.sidebar {
  margin-bottom: 30px;
}

.sidebar-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 25px;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.sidebar-title:after {
  background-color: #39B547;
  bottom: 0;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}

.search-form {
  position: relative;
}

.search-form input {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 15px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.search-form input:focus {
  border-color: #39B547;
  box-shadow: 0 0 5px rgba(57, 181, 71, 0.2);
  outline: none;
}

.search-form button {
  background: transparent;
  border: none;
  color: #39B547;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.search-form button:hover {
  color: #2c9038;
}

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

.categories ul li {
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
}

.categories ul li:last-child {
  border-bottom: none;
}

.categories ul li a {
  color: #333;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.categories ul li a:hover {
  color: #39B547;
  padding-left: 5px;
}

.recent-post-item {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-item img {
  border-radius: 5px;
  height: 60px;
  margin-right: 15px;
  object-fit: cover;
  width: 80px;
}

.recent-post-item h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.recent-post-item h4 a {
  color: #333;
  transition: all 0.3s ease;
}

.recent-post-item h4 a:hover {
  color: #39B547;
}

.recent-post-item time {
  color: #777;
  font-size: 14px;
}

.contact-info .contact-item { /* Sidebar Contact */
  align-items: center;
  display: flex;
  margin-bottom: 15px;
}

.contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.contact-info .contact-item i {
  color: #39B547;
  font-size: 20px;
  margin-right: 15px;
}

.contact-info .contact-item a {
  color: #333;
  transition: all 0.3s ease;
}

.contact-info .contact-item a:hover {
  color: #39B547;
}

/* CTA Section (Used on multiple pages) */
#cta-section {
  background-color: #F0F0F0;
  padding: 80px 0;
  text-align: center;
}

#cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

#cta-section p {
  color: #666;
  font-size: 18px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

#cta-section .btn-get-started {
  background-color: #39B547;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height:32px;
}

#cta-section .btn-get-started:hover {
  background-color: #2c9038;
  box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
  transform: translateY(-3px);
}

#cta-section .btn-get-started i {
  margin-left: 8px;
}


/* CTA Section */
#cta-section {
    padding: 60px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-line-card {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid #39B547;
    color: #333;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-line-card i {
    margin-right: 8px;
    font-size: 20px;
    color: #39B547;
}

.btn-line-card:hover {
    background-color: #39B547;
    color: #fff;
}

.btn-line-card:hover i {
    color: #fff;
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

/* Max-width queries (Largest to Smallest) */

@media (max-width: 1200px) {
  .header .btn-getstarted {
    margin: 0 15px 0 0;
    order: 2;
    padding: 26px 15px;
  }
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    font-size: 32px;
    margin-right: 0;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    background: rgba(33, 37, 41, 0.8);
    inset: 0;
    overflow: hidden;
    position: fixed;
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  .mobile-nav-toggle {
    color: var(--nav-color);
    cursor: pointer;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu a,
  .navmenu a:focus {
    align-items: center;
    color: var(--nav-dropdown-color);
    display: flex;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    justify-content: space-between;
    padding: 10px 20px;
    transition: 0.3s;
    white-space: nowrap;
  }
  .navmenu a i,
  .navmenu a:focus i {
    align-items: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    font-size: 12px;
    height: 30px;
    justify-content: center;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
    width: 30px;
  }
  .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 > .dropdown-active {
    background-color: rgba(33, 37, 41, 0.03);
    display: block;
  }
  .navmenu .dropdown ul {
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    position: static;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu ul {
    background-color: var(--nav-dropdown-background-color);
    border-radius: 6px;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    display: none;
    inset: 60px 20px 20px 20px;
    margin: 0;
    overflow-y: auto;
    padding: 10px 0;
    position: absolute;
    transition: 0.3s;
    z-index: 9998;
  list-style:none;
  padding:15px !important;
  }
  .section,
  section {
    scroll-margin-top: 66px;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (max-width: 1100px) {
  .suppliers-list ul li {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

@media (max-width: 992px) {
  .pricing .box { /* Assuming .pricing-item was intended */
    margin: 0 auto 30px auto;
    max-width: 60%;
  }
}

@media (max-width: 991px) {
  #aboutus .aboutimg {
    margin-bottom: 30px;
  }
  #cta-section .btn-get-started {
    /* Empty rules */
  }
  #cta-section .btn-get-started:hover {
    /* Empty rules */
  }
  #service-section .servicerow {
    margin-bottom: 30px;
  }
  .accordion-title {
    font-size: 17px;
  }
  .contact-info {
    margin-bottom: 30px;
  }
  .feature-card {
    margin-bottom: 30px;
  }
  .inner-hero h1 {
    font-size: 36px;
  }
  .sidebar {
    margin-top: 50px;
  }
  .team-member {
    margin-bottom: 30px;
  }
}

@media (max-width: 980px) {
  footer#footer .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer#footer .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .suppliers-list ul li {
    flex: 0 0 49%;
    max-width: 49%;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  #about-intro p {
    font-size: 16px;
  }
  #aboutus .about-content h3,
  #aboutus .about-content p {
    text-align: center;
  }
  #cta-section h2 {
    font-size: 28px;
  }
  #cta-section p {
    font-size: 16px;
  }
  #faqsec .section-title h2 {
    font-size: 28px;
  }
  #mfg_resources .section-title h2 {
    font-size: 28px;
  }
  #service-section .service-image {
    margin-bottom: 20px;
    max-height: 250px;
  }
  #service-section .servicebx {
    padding: 15px;
  }
  #service-section .servicerow {
    display: flex;
    flex-direction: column;
  }
  #service-section .servicerow:nth-child(even) .servicebx:first-child {
    order: 2;
  }
  #service-section .servicerow:nth-child(even) .servicebx:last-child {
    order: 1;
  }
  #services-intro p {
    font-size: 16px;
  }
  #suppliers {
    padding-top: 0;
  }
  .accordion-content {
    padding: 15px;
  }
  .accordion-title {
    font-size: 16px;
    padding: 15px;
  }
  .contact-form {
    padding: 30px;
  }
  .contact-info {
    padding: 30px;
  }
  .content-line {
    margin: 0 auto 20px;
  }
  .info-item h4 {
    font-size: 16px;
  }
  .info-item i {
    font-size: 24px;
  }
  .inner-hero h1 {
    font-size: 32px;
  }
  .post-content h3 {
    font-size: 20px;
  }
  .post-img img {
    height: 250px;
  }
  .pricing .box { /* Assuming .pricing-item */
    margin: 0 auto 30px auto;
    max-width: 80%;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .team-img {
    margin: 0 auto 20px;
    text-align: center;
  }
  .team-info {
    text-align: center;
  }
  .team-info .social-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form h3 {
    font-size: 24px;
  }
  .contact-info {
    padding: 20px;
  }
  .contact-info h3 {
    font-size: 24px;
  }
  .inner-hero {
    padding: 100px 0 40px;
  }
  .inner-hero h1 {
    font-size: 28px;
  }
  .post-content {
    padding: 20px;
  }
  .post-content h3 {
    font-size: 18px;
  }
  .post-img img {
    height: 200px;
  }
  .sidebar-title {
    font-size: 18px;
  }
  .states-list span {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
  .submit-btn {
    width: 100%;
  }
  .team-member {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header .logo h1 {
    font-size: 24px;
  }
  .header .logo img {
    max-height: 24px;
  }
}

@media (max-width: 479px) {
  .header .btn-getstarted {
    padding: 20px 10px;
  }
  .header .logo img {
    max-width: 160px;
  }
  .suppliers-list ul {
    gap: 0;
  }
  .suppliers-list ul li {
    flex: 0 0 100%;
    margin-bottom: 30px;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .pricing .box { /* Assuming .pricing-item */
    margin: 0 auto 30px auto;
    max-width: 100%;
  }
}

/* Min-width queries (Smallest to Largest) */

@media (min-width: 768px) {
  .hero .hero-img { /* This class wasn't in the original base styles */
    max-width: 600px;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu a {
    align-items: center;
    color: var(--nav-color);
    display: flex;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 400;
    justify-content: space-between;
    padding: 8px 16px;
    transition: 0.3s;
    white-space: nowrap;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
   .navmenu ul {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
  }
  
  /* Also check container widths */
  .header .header-middle__center {
    width: 100% !important;
  }
  .navmenu a:focus {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
  }
  .navmenu a:hover {
    background: var(--accent-color);
    border-radius: 50px;
    color: var(--contrast-color);
  }
  .navmenu .dropdown .dropdown ul {
    left: -90%;
    top: 0;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    left: -100%; /* Nested dropdown positioning */
    opacity: 1;
    top: 0;
    visibility: visible;
  }
  .navmenu .dropdown ul {
    background: var(--nav-dropdown-background-color);
    border-radius: 4px;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
    display: block;
    left: 14px;
    margin: 0;
    opacity: 0;
    padding: 10px 0;
    position: absolute;
    top: 130%; /* Position below parent */
    transition: 0.3s;
    visibility: hidden;
    z-index: 99;
  }
  .navmenu .dropdown ul a {
    border-radius: 0;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    padding: 10px 20px;
    text-transform: none;
  }
  .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 ul li {
    min-width: 200px;
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    padding: 0; /* Check if padding needed */
    top: 100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    background: var(--nav-dropdown-background-color);
    border-radius: 4px;
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 130%; /* Position below parent */
    transition: 0.3s;
    visibility: hidden;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover > a {
    color: var(--nav-dropdown-color);
    font-size: 15px;
    padding: 10px 20px;
  }
  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu ul {
    align-items: center; /* Desktop nav alignment */
    display: flex; /* Changed from none/block */
    list-style: none;
    margin: 0;
    padding: 0;
    /* Removed absolute positioning related rules from mobile */
  }
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Keyframes (Already grouped) */
@keyframes subscription-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.blog-pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.blog-pagination .page-numbers {
  margin: 0 5px;
}

.blog-pagination .page-numbers {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
    min-width: 40px;
    padding: 0 15px;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background-color: #39B547;
  color: #fff;
}


#gform_submit_button_1 {
    background-color: #39B547;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
	height: 48px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}
#gform_submit_button_1:hover {
    background-color: #2c9038;
    box-shadow: 0 5px 15px rgba(57, 181, 71, 0.3);
    transform: translateY(-3px);
}