@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px "Montserrat", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #94a965;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  line-height: 25px;
  font-size: 14px;
}

/***** Font Files *****/

@font-face {
  font-family: "AmpleSoftPro";
  src: url(../fonts/AmpleSoftPro-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "AmpleSoftPro-Regular";
  src: url(../fonts/AmpleSoftPro-Regular.ttf.);
  font-weight: 400;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8 {
  padding-top: 80px;
}

.pb_8 {
  padding-bottom: 80px;
}

.py_8 {
  padding: 80px 0px;
}

.theme_btn {
  border: unset;
  border-radius: inherit;
  color: #ffffff;
  z-index: 1;
  background: #94a965;
  position: relative;
  font-size: 15px;
  transition: all 250ms;
  text-transform: capitalize;
  width: fit-content;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 0;
  border-radius: 6px;
}

.theme_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #1b230c;
  z-index: -1;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  border-radius: 7px;
}

.theme_btn:hover {
  color: #fff;
}

.theme_btn:hover::before {
  width: 100%;
}

.theme_btn span {
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  box-shadow: 0 0 10px #ccc;
  border-radius: 7px;
}

.theme_btn:hover img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(71%) saturate(766%) hue-rotate(169deg) brightness(95%) contrast(98%);
}

.theme_btn img {
  width: auto;
  transition: 0.5s;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-size: 23px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 17px;
}

h2 {
  font-family: "AmpleSoftPro";
  font-size: 61px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 30px;
}

h3 {
  font-family: "AmpleSoftPro";
  font-size: 30px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 28px;
}

h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 10px 60px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 7px;
}

.menuSec img {
  margin: 0;
  top: -29px;
}

.menuSec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;
}

.menuSec ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  position: relative;
}

.menuSec li:hover ul {
  opacity: 1;
  visibility: visible;
}

.menuSec ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #94a965;
}

.menuSec li>ul {
  position: absolute;
  z-index: 0;
  background-color: #fff;
  left: 0;
  width: 240px;
  text-align: left;
  opacity: 0;
  transition: 0.2s ease-in-out;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
  box-shadow: 0 0 10px #ccc;
  column-count: 2;
  display: flex;
  padding: 10px 0;
  visibility: hidden;
  top: 60px;
}

.menuSec li:hover ul {
  transition: 0.2s ease-in-out;
  top: 60px;
  z-index: 999;
}

.menuSec li>ul:after {
  position: absolute;
  content: "";
  background: #606060;
  width: 20px;
  height: 20px;
  top: -20px;
  left: 10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 999;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  /* color: #fff !important; */
  font-size: 13px;
  line-height: 20px;
  width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #848484;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
  width: 100%;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

/* Tab slider fix  */

.tab_sec .tab-pane {
  display: block;
  border: 0;
  height: 0;
}

.tab_sec .tab-pane.active {
  display: block !important;
  height: auto;
}

/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

/*banner css end*/

.blog_sec {
  padding: 5% 0;
}

/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
  background: #242889;
  color: #fff;
}

.tab_sec .nav-tabs .nav-link {
  background: #ccc;
  border-radius: 50px;
  color: #000;
  padding: 7px 28px;
}

.tab_sec .nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Tabs  */
/* Home */
header {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 99;
  top: 40px;
}

.logo a img {
  position: absolute;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

img.img-fluid {
  width: 100%;
}

section.banner {
  position: relative;
  z-index: 0;
  height: 900px;
  background-image: url(../images/banner2.png);
  background-size: cover;
  background-position: right;
  background-color: #2a341b;
}

section.banner:before {
  position: absolute;
  content: "";
  background: #2a341b;
  z-index: -1;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: 0;
  border-top: 1px solid #ffffff5c;
}

.ban-wrap p {
  width: 80%;
  color: #fff;
  margin-bottom: 30px;
}

.ban-wrap h2 {
  color: #fff;
}

.ban-box:before {
  position: absolute;
  content: "";
  background: #94a965;
  width: 275%;
  left: -100vw;
  height: 1px;
  top: 200px;
}

.ban-box:after {
  position: absolute;
  content: "";
  background: #94a965;
  width: 20px;
  height: 20px;
  top: 192px;
  border-radius: 50%;
  right: 23%;
}

.banner .banner_bottom>.slide_counter>h2 {
  display: flex;
  gap: 3px;
  align-items: center;
  line-height: 40px;
  font-weight: 400;
  font-size: 40px;
  margin: 0;
  justify-content: space-between;
}

.banner .banner_bottom>.slide_counter>h2>span.end_number {
  font-size: 28px;
  color: #ffffff73;
  letter-spacing: 1px;
}

.banner .banner_bottom>.slide_counter>h2>span.start_number {
  font-size: 34px;
  color: #fff;
  letter-spacing: 2px;
}

.banner .slick-prev:before {
  display: none;
}

.banner .slick-next:before {
  display: none;
}

.banner .slick-prev {
  display: none;
}

.banner .slick-next {
  display: none;
}

.banner .banner_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 93%;
  left: 3%;
  z-index: 99;
  bottom: 25px;
  margin: 0 auto;
}

.banner .banner_bottom>.slide_arrows {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  margin: 0;
  width: 10%;
  left: 2%;
}

ul.slide_arrows li img:hover {
  cursor: pointer;
}

.slide_counter {
  width: 22%;
}

.banner .banner_bottom>.slide_arrows li {
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  transition: 0.5s;
}

.banner .banner_bottom>.slide_arrows li:hover {
  background: #94a965;
}

.banner .banner_bottom>.slide_arrows li:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(149deg) brightness(103%) contrast(105%);
}

.progress {
  display: block;
  height: 3px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  background-image: repeating-linear-gradient(360deg, #7c7c7c73, #7c7c7c73 100px);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
  position: absolute;
  left: 22%;
  width: 16%;
}

section.banner .container-fluid {
  padding: 0 6%;
  position: relative;
}

section.banner .row {
  align-items: center;
}

img.ban-2 {
  width: 320px;
  height: auto;
}

.ban-img {
  position: relative;
}

.main-silder-socail-link {
  /* position: absolute; */
  right: 22px;
  bottom: 0;
  z-index: 111;
}

.main-silder-socail-link ul {
  position: relative;
  width: fit-content;
  display: flex;
  gap: 20px;
  margin: 0;
}

.main-silder-socail-link ul:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100px;
  height: 1px;
  left: -120px;
  margin: 0 auto;
  top: 50%;
}

.main-silder-socail-link ul li a {
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.5s;
}

.main-silder-socail-link ul li a:hover {
  transition: 0.5s;
  transform: rotate(360deg);
  background: #2a341b;
  color: #fff;
}

.main_slider-follow-us h2 {
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
  letter-spacing: 2px;
  font-family: "Montserrat";
}

.main_slider-follow-us {
  width: fit-content;
}

.ban-box {
  margin-top: 260px;
  position: relative;
}

.banner-slider .slick-slide {
  margin-bottom: 13px;
  margin-left: 0;
}

.social-icons {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 140px;
  justify-content: right;
}

section.banner:after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 40%;
  height: 100px;
  right: 0;
  bottom: 0;
  background: #94a965;
}

.container-fluid {
  padding: 0 6%;
}

/* footer start */

footer.footer-sec {
  position: relative;
  padding: 60px 0 0;
  width: 100%;
  background: url(../images/aftr-bg.png);
  background-size: cover;
  background-color: #2a341b;
}

.footer-text.chg p {
  text-align: left;
  margin-top: 20px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

ul.footer-social-list li i:hover {
  background: #004aad;
  transition: 1s ease-in-out;
  color: #fff;
}

ul.footer-link li a {
  font-size: 16px;
  color: #fff;
  line-height: 40px;
  font-weight: 300;
  text-transform: capitalize;
  font-family: montserrat;
}

ul.footer-link-list li i {
  font-size: 22px;
  color: #94a965;
}

ul.footer-link-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-right: 15px;
  margin-bottom: 17px;
}

ul.footer-link-list li p {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

.footer-form {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  position: relative;
}

.footer-form input {
  width: 100%;
  height: 60px;
  padding: 15px;
  border: none;
  margin-bottom: 10px;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  border-radius: 10px;
}

.footer-text.chg {
  padding: 0;
  margin: 0;
  padding-top: 0;
}

.footer-text {
  padding-left: 25px;
}

section.bottom-nav {
  padding: 15px 0;
  text-transform: capitalize;
  margin-top: 30px;
  border-top: 1px solid #94a965;
}

section.bottom-nav p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  margin: 0;
  font-weight: 300;
}

.footer-text {
  position: relative;
}

ul.footer-link li {
  border-bottom: 1px solid transparent;
  width: 75%;
  transition: 1s ease-in-out;
}

ul.footer-link-list li {
  border-bottom: 1px solid #ffffff2b;
  padding-bottom: 20px;
  transition: 1s ease-in-out;
  width: fit-content;
}

.footer-text ul.hdr-top-right-list li a:hover {
  transition: 0.3s ease-in-out;
  background-color: #1eb8d1;
  border: 1px solid #1eb8d1;
}

ul.hdr-top-right-list li a:hover i {
  transition: 0.3s ease-in-out;
  color: #fff;
}

ul.hdr-top-right-list li a i {
  font-size: 20px;
}

.footer-text h5 {
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0 0 30px 0;
  font-size: 30px;
  font-family: "AmpleSoftPro";
}

.footr-btn button {
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 15px 25px;
  border-radius: 10px;
  background: #94a965;
  gap: 7px;
  font-family: montserrat;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  border: 0;
}

.footer-text p {
  color: #fff;
  font-size: 13px;
}

footer.footer-sec .main-silder-socail-link ul:before {
  display: none;
}

.footr-btn button:hover {
  background: #000;
}

ul.footer-link-list li:last-child {
  border: 0;
}

/* footer end */

/*Gallery*/

.gall-img {
  position: relative;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gall-img img {
  width: 100%;
}

img.img-gal5 {
  height: 554px;
  border-radius: 30px;
}

img.img-gal6 {
  height: 267px;
  border-radius: 30px;
}

img.img-gal8 {
  height: 270px;
  border-radius: 30px;
}

.gall-img img {
  object-fit: cover;
}

.gall-img:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 0%;
  background: #94a965b8;
  transition: 0.6s;
  border-radius: 20px;
}

.gall-img:hover.gall-img:before {
  height: 90%;
}

.srch-icn {
  position: absolute;
  display: none;
}

.srch-icn i {
  font-size: 60px;
  color: #ffffff;
}

.gall-img:hover .srch-icn {
  display: block;
  text-align: center;
  padding: 10px;
}

.top-gall {
  text-align: center;
}

.gall-img h2 {
  color: #fff;
  font-size: 30px;
}

.srch-icn p {
  font-size: 17px;
  width: 85%;
  margin: 0 auto;
  color: #fff;
  line-height: 25px;
}

.pb_1 {
  padding-bottom: 15px;
}

section.project {
  padding: 80px 0;
  position: relative;
}

.top-heding {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.top-heding h2 {
  color: #000;
}

.olive {
  color: #94a965;
}

/*Gallery end*/
/* Testimonial Section Start */

.testimonial-sec {
  padding: 80px 0;
  background: #f8f8f8;
  /* margin-top: 70px; */
  border-top: 5px solid #94a965;
  border-bottom: 5px solid #94a965;
}

.qouma img {
  width: auto;
  filter: invert(1);
}

ul.test-profile img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 0;
  object-fit: cover;
}

.testi-text {
  background: #94a965;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  border: 1px solid #94a965;
}

.testi-text p {
  line-height: 32px;
  font-size: 18px;
  margin: 0;
  color: #1b230c;
}

.testi-text:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 50px;
  background: #94a965;
  left: 17%;
  bottom: -35px;
  clip-path: polygon(0% 0, 0 100%, 100% 0);
  z-index: -1;
}

.testi-head * {
  color: #fff;
}

ul.test-profile {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
  padding-left: 6%;
  margin-bottom: 0;
}

ul.test-profile h4 {
  font-size: 22px;
  color: #333333;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 3px;
}

ul.star {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

ul.star i {
  color: #ffd000;
}

.testi-slider .slick-slide {
  opacity: 1;
}

.testi-slider .slick-prev:before {
  position: absolute;
  content: "\f104";
  width: 50px;
  height: 50px;
  background: #94a965;
  border: 2px solid #fff;
  border-radius: 50px;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 2;
  font-size: 24px;
  font-family: "FontAwesome";
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.testi-slider .slick-next:before {
  position: absolute;
  content: "\f105";
  width: 50px;
  height: 50px;
  background: #94a965;
  border-radius: 50px;
  top: 0;
  left: 0;
  color: #fff;
  border: 2px solid #ffffff;
  z-index: 2;
  font-size: 24px;
  font-family: "FontAwesome";
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.testi-slider .slick-prev {
  left: -35px;
  z-index: 9;
}

.testi-slider .slick-next {
  right: 0;
  z-index: 9;
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 30%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.testi-box {
  width: 96%;
  margin: 0 auto;
}

section.testimonial-sec .row {
  align-items: center;
}

section.testimonial-sec .slick-prev:hover:before,
section.testimonial-sec .slick-prev:focus:before,
section.testimonial-sec .slick-next:hover:before,
section.testimonial-sec .slick-next:focus:before {
  background-color: #7c7c7c;
}

.testi-slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testi-text {
  background: #fff;
  border: 1px solid #94a965;
}

.testi-slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testi-text:after {
  background: #94a965;
}

.testi-slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testi-text .qouma img {
  filter: invert(1);
}

.testi-slider .slick-slide.slick-current.slick-active+.slick-slide.slick-active .testi-text p {
  color: #000;
}

/* Testimonial Section End */

/*About Us Start*/

.about-us-text {
  margin-left: 20px;
}

.about-us-one-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-us-one-box-heading h2 span {
  display: block;
}

.about-us-one-box-heading h2 {
  font-size: 45px;
  margin-bottom: 0;
  color: #1b230c;
  line-height: 1.1;
}

.about-us-one-box-heading {
  left: 30px;
  position: absolute;
}

.about-us-sec {
  padding: 100px 0;
}

.about-us-text h2 {
  font-size: 65px;
  color: #94a965;
  margin-bottom: 8px;
}

.about-us-text h2 span {
  color: #000;
}

.about-us-text p {
  color: #585858;
  font-size: 14px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-us-button {
  margin-top: 25px;
}

.about-us-three-box img {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  object-fit: cover;
}

.about-us-three-box {
  margin-top: 20px;
}

.about-us-two-box img {
  width: 100%;
  height: 277px;
  border-radius: 15px;
  object-fit: cover;
}

.about-us-one-box img {
  width: 100%;
  height: 277px;
  border-radius: 15px;
  object-fit: cover;
}

/*About Us Ends*/

/*Our Services Start*/

.about-us-one-box:before {
  content: "";
  position: absolute;
  background: #f5f5dcb8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.about-us-one-box-heading h2 label {
  font-size: 65px;
}

.our-services-sec {
  padding: 70px 0;
  border-top: 5px solid #94a965;
  border-bottom: 5px solid #94a965;
  background: #F5F5DC;
  background: transparent;
}

.our-services-box-row:last-child {
  border: 0;
}

.our-services-box-row:hover {
  border-bottom: 2px solid #94a965;
}

.our-services-box-row:hover .our-services-box-images img {
  filter: drop-shadow(2px 4px 6px #94a965);
}

.our-services-box-row:hover .our-services-box-button a {
  background: #000;
}

.our-services-box-row:hover .our-services-box-button a img {
  filter: drop-shadow(2px 4px 6px black);
}

.our-services-heading h2 {
  margin-bottom: 0;
  font-size: 65px;
}

.our-services-heading h2 {
  color: #000000;
}

.our-services-heading h2 {
  color: #94a965;
  line-height: 1.1;
}

.our-services-heading h2 span {
  color: #1b230c;
}

.our-services-button a {
  margin: 0 0 0 auto;
}

.our-services-text p {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 28px;
  font-weight: 600;
}

.our-services-box-row {
  padding: 40px 0;
  border-bottom: 1px solid #c6c6c6;
}

.our-services-heading-row {
  padding-bottom: 40px;
  border-bottom: 1px solid #c6c6c6;
}

.our-services-box-images img {
  width: 100%;
  height: 171px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.5s;
}

.our-services-box-text p {
  color: #636363;
  line-height: 25px;
  margin-bottom: 0;
  font-size: 16px;
  width: 95%;
}

.our-services-sec.inn-ser {
  background: #fff;
}

.our-services-box-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #000000;
}

.our-services-box-text span {
  font-size: 36px;
  font-weight: 700;
  font-family: "AmpleSoftPro";
  color: #94a965;
  margin-bottom: 15px;
  display: block;
}

.our-services-box-text {
  margin-left: 30px;
}

.our-services-box-button a {
  background: #fff;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  box-shadow: 0 0 10px #ccc;
  border-radius: 7px;
  transition: 0.5s;
  margin: 0 0 0 auto;
}

/*Our Services Ends*/

/*Why Choose Us Start*/

.why-choose-us-sec {
  padding: 100px 0;
}

.why-choose-us-images img {
  width: 100%;
  height: 672px;
  object-fit: cover;
  border-radius: 15px;
}

.why-choose-us-text p {
  font-size: 14px;
  line-height: 25px;
  color: #585858;
  font-weight: 500;
  margin-bottom: 12px;
}

.why-choose-us-text h2 {
  margin-bottom: 20px;
  color: #94a965;
}

.why-choose-us-text h2 span {
  color: #000;
}

.why-choose-us-text {
  background: #ffff;
  border-right: none;
  width: 120%;
  position: relative;
  padding: 35px 35px;
  border-radius: 15px;
  margin-left: 30px;
}

.why-choose-us-text:before {
  content: "";
  position: absolute;
  background: #94a965;
  width: 50%;
  height: 113%;
  z-index: -1;
  left: -35px;
  top: -35px;
  border-radius: 15px;
}

/*Why Choose Us Ends*/

/*Professional Cleaning Start*/

.professional-cleaning-sec {
  background-image: url(../images/proff-bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 115px 0;
  background-color: #2a341b;
}

.professional-cleaning-heading h2 {
  font-size: 63px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.1;
}

.professional-cleaning-heading p {
  color: #a0a599;
  font-size: 14px;
  line-height: 25px;
}

.professional-cleaning-heading h2 span {
  display: block;
}

.professional-cleaning-button-row {
  margin-top: 25px;
}

.professional-cleaning-call-us ul li h2 {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 500;
}

.professional-cleaning-button-row {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.professional-cleaning-call-us ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}

.professional-cleaning-call-us ul li i {
  background: #94a965;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
}

.professional-cleaning-call-us ul li a {
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 500;
}

.professional-cleaning-video-play-btn ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
}

.professional-cleaning-video-play-btn ul li i {
  background: #94a965;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  transform: rotate(-10deg);
}

.professional-cleaning-video-play-btn ul li span {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

/*Professional Cleaning Ends*/

/*Get Enquries Now Start*/

.how-do-we-clean-sec {
  padding: 80px 0 0;
}

.how-do-we-clean-form {
  background: #94a965;
  border-radius: 15px;
  padding: 30px 35px;
}

.how-do-we-clean-form h2 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
.how-do-we-clean-form b i {
    color: #fff;
}
.how-do-we-clean-form input {
  width: 100%;
  height: 58px;
  background: #a9ba84;
  border: 2px solid #edf1e5;
  border-radius: 8px;
  padding: 0 15px;
  color: #f7f8f3;
  font-size: 15px;
}

.how-do-we-clean-form select {
  width: 100%;
  height: 58px;
  background: #a9ba84;
  border: 2px solid #edf1e5;
  border-radius: 8px;
  padding: 0 15px;
  color: #f7f8f3;
  font-size: 15px;
}

.how-do-we-clean-form input::placeholder {
  color: #f7f8f3;
  font-size: 15px;
}

.how-do-we-clean-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.how-do-we-clean-input-icon {
  position: absolute;
  right: 18px;
  pointer-events: none;
}

.how-do-we-clean-input-icon i {
  color: #f3f5ed;
}

.how-do-we-clean-form textarea {
  width: 100%;
  height: 170px;
  background: #a9ba84;
  border: 2px solid #edf1e5;
  border-radius: 8px;
  padding: 15px 15px;
  color: #f7f8f3;
  font-size: 15px;
  resize: none;
}

.how-do-we-clean-form button {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  color: #94a965;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

.how-do-we-clean-form textarea::placeholder {
  color: #f7f8f3;
  font-size: 15px;
}

.how-do-we-clean-text p {
  font-size: 13px;
  line-height: 23px;
  color: #585858;
  font-weight: 500;
  margin-bottom: 12px;
}

.how-do-we-clean-text {
  margin-left: 20px;
}

.how-do-we-clean-text h2 {
  margin-bottom: 15px;
  font-size: 65px;
  color: #94a965;
}

.how-do-we-clean-text h2 span {
  color: #000;
}

/*Get Enquries Now Ends*/

/* end */
/* Immer Pages */

section.banner.inner-banner::before {
  display: none;
}

section.banner.inner-banner:after {
  display: none;
}

section.banner.inner-banner {
  height: 580px;
}

section.banner.inner-banner .ban-wrap {
  text-align: center;
  position: relative;
  width: 80%;
  margin: 0 auto;
}

section.banner.inner-banner .ban-wrap h2 {
  color: #fff;
}

section.banner.inner-banner .ban-wrap h1 {
  font-family: "AmpleSoftPro";
  font-size: 23px;
}

section.banner.inner-banner .row {
  justify-content: center;
}

section.banner.inner-banner .ban-wrap p {
  width: 100%;
}

section.banner.inner-banner .ban-box:before {
  width: 70%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 130px;
}

section.banner.inner-banner .ban-box:after {
  right: 13%;
  top: 120px;
}

section.banner.inner-banner .ban-wrap:before {
  position: absolute;
  content: "";
  background: #94a965;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 26px;
  top: 120px;
}

section.miss-viss {
  padding: 80px 0;
  background: #f8f8f8;
  border-top: 4px solid #94a965;
  border-bottom: 4px solid #94a965;
}

.miss-img img {
  width: 100%;
  border-radius: 30px;
}

/*contact page start*/

section.contact-pg {
  padding: 100px 0;
}

.cont-info-bx-in ul li h5:first-child {
  width: 30%;
}

.cont-info-bx-in ul li p:last-child {
  width: 70%;
  font-size: 11px;
}

.contact-bx-2-inn ul li:last-child {
  border: 0;
  margin: 0;
}

.cont-pg-txt h3 {
  font-size: 47px;

  line-height: 40px;

  margin-bottom: 22px;

  border-bottom: 1px solid #00000096;

  padding-bottom: 30px;

  /* width: 80%; */

  font-weight: 500;
}

.cont-pg-txt p {
  font-size: 14px;

  color: #1e1e1e;

  /* width: 61%; */

  margin-bottom: 40px;
}

.cont-pg-txt form input {
  width: 100%;

  padding: 15px;

  border: 1px solid #b2b2b2;

  border-radius: 5px;

  outline: none;

  margin-bottom: 30px;
}

.cont-pg-txt form textarea {
  width: 100%;

  padding: 15px;

  border: 1px solid #b2b2b2;

  border-radius: 5px;

  outline: none;

  height: 200px;

  resize: none;
  margin-bottom: 30px;

  text-transform: capitalize;
}

.cont-pg-txt {
  width: 85%;
}

.cont-pg-txt label {
  font-size: 15px;

  color: #000;

  margin-bottom: 10px;
}

.cont-info-bx-in h3 {
  font-size: 28px;

  color: #fff;

  font-weight: 500;

  padding-bottom: 19px;

  border-bottom: 1px solid #b2b2b2;

  margin-bottom: 30px;
}

.cont-info-bx-in ul li {
  display: flex;

  /* align-items: center; */

  gap: 6px;

  padding-bottom: 12px;
}

.cont-info-bx-in ul li h5 {
  font-size: 15px;

  color: #fff;

  margin: 0;
}

.cont-info-bx-in ul li p {
  font-size: 14px;

  margin: 0;

  color: #fff;

  line-height: 20px;
}

.cont-info-bx-in ul li a {
  font-size: 14px;

  margin: 0;

  color: #fff;
}

.cont-info-bx-in ul li p span {
  display: block;
}

.cont-info-bx-in {
  padding: 50px 20px;

  border-radius: 20px;

  border: 1px solid #b2b2b2;

  width: 80%;

  background: #94a965;
}

.cont-info-bx-in ul {
  margin: 0;
}

.contact-bx-2-inn h3 {
  font-size: 28px;

  color: #fff;

  font-weight: 500;

  padding-bottom: 19px;

  border-bottom: 1px solid #ffffff;

  margin-bottom: 30px;
}

.contact-bx-2-inn {
  padding: 50px 20px;

  border-radius: 20px;

  border: 1px solid #b2b2b2;

  width: 80%;

  margin-top: 40px;

  background: #94a965;
}

.contact-bx-2-inn ul li {
  display: flex;

  align-items: baseline;

  justify-content: space-between;

  border-bottom: 1px solid #fff;

  margin-bottom: 10px;
}

.contact-bx-2-inn ul li h6 {
  font-size: 14px;

  color: #fff;

  margin-bottom: 10px;
}

.contact-bx-2-inn ul li span {
  font-size: 14px;

  color: #fff;
}

.contact-bx-2-inn ul li p {
  font-size: 14px;

  color: #fff;

  padding: 8px 25px;

  background-color: #313b23;

  margin: 0;
}

.contact-bx-2-inn ul {
  margin-bottom: 0;
}

section.map {
  margin-bottom: -9px;
}

section.map iframe {
  width: 100%;
  height: 500px;
}

/*contact page end*/
section.booking-wrap {
  padding: 100px 0;
}

.booking-in input {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #80808080;
  background: transparent;
  height: 55px;
  padding: 15px;
  color: #ababab;
  border-radius: 10px;
  font-size: 13px;
  text-transform: unset;
}

.booking-in input::placeholder {
  color: #ababab;
  font-weight: 500;
}

.booking-in textarea::placeholder {
  color: #ababab;
  font-weight: 500;
}

.booking-in textarea {
  width: 100%;
  margin-bottom: 1%;
  border: 1px solid #80808080;
  padding: 15px 10px;
  height: 150px;
  background: transparent;
  border-radius: 10px;
  font-size: 13px;
}

.booking-in input::placeholder,
.booking-in textarea::placeholder {
  text-transform: uppercase;
}

.booking-btn {
  text-align: center;
}

section.booking-wrap button.theme-btn {
  border: unset;
}

.apointment-head {
  text-align: center;
  margin-bottom: 3%;
}

.apointment-head h4 {
  font-size: 60px;
  color: #000;
  margin-bottom: 20px;
  font-family: "AmpleSoftPro";
}

.apointment-head p {
  width: 55%;
  margin: 0 auto;
  font-size: 14px;
  color: #636363;
  letter-spacing: 1px;
}

.booking-in {
  position: relative;
  border-radius: 10px;
}

.booking-in i {
  position: absolute;
  right: 1px;
  width: 15%;
  height: 53px;
  display: inline-flex;
  color: white;
  align-items: center;
  justify-content: center;
  background: #94a965;
  font-size: 26px;
  top: 1px;
  pointer-events: none;
  border-radius: 6px;
}

.booking-in select {
  width: 100%;
  height: 55px;
  border: 1px solid #80808080;
  padding-left: 15px;
  color: #ababab;
  border-radius: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.booking-in .header-btn {
  margin: 0 auto;
  display: block;
  width: 20%;
}

/*appointment end*/
section.testimonial-sec.inn-testi .testi-box {
  background: #94a965;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  width: 100%;
}

section.testimonial-sec.inn-testi .qouma img {
  filter: unset;
  border-radius: 50%;
}

section.testimonial-sec.inn-testi .testi-text {
  border-bottom: 1px solid #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
}

section.testimonial-sec.inn-testi .testi-text p {
  font-size: 15px;
}

section.testimonial-sec.inn-testi .testi-box .d-flex {
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

section.testimonial-sec.inn-testi ul.test-profile {
  margin: 0;
  padding: 0;
}

section.testimonial-sec.inn-testi ul.test-profile img {
  width: 100px;
  height: 100px;
}

section.testimonial-sec.inn-testi ul.test-profile h4 {
  color: #000;
}

section.testimonial-sec.inn-testi {
  margin: 0;
  border: 0;
  background: transparent;
}

/* end */

/*------------------- service detail start  ------------------------ */

.svs_cate-bx {
  background: #94a965;
  border-radius: 14px;
}

.svs_cate-bx h4 {
  font-family: "AmpleSoftPro";
  font-weight: 400;
  font-size: 26px;
  padding-left: 10px;
}

.svs_cate-bx ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: "AmpleSoftPro";
  font-weight: 300;
  font-size: 16px;
  transition: 0.3s;
}

.svs_cate-bx ul li a i {
  font-size: 10px;
  transition: 0.4s;
}

.svs_cate-bx ul li a:hover {
  background: #fff;
  color: #94a965;
}

img.svs_iner_dt-img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.svs_detail-content h2 {
  font-size: 50px;
  line-height: 60px;
}

.svs_detail-content p {
  font-weight: 500;
}

.svs_detail-content h5 {
  color: #94a965;
}

img.cate_dt-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
  object-position: bottom;
}

img.sidebar-img-i {
  width: 50px;
  margin-bottom: 16px;
}

.sibebar-dt-bt {
  text-align: center;
}

.sibebar-dt-bt .theme_btn {
  margin: 18px auto 24px;
  border: 1px solid #fff;
}

.svs_detail-content {
  padding-right: 18px;
}

.addon-list ul li {
  list-style: none;
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 22px;
  position: relative;
  color: #000 !important;
}

section.gift-sec .professional-cleaning-sec {
  padding: 60px 0;
}

section.gift-sec h3 {
  font-size: 28px;
  line-height: 45px;
  color: #fff;
}

section.gift-sec p {
  font-size: 13px;
  line-height: 25px;
  color: #fff;
}

.addon-list ul li i {
  font-size: 10px;
  margin-right: 8px;
  color: #94a965;
}

.gift_sec-list {
  padding-left: 100px;
}

section.gift-sec {
  margin-top: 100px;
}

/*------------------service detail end  -----------------------------*/
.how-do-we-clean-sec.inner-how {
  padding: 0 0 80px;
}

.field label {
  display: block;
  color: #000;
  font-size: 14px;
  margin-bottom: 2px;
  width: fit-content;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #94a965;
  font-size: 13px;
  height: 50px;
}

.field {
  margin-bottom: 20px;
}

form#residentialForm, form#commercialForm {
  padding: 20px;
  border: 1px solid #ccc;
  outline: 10px solid #94a965;
  border-radius: 10px;
  width: 93%;
  margin-top: 30px;
}


.two-col {
  display: flex;
  gap: 1%;
}

.two-col .field {
  width: 49%;
}

.help {
  margin-bottom: 20px;
}

.note {
  color: #000;
  font-size: 9px;
}

.toggle input[type="radio"] {
  width: auto !important;
  height: auto !important;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 50px;
}

form#residentialForm button.theme_btn, form#commercialForm button.theme_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

form#residentialForm h2 , form#commercialForm h2 {
  font-size: 50px;
}

.custom-radio-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.custom-radio {
  position: relative;
  cursor: pointer;
}

.custom-radio input {
  display: none;
}

.custom-radio span {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #94a965;
  border-radius: 8px;
  font-size: 16px;
  color: #94a965;
  transition: 0.3s;
  user-select: none;
}

.custom-radio input:checked+span {
  background: #94a965;
  color: #fff;
  border-color: #94a965;
  box-shadow: 0 0 8px rgba(126, 87, 194, 0.4);
}
textarea#commercialDetails {
    height: 150px;
}
section.custom-adds {
    padding: 80px 0;
}

.cust-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
}
.addon-list ul {
    display: flex;
    flex-wrap: wrap;
}

.addon-list ul li {
    width: 50%;
}

/* fixed */
.insured-badge {
    position: fixed;
    top: 90vh;
    right: 20px;
    background: linear-gradient(135deg, #94a965, #2a341b);
    color: #fff;
    padding: 12px 22px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: glowEffect 1.8s infinite ease-in-out;
    z-index: 999999;
    font-family: 'AmpleSoftPro';
}

/* Pulse Animation */

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 5px #94a965, 0 0 10px #2a341b;
    }
    50% {
        box-shadow: 0 0 15px #2a341b, 0 0 25px #94a965;
    }
    100% {
        box-shadow: 0 0 5px #2a341b, 0 0 10px #2a341b;
    }
}
.close-btn {
    background: #fff;
    color: #94a965;
    font-size: 18px;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn:hover {
    background: #ddd;
}

/* end */


.custom-addons-section {
            background: #ffffff;
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            background: #ffffff;
            padding: 60px 40px 40px;
            text-align: center;
            position: relative;
            border-bottom: 3px solid #94a965;
        }

        .section-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #94a965;
            box-shadow: 0 0 20px rgba(148, 169, 101, 0.5);
        }

        .section-header h3 {
            color: #000000;
            font-size: 2.8rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
            letter-spacing: -0.5px;
        }

        .section-header .subtitle {
            color: #94a965;
            font-size: 1.2rem;
            margin-top: 15px;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .addon-grid {
            padding: 60px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            background: #ffffff;
        }

        .addon-item {
            background: linear-gradient(135deg, #94a965 0%, #7a8c4f 100%);
            border-radius: 15px;
            padding: 25px 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #94a965;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(148, 169, 101, 0.3);
        }

        .addon-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .addon-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: #000000;
            transition: height 0.4s ease;
        }

        .addon-item:hover::before {
            left: 100%;
        }

        .addon-item:hover::after {
            height: 100%;
        }

        .addon-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            border-color: #000000;
            background: linear-gradient(135deg, #7a8c4f 0%, #94a965 100%);
        }

        .addon-item i {
            color: #ffffff;
            font-size: 1.3rem;
            margin-right: 15px;
            transition: all 0.4s ease;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .addon-item:hover i {
            transform: translateX(8px) scale(1.1);
            color: #ffffff;
        }

        .addon-item span {
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: 500;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .special-item {
            background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
            border-color: #000000;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }

        .special-item:hover {
            background: linear-gradient(135deg, #2d2d2d 0%, #000000 100%);
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
            border-color: #94a965;
        }

        .special-item i {
            color: #94a965;
        }

        .special-item span {
            color: #ffffff;
            font-weight: 600;
        }

        .special-item::after {
            background: #94a965;
        }

        @media (max-width: 768px) {
            .section-header h3 {
                font-size: 2rem;
            }

            .addon-grid {
                padding: 30px 20px;
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
          

            .section-header {
                padding: 30px 20px;
            }

            .section-header h3 {
                font-size: 1.75rem;
            }
        }
        
        .desc p {
    color: #fff;
}