/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
: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: "Inter", sans-serif;
}

/* Global Colors */
: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: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff4a17; /* 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 */
:root {
  --nav-color: #e5eaee; /* The default color of the main navmenu links */
  --nav-hover-color: #ff4a17; /* 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: #ff4a17; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

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

p{
  text-align:justify;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid #00844a;
  background-color: #00844a;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: #fe941a;
  border-color: #fe941a;
}

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

  .header .logo img {
    width: 120px;
  }

  .header .cta-btn {
    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: rgba(21, 34, 43, 0.85);
}

/*--------------------------------------------------------------
  # 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 10px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    font-size: 13px;
    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;
    text-transform: uppercase;
  }

  .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;
    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: #ff4a17;
  }

  .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: 13px;
    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: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
    min-width: 240px;
  }

  .navmenu .dropdown .dropdown:hover > ul li a {
    font-size: 13px;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000000;
    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.1);
  }

  .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: #fff;
    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 Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px !important;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 0;
}

.bx-wrapper {
  margin: 0;
  padding: 0;
  border: none;
}

.bxslider .slide {
  position: relative;
}

.bxslider img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* transparent black */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: bold;
}

.slide-content p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.btn-get-started {
  padding: 10px 25px;
  background: #049a6a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 300ms;
}

.btn-get-started:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 18px;
    margin-top: 20px;
  }
  .slide-content p {
    font-size: 12px;
	text-align:center;
	margin-bottom:10px;
  }
  .btn-get-started {
    font-size: 13px;
    padding: 5px 20px;
  }
  .bx-controls-direction {
    display: none;
  }
}

/*--------------------------------------------------------------
# Free Quote
--------------------------------------------------------------*/
.free-quote {
  background-color: #05274a;
  padding: 40px 0;
}

.free-quote h3 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.free-quote input,
.free-quote select {
  border-radius: 5px;
  border: 1px solid #dddddd;
  height: 44px;
}

.free-quote button {
  width: 100%;
  border: none;
  border-radius: 5px;
  background-color: #00844a;
  color: #ffffff;
  padding: 9px 15px;
  font-size: 16px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Home About
--------------------------------------------------------------*/
.home-about {
  padding: 50px 0;
  text-align: justify;
}

.home-about img {
  border-radius: 15px;
}

.home-about h1 {
  font-size: 43px;
  font-weight: bold;
}

.home-about h3 {
  font-size: 28px;
  margin: 15px 0;
}

.home-about li {
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.cta-button {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid #00844a;
  background-color: #00844a;
}

.cta-button:hover {
  color: var(--contrast-color);
  background: #fe941a;
  border-color: #fe941a;
}

/*--------------------------------------------------------------
# Latest Product Section
--------------------------------------------------------------*/
.latest-product .img {
  border-radius: 8px;
  overflow: hidden;
}

.latest-product .service-item{
	height: 100%;
}

.latest-product .img img {
  transition: 0.6s;
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.latest-product .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 25px 30px 25px;
  margin: -60px 20px 0 20px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.latest-product .details p a{text-align:center; display: block;}

.latest-product .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.latest-product .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.latest-product .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.latest-product .service-item:hover .details h3 {
  color: var(--accent-color);
}

.latest-product .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.latest-product .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.latest-product .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 25px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

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

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Latest Blog
--------------------------------------------------------------*/
.latest-blog {
  background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);
}

.latest-blog .single-blog {
  background: #fff;
  border-radius: 0px;
  margin-bottom: 30px;
  -webkit-box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
  box-shadow: 10px 15px 18px rgba(23, 23, 36, 0.03);
  height: 100%;
}

.latest-blog .single-blog img{
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.latest-blog .content_box {
  padding: 35px;
}

.latest-blog .single-blog span {
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  color: #777777;
}

.latest-blog .single-blog h3 {
  font-size: 20px;
  line-height: 28px;
}

.latest-blog .single-blog h3 a {
  color: #000;
  font-weight: 600;
}

.latest-blog .single-blog a:hover {
  color: #ff4a17;
}

.latest-blog .single-blog p a {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials .headings{
	text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Trusted Client
--------------------------------------------------------------*/
.partner-logo {
  padding: 50px 0;
}

.partner-logo h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
}

.partner-logo .slider-client {
  height: 100px;
  overflow: hidden;
  position: relative;
  background: white;
}

.partner-logo .slider-client .slide-track {
 display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.partner-logo .slide {
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.partner-logo .slide img {
  width: 140px;
  height: 80px;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Expertise
--------------------------------------------------------------*/
.expertise {
  background-image: url("../images/bg-shape.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

.expertise-box {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-top: 5px solid #ff4a17;
}

.expertise .slide-container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.expertise .slide-image {
  width: 350px;
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.expertise .slide-text {
  flex: 1;
}

.expertise .slide-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.expertise .heat-icon {
  font-size: 28px;
  color: #ff4a17;
}

.expertise .slide-text h2 {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
}

.expertise .slide-text {
  padding-right: 40px;
}

.expertise .slide-text p {
  margin-top: 15px;
  color: #444;
  line-height: 1.6;
}

.expertise .swiper-button-prev {
  left: 0px;
  z-index: 99999;
}
.expertise .swiper-button-next {
  right: 0;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #ff4a17; /* Lime green shade */
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #b5be00; /* Slightly darker on hover */
}

@media (max-width: 768px) {
  .expertise .slide-container {
    display: block;
  }
  .expertise-box {
    padding: 15px;
  }
  .expertise .slide-text {
    padding-top: 20px;
    padding-right: 0;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 25%;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .expertise .slide-title {
    display: block;
  }
}

/*--------------------------------------------------------------
# Get In Touch
--------------------------------------------------------------*/
.get-in-touch {
  background: #009052;
  padding: 20px 0;
}

.get-in-touch h3 {
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 16px;
}

.get-in-touch p {
  font-size: 17px;
  color: #ffffff;
}

.get-in-touch a {
  background-color: #ffffff;
  padding: 13px 30px;
  border-radius: 5px;
  color: #619834;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  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 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.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 30%);
  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 p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.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 30%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Internal Hero
--------------------------------------------------------------*/
.internal-hero {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
}

.internal-hero nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internal-hero::before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}

.internal-hero .content {
  position: relative;
  z-index: 9;
}

.internal-hero h1 {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}

.internal-hero .breadcrumb-item::before {
  color: #dddddd;
}

.internal-hero .breadcrumb-item.active {
  color: #dedede;
}

/*--------------------------------------------------------------
# About Product
--------------------------------------------------------------*/
.about-product h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-product .product-image {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.about-product button {
  border: none;
  padding: 8px 20px;
  margin-right: 5px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #b68904;
}

.about-product .whatsapp {
  background-color: #21b335;
}

.about-product-two {
  background: #d2d1d10f url("../images/bg-shape.webp") no-repeat center center;
}

.about-product h2,
.about-product-two h2 {
  font-size: 36px;
  font-weight: bold;
  color: #273d4e;
  margin-bottom: 15px;
 }

.about-product h3,
.about-product-two h3 {
  font-size: 20px;
  font-weight: bold;
  color: #273d4e;
  margin-bottom: 15px;
 }

.about-product h4,
.about-product-two h4 {
  font-size: 16px;
  color: #444444;
}

.about-product h4 {
  font-size: 20px;
  margin-bottom: 25px;
  }

.product-boxs {
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  background-color: #ffffff;
}

.product-boxs h5 {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.product-boxs p {
  margin: 0;
}

.about-product-system {
  background-color: #0b844f;
}

.about-product-system h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-product-system h3 {
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.about-product-system h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.about-product-three {
  background: #d2d1d1 url("../images/bg-shape.webp") no-repeat center center;
}

.about-product-boxs {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.about-product-boxs h5 {
  font-size: 20px;
  font-weight: bold;
}

.faqs {
 background-color: #f5f6f7;
}

.faq-section {
   background: #d2d1d1 url("../images/bg-shape.webp") no-repeat center center;
   margin-top: 35px;
   margin-bottom: 35px;
}

.faq-section h2 {
  color: #273d4e;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.faq-section h3 {
  color: #273d4e;
  font-size: 20px;
  font-weight: bold;
}

.faqs h3,
.related-products h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.faqs button {
  font-weight: bold;
}

.related-products h5 {
  font-size: 15px;
  margin-top: 15px;
  font-weight: bold;
  line-height: 22px;
}

.related-products img {
  border-radius: 5px;
  height: 200px;
  object-fit: cover;
}

.related-products .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  font-size: 30px;
}

.related-products .owl-nav button {
  margin: 5px;
}

/*--------------------------------------------------------------
# Mission Vision
--------------------------------------------------------------*/
.mission-vision {
 background: linear-gradient(90deg, rgb(236, 255, 252) 0%, rgb(253, 250, 239) 35%, rgb(251, 251, 251) 100%);}
  background-image: url("../images/choose-shape02.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.mission-vision h2 {
  color: #c2df93;
  font-weight: bold;
}

.mission-vision p {
  color: #000000;
}

.mission-inner {
  padding: 30px;
}

.section-middle-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.work-deliver {
  text-align: center;
  background-color: rgba(9, 184, 80, 0.05) !important;
}

.work-deliver .title {
  font-size: 70px;
  font-weight: bold;
  text-align:center;
}

.work-deliver .description {
  font-size: 16px;
  font-weight: 500;
  color: #575a7b;
  text-align:center;
}

.contact-us {
  background-color: #ecf8f8;
}

.contact-address h2 {
  font-size: 36px;
}

.contact-address .sub-title {
  font-size: 17px;
}

.contact-address .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
  background-color: #063232;
  margin-right: 10px;
}

.contact-address h4 {
  font-size: 20px;
  font-weight: bold;
}

.contact-address p {
  color: #5a7779;
}

.contact-form {
  background-color: #429257;
  padding: 30px;
  border-radius: 20px;
}

.contact-form h2 {
  color: #ffffff;
}

.contact-form label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact-form input,
.contact-form select {
  border-radius: 0 !important;
  height: 42px;
  font-size: 15px;
}

.contact-form textarea {
  border-radius: 0 !important;
}

.contact-form button {
  border: none;
  background-color: #124806;
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 30px;
  margin-top: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 36%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Blog Details */
.blog-details {
  position: relative;
}

.blog-details .tags {
  display: flex;
  gap: 5;
  margin: 20px 0;
}

.blog-details a {
  display: inline-block;
  font-size: 14px;
  color: #063232;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0 22px;
  border-radius: 20px;
  background-color: #ecf8f8;
}

.blog-details img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 20px 0;
  object-fit: cover;
}

.blog-details h1 {
  font-weight: bold;
}

.blog-details h2 {
  font-weight: 600;
  margin: 20px 0 10px 0;
}

.blog-sidebar {
  margin-bottom: 30px;
  padding: 25px;
  padding-top: 0;
  border-radius: 5px;
  background-color: #ecf8f8;
  border: unset;
}

.blog-sidebar .title {
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  background-color: #063232;
  padding: 20px 25px;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
  margin: 0 -25px 10px;
}

.blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar li {
  margin: 0;
  display: block;
  padding: 10px 0px;
  border-bottom: 1px solid #0632321a;
}

.blog-sidebar li:last-child {
  border: none;
}

.blog-sidebar li a {
  padding: 0px;
  display: block;
  font-size: 16px;
  font-weight: normal;
}

.recent-post-list {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.recent-post-list p,
.recent-post-list a {
  margin: 0;
  padding: 0;
  line-height: 130%;
  font-size: 16px;
  font-weight: normal;
}

.recent-post-list .image {
  width: 70px;
}
.recent-post-list .image img {
  width: 70px;
  height: 65px;
  object-fit: cover;
  margin: 0;
  border-radius: 5px;
}

.recent-post-list span {
  font-size: 13px;
  opacity: 0.6;
}

.recent-post-list .content {
  width: calc(100% - 80px);
}

.client-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
}

.client-card img {
    height: 120px;
    object-fit: contain;
    border: 1px solid #dddddd;
    padding: 18px;
	transition: all 300ms;
}

.client-card img:hover{
	border: 1px solid #ff4a17;
}


.cities-service a{
	font-size: 13px;
	color:#000000;
}


@media(max-width:768px){
	.swiper-button-next, .swiper-button-prev{
		display:none;
	}	
	.section-title h2::after {
		margin: 4px 10px 10px 0;
		bottom: -6px;
		position: relative;
	}
	
}


@media(min-width:767px){
	.footer .footer-contact{
		padding-right:30px
	}
	
}