/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Florax - Gardening and Landscape HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Customer Review css
06. About Us css
07. Our Services css
08. Our Expertise css
09. Intro Video css
10. Why choose Us css
11. How It Work css
12. Our Project css
13. Our Testimonials css
14. Our FAQs css
15. Our Pricing css
16. Our Blog Post css
17. Footer css
18. About us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css
23. Page Project css
24. Project Single css
25. Page Pricing css
26. Page Team css
27. Page FAQs css
28. Contact us Page css
29. 404 Page css
30. responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #C7DC49;
  --secondary-color: #10551F;
  --white-color: #ffffff;
  --black-color: #000000;
  --light-gray: #F7F8ED;
  --text-green: #0C2F25;
  --red: #EF3232;

}






/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  background-color: var(--white-color);
  color: var(--text-color);
}

p {
  line-height: 1.8em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: #7bb32b;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
  margin: 0px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 0px;
  padding-left: 0px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 14px 35px 14px 25px;
  margin-right: 15px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white-color);
  background-image: url("../images/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
  transform: translate(50%, -50%);
  transition: all 0.3s ease-in-out;
}

.btn-default:hover::before {
  background-color: var(--secondary-color);
  right: -3px;
}

.btn-default.btn-highlighted {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn-default.btn-highlighted:before {
  background-color: #7bb32b;
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted:hover::before {
  background-color: var(--secondary-color);
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--secondary-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 1s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 120px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-row {
  margin-bottom: 60px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-title-content p {
  margin: 0;
}

.section-btn {
  text-align: end;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
}

.section-bg-title {
  position: absolute;
  top: -40px;
}



.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--secondary-color);
  padding-left: 45px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg") no-repeat;
  background-position: left center;
  background-size: cover;
  width: 34px;
  height: 34px;
}

.section-title h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 39px;
  font-weight: 700;
  margin-bottom: 0;
  z-index: 2;
}

.section-title h1 span,
.section-title h2 span {
  font-weight: 400;
}

.section-title p {
  margin-top: 5px;
  margin-bottom: 0;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}














/************************************/
/**** 	 Header css		 ****/
/************************************/

header.main-header {
  position: relative;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  backdrop-filter: blur(3px);
  top: 0;
  z-index: 100;
  padding: 0px 4%;

}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background-color: var(--primary-color);
}

.navbar {
  padding: 0;
  align-items: center;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}


.navbar-brand img {
  width: 262px;
  height: auto;
}



.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 10px;
  position: relative;

}

.main-menu ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-green);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--primary-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--light-gray);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: "\f105";
  float: right;
}

.main-menu ul li.submenu:first-child ul ul {
  width: 250px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--text-green);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.contact-now-box {
  display: flex;
  align-items: center;
}

.contact-now-box .nav-call {
  border-radius: 10px;
  background-color: var(--red);
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-now-box .nav-call:hover {
  background-color: #d62c2c;
  /* fallback darker red */
  transform: scale(1.05);
  /* subtle zoom effect */
}

.contact-now-box .nav-call i {
  color: var(--white-color);
  margin-right: 5px;
}

.contact-now-box .nav-call a {
  color: var(--white-color);
  font-size: 14px;
}



.contact-now-box-content {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.contact-now-box-content:hover {
  transform: scale(1.03);
}

.contact-now-box-content a {
  color: var(--white-color);
  margin-bottom: 5px;
  font-size: 14px;

}

.contact-now-box-content h3 {
  font-size: 18px;
  color: var(--black-color);
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--secondary-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 10px;
  color: var(--secondary-color);
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}










/* side bar */

.slicknav_menu {
  position: absolute;
  width: 100%;
  background: var(--white-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  top: -15px;
  box-shadow: rgba(0, 0, 0, 0.55) 0px 25px 20px -25px;
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--text-green);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  color: var(--secondary-color);
  position: absolute;
  right: 20px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: rotate(-540deg);
  color: var(--secondary-color);
}




@media (max-width:1180.9px) {


  .main-menu ul li a {
    padding: 10px;
  }

  .navbar-brand img {
    width: 180px;
    height: auto;
  }

  .contact-now-box .nav-call {
    padding: 10px 10px;
  }

  .contact-now-box-content {
    padding: 10px 17px;
  }

  .contact-now-box .nav-call {
    margin-right: 10px;
  }

}




@media only screen and (max-width: 991.9px) {

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }
}












/************************************/
/***       Hero css	      ***/
/************************************/



.hero {
  position: relative;
  margin: 0 30px;
  padding: 60px;
  height: 75vh;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white-color);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary-color) url(https://evergreen.vamtam.com/wp-content/uploads/2025/07/GettyImages-2179172338-1.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  will-change: transform;
  z-index: 0;
  border-radius: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Optional overlay */
  border-radius: 20px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}



/* .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
} */


.hero-h {
  font-size: clamp(2rem, 4vw, 5rem);
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white-color);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-btn {
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-green);
}

.hero-btn-explore,
.hero-btn-quote {
  transition: transform 0.3s ease-in-out;
}

.hero-btn-explore {
  background-color: #ef3232;
}

.hero-btn-quote {
  background-color: var(--secondary-color);
}





/* ---------- RESPONSIVE MEDIA QUERIES ---------- */

/* Tablet (<= 992px) */
@media (max-width: 992px) {
  .hero {
    height: auto;
  }

  .hero-content {
    width: 750px;
    max-width: 100%;
    padding: 20px;

  }

  .hero-text {
    width: 100%;
  }


  .hero-h {
    font-size: clamp(1.8rem, 4vw, 4rem);
    padding-right: 20px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: row;
  }
}



/* Mobile (<= 768px) */
@media (max-width: 768px) {

  .hero {
    height: auto;
    margin: 0px 20px;
  }


  .hero-content {
    padding: 20px;
  }

  .hero-text {
    width: 100%;
  }


  .hero-h {
    min-width: auto;
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 20px;
  }

  .hero-btn {
    width: fit-content;
    text-align: center;
  }
}




@media (max-width: 575px) {
  .hero {
    padding: 20px;
    text-align: center;
    margin: 0px 10px;

  }

  .hero-content {
    text-align: center;
    padding: 20px 0px;
  }

  .hero-h {
    font-size: 2rem;
    text-align: left;
    padding: 0px;
  }

  .hero-text {
    width: 100%;
    padding: 0px;
  }


  .hero-buttons {
    gap: 10px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 300;
  }

}




@media (max-width: 468px) {
  .hero {
    padding: 20px;
    text-align: center;
    margin: 0px 10px;

  }


  .hero-h {
    font-size: 2rem;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }


}















/************************************/
/***   05. Customer Review css	  ***/
/************************************/

.customer-review {
  position: relative;
  background-color: var(--white-color);
  padding: 40px 30px;
}

.customer-review-container {
  border-bottom: 1px solid rgb(231, 225, 225);
  text-align: center;
  padding-bottom: 10px;

}

.banner-row {
  margin: 0px;
  padding: 0px;
}

.happy-customer {
  display: inline-flex;
  margin: 0px;
  align-items: center;
}

.happy-customer img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}


.happy-customer p {
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  color: var(--text-color);
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}





@media (max-width:1136px) {

  .customer-review {
    padding: 40px 20px;
  }

  .customer-review-container {
    text-align: center;
    align-items: center;
    padding: 0px 15px;
  }

  .happy-customer {
    display: inline-flex;
    align-items: center;
  }

  .happy-customer img {
    width: 25px;
    height: 25px;
  }


  .happy-customer p {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--text-color);
  }


}




@media (max-width:768px) {

  .customer-review-container {
    text-align: center;
    align-items: center;
    padding: 0px 15px;
  }

  .happy-customer {
    display: inline-flex;
    align-items: center;
  }


  .happy-customer img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .happy-customer p {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--text-color);
  }
}



@media (max-width:575px) {

  .customer-review-container {
    text-align: left;
    padding: 0px 15px;

  }

  .happy-customer {
    display: inline-flex;
    align-items: left;
  }

  .happy-customer p {
    text-align: left;
    font-size: 12px;
  }

}




@media (max-width:468px) {

  .customer-review-container {
    text-align: left;
    padding: 0px 15px;
  }

  .banner-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .happy-customer {
    display: inline-flex;
    align-items: center;
    max-width: 420px;
    min-width: 350px;
    text-align: center;

  }

  .happy-customer img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }


  .happy-customer p {
    text-align: left;
    font-size: 16px;
  }

}












.learn-more-btn {
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white-color);
  padding-right: 35px;
  transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover {
  color: var(--secondary-color);
}

.learn-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--white-color) url("../images/arrow-green.svg") no-repeat;
  background-position: center center;
  background-size: 16px auto;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover::after {
  background: var(--secondary-color) url("../images/arrow-green.svg") no-repeat;
  background-position: center center;
  background-size: 16px auto;
  right: -lid red;
}





















/************************************/
/***        About Us css	      ***/
/************************************/
.about-us {
  width: 100%;
  padding: 80px 30px;
}

.about-container {
  width: 100%;
}

.about-row {
  align-items: center;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.about-img-box {
  padding: 5px 10px;


}

.about-img {
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}



/* About page img styling  */
.about-page-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}








.section-title {
  margin-bottom: 10px;
}


.section-title p {
  margin-bottom: 10px;
  font-weight: 400;
}




.about-box {
  padding: 20px;
  padding-left: 40px;
}


.about-us-body {
  margin: 15px 0px;
}

.about-us-body ul {
  padding-left: 15px;
}

.about-us-body ul li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-green);
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-left: 30px;
  list-style: none;
  align-items: center;

}

.about-us-body ul li:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/icon/shape\ \(1\).png');
  background-size: cover;
  position: absolute;
  top: 3px;
  left: 0;
}

.about-award {
  display: flex;
  align-items: center;
}


.award-img img {
  width: 100px;
  object-fit: cover;
  object-position: center;
}

.award-text p {
  margin: 0px;
  padding-left: 10px;
  font-size: 20px;
  width: 250px;
  color: var(--secondary-color);
  font-weight: 600;
}



@media (max-width:991.9px) {

  .about-box {
    padding: 20px;
  }

  .about-us {
    width: 100%;
    padding: 80px 30px;

  }
}


@media (max-width:768px) {

  .about-us {
    width: 100%;
    padding: 60px 30px;
  }

  .about-us-body ul li {
    font-size: 16px;
  }

}


@media (max-width:575px) {

  .about-us {
    width: 100%;
    padding: 40px 20px;

  }
}













/************************************/
/***     Our Services css	  ***/
/************************************/

.our-services {
  position: relative;
  padding: 0px 30px;
}


.service-container {
  width: 100%;
  padding: 80px 50px;
  border-radius: 40px;
  background-color: var(--light-gray);
}



.our-service-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;

}

.service-image {
  border-radius: 40px;
  overflow: hidden;
  margin: 7.5px;
}

.service-image a {
  position: relative;
  display: block;
}

.service-image a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 67.85%,
      rgba(0, 0, 0, 0.6) 100%);
  width: 100%;
  height: 100%;
  border-radius: 40px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}


.service-item:hover .service-image a::after {
  background: var(--primary-color);
  opacity: 80%;
}

.service-image img {
  aspect-ratio: 1 / 1.19;
  object-fit: cover;
  border-radius: 40px;
  transition: all 0.5s ease-in-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-title {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 10px;
  z-index: 4;
}

.service-title h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
}

.service-body {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 10px;
  transform: translateY(100%);
  opacity: 0;
  z-index: 4;
  transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body {
  bottom: 30px;
  transform: translateY(0%);
  opacity: 1;
}

.service-content {
  margin-bottom: 20px;
}

.service-content p {
  color: var(--white-color);
  margin: 0;
}

.readmore-btn {
  background-color: var(--white-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
  background-color: var(--secondary-color);
}

.readmore-btn img {
  max-width: 30px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img {
  filter: brightness(0) invert(1);
}


.service-btn-container {
  padding: 5px;
  text-align: center;

}

.service-btn {
  padding: 15px 30px;
  border-radius: 15px;
  color: var(--white-color);
  background-color: var(--secondary-color);
  text-align: center;
}

.service-btn1 {
  padding: 15px 30px;
  border-radius: 15px;
  color: var(--white-color);
  background-color: #ef3232;
  text-align: center;
  display: inline-block;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.service-btn1:hover {
  transform: scale(1.05);
}


@media (max-width: 992px) {

  .our-services {
    padding: 0px 30px;
    margin: 0px !important;
  }


  .service-container {
    padding: 40px 30px;
  }


}


@media (max-width: 768px) {
  .service-container {
    padding: 40px 20px;
  }
}


@media (max-width: 480px) {
  .service-container {
    padding: 40px 10px;
  }
}




















/************************************/
/***    Why Choose Us	  ***/
/************************************/

.our-expertise {
  padding: 80px 40px;
}


.why-choose-container {
  padding: 0px 20px;
}

.header-title {
  text-align: center;
  margin-bottom: 40px;
}

.header-title span {
  color: var(--text-green);
}

.header-title h2 {
  font-weight: 600;
  color: var(--primary-color);
}





.choose-icon {
  padding-right: 20px;

}

.choose-icon img {
  width: 80px;
}


.choose-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 500px;
}


.choose-box {
  text-align: left;
  display: inline-flex;
  align-items: center;

}

.choose-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-green);
}

.choose-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-green);
  margin: 0px;
}









.center-img-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}


/* BACK IMAGE */
.img-back {
  position: relative;
  width: 100%;
  z-index: 1;
}

.img-back img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* FRONT IMAGE */
.img-front {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 75%;
}

.img-front img {
  width: 100%;
  height: auto;
  border: 2vw solid #E9F7A3;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#scroll-rotate-img {
  transition: transform 0.1s linear;
  will-change: transform;
}





.why-btn {
  text-align: center;
  margin-top: 40px;
  transition: transform 0.3s ease-in-out;
}

.why-btn:hover {
  transform: scale(1.05);
}


.why-btn a {
  padding: 18px 30px;
  border-radius: 15px;
  background-color: #ef3232;
  color: #ffffff;
}





@media (max-width: 992px) {
  .our-expertise {
    padding: 60px 40px;
  }

  .choose-box {
    text-align: center;
    display: flex;
    flex-direction: column;

  }

  .choose-icon img {
    width: 50px;
  }


  .choose-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-green);

  }

  .choose-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-green);
  }

  .choose-list {
    height: 100%;
    height: 450px;
  }




}



@media (max-width: 768px) {
  .our-expertise {
    padding: 60px 20px;
  }


  .why-choose-container {
    padding: 0px 40px;
  }

  .header-title {
    text-align: center;
    margin-bottom: 60px !important;
  }


  .choose-icon img {
    width: 40px;
  }

  .choose-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 10px;
  }

  .choose-box {
    width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .choose-box h4 {
    width: 100%;
  }

  .choose-box p {
    width: 100%;
  }



}














/* ===== Video Banner Section ===== */
.video-banner {
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: visible;
  /* Fixed: allow buttons to appear */
  background: #000;
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-content {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 20;
  /* Fixed: ensure content appears above video */
  color: white;
  font-size: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: fit-content;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top-left-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);

  will-change: transform, opacity;
  transition: all 0.4s ease-in-out;
}

/* Header Section */
.header-love {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

.header-love h2 {
  color: var(--primary-color, #ef3232);
  font-weight: 700;
  margin-top: 10px;
}

.sub-head {
  font-size: 16px;
  color: var(--text-color, #fff);
}

.sub-head p {
  margin-bottom: 20px;
  font-size: 18px;
  padding: 0 10px;
  color: #fff;
}

.sub-head i {
  font-size: 22px;
  padding: 0 8px;
  color: var(--red);
}

/* Buttons */
.video-button {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.video-btn1,
.video-btn2 {
  background-color: var(--red);
  padding: 14px 25px;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.video-btn2 {
  background-color: var(--secondary-color, #026c02);
}

.video-btn1 i,
.video-btn2 i {
  margin-right: 10px;
}

.video-btn1:hover {
  background-color: #c91f1f;
  transform: translateY(-3px);
}

.video-btn2:hover {
  background-color: rgb(2, 56, 2);
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 860px) {

  .video-banner {
    padding: 40px 0;
  }

  .video-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 30px 20px;
    text-align: center;
  }

  .header-love {
    align-items: center;
    text-align: center;
  }

  .header-love h2 {
    font-size: 28px;
  }

  .video-button {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .video-banner {
    padding: 40px 0;
  }

  .video-content {
    padding: 30px 15px;
  }

  .sub-head p {
    font-size: 16px;
  }

  /* Fix for mobile buttons: stack and full width */
  .video-button {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    gap: 10px;
    /* smaller gap */
  }

  .video-btn1,
  .video-btn2 {
    width: 90%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }
}















/************************************/
/***     Our project/gallery section     ***/
/************************************/

/* Our project wrapper */
.our-project {
  padding: 0px 30px;
}

.our-project-container {
  padding: 80px 30px;
  background-color: var(--light-gray);
  border-radius: 20px;


}



.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.project-h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--text-green);
  /* avoid rigid fixed width so layout stays responsive */
  max-width: 60%;
  line-height: 1.2;
  margin: 0;
}

.project-btn {
  padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--primary-color);
  color: var(--light-text);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  border: none;
}



/* === Carousel Section === */
.carousel-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* center container */
  overflow: hidden;
  width: 100%;
  padding: 24px 0;
}

/* Navigation Arrows (now positioned absolutely) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: var(--text-green);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background-color .2s ease, color .2s ease;
}

.carousel-btn:active {
  transform: translateY(-50%) scale(.96);
}

.carousel-btn:hover {
  background-color: var(--text-green);
  color: #fff;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

/* Carousel container constrains content width */
.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  /* keep it centered and responsive */
  margin: 0 auto;
}

/* Track (slides wrapper) */
.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease-in-out;
  /* Prevent unexpected wrapping */
  white-space: nowrap;
}

/* Item card */
.carousel-item {
  flex: 0 0 360px;
  /* base width */
  margin: 0 15px;
  /* left+right = 30px total spacing */
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: #111;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

.carousel-item h3 {
  font-size: 1.1rem;
  margin: 14px 16px 6px;
  color: var(--text-green);
}

.carousel-item p {
  margin: 0 16px 18px;
  color: #13592f;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 300px;
  }

  .project-h2 {
    font-size: 34px;
    max-width: 65%;
  }
}

@media (max-width: 768px) {
  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .carousel-item {
    flex: 0 0 260px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  .project-h2 {
    font-size: 28px;
  }
}














/************************************/
/***    new review logo link   ***/
/************************************/


.review-company-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  padding: 10px 15px;
  margin-top: 40px;
}

.review-company-logo a {
  border-radius: 10px;
  background-color: rgb(226, 226, 226);
  transition: all 0.3s ease;
  flex: 1 1 120px;
  max-width: 200px;
  padding: 5px 10px;
  text-align: center;

}


.review-company-logo a:hover {
  transform: scale(1.05);
}


.review-company-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  margin: 0px;
}






/************************************/
/***    new review    ***/
/************************************/

.pull-review {
  padding: 80px 0px 20px 0px;
}


.review {
  padding: 80px 30px 40px 30px;
}

.review-header {
  text-align: center;
}


.review-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0px 0px;
  overflow-x: hidden;
  padding: 10px;
}



.review-scroll {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 5px;

}

.review-scroll__wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5px;
  min-width: 100%;
  animation: scroll 20s linear infinite;
  will-change: transform;
  padding: 10px 0px;
}

.review-scroll:hover .review-scroll__wrapper {
  animation-play-state: paused;
}

.review-scroll__wrapper:nth-child(even) {
  margin-left: 5px;
}


.review-scroll .review-card:hover {
  transform: scale(1.05);
}


.review-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 40px 30px;
  width: 400px;
  text-align: center;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.google-logo {
  width: 120px;
  margin-bottom: 20px;
}

.review-text {
  color: var(--text-green);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.divider {
  width: 20px;
  height: lid red;
  background-color: var(--light-gray);
  margin: 0 auto 15px;
  border-radius: 10px;
}

.stars {
  font-size: 25px;
  color: #fbbc04;
  margin-bottom: 15px;
}

.reviewer-name {
  font-size: 16px;
  color: var(--text-green);
  font-weight: 500;
}






.review-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
}

.review-logo a {
  border-radius: 10px;
  background-color: rgb(226, 226, 226);
  transition: all 0.3s ease;
  flex: 1 1 120px;
  max-width: 150px;
  text-align: center;
  padding: 3px 10px;

}


.review-logo a:hover {
  transform: scale(1.05);
}


.review-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  margin: 0px;
}


@media (max-width: 600px) {
  .review-logo a {
    flex: 1 1 110px;
    padding: 3px 10px;
  }

  .review-logo img {
    height: 50px;
  }
}






@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 15px));
  }
}










/************************************/
/***  10. Why choose Us css     ***/
/************************************/

.why-choose-us {
  position: relative;
  background: url("../images/section-bg-leaf.svg") no-repeat;
  background-position: right bottom;
  background-size: auto;
  padding: 100px 0;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: -6px;
  transform: translateY(50%);
  background: var(--secondary-color) url("../images/why-choose-image-bg.svg") no-repeat;
  background-position: left -130px top -80px;
  background-size: contain;
  border-radius: 0 999px 999px 0;
  width: 50%;
  height: 514px;
}

.why-choose-image {
  position: relative;
  text-align: left;
}

.why-choose-image img {
  position: relative;
  z-index: 2;
}

.why-choose-content {
  margin-left: 20px;
}

.why-choose-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-item {
  width: calc(50% - 15px);
}

.why-choose-item .icon-box {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 25px;
}

.why-choose-item .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--secondary-color);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box:before {
  transform: scale(1);
}

.why-choose-item .icon-box img {
  position: relative;
  max-width: 34px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.why-choose-item-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.why-choose-item-content p {
  margin: 0;
}











/************************************/
/***    How It Work css      ***/
/************************************/

.how-it-work {
  position: relative;
  background: var(--primary-color) url("../images/how-it-work-bg-1.svg") no-repeat;
  background-position: left top;
  background-size: contain;
  padding: 100px 0;
}

.how-it-work::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/how-it-work-bg-2.svg") no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.how-it-work .section-title p,
.how-it-work .section-title h2 span,
.how-it-work .section-title h2 {
  color: var(--white-color);
}

.how-work-circle-img {
  text-align: right;
}

.how-work-circle-img img {
  animation: workrotate 30s infinite linear;
}

@keyframes workrotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.how-work-process-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 1;
}

.how-work-item {
  width: calc(25% - 22.5px);
}

.work-process-no {
  position: relative;
  margin-bottom: 30px;
}

.work-process-no::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50px;
  right: 0;
  transform: translateY(-50%);
  border: 1px dashed var(--dark-divider-color);
  width: 255px;
  height: lid red;
}

.how-work-item:last-child .work-process-no::before {
  display: none;
}

.work-process-no h3 {
  background-color: var(--secondary-color);
  border-radius: 50%;
  font-size: 18px;
  color: var(--white-color);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.how-work-item:hover .work-process-no h3 {
  background-color: var(--white-color);
  color: var(--secondary-color);
}

.work-process-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 20px;
}

.work-process-content p {
  color: var(--white-color);
  margin: 0;
}























/************************************/
/***  Our Testimonials css	  ***/
/************************************/

.our-testimonials {
  background: linear-gradient(270deg, var(--primary-color) 34%, transparent 34%),
    url("../images/testimonials-bg.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 0px 0 200px;
}

.our-testimonials .row {
  justify-content: end;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-box {
  background-color: var(--secondary-color);
  border-radius: 0 0 40px 40px;
  padding: 70px 50px 50px;
}

.testimonial-header {
  background: url("../images/icon-blockquote.svg") no-repeat;
  background-position: right center;
  background-size: auto;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.author-image {
  margin-right: 15px;
}

.author-image figure,
.author-image img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
}

.author-content {
  width: calc(100% - 75px);
}

.author-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.author-content p {
  text-transform: capitalize;
  margin: 0;
}

.testimonial-content p {
  margin: 0;
}

.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 40px;
}

.testimonial-btn .testimonial-button-next,
.testimonial-btn .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-next {
  margin-left: 20px;
}

.testimonial-btn .testimonial-button-next:hover,
.testimonial-btn .testimonial-button-prev:hover {
  background-color: var(--primary-color);
}

.testimonial-btn .testimonial-button-next::before,
.testimonial-btn .testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat center center;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-prev::before {
  transform: rotate(180deg);
}
















/************************************/
/***       14. Our FAQs css	      ***/
/************************************/


.faq-container {
  border-radius: 40px;
  padding: 80px 40px;
  margin: 0px 30px;
  background-color: var(--light-gray);
}

.our-faqs-content {
  padding: 7.5px;
}






.our-faqs-cta {
  display: block;
  background-color: var(--secondary-color);
  border-radius: 40px;
  max-width: 100%;
  width: 100%;
  padding: 30px 50px;
  box-sizing: border-box;
}

.faqs-cta-box {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faqs-cta-box .icon-box {
  position: relative;
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 14px;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

.faqs-cta-box .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--red);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.our-faqs-cta:hover .faqs-cta-box .icon-box::before {
  transform: scale(1);
}

.faqs-cta-box .icon-box img {
  position: relative;
  max-width: 34px;
  z-index: 1;
}

.faqs-cta-content {
  flex: 1;
  min-width: 200px;
}

.faqs-cta-content h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.faqs-cta-content p {
  margin: 0;
  color: var(--white-color);
}

/* Button container */
.faqs-cta-btn .btn-default {
  width: 100%;
  text-align: center;
  background-color: var(--light-gray);
  color: var(--text-color);
  padding: 17px 24px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.faqs-cta-btn .btn-default:hover {
  background-color: var(--primary-color);
}

.faqs-cta-btn .btn-default::before {
  display: none;
}


@media (max-width: 768px) {
  .our-faqs-cta {
    padding: 20px 25px;
  }

  .faqs-cta-box {
    flex-direction: column;
    text-align: center;
    margin-bottom: 25px;
  }

  .faqs-cta-box .icon-box {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .faqs-cta-content h3 {
    font-size: 18px;
  }
}




.our-faq-section {
  padding: 7.5px;
}



.our-faq-section .accordion-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.our-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 20px 50px 20px 20px;
  transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed) {
  background-color: #ef3232;
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed {
  background-color: #ef3232;
  color: #ffffff;
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translate(0px, -10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  width: 20px;
  height: 20px;
  padding: 5px;
  color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-button.collapsed::after {
  content: "\f067";
  color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body {
  background-color: #ef3232;
  padding: 20px 50px 20px 20px;
}

.our-faq-section .accordion-item .accordion-body p {
  color: var(--white-color);
  margin: 0;
}

@media (max-width:575px) {
  .faq-container {
    padding: 40px 25px;
    margin: 0px 20px;

  }


}










/************************************/
/***      Free Quote section css	  ***/
/************************************/

.free-quote-container {
  padding: 80px 30px;
  gap: 30px;
}

.free-quote-row {
  align-items: center;
}


.quote {
  padding: 10px;
  align-items: center;
}

.quote-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 40px 30px;
  background-color: var(--secondary-color);
  color: white;
  align-items: center;

}

.quote h2 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}

.quote p {
  font-size: 16px;
  color: white;
  margin-top: 40px;
}


.quote-link {
  margin: 20px;
}


.quote-item {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
  padding-left: 40px;
}

.quote-item::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-image: url('../images/icon/shape (1).png');
  background-size: cover;
  position: absolute;
  top: -5px;
  left: 0;
}


.quote-call {
  width: fit-content;
  padding: 13px 25px;
  border-radius: 12px;
  background-color: var(--primary-color);
  transition: transform 0.3s ease-in-out;
}

.quote-call:hover {
  transform: scale(1.05);
}

.quote-call i {
  padding-right: 10px;
}


.quote-call a {
  color: var(--text-green);
}


@media (max-width: 992px) {
  .quote-link ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }

  .quote-link ul li {
    margin-bottom: 0;
    padding-left: 40px;
  }

  .quote-link ul li:before {
    top: -5px;
    left: 0;
  }
}























.form {
  padding: 10px;
}

.form-container {
  padding: 40px;
  border-radius: 20px;
  background-color: var(--primary-color);
}

.form-container p {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.service-form {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

textarea.reveal-bottom {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}

.service-form button {
  align-self: center;
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.service-form button:hover {
  transform: scale(1.05);
}


/* ✅ Responsive behavior below 768px */
@media (max-width: 768px) {
  .service-form .row {
    flex-direction: column;
  }

  .service-form .row input {
    width: 100%;
  }
}






@media (max-width:992px) {
  .free-quote-container {
    padding: 40px 30px;
  }

}


@media (max-width:768px) {
  .form-container {
    padding: 30px;
  }

}

@media (max-width:480px) {
  .form-container {
    padding: 20px;
  }

}












/************************************/
/***      15. Our Pricing css	  ***/
/************************************/

.our-pricing {
  position: relative;
  background: var(--secondary-color);
  padding: 100px 0 150px;
  margin-top: 130px;
}

.our-pricing::before {
  content: "";
  position: absolute;
  top: -130px;
  right: 0;
  left: 0;
  background: url(../images/pricing-top-bg.svg) no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 132px;
}

.our-pricing::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  background: url(../images/pricing-bottom-bg.svg) no-repeat;
  background-position: bottom center;
  background-size: cover;
  width: 100%;
  height: 132px;
}

.pricing-item {
  background-color: var(--white-color);
  border-radius: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.pricing-header {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: 50px;
  color: var(--secondary-color);
}

.pricing-header h2 sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  text-transform: capitalize;
  bottom: 0;
}

.pricing-body {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-body ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 40px;
}

.pricing-body ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icon-pricing-list.svg") no-repeat;
  background-position: left center;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}

.pricing-body ul li:last-child {
  margin-bottom: 0;
}

.pricing-footer .btn-default::before {
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
}

.pricing-item.highlighted-box {
  background: var(--primary-color) url("../images/pricing.highlighted-box-bg.svg") no-repeat;
  background-position: center center;
  background-size: auto;
  overflow: hidden;
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3 {
  color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body,
.pricing-item.highlighted-box .pricing-header {
  border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before {
  filter: brightness(0) invert(1);
}

.pricing-footer .btn-default.btn-highlighted::before {
  background-color: var(--secondary-color);
}












/************************************/
/***   	   Bible Berse Styel      ***/
/************************************/

.bible-verse-container {
  margin: 0px 30px;
  padding: 0px 15px;
  overflow-x: auto;
  margin-bottom: 40px;
}

.bible-verse-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bible-verse-img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0;
}

.bible-verse-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.bible-verse {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  min-width: 0;
}

.bible-verse p {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .bible-verse p {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .bible-verse p {
    font-size: 20px;
  }
}


@media (max-width: 767px) {
  .bible-verse p {
    font-size: 16px;
  }
}


@media (max-width: 600px) {
  .bible-verse-img {
    width: 50px;
    height: 50px;
  }

  .bible-verse p {
    font-size: 14px;
  }

  .bible-verse-container {
    margin: 0 10px;
    border-color: rgb(68, 0, 255);
  }
}

@media (max-width: 425px) {
  .bible-verse-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 365px) {
  .bible-verse-img {
    width: 35px;
    height: 35px;
  }
}


















/************************************/
/***   	   Footer css        ***/
/************************************/


.footer-container {
  background-color: var(--secondary-color);
  border-radius: 30px;
  margin: 30px;
  padding: 40px;

}




.about-footer {
  text-align: center;
  margin-bottom: 25px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 200px;
}

.about-footer-content p {
  color: var(--white-color);
  margin: 0;
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.footer-social-links ul li {
  display: inline-flex;
  margin-right: 20px;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a {
  background-color: var(--white-color);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
  background-color: var(--primary-color);
}

.footer-social-links ul li a i {
  color: var(--secondary-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
  color: var(--text-green);
}

.footer-links h3,
.working-hour h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 25px;
}





.footer-links {
  margin-left: 0px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
  color: var(--primary-color);
}






.working-hour {
  margin-bottom: 20px;
  text-align: center;
}

.working-hour-box {
  margin-bottom: 10px;
}

.working-hour-box:last-child {
  margin-bottom: 0;
}

.working-hour-box p {
  text-transform: capitalize;
  color: var(--white-color);
  margin: 0;
}





.footer-contact {
  text-align: center;
}

.footer-info-box {
  margin-bottom: 25px;
}

.footer-info-box:last-child {
  margin-bottom: 0;
}

.footer-info-box h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 25px;
}

.footer-info-box p {
  color: var(--white-color);
  margin: 0;
}



.footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 20px 0;
}

.footer-copyright-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
  text-align: left;
}


.footer-privacy-policy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right !important;
}

.footer-privacy-policy ul li {
  display: inline-block;
  margin-right: 40px;
}

.footer-privacy-policy ul li img {
  display: inline-block;
  margin-right: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

@media (max-width:468px) {
  .footer-privacy-policy ul li img {
    width: 60px;
    height: 60px;
    margin: 20px;
    border-radius: 50%;
  }

  .footer-copyright-text p {
    text-align: center;
  }


  .footer-privacy-policy ul li {
    margin-right: 20px;
  }


  .footer-privacy-policy ul {
    text-align: center !important;
  }


}


.footer-privacy-policy ul li:last-child {
  margin-right: 0;
}

.footer-privacy-policy ul li a {
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover a {
  color: var(--primary-color);
}


@media (max-width:991.9px) {
  .about-footer {
    text-align: left;
    margin-bottom: 25px;
  }

  .footer-links {
    text-align: left;
  }

  .working-hour {
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }
}


@media (max-width:575px) {
  .footer-container {
    margin: 20px 10px;
    padding: 30px;

  }


}















/************************************/
/***     18. About us Page css	  ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/footer-bg.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh !important;
  border-radius: 20px;
  margin: 0px 30px;
  padding: 0px 40px !important;
  transition: background-size 0.3s ease;
  will-change: background-size;
  object-fit: cover;
}


.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 20%;
  width: 100%;
  height: 100%;
  border-radius: 20px;


}





.service-page-header {
  position: relative;
  background: url("../images/grass.jpg") no-repeat center center;
  background-size: cover;
  height: 40vh;
  border-radius: 20px;
  margin: 0px 30px;
  padding: 0px 40px;
  transition: background-size 0.3s ease;
  will-change: background-size;
  object-fit: cover;

}


.service-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 30%;
  width: 100%;
  height: 100%;
  border-radius: 20px;

}






.page-header-box {
  position: relative;
  z-index: 1;
  height: 40vh;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;

}

.page-header-box h1 {
  display: inline-block;
  font-size: 40px;
  font-size: 60px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 5px;
}


.page-header-box p {
  color: var(--white-color);
  font-weight: 400;
  margin-bottom: 0px;
}



@media (max-width:575px) {

  .page-header {
    height: 25vh !important;
    border-radius: 20px;
    margin: 0px 20px !important;
    padding: 0px 40px;

  }

  .service-page-header {
    height: 25vh;
    border-radius: 20px;
    margin: 0px 20px;
    padding: 0px 40px;
  }



  .page-header-box {
    height: 25vh;
    padding-left: 20px;

  }


}












/************************************/
/***    our vision mission css	  ***/
/************************************/
.our-vision-mission-container {
  margin: 0 30px;
  border-radius: 20px;
}

/* Shared Box Styles */
.vision-mission-box {
  border-radius: 10px;
  margin: 20px 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.vision-mission-box {
  background-color: var(--light-gray);
}


/* Images */
.our-vision-image img,
.our-mission-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border-radius: 10px;
}

/* Typography */

.our-mission-content {
  padding: 10px;
}


.section-title h3 {
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--secondary-color) !important;
}

.section-title h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}





/* Mission Box Container */
.mission-row {
  margin: 10px;

}


.mission-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Image Styling */
.mission-img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #f9f9f9;
  padding: 5px;
  transition: transform 0.3s ease;
}

/* Text Styling */
.mission-box h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0;
}




@media (max-width: 576px) {
  .mission-box {
    flex-direction: column;
    text-align: center;
  }

}




.section-title p {
  color: var(--text-green);
  font-size: 16px;
  font-weight: 400;
}

.vision-title {
  color: var(--primary-color);
}

.mission-h2 {
  color: #7BB32B;
}

/* Layout adjustments */
.our-vision-content,
.our-mission-content {
  padding: 0 20px;
}

@media (max-width: 992px) {
  .vision-mission-box {
    flex-direction: column;
    text-align: center;
  }

  .our-vision-image img,
  .our-mission-image img {
    aspect-ratio: auto;
  }

  .our-mission-content {
    padding: 10px;
  }

}













/* About Info CSS Start  */
.about-info {
  padding: 60px 30px;
  align-items: center;
}

.about-info-col {
  padding: 10px 0px;
}

.about-info-txt {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 400px;
  max-height: none;
  border-radius: 10px;
  padding: 25px 20px;
  margin: 10px;
  background-color: var(--light-gray);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .about-info-txt {
    flex: 1 1 100%;
    min-height: 300px;
  }
}


.about-info-txt:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, 0.28) 0px 6px 16px;
}



.about-info-txt h2 {
  margin-bottom: 10px;
  text-align: center;
}

.about-info-txt p {
  text-align: center;
  color: var(--secondary-color);
}



/* About Info CSS Start  */
















/* Our Counter */



/* Inner content box */
.counter-content-box {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: nowrap;
  background-color: var(--secondary-color);
  width: fit-content;
  width: 70% !important;
  position: relative;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  margin: 40px 0px;
}

/* Each Counter Item */
.counter-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;

}


/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.icon-box img {
  width: 36px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.counter-item:hover .icon-box {
  background-color: var(--primary-color);
  transform: rotate(10deg);
}

.counter-item:hover .icon-box img {
  transform: scale(1.3);
}

/* Counter Text */
.counter-item-content h2 {
  font-size: 44px;
  color: var(--white-color);
  margin-bottom: 8px;
}

.counter-item-content p {
  color: rgba(255, 255, 255, 0.85);
  text-transform: capitalize;
  margin: 0;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .counter-content-box {
    padding: 40px 40px;
    gap: 40px;

  }

  .counter-item-content h2 {
    font-size: 36px;
  }
}






@media (max-width: 768px) {
  .counter-content-box {
    flex-direction: row;
    gap: 30px;
    width: 85% !important;
  }

  .counter-item:not(:last-child)::after {
    display: none;
  }


  .counter-item:last-child {
    border-bottom: none;
  }
}





@media (max-width: 480px) {
  .counter-content-box {
    flex-direction: row;
    gap: 30px;
    width: 100% !important;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box img {
    width: 30px;
  }

  .counter-item-content h2 {
    font-size: 32px;
  }
}














/************************************/
/***     19. Page Services css	  ***/
/************************************/

.page-services {
  padding: 100px 0 20px;
}

.our-counter.page-service-counter {
  padding: 50px 0;
}

.our-faqs.page-service-faqs {
  padding: 50px 0 100px;
}


.service-intro-list {
  margin: 10px 0px;
}


.service-intro-list h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}












/************************************/
/***    20. Service Single css    ***/
/************************************/



.service-intro {
  margin: 80px 30px;
  padding: 40px;
  padding-bottom: 0px;
  background-color: var(--light-gray);
  border-radius: 20px;
  align-items: center;

}

.service-intro-row {
  align-items: center;
}


.service-entry {
  padding: 10px 20px;
}






.page-service-container {
  margin: 80px 30px;
}

.service-sidebar {
  position: sticky;
  top: 20px;
  padding: 0px 20px;
}

.service-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 50px;
}

.service-catagery-list h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 20px 5px;
}

.service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}



.service-catagery-list ul li {
  margin-bottom: 15px;
}

.service-catagery-list ul li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-catagery-list ul li a {
  display: block;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  background-color: var(--white-color);
  color: var(--secondary-color);
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  background-color: var(--primary-color);
}

.service-catagery-list ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-15px, -50%);
  background-image: url("../images/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px auto;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
}



.service-catagery-list ul li .active {
  background-color: var(--primary-color);
}


.sidebar-cta-box {
  position: relative;
  padding: 10px;
}

.cta-contact-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.cta-contact-image img {
  width: 100%;
  aspect-ratio: 1 / 0.87;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease-in-out;
}

.sidebar-cta-box:hover .cta-contact-image img {
  transform: scale(1.1);
}








/* Section styling */
.what-we-do {
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url('https://www.toptal.com/designers/subtlepatterns/patterns/green_gobbler.png');
  background-size: 250px;
  background-attachment: fixed;
  color: var(--secondary-color);
  position: relative;
  padding: 20px;
  padding-top: 0px;
  margin-bottom: 40px;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #7BB32B;
  text-align: left;
}

.section-subtitle {
  font-size: 1rem;
  color: #4b6043;
  text-align: center;
  margin-bottom: 40px;
}

/* Grid container */
.what-we-do-vertical {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Each box */
.what-we-do-item {
  background: var(--light-gray);
  border-left: 6px solid var(--red);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.what-we-do-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Text */
.what-we-do-item h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
}

.what-we-do-item p {
  color: #4b6043;
  font-size: 0.95rem;
  margin: 0;
  text-align: left;
}

/* Responsive fix */
@media (min-width: 992px) {
  .what-we-do-item {
    flex: 0 0 calc(50% - 1rem);
    /* 2 per row */
  }
}

@media (max-width: 991px) {
  .what-we-do-item {
    flex: 0 0 100%;
    /* 1 per row */
  }
}














/* Trusted Section Styling */
.trusted-section {
  padding: 20px 10px;
  position: relative;
}

.trusted-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #7BB32B;
  margin-bottom: 20px;
}

.trusted-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 700px;
  position: relative;
}

.trusted-quote::before,
.trusted-quote::after {
  content: "❝";
  font-size: 36px;
  color: var(--red);
  position: relative;
  top: 8px;
  opacity: 0.7;
}

.trusted-quote::after {
  content: "❞";
}



/* CTA Box */
.cta-box {
  background: var(--secondary-color);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 821px;
}

.cta-box h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.cta-box .btn-success {
  background-color: var(--primary-color);
  border-style: none;
  color: var(--secondary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-box .btn-success:hover {
  transform: scale(1.05);
}








/* what-we-do */
.what-we-do-row {
  margin-bottom: 20px;
}


.what-we-do-list {
  padding: 15px 10px;
  background-color: var(--light-gray);
  color: var(--secondary-color);
  margin: 10px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 110px;
}


.what-we-do-list:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}








.cta-contact-body {
  background-color: var(--secondary-color);
  border-radius: 0 0 20px 20px;
  padding: 20px;
}


.cta-icon-box {
  align-items: center;
  text-align: center;
}

.cta-icon-box a {
  font-size: 30px;
  text-transform: capitalize;
  color: var(--white-color);
}


.cta-icon-box i {
  font-size: 34px;
  background-color: var(--red);
  color: var(--white-color);
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.cta-icon-box:hover i {
  transform: scale(1.03);

}






.service-single-slider {
  margin-bottom: 40px;
  border-radius: 20px;
}

.service-slider-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.service-slider-image img {
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  aspect-ratio: 2 / 3;

}


.service-single-btn {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.service-single-btn .service-single-button-next,
.service-single-btn .service-single-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  border: lid red solid var(--white-color);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  padding: 20px;
}

.service-single-btn .service-single-button-next:hover,
.service-single-btn .service-single-button-prev:hover {
  background-color: var(--red);
}

.service-single-btn .service-single-button-next::before,
.service-single-btn .service-single-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/arrow-white.svg") no-repeat center center;
  background-size: 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-prev::before {
  transform: rotate(180deg);
}










.service-entry {
  margin-bottom: 40px;
}

.service-entry h2 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #7BB32B;
}

.service-entry h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.service-entry p {
  color: var(--text-green);
  margin: 0px;
}

.service-entry p:last-child {
  margin-bottom: 0px;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.service-entry ul li {
  position: relative;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding-left: 35px;
  align-items: center;
}

.service-entry ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icon/shape\ \(1\).png) no-repeat;
  background-position: left center;
  background-size: 30px auto;
  width: 30px;
  height: 30px;
}








/* Container for the entire service image section */
.service-entry-image {
  padding: 5px;
}


.service-entry-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 10px;
  overflow: hidden;
  border-radius: 10px;
}


.service-entry-img img {
  width: 100%;
  height: auto;
  max-height: 290px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;

}


.service-entry-img img:hover {
  transform: scale(1.1);
}




@media (max-width:992px) {
  .service-sidebar {
    padding: 0px 0px 30px 0px;
  }
}


@media (max-width:768px) {
  .service-slider-image img {
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 60vh;
  }

  .page-service-container {
    margin: 60px 30px;
  }

  .service-intro {
    margin: 60px 30px;
    padding: 30px;

  }


}



@media (max-width:575px) {
  .service-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 0px;
  }

  .service-slider-image img {
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 50vh;
  }

  .page-service-container {
    margin: 40px 30px;
  }

  .service-intro {
    margin: 40px 20px;
    padding: 20px;

  }



}

















/************************************/
/***    24. Project Single css    ***/
/************************************/

.page-project-single {
  padding: 100px 0;
}

.project-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 30px;
}

.project-sidebar-details {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 50px;
}

.project-details-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.project-details-item h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.project-details-item p {
  text-transform: capitalize;
  margin: 0;
}

.project-social-list h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.project-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-social-list ul li {
  display: inline-flex;
  margin-right: 15px;
}

.project-social-list ul li:last-child {
  margin-right: 0;
}

.project-social-list ul li a {
  background-color: var(--primary-color);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.project-social-list ul li:hover a {
  background-color: var(--secondary-color);
}

.project-social-list ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.project-single-image {
  margin-bottom: 40px;
}

.project-single-image figure {
  display: block;
}

.project-single-image img {
  border-radius: 40px;
}

.project-entry {
  margin-bottom: 80px;
}

.project-entry h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.project-entry h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.project-entry p {
  margin-bottom: 25px;
}

.project-entry p:last-child {
  margin-bottom: 0px;
}

.project-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.project-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 35px;
}

.project-entry ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icon-pricing-list.svg) no-repeat;
  background-position: left center;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}

.project-gallery a {
  cursor: none;
}

.project-gallery figure {
  border-radius: 10px;
}

.project-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}





/* ===== GALLERY SECTION STYLING ===== */


.gallery-section {
  padding: 80px 30px;
}


/* Heading Style */
.gallery-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
}

/* Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Green overlay on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(198, 220, 73, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}





/* ===== LIGHTBOX STYLING ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Lightbox Image */
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.4s ease;
}

/* Close Button */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}

.lightbox .close:hover {
  color: #ff5555;
}

/* Arrows */
.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  z-index: 1001;
  transition: color 0.3s ease;
}

.lightbox .arrow:hover {
  color: #ff5555;
}

.lightbox .arrow.left {
  left: 40px;
}

.lightbox .arrow.right {
  right: 40px;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 30px;
  }

  .lightbox-content {
    max-width: 90%;
  }

  .lightbox .arrow {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .gallery-section {
    padding: 40px 20px;
  }

  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

}










/************************************/
/***     25. Page Pricing css	  ***/
/************************************/

.page-pricing {
  padding: 100px 0 70px;
}

.page-pricing .pricing-item {
  border: 1px solid var(--divider-color);
}

/************************************/
/***      26. Page Team css 	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/***       27. Page FAQs css	  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.faq-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 30px;
}

.faq-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 30px;
  padding: 30px;
}

.faq-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-catagery-list ul li {
  margin-bottom: 15px;
}

.faq-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.faq-catagery-list ul li a {
  display: block;
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.faq-catagery-list ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-15px, -50%);
  background-image: url("../images/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px auto;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
  filter: brightness(0) invert(1);
}

.page-faqs .our-faq-section {
  margin-bottom: 60px;
}

.page-faqs .our-faq-section:last-child {
  margin-bottom: 0;
}













/************************************/
/***    28. Contact us Page css	  ***/
/************************************/

.page-contact-us {
  padding: 80px 30px;
}

.contact-page-row {
  align-items: center;
}

.contact-p-head {
  color: #2A7D2E !important;
}

.contact-us-form {
  background: var(--primary-color) url("../images/contact-form-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  border-radius: 20px;
  height: 100%;
  padding: 70px 40px;
  background-color: var(--secondary-color);
}


.contact-us-form .section-title p,
.contact-us-form .section-title h2 {
  color: var(--white-color);
}


.contact-form-row {
  padding: 10px 0px;
}

.contact-us-form .form-control {
  padding: 15px;
  font-size: 16px;
  background-color: var(--white-color);
  border: none;
  border-radius: 12px;
  box-shadow: none;
  outline: none;
  border: 10px solid var(--secondary-color);
}

.contact-us-form .form-control::placeholder {
  color: var(--secondary-color);
  text-transform: capitalize;
}

.contact-form-btn {
  width: fit-content;
  text-align: center;
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--text-green);
  margin-left: 10px;
  background-color: var(--primary-color);
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.contact-form-btn:hover {
  transform: scale(1.05);
}

.contact-form-btn :before {
  display: none;
}



.contact-information {
  padding: 10px;
}


.contact-info-image {
  margin-bottom: 30px;
  width: 100%;
  height: 400px;
}


.contact-info-image img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;

}


.contact-info-list {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}

.contact-info-item {
  background-color: var(--white-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  margin-bottom: 15px;
  padding: 10px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon-box {
  margin-right: 20px;

}

.contact-info-item .icon-box i {
  color: var(--light-gray);
  font-size: 30px;

}

.contact-info-content {
  width: calc(100% - 54px);
  overflow: hidden;
}

.contact-info-content p {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-info-content h3 {
  font-size: 20px;
  font-weight: 600;
}


.contact-icon i {
  font-size: 30px;
  color: var(--red);
  margin-right: 15px;
}

.contact-info-item {
  transition: all 0.3s ease-in-out;
}

.contact-info-item:hover .contact-icon i {
  transform: scale(1.2);
}

.contact-icon i {
  transition: transform 0.3s ease-in-out;
}








.google-map {
  margin: 0px 30px;
  margin-bottom: 60px;
}


.google-map iframe {
  width: 100%;
  height: 60vh;
  border-radius: 20px;
  overflow: hidden;
}



@media (max-width:575px) {

  .contact-information {
    padding: 10px 0px;
  }

  .page-contact-us {
    padding: 40px 20px;
  }

  .google-map {
    margin: 0px 10px;
    margin-bottom: 40px;
  }



}










/************************************/
/***       29. 404 Page css       ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 60px;
}

.error-page .error-page-content {
  text-align: center;
}

.error-page-content-heading {
  margin-bottom: 30px;
}

.error-page-content-heading h2 {
  font-size: 50px;
}

.error-page-content-heading h2 span {
  font-weight: 400;
}

.error-page-content-body .btn-default::before {
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
}























.footer-info-box h3,
.footer-links h3,
.working-hour h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-info-box {
  margin-bottom: 20px;
}

.footer-privacy-policy ul,
.footer-copyright-text {
  text-align: center;
}

.footer-privacy-policy ul li {
  margin-right: 20px;
}

.page-header-box h1 {
  font-size: 32px;
}

.our-counter {
  padding-left: 0;
}

.our-counter-box {
  display: block;
  height: auto;
  border-radius: 0;
}

.counter-content-box {
  width: 100%;
  padding: 30px 15px;
}

.counter-item-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.counter-item-content p {
  font-size: 10px;
}

.counter-image {
  width: 100%;
}

.counter-image figure,
.counter-image img {
  border-radius: 0;
}

.our-team {
  background: linear-gradient(180deg,
      var(--primary-color) 30%,
      var(--white-color) 30%);
}

.team-image img {
  aspect-ratio: 1 / 1.2;
}

.team-body-title h3 {
  font-size: 18px;
}

.service-catagery-list h3 {
  font-size: 18px;
}

.service-single-btn {
  left: 20px;
  right: 20px;
}

.service-slider-image img {
  aspect-ratio: 1 / 0.8;
}

.service-single-btn .service-single-button-next,
.service-single-btn .service-single-button-prev {
  width: 30px;
  height: 30px;
}

.service-single-btn .service-single-button-next::before,
.service-single-btn .service-single-button-prev::before {
  background-size: 20px auto;
}


.post-single-meta ol li i {
  font-size: 18px;
}

.post-image figure,
.post-image img {
  aspect-ratio: 1 / 0.7;
}

.post-entry blockquote {
  background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 20px 20px;
  background-size: 35px;
  padding: 55px 20px 20px 20px;
}

.post-entry h2 {
  font-size: 28px;
}

.tag-links {
  font-size: 20px;
}

.project-details-item h3 {
  font-size: 18px;
}

.project-social-list h3 {
  font-size: 18px;
}

.project-entry {
  margin-bottom: 10px;
}

.project-entry h2 {
  font-size: 28px;
}

.project-entry ul li {
  width: 100%;
  font-size: 16px;
  padding-left: 30px;
}

.project-entry ul li:before {
  top: lid red;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
}

.page-header {
  margin: 0px 20px;
  padding: 80px 40px;
  align-items: center;
  height: 30vh;
}








.page-contact-us {
  padding: 60px 30px;
}


.contact-us-form {
  padding: 40px 30px;
  height: fit-content;
}

.contact-us-form .form-control {
  padding: 10px 15px;
}

.contact-info-list {
  padding: 20px;
}

.contact-info-content h3 {
  font-size: 18px;
}



.error-page-image img {
  max-width: 100%;
}

.error-page-content-heading h2 {
  font-size: 30px;
}









@media (max-width:448px) {
  .about-us {
    padding: 30px 20px;
  }

  .our-services {
    position: relative;
    padding: 0px 10px;
  }

  .why-choose-container {
    padding: 0px 10px;
  }

  .video-banner {
    padding: 40px 0px;
  }

  .review {
    padding: 60px 10px 40px 10px;
  }

  .free-quote-container {
    padding: 40px 10px;
  }




  .page-header {
    margin: 0px 10px;
    height: 25vh;
  }

  .page-contact-us {
    padding: 40px 20px;
  }



  .header-love {
    text-align: center;
  }

}














/* === Active Link Styling (applies to both main and side nav) === */
.navbar-nav .nav-link.active,
.responsive-menu .nav-link.active {
  color: var(--primary-color) !important;
  /* Fresh garden green */
  font-weight: 700;
  background-color: var(--light-gray);
  border-radius: 5px;
  position: relative;
}

/* Optional green underline/accent for active link */
.navbar-nav .nav-link.active::after,
.responsive-menu .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
}

/* Hover color consistency for both menus */
.navbar-nav .nav-link:hover,
.responsive-menu .nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--light-gray);
  font-weight: 600;
}







.FloatingBackground__Container-sc-f92c4051-0.ivrpta {
  display: none !important;
}


.elfsight-play-label {
  display: none;
}














/* ================================
        easter popup 
 ================================*/


/*  OVERLAY */
#easter-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

#easter-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ================= CARD (20% SMALLER) ================= */
.ep-card {
  width: 100%;
  max-width: 550px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  background-color: black;

  transform: translateY(50px);
  opacity: 0;
  transition: all .55s cubic-bezier(.22, 1, .36, 1);
}

#easter-overlay.show .ep-card {
  transform: translateY(0);
  opacity: 1;
}

/* ================= HERO ================= */
.ep-hero {
  background: linear-gradient(135deg,
      #10551F 10%,
      #5c8620 50%,
      #ef3232ce 100%);
  padding: 24px 20px;
  /* reduced */
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #F2F3EB;
}

/* FLOATING CROSS */
.ep-cross {
  margin-bottom: 6px;
  animation: floatCross 3s ease-in-out infinite;
}
 
.ep-cross img{
  width: 100px;
  height: auto;
}

@keyframes floatCross {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.ep-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1rem, 4vw, 2rem);
  margin-bottom: 4px;
  color: #F2F3EB;
}

.ep-scripture {
  font-style: italic;
  font-size: 1.2rem;
  opacity: .95;
  margin-top: 8px;
}

/* ================= BODY ================= */
.ep-body {
  background: #FFFFFF;
  padding: 22px 20px;
  /* reduced */
  text-align: center;
}

.ep-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(0.8rem, 4vw, 1.6rem);
  color: #7BB32B;
  /* FESTIVE RED */
  margin-bottom: 8px;
}

.ep-body p {
  font-size: 16px;
  color: rgb(75, 73, 73);
  line-height: 1.6;
  margin: 0px;
}

.ep-body p span {
  color: #EF3232;
  font-weight: 600;
}

.ep-bunny-row {
  margin-bottom: 12px;
}

.ep-bunny {
  font-size: 1.7rem;
  margin: 0 5px;
  display: inline-block;
  animation: bounce .7s ease infinite alternate;
}

.ep-bunny:nth-child(2) {
  animation-delay: .15s;
  font-size: 2rem;
}

.ep-bunny:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

/* CTA (MAIN FESTIVE ELEMENT) */
.ep-cta {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #EF3232;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: .3s ease;
  box-shadow: 0 6px 15px rgba(239, 50, 50, .35);
}

.ep-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(239, 50, 50, .5);
}

/* EGGS + FLOWERS */
.ep-eggs {
  margin-top: 4px;
  margin-bottom: 8px;
}

.ep-egg img{
  width: 80px;
  height: auto;
  animation: wobble 2s ease-in-out infinite;
}



@keyframes wobble {

  0%,
  100% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(6deg);
  }
}

/* CLOSE BUTTON */
.ep-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .3);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.ep-close:hover {
  background: #EF3232;
  transform: rotate(90deg);
}



/* Tagline */
.ep-tagline {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* MOBILE */
@media(max-width:480px) {
  .ep-hero {
    padding: 20px 15px;
  }

  .ep-body {
    padding: 20px 15px;
  }
}

/* ================================
        easter popup 
 ================================*/