/*
    Theme Name: Artemas
    Author:  Artemas
    Description: ---- 2026.
    Document   : Framework
    Created on :  APR 23 2026, 12.00 AM
*/

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--textcolor);
  background: var(--maincolor);
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

::placeholder {
  color: var(--secondry-color);
  font-family: var(--font-one);
  font-weight: 500;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-family: var(--font-one);
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

p {
  margin: 0;
  line-height: 1.3;
  font-size: 1.5em;
  color: var(--textbasecolortwo);
  font-weight: 300;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  line-height: 1;
  font-size: 3.5em;
  font-weight: 300;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--textbasecolortwo);
  font-size: 3em;
  line-height: 1;
  font-weight: 300;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  font-size: 2em;
  line-height: 1.1;
  font-weight: 300;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  font-size: var(--font-25);
  color: var(--text-brand-color-two);
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}
.container {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
.medium-container {
    width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.small-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: #FAFBF9;
  overflow: hidden;
}

[class*="reveal-"] {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-show {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}
:root {
  --font-one: "Noto Sans", sans-serif;
  --btnradius: 100px;
  --sm-radius: 15px;
  --lg-radius: 50px;
  --maincolor: #ffffff;
  --bg-color: #F3F6FF;
  --brand-one: #AD2B2B;
  --brand-two: #F7F7F7;
  --brand-three: #321F1F;
  --black: #000000;
  --dark-blue: #737373;
  --light-black: #363637;
  --textbasecolortwo: #1E1E1E;
}
.page-loader{
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hide{
    opacity: 0;
    visibility: hidden;
}

.dots-loader{
    display: flex;
    gap: 12px;
}

.dots-loader span{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c62828;
    animation: bounce 0.8s infinite ease-in-out;
}

.dots-loader span:nth-child(2){
    animation-delay: .15s;
}

.dots-loader span:nth-child(3){
    animation-delay: .3s;
}

@keyframes bounce{

    0%,100%{
        transform: translateY(0);
        opacity: .5;
    }

    50%{
        transform: translateY(-15px);
        opacity: 1;
    }

}
.flex {
  display: flex;
}
.w-100 {
  width: 100%;
}


.no-scroll {
  overflow: hidden;
  height: 100vh;
}

span.toggle-icon {
    font-size: 12px;
    color: var(--brand-one);
}
.submenu {
  text-align: left;
}
.banner {
 position: relative;
    height: 80vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;

}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: url(../img/home-banner.jpg) center center/cover no-repeat;
  transform: translateY(0);
  will-change: transform;
	height: 100vh;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
 padding: 0 0 200px 0;
  
}
.cta-btn {
display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-one);
    color: #fff;
    padding: 20px 25px;
    border-radius: 40px;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    font-family: var(--font-one);
    border: 0;
	
}

/* ICON */
.cta-btn img {
  display: flex;
  transition: transform 0.3s ease;
}

/* TEXT */
.cta-btn .text {
  position: relative;
  z-index: 2;
}

/* HOVER EFFECT */
.cta-btn:hover {
  background: #a61f1f;
  transform: translateY(-2px);
}



/* OPTIONAL SHINE EFFECT */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.cta-btn:hover::before {
  left: 125%;
}
.banner-content h1 {
    max-width: 750px;
    margin: 0 0 20px 0;
}
.mt-20 {
  margin: 20px 0 0 0;
}
/* menu-start */
.header {

 position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
	  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
header.header.bgcolor {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
header.header.bgcolor .reach-out {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 25px 0;
}
.header .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.nav-container {
  display: flex;

    align-items: center;
    text-align: center;
   
}

.logo {
  width: 20%;
  min-width:250px;
   transition: all 0.3s ease;
}

.logo a {
    display: flex;
}

nav.nav {
  width: 70%;
    text-align: center;
}
.reach-out {
 width: 10%;
    text-align: center;
    padding: 40px 0;
    background-color: var(--brand-one);
    color: var(--maincolor);
	  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
li.dropdown-sub a:hover {
	color: var(--brand-one);
}
.reach-out a {
   color: var(--maincolor);
   font-weight: 600;
}
/* NAV */
.nav-links {
  display: flex;
  list-style: none;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
li.dropdown-sub .toogle-icon {
	font-size: 14px;
    color: var(--brand-one);
    font-weight: 600;
}
.nav-links a {
  text-decoration: none;
  color: var(--light-black);
  font-size: 1em;
  font-weight: 600;
}

/* BUTTON */
.btn a {
  background: var(--brand-one);
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
}

/* DESKTOP DROPDOWN */
.dropdown {
  position: relative;
}

.submenu {
      position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 25px 10px 10px;
    border-radius: 10px;
}

.dropdown:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* SUB SUB */
.dropdown-sub {
   position: relative;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
	align-items: center;
}
.dropdown-sub .toggle-icon {
	font-size: 18px;
    font-weight: 500;
} 
.sub-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
ul.sub-submenu li a {
      padding: 10px 15px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.dropdown-sub:hover .sub-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
      border-radius: 10px;
    padding: 10px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 2px 0;
  transition: 0.3s ease;
}

/* HAMBURGER → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* menu-end */
.solution {
  padding: 50px 0 0 0;
}
.justify-space-between {
  justify-content: space-between;
}
.align-item-center {
  align-items: center;
}
ul.page-flex img {
    max-width: 20px;
}
.page-flex {
  display: flex;
  gap: 10px;
}
.flex {
  display: flex;
}
.page-flex li a.page-active {
color: var(--brand-one);
    font-weight: 500;
    position: relative;
    gap: 5px;
    display: flex;
    align-items: center;
}
.page-flex li a.page-active img {
  max-width: 20px;
}
/* .page-flex li a.page-active::after {
 content: '';
    position: absolute;
    background: url(../img/sliding-line.svg) no-repeat center center / contain;
    width: 25px;
    height: 25px;
    left: -35px;
} */
.page-flex li a {
  color: var(--dark-blue);
  font-size: 1.1em;
}
/* CARD */
.pest-card {
  background: #FFF3F3;
  padding: 0;
  text-align: center;
  border-radius: var(--sm-radius);
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.right-common .detail-bg li {
    font-size: 1.3em;
    padding: 0 0 10px 0;
    list-style: circle;
}
.splide {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.splide__track {
    overflow: hidden;
    touch-action: pan-y;
}

.splide__list {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
/* ICON */
.pest-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

/* TEXT */
.pest-card p {
  font-size: 1.3em;
  color: var(--black);
 margin: 20px 0 0 0;
    font-weight: 400;
}

.pest-card a {
	display: block; 
    padding: 50px;
}

/* HOVER */
.pest-card:hover {
  transform: translateY(-5px);
  border-color: #c62828;
}
.pest-slider .splide__slide .pest-card {
	border: none;
}
/* SPLIDE SPACING */
.pest-slider .splide__slide {
padding: 5px;
    background: #FFF3F3;
    border-radius: var(--sm-radius);
}
/* REMOVE RIGHT GAP COMPLETELY */
.pest-slider {
  padding-right: 5%!important;
}

/* OPTIONAL: make slider stretch full width */
.pest-slider .splide__track {
  overflow: visible;
}

/* OPTIONAL: align first slide properly */
.pest-slider .splide__list {
  margin-left: 0;
}
.pest-slider-sec {
  margin: 50px 0;
}
.text-desc p {
  color: #6D6D6D;
  font-size: 1em;
  font-weight: 500;
}
.dots {
  margin: 50px 0 0 0;
}
.common-sec .flex {
  display: flex;
  gap: 50px;
}
.left-common {
  width: 10%;
}
.right-common {
  width: 60%;

}
.right-common p {

    margin: 0 0 30px 0;
    line-height: 1.5;
}
.right-common b {
  color: var(--brand-one);
  font-weight: 600;
}
.arrow-btn {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #333333;
  font-weight: 600;
  font-size: 1.1em;
}
.arrow-btn img {
  transition: 0.3s ease;
}
.arrow-btn:hover img {
  transition: 0.3s ease;
  transform: translateX(5PX)
}
.pb-100 {
  padding: 0 0 100px 0;
}
.treatment.second-image h3 {
	width: 100%;
	position: relative;
	z-index: 2;
}
.second-image h3 {
  color: var(--maincolor);
    line-height: 1;
    font-size: 3.5em;
    font-weight: 300;
    font-family: var(--font-one);
    max-width: 900px;
}


a.cta-btn.modal-open-btn.fixedbtn {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    max-width: max-content;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 999999;
    padding: 15px 20px;
    border-radius: 40px;
	animation: ctaReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ctaReveal {
    from{
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ITEM */
.acc-item {
 margin: 0 0 20px 0;
}

/* HEADER */
.acc-header {
  display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

/* ICON (+) */
.icon {
  position: relative;
  width: 25px;
  height: 25px;
}

.acc-header .icon::before,
.acc-header .icon::after {
  content: "";
  position: absolute;
  background: #c62828;
  transition: 0.3s;
}

/* horizontal line */
.acc-header .icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* vertical line */
.acc-header .icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* OPEN STATE → minus */
.acc-item.active .icon::after {
  transform: translateX(-50%) scaleY(0);
}

/* CONTENT */
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

/* OPEN CONTENT */
.acc-item.active .acc-content {
  padding: 0 0 10px 0;
}
.why-choose {
  padding: 100px 0;
}
.why-choose-des {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  margin: 50px 0 0 0;
  position: relative;
  align-items: center;
}
.why-choose-des .right {
  position: relative;
}
.why-choose-des .image {
    position: relative;
}
 
.why-choose-des .iso {
    position: absolute;
    top: -45px;
    left: 45px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
   box-shadow: 0 4px 15px 10px rgb(0 0 0 / 4%);
    border-radius: 15px;
}
 
.why-choose-des .iso img {
overflow: hidden;
border-radius: 5px;
}
.acc-item h4 {
  color: var(--black);
    font-size: 2em;
    font-weight: 300;
}
.acc-item.active h4 {
  color: var(--brand-one);
   font-weight: 600;
}
.acc-content p {
font-size: 1.3em;
font-weight: 400;
color: #5B5B5B;
}
.image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: var(--sm-radius);
}
.bg-brown {
  background-color: var(--brand-three);
}
.satisfication {
  padding: 100px 0;
}
.two-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.satisfication h3 {
  text-align: center;
  margin: 0 0 50px 0;
}
.satisfication h3 span {
  color: #FFCD94;
  font-weight: 500;
}
.grid-lay-image img {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: var(--sm-radius);
    object-fit: cover;
}
.grid-lay {
  position: relative;
}
.grid-lay-content {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 40px;
    backdrop-filter: blur(1.5px);
}
.grid-lay-content h4 {
 color: var(--maincolor);
    font-size: 1.8em;
    max-width: 350px;
    font-weight: 300;
}
.no-bg-btn {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.no-bg-btn:hover {
  background-color: transparent;
}
.cta-btn.no-bg-btn::before {
  display: none;
}
.three-layout-sec {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.four-layout-sec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
	margin:40px 0 0px 0;
}
.four-layout-sec .common-grid-img img {
	height:inherit;
	filter: brightness(1.2);
}
.footer-bottom p a {
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .four-layout-sec {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .four-layout-sec {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .three-layout-sec {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .three-layout-sec {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.common-grid {
    padding: 50px 0;
}
.common-grid-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--sm-radius);
}
.common-grid-content p {
  font-size: 1em;
    padding: 10px 0 20px 0;
}
.common-grid-content h3 {
  color: var(--light-black);
  font-weight: 400;
  font-size: 1.6em;
  padding: 10px 0;
  max-width: 90%;
}
.common-grid-sec {
  margin: 50px 0 0 0;
}

.common-grid-sec.success-sec {
margin: 0px 0 0 0;
}
.third-image .banner-content.container {
     width: 100%;
    max-width: 950px;
    margin: 0 auto;
}
.third-image .banner-content {
  text-align: center;
  padding: 0 0 0 0;
}
.banner.second-image.third-image {
  align-items: center;
  margin: 50px 0 0 0;
}
.second-image.third-image h3 {
  max-width: 90%;
  margin: 0 auto;
}
/* FOOTER */
.footer {
  background: linear-gradient(120deg, #0f1115, #1a1d24);
  color: #ccc;
  padding: 60px 20px 30px;
}


/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* LOGO */
.logo {
  font-size: 20px;
  color: #fff;
  padding: 0 0 0 25px;

}


/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color:  var(--maincolor);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  opacity: 0.8;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #EAEAEA;
  font-weight: 400;
}

/* SOCIAL */
.social a {
  color: #aaa;
  margin-right: 15px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social a:hover {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer-col p {
  color: var(--maincolor);
  font-weight: 300;
  opacity: 0.8;
}
.footer-col p a {
  color: var(--maincolor);
  font-weight: 500;
}
.social a img {
    width: 20px;
    height: 20px;
}
    .second-image .banner-content {
      padding: 0 0 150px 0;
    }
 .inner .inner-banner {
    height: inherit;
    min-height: inherit;
    padding: 150px 0;
    position: inherit;
    overflow: inherit;
    margin: 80px 0 0;
	     position: relative;
    z-index: 9;
}
    .inner .inner-banner .banner-content {
      padding: 0 0 0 0;
    }
    .inner .inner-banner p {
      color: var(--maincolor);
      max-width: 550px;
     
    }
     h2.cmn-head {
      font-size: 2.5em;
      font-weight: 300;
      line-height: 1.2;
      margin: 0 0 20px 0;
      max-width: 900px;
    }
.list-section-start  h2.cmn-head {
      font-size: 1.8em;
      font-weight: 300;
 
    }
  .banner.second-image {
    margin: 100px 0 0 0;
}
.p-100 {
  padding: 100px 0;
}


/* LAYOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--sm-radius);
  display: block;
  height: 650px;
  object-fit: cover;
}

/* ISO BADGE */
.iso-badge {
      position: absolute;
    top: -70px;
    right: 100px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
   box-shadow: 0 4px 15px 10px rgb(0 0 0 / 4%);
}

.iso-badge img {
  width: 100%;
  height: inherit;
  object-fit: none;
}
.about-content p {
    max-width: 550px;
    padding: 0 0 50px 0;
}
.team-section {

background: #1E2239;
  color: #fff;
    padding: 100px 0;
    margin: 100px 0 0 0;

}


.team-header h2 {
  color: var(--maincolor);
}

/* HEADER */
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}



.arrows button {
 background: transparent;
    color: #fff;
    padding: 8px 0;
    margin-left: 10px;
    cursor: pointer;
    box-shadow: none;
    border: transparent;
    font-size: 3em;
}

/* CARD */
.team-card {
  text-align: left;
}

.team-card img {
  width: 100%;
  border-radius: var(--sm-radius);
  margin-bottom: 15px;
  height: 300px;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 1em;
  color: #ACACAC;
}

/* BUTTON */
.consult-btn {
  display: inline-block;
  margin-top: 30px;
  background: #e53935;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
}

/* SPLIDE FIX */
.splide__slide {
  padding: 10px;
}
.mv-grid {
  display: grid;
  text-align: left;
  grid-template-columns: 1fr 1fr;
}
.mv-grid h3 {
  text-align: left;
  margin: 20px 0;
}
.mv-grid-layout img {
    max-width: 80px;
}

.mv-grid-layout p {
  color: var(--maincolor);
  font-size: 1.2em;
  opacity: 0.6;
  font-weight: 300;
  max-width: 400px;
}



/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 50px 0 0 0;
  padding: 0 0 50px 0;
}

/* CARD */
.service-card {

  background: #FFF3F3;
    padding: 0;
    text-align: center;
    border-radius: var(--sm-radius);
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

/* ICON */
.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border: 1px solid #c62828;
}
/* TEXT */
.service-card p {
 font-size: 1.3em;
    color: var(--black);
    font-weight: 400;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 0;
}

/* BORDER EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* HOVER */



.treatment {
  background: url(../../assets/img/treatment-process.jpg) no-repeat center center/cover;
  padding: 100px 0;
	position: relative;
}

.treatment::after {
	content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    right: 0;
    background: linear-gradient(270deg, #1E2239 7.5%, rgba(30, 34, 57, 0.6) 72.5%, rgba(30, 34, 57, 0) 107.5%);
    top: 0;

}

.steps-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    position: relative;

  }
.step-wrapper {
  margin: 200px 0 0 0;
}
.step-wrapper b {
  color: var(--maincolor);
  font-weight: 500;
  font-size: 2em;
}
  /* Line connecting steps */
  .steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--maincolor);
    z-index: 0;
    margin: 110px 0 0 0;
}



  .step {
   position: relative;
    text-align: left;
    width: 18%;
    z-index: 1;
    padding: 50px 0 0 0;
  }

  .step-content {
   margin-bottom: 50px;
    transition: all 0.5s ease;
  }

  .step-title {
    font-weight: 500;
    font-size: 1.1em;
    color: var(--maincolor);
    transition: color 0.5s;
    margin: 0 0 10px 0;
  }

  .step-desc {
    font-size: 1.1em;
    color: var(--maincolor);
    transition: color 0.5s;
    max-width: 300px;
  }

  .step-circle {
    width: 15px;
    height: 15px;
    background: var(--maincolor);
    border-radius: 50%;

    transition: all 0.5s ease;
  }

  .step.active .step-circle {
    background: var(--brand-one);

  }

  .step.active .step-title,
  .step.active .step-desc {
    color: var(--brand-one);
  }

.right-common-sec {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.right-common-sec-content h3 {
  color: var(--black);
  margin: 0 0 30px 0;
}
.detail-bg {
  background: #FFF3F3;
  border-radius: var(--sm-radius);
  margin: 50px 0 0 0;
    padding: 50px;
}
.right-common-sec-img img {
    width: 100%;
    height: 500px;
    border-radius: var(--sm-radius);
    object-fit: cover;
}
.detail-bg h4 {
    font-size: 1.7em;
    max-width: 550px;
    margin: 0 0 20px 0;
}
.detail-bg li {
    font-size: 1.3em;
    padding: 0 0 10px 0;
    list-style: disc;
}
.detail-bg ul {
    list-style: disc;
    margin: 0 0 0 20px;
}
.detail-second-sec {
  margin: 50px 0 0 0;
}
.detail-second-sec h3 {
 color: var(--black);
    margin: 0 0 30px 0;
}
.detail-second-set h4 {
  font-size: 1.3em;
    font-weight: 400;
  
}
.detail-second-set p {
  font-size: 1.3em;
    margin: 0 0 20px 0;
}
.detail-second-set {
/*   border-bottom: 1px solid var(--black); */
  margin: 0 0 20px 0;
}
.common-sec-part {
  margin: 50px 0 0 0;
}
.related-articles {
  padding: 100px 0;
}
.contact-box {
  background: #FFF3F3;
  padding: 60px;
  border-radius: var(--sm-radius);
  
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side */
.contact-left {
  max-width: 350px;
}

.contact-left h4 {
  color: #b0302c;
  margin-bottom: 10px;
}

.contact-left p {
  color: var(--textbasecolortwo);
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.3em;
}

/* Button */
.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b0302c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s;
}



/* Right Side */
.contact-right {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}



.contact-item h4 {
  color: var(--brand-one);
  margin-bottom: 5px;
}

.contact-item p {
 color: var(--textbasecolortwo);
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.3em;
  margin: 0 0 0 0;
}
.inspection-form {
  background: var(--maincolor);
  padding: 50px;
  border-radius: var(--sm-radius);
  margin: 50px 0 0 0;
}

.form-container {
  max-width: 700px;
}



/* Floating Input Style */
.form-group {
  position: relative;
  margin-bottom: 40px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #bbb;
  background: transparent;
  padding: 10px 0;
  font-size: 15px;
  outline: none;
	opacity: 0.6;
}

.form-group label {
  position: absolute;
  left: 0;
  top: -15px;
  color: #656565!important;
  font-size: 15px!important;
  transition: 0.3s!important;
  pointer-events: none;
  font-weight: 500!important;
}
.form-group textarea {

  color: #656565;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 500;
}
/* Focus effect */
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: 5px;
  font-size: 13px;
  color: #b0302c;
}

/* Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b0302c;
  color: #fff;
  padding: 14px 26px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #922623;
}

.submit-btn .icon {
  background: #fff;
  color: #b0302c;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 14px;
}
.success-flex {
 display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0 0 0;
}
.success-sec-content p {
    font-weight: 400;
    font-size: 1.4em;
    max-width: 400px;
    padding: 0 0 20px 0;
}
.success-sec-content strong {
    font-weight: 500;
    font-size: 1.2em;
    max-width: 300px;
    display: block;
}
.modal {
  position: fixed;
  inset: 0;
  display: none; /* 🔥 important */
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
	z-index: 999;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}



/* Modal box */
.modal-box {
  position: relative;
  width: 90%;
  max-width: 520px;
   background: var(--brand-one);
  border-radius: 16px;
  padding: 30px 25px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: popup 0.35s ease;
}

/* Animation */
@keyframes popup {
  from {
    transform: translateY(-40px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Close */
.modal-close {
  position: absolute;
  right: 15px;
  top: 12px;
      font-size: 2em;
  cursor: pointer;
}

/* Icon */
.icon-wrap {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Title */
.modal-title {
 font-size: 1.5em;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 500;
}

.modal-subtitle {
 font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

/* Inner card */
.price-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
}

/* Card title */
.card-title {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.card-title::before,
.card-title::after {
  content: "";
  height: 1px;
  width: 25%;
  background: rgba(255,255,255,0.4);
  position: absolute;
  top: 50%;
}

.card-title::before {
  left: 0;
}

.card-title::after {
  right: 0;
}

/* Rows */
.row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}

/* Divider */
.divider {
  border-top: 1px dashed rgba(255,255,255,0.4);
  margin: 10px 0;
}

/* Total */
.total {
  font-weight: bold;
  color: #00ff88;
}

/* Save */
.save {
  margin: 10px 0;
  color: #fff;
}

.save span {
  background: green;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 5px;
}

/* Button */
.btn-offer {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-offer:hover {
  background: #fff;
  color: #d32f2f;
}

/* Note */
.note {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.9;
  color: #fff;
}
.home-solution {
  padding: 100px 0;
}
.mobile-only {
  display: none;
}
.list-section-start .small-container {
	max-width: 1250px;
}
.single-solutions .common-sec.p-100 {
	padding: 100px 0 0 0;
}
.list-section-start {
	padding: 0 0 100px 0;
}
.list-section-start ul {
	margin: 0 0 0 20px;
	
}
.list-section-start ul li {
	position: relative;
	font-size: 1.4em;
    color: var(--textbasecolortwo);
    font-weight: 300;
    font-family: var(--font-one);
	margin: 0 0 5px 0;
}
.list-section-start ul li::before {
    position: absolute;
    content: '';
    left: -18px;
    width: 8px;
    height: 8px;
    background-color: var(--brand-one);
    top: 13px;
    border-radius: 100px;
}
.image-content-section {
	padding: 100px 0 0 0;
}
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
	align-items: center;
}
.form-container h3 {
	color: #1e1e1e;
    font-family: var(--font-one);
    font-weight: 400;
    padding: 0 0 50px 0;
}
.image-content-section p {
	font-size: 1.5em;
    color: var(--textbasecolortwo);
    font-weight: 300;
    font-family: var(--font-one);
    line-height: 1.5;
	margin: 0 0 50px 0;
}
.right-image img {
    width: 80%;
    height: inherit;
    object-fit: cover;
    object-position: top;
}
/**************************** Mobile-responsive-start *********************************/
@media screen and (min-width: 200px) and (max-width: 683px) {
  body {
    font-size: 85%;
  }
   .about-content h2 {
    font-size: 22px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content p {
    font-size: 14px;
  }
    .team-header h2 {
    font-size: 26px;
  }
    .service-card {
    padding: 20px 10px;
  }
    .service-card img {
    width: 40px;
    height: 40px;
  }
   .steps-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .steps-container::before {
      display: none;
    }
	.right-image img {
		height: inherit;
        object-fit: contain;
	}
    .step {
      width: 80%;
      margin-bottom: 0;
		padding: 0 0 0 0;
    }
      .contact-container {
    flex-direction: column;
  }
	.image-content-section p {
		margin: 0 0 20px 0;
	}
	.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 50px;
}
.list-section-start {
    padding: 50px 40px;
}
	.list-section-start ul li {
		font-size: 1.1em;
		margin: 0 0 10px 0;
	}
  .contact-left {
    max-width: 100%;
  }
  .modal-box {
    padding: 25px 15px;
  }

  .modal-title {
    font-size: 24px;
  }
  .reach-out {
    display: none;
  }
  .mobile-only {
  display: block;
}
nav.nav {
  width: 100%;
  text-align: left;
}
.mobile-only {
  padding: 0 0 0 20px;
}
.mobile-only .cta-btn {
  padding: 10px 20px;
	font-size: 1.5em;
}
.banner {
  height: 50vh;
  min-height: 500px;
}
.banner-content {
  padding: 0 0 50px 0;
}
.banner-content h1 {
  font-size: 3em;
}
h2 {
  font-size: 2.3em;
}
.page-flex {
  gap: 10px;
}
.page-flex li a {
  font-size: 1em;
}
.home-solution {
    padding: 50px 0;
}
.common-sec .flex {
  
    gap: 10px;
}
.right-common {
  width: 90%;
}
.banner.second-image {
    height: 60vh;
    min-height: 600px;
	margin: 0 0 0 0;
}
	.step-wrapper {
    margin: 30px 0;
}
.second-image h3 {
  font-size: 3em;
  max-width: 90%;
    margin: 0 auto;
}
.why-choose {
    padding: 50px 0;
}
.why-choose-des {
  grid-template-columns: 1fr;
  gap: 70px;
}
.acc-item h4 {
  font-size: 1.5em;
  padding: 0 5% 0 0;
}
.icon {
  width: 15px;
    height: 15px;
}
.acc-item {
    margin: 0 0 0px 0;
}
.image img {
  height: 400px;
}
.two-grid-layout {
  grid-template-columns: 1fr;
}
.grid-lay-image img {
  height: 300px;
}
.three-layout-sec {
  grid-template-columns: 1fr;
}
.common-grid-img img {
  height: 200px;
}
.common-grid-sec {
  margin: 30px 0 0 0;
}
.iso img {
    max-width: 50px;
}
.inner .inner-banner {
  padding: 150px 0 50px 0;
}
.common-grid-content h3 {
  max-width: 400px;
}
.p-100 {
    padding: 50px 0;
}
.iso-badge {
  display: none;
}
h2.cmn-head {
  font-size: 1.5em;
}
	.logo img {
    max-width: 150px;
}
.about-wrapper {
  grid-template-columns: 1fr;
}
.about-image img {
  height: 250px;
}
.right-common p {
  margin: 0 0 0 0;
}
.about-content p {
    max-width: 100%;
    padding: 0 0 20px 0;
}
.team-section {
  margin: 50px 0;
  padding: 50px 0;
}
.team-card img {
  height: 200px;
}
.mv-grid {
  grid-template-columns: 1fr;
    gap: 20px;
}
.mv-grid-layout img {
    max-width: 40px;
}
.dots {
    margin: 30px 0 0 0;
}
.inner .inner-banner {
  margin: 0 0 0 0;
}
.treatment .flex {
  flex-wrap: wrap;
  gap: 10px;
}
.treatment .second-image h3 {
  max-width: 100%;
}
.step-circle {
  display: none;
}
.right-common-sec {
  grid-template-columns: 1fr;
}
.right-common-sec-img img {
  height: 200px;
}
.right-common-sec-img {
    margin: 20px 0 0 0;
}
.detail-second-set p {
    padding: 10px 0;
}
.contact-box {
  margin: 50px 0 0 0;
}
.inspection-form {
    background: var(--maincolor);
    padding: 0 30px;
    border-radius: var(--sm-radius);
    margin: 0 0 0 0;
}
}
@media screen and (min-width: 684px) and (max-width: 1024px) {
   body {
    font-size: 85%;
  }
    .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .iso-badge {
 
    top: -15px;
  }
    .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reach-out {
    display: none;
  }
  .right-common {
    width: 90%;
}
.why-choose-des {
  grid-template-columns: 1fr;
    gap: 50px;
}
.footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .inner .inner-banner {
      margin: 0 0 0 0;
    }
    .success-flex {
      flex-wrap: wrap;
    }
}
.right-common p strong {
    font-size: 1.5em;
    font-weight: 200;
    line-height: 1.2;
    margin: 0 0 10px 0;
    display: block;
}
.right-common ul li {
    font-size: 1.5em;
    color: var(--textbasecolortwo);
    font-weight: 300;
    list-style: none;
}
.right-common ul {
    margin: 0 0 0 20px;
}
.wa-floating{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    animation: waPulse 2s infinite;
    transition: all .3s ease;
}

.wa-floating img{
    width: 35px;
    height: 35px;
}

.wa-floating:hover{
    transform: translateY(-5px) scale(1.08);
}

@keyframes waPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){
    .wa-floating{
        width:55px;
        height:55px;
        right:15px;
        bottom:15px;
    }

    .wa-floating img{
        width:30px;
        height:30px;
    }
}
.pest-calculator-wrap h2 {
    font-size: 1.5em;
    font-weight: 500;
    
}
.pest-calculator-wrap .field-group label {
   color: var(--textbasecolortwo);
    text-align: left;
	font-family: var(--font-one);
}
.pest-calculator-wrap .form-box {
	margin: 20px 0 0 0;
}
.left-common img {
    mix-blend-mode: darken;
}

/* MOBILE */
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }
  .logo { 
          min-width:150px;
    flex: 1;
    padding:0;
}
.nav-container {
    padding: 10px 15px;
}
 
  /* SIDEMENU */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    padding-top: 80px;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  /* ACCORDION */
  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .toggle-icon {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
  }

  .dropdown.open > .menu-item .toggle-icon,
  .dropdown-sub.open > .menu-item .toggle-icon {
    transform: rotate(62deg);
  }

  /* MOBILE SUBMENU */
  .submenu,
  .sub-submenu {
    position: static;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.open > .submenu {
    display: block;
  }

  .dropdown-sub.open > .sub-submenu {
    display: block;
  }
	.treatment.second-image h3 {
    width: 100%;
    position: relative;
    z-index: 2;
    margin: inherit;
}
.step-wrapper {
    margin: 30px 0;
}
  .nav-links li {
    width: 100%;
	  display: block;
  }
	.logo {
		padding: 0 0 0 0;
	}
.dropdown-sub .toggle-icon {
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    top: 14px;
    right: 60px;
}
  .nav-links a {
    display: block;
    width: 100%;
	  font-size: 1.5em;
	  position: relative;
  }
	.parallax-bg {
		background: url(../img/home-banner.jpg) 70% 0 / cover no-repeat!important;
	}

}

.mv {
    margin: 100px 0 0 0;
}

.why-choose-des.accordian-sec {
	margin: 0 0 0 0;
}
.why-choose-des.accordian-sec .image img {
	height: 650px;
}

.page-template-premium-care-program .list-section-start {
    padding: 0 0 50px 0;
}

.service-card a {
    display: block; 
    padding: 30px;
}
