:root {
  --main-color: #116936;
  --secondary-color: #FF8B00;
  --bg-green: #11693614;
  --font-color-dark: #09090b;
  --font-color-grey: #71717a;
  --white-color: #fff;
  --light-gray: #f1f2f2;
  --dark-green:#116936;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-size: 15px;
  color: var(--font-color-dark);
}

dl,
ol,
ul {
  padding-left: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--main-color);
}

ul li {
  list-style: none;
}

ul li:last-child {
  margin-bottom: 0;
}

p {
  color: var(--font-color-grey);
}

p:last-child {
  margin-bottom: 0;
}

h2,
h3,
h4,
h5 {
  font-weight: 300;
}

.pad-top-100 {
  padding-top: 100px;
}

.margin-top-60 {
  margin-top: 60px;
}

.pad-bot-100 {
  padding-bottom: 100px;
}

.green-bg {
  background-color: var(--bg-green);
}

.content-wrapper h4 {
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--main-color);
}

.content-wrapper h2 {
  font-weight: 300;
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 20px;
}

.content-wrapper p {
  font-weight: 300;
  width: 90%;
}

.img-wrapper img {
  border-radius: 10px;
  height: 600px;
  object-fit: cover;
}

/******************************** 
        BUTTONS STYLES 
*********************************/

.btn-wrapper .style-1 {
  background-color: var(--dark-green);
  color: var(--white-color);
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 15px;
}

.btn-wrapper .style-2 {
  border: 1px solid var(--dark-green);
  color: var(--dark-green);
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 15px;
}

/******************************** 
    HOME PAGE -- NAVBAR 
*********************************/

.navbar {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  height: 35px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 300;
  padding: 0.5rem 1rem;
  position: relative;
  padding-left: 1rem;
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: middle;
}

/* Split dropdown button and link functionality */
.nav-item.dropdown {
  position: relative;
}

.services-link {
  display: inline-block;
  padding-right: 28px !important; /* Space for dropdown arrow */
}

.dropdown-toggle-split {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin-left: 0;
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-toggle-split:hover {
  color: var(--secondary-color);
}

/* Hover dropdown functionality for desktop */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.dropdown-item {
  padding: 8px 16px;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--secondary-color);
}

.btn-contact {
  background-color: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #fff;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 2px 4px rgba(233, 142, 86, 0.3);
}

.btn-quote {
  background-color: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: #FF8B00;
  color: #fff;
  box-shadow: 0 2px 4px rgba(233, 142, 86, 0.5);
}

/* Hamburger Icon Animation */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  margin: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
  top: 10px;
}

.hamburger-icon span:nth-child(4) {
  top: 20px;
}

.hamburger-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 15px 0;
  }

  .cta-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .dropdown-toggle-split {
    display: none; /* Hide the desktop dropdown toggle on mobile */
  }

  /* Mobile-specific styles for services dropdown */
  .mobile-services-menu {
/*     display: block !important;  */
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding-left: 15px;
    margin-bottom: 10px;
  }

  .mobile-services-menu .dropdown-item {
    color: #555;
    padding: 8px 15px;
    border-left: 2px solid #eee;
  }

  .mobile-services-menu .dropdown-item:hover,
  .mobile-services-menu .dropdown-item:focus {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
  }

  /* Add indicator for mobile dropdown */
  .services-indicator {
    margin-left: 5px;
    font-size: 10px;
    color: var(--secondary-color);
  }

  /* Hide desktop dropdown on mobile */
  .desktop-dropdown {
    display: none !important;
  }
}

/******************************** 
    HOME PAGE -- HERO BANNER 
*********************************/

.hero-content h1 {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #212529;
}
.hero-content p {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}
.btn-primary {
  background-color: var(--dark-green);;
  border-color: var(--dark-green);;
  padding: 10px 24px;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #FF8B00;
  border-color: #FF8B00;
}
.btn-outline-primary {
  color: #ff7f50;
  border-color: #ff7f50;
  padding: 10px 24px;
  font-weight: 600;
}
.btn-outline-primary:hover {
  background-color: #FF8B00;
  border-color: #FF8B00;
}
.stars {
  color: #FF8B00;
}
.google-reviews {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.google-reviews img {
  padding-left: 10px;
  height: 90px;
  margin-left: 15px;
  border-left: 1px solid #d4d4d4;
}
#hero-banner {
  padding-top: 70px;
}

/******************************** 
    HOME PAGE -- MAIN SLIDER 
*********************************/

.slider-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.slider-content {
  padding: 20px 0;
}

.slider-title {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.slider-description {
  color: #777;
  font-size: 16px;
}

.custom-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.custom-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e6e6;
  background-color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
  color: #ff6b35;
}

.custom-nav-btn:hover {
  background-color: #f5f5f5;
}

.owl-dots {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  position: relative;
  bottom: 0;
  left: 0;
}

.owl-dot {
  width: 8px;
  height: 8px;
  background-color: #ccc !important;
  border-radius: 50%;
  margin-right: 8px;
}

.owl-dot.active {
  background-color: #333 !important;
}

@media (max-width: 768px) {
  .slider-title {
    font-size: 20px;
  }

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

/******************************** 
    HOME PAGE -- SERVICES 
*********************************/

#services .heading-sec .btn-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 100%;
}

#services .services-list {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 10px;
}

.service-card {
  padding: 40px;
  transition: all 0.5s;
  border: 1px solid #f0f0f0;
  cursor: pointer;
}

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

.services-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  overflow: hidden;
}

.service-card span {
  color: var(--main-color);
}

.service-card:hover {
  background-color: var(--main-color);
  transition: all 0.5s;
	color:#fff;
}
.service-card:hover p,
.service-card:hover .link-primary-a {
  color: #fff !important;
}

.link-primary-a{
  color: var(--main-color) !important;
}

/******************************** 
    HOME PAGE -- ABOUT 
*********************************/

.counter-wrap {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  margin-bottom: 30px;
}

.counter-row {
  border-left: 1px solid #d4d4d4;
  padding-left: 20px;
}

.counter-wrap h3 {
  margin-bottom: 0;
  font-size: 40px;
  color: var(--secondary-color);
}

/******************************** 
    HOME PAGE -- WHY US 
*********************************/

#why-us .content-wrapper p {
  width: 50%;
  margin: 0 auto;
}

.why-us-list-wrapper h4 {
  margin-bottom: 15px;
}

#why-us .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

#why-us .btn-wrapper .style-1 {
  margin-right: 20px;
}

#why-us .btn-wrapper i {
  margin-left: 10px;
}
.why-us-list-wrapper .card {
  padding: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.why-us-list-wrapper .card:hover {
  background-color: var(--white-color);
  border-radius: 15px;
  border-left-color: var(--secondary-color);
  border-left-style: solid;
  border-left-width: 3px;
  transition: all 0.2s;
}

/******************************** 
    HOME PAGE -- CLIENTS
*********************************/

#clients .content-wrapper p {
  font-weight: 300;
  width: 100%;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/******************************** 
    HOME PAGE -- TESTIMONIALS 
*********************************/

.testimonial-slider-wrapper {
  padding: 60px 0;
  position: relative;
  background-color: #116936;
  overflow: hidden;
}

.testimonial-item {
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.testimonial-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.owl-carousel .owl-item img.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--font-color-dark);
}

.author-title {
  font-size: 14px;
  opacity: 0.9;
  color: var(--font-color-dark);
  margin-right: 15px;
}

.company-logo {
  height: 40px;
  margin-left: 30px;
}

.rating {
  margin-bottom: 15px;
}

.star {
  color: #fff;
  font-size: 20px;
}

.custom-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #8bc34a;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.custom-prev {
  left: 20px;
}

.custom-next {
  right: 20px;
}

.logo-container {
  display: flex;
  margin-left: 15px;
  align-items: center;
  border-left: 1px solid #cbe2ab;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  width: 100%;
  /* max-width: 400px; */
}

/* New styles for fixed background */
.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.owl-carousel .owl-item {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

/* Hide nav dots */
.owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

/******************************** 
    HOME PAGE -- GET QUOTE 
*********************************/

.form-wrapper {
  margin-top: 40px;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 123, 73, 0.25);
  border-color: #FF8B00;
}

textarea.form-control {
  min-height: 120px;
}

.submit-btn {
  background-color: var(--dark-green);
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: 500;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #d86636;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: -12px;
  margin-bottom: 12px;
  display: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

/******************************** 
    HOME PAGE -- PROJECTS 
*********************************/

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.featured-project {
  grid-column: span 4;
  grid-row: span 2;
}

.regular-project {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .featured-project {
    grid-column: span 6;
    grid-row: span 1;
  }

  .regular-project {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .featured-project,
  .regular-project {
    grid-column: span 12;
  }

  .projects-grid {
    grid-gap: 15px;
  }
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.featured-project .project-card {
  height: 100%;
}

.regular-project .project-card {
  height: 250px;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transition: bottom 0.4s ease-in-out;
  opacity: 0;
}

.project-card:hover .project-info {
  bottom: 0;
  opacity: 1;
}

.project-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out 0.1s;
}

.project-info p {
  font-size: 0.85rem;
  margin-bottom: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out 0.2s;
}

.project-card:hover .project-info h4,
.project-card:hover .project-info p {
  transform: translateY(0);
  opacity: 1;
}

.read-more {
  color: #8bc34a;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-out 0.3s;
}

.project-card:hover .read-more {
  transform: translateY(0);
  opacity: 1;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.2s;
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #ddd;
  padding: 10px 40px;
  border-radius: 30px;
  transition: all 0.4s;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.view-all-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.4s;
  z-index: -1;
}

.view-all-btn:hover {
  background-color: #f8f8f8;
  border-color: #ccc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.view-all-btn:hover:before {
  left: 100%;
}

.featured-project {
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #333;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease;
}

.project-card:hover .featured-badge {
  transform: translateY(0);
  opacity: 1;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Animation for cards when they appear */
.fade-in-up {
  animation: fadeInUp 0.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#projects .content-wrapper p {
  width: 50%;
  margin: 0 auto;
}

#projects .btn-wrapper {
  display: flex;
  justify-content: center;
}

.projects-wrapper {
  padding: 40px 0;
}

/******************************** 
    HOME PAGE -- NEWS & EVENTS 
*********************************/

#news .content-wrapper p {
  width: 50%;
  margin: 0 auto;
}

.news-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

.article-card {
  margin-bottom: 20px;
  height: 100%;
}

.article-image {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.article-category {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 16px;
}

.article-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-description {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
}

.author-section {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.author-image {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
}

.author-info {
  font-size: 13px;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0;
}

.article-metadata {
  color: #6c757d;
  display: flex;
  align-items: center;
}

.dot-separator {
  margin: 0 8px;
}

#news .btn-wrapper {
  display: flex;
  justify-content: center;
}

/******************************** 
    HOME PAGE -- FAQ 
*********************************/

#faq .content-wrapper p {
  width: 50%;
  margin: 0 auto;
}

.faq-wrapper {
  padding: 40px 0;
  width: 60%;
  margin: 0 auto;
}

#faq .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.accordion,
.accordion-item,
.accordion-button:not(.collapsed),
.accordion-button {
  background-color: transparent;
  border-right: none;
  border-left: none;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion-button:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

/******************************** 
    HOME PAGE -- CONTACT 
*********************************/

.contact-info-wrap ul li {
  display: flex;
  gap: 15px;
  padding: 10px 0;
}

.contact-info-wrap ul li i {
  font-size: 20px;
  color: var(--secondary-color);
}

.contact-info-wrap .email,
.contact-info-wrap .phone,
.contact-info-wrap .address {
  display: flex;
  flex-direction: column;
}

/******************************** 
    HOME PAGE -- FOOTER 
*********************************/

.footer {
  padding: 50px 0 20px;
  border-top: 1px solid #e9e9e9;
}

footer .logo {
  max-width: 180px;
  margin-bottom: 20px;
}

footer .subscribe-form {
  margin: 20px 0;
}

footer .form-control {
  border-radius: 4px;
  padding: 10px 15px;
}

footer .btn-subscribe {
  background-color:var(--dark-green);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.footer-links h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #333;
}

footer .social-icons a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

footer .social-icons i {
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
}

.footer-bottom a {
  color: #333;
  text-decoration: none;
}

footer .form-control,
footer .form-select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 0;
  margin-right: 10px;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.footer-des-wrapper {
  width: 80%;
}

@media (max-width: 767px) {
  .footer-section {
    margin-bottom: 30px;
  }
}

/******************************** 
    INNER PAGE -- BANNER 
*********************************/

#inner-banner {
  margin-top: 90px;
}

#inner-banner h1 {
  font-weight: 300;
  font-size: 60px;
}

#inner-banner .content-wrapper p {
  font-weight: 300;
  width: 50%;
  margin: 0 auto;
}

/******************************** 
    INNER PAGE -- BLOG 
*********************************/

#blog-page #news .content-wrapper p {
  width: 50%;
  margin-left: 0;
}

.blog-list-wrapper .article-image {
  height: 320px;
}

.blog-list-wrapper {
  margin-bottom: 40px;
}

/******************************** 
    INNER PAGE -- SERVICES INNER 
*********************************/

#about-services .content-wrapper {
  padding: 0 2em;
}

.service-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: #e1f5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.feature-icon i {
  color: #4caf50;
  font-size: 12px;
}

.service-feature span {
  font-size: 15px;
  color: #555;
}

.how-we-work {
  padding: 60px 0;
  text-align: center;
}

.process-card {
  padding: 30px 20px;
  border-radius: 5px;
  height: 100%;
  background-color: white;
  transition: transform 0.3s;
  border: 1px solid #a1a1aa;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: #FF8B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.process-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #343a40;
  text-align: center;
}

.process-description {
  color: #6c757d;
  text-align: center;
}

.arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  color: #28a745;
  font-size: 24px;
}

@media (max-width: 991px) {
  .desktop-arrow {
    display: none;
  }

  .mobile-arrow {
    display: block;
    margin: 20px auto;
    transform: rotate(90deg);
  }
}

@media (min-width: 992px) {
  /* .desktop-arrow {
    display: block;
  } */

  .mobile-arrow {
    display: none;
  }
}

.process-card-wrapper {
  margin-top: 40px;
}

#how-we-work .content-wrapper p {
  font-weight: 300;
  width: 50%;
  margin: 0 auto;
}

/******************************** 
    INNER PAGE -- ABOUT US
*********************************/

.team-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-position {
  color: #FF8B00;
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f4f9ed;
}

.team-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-icons {
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 5px;
  color: white;
}

.social-icon.purple {
  background-color: #8a2be2;
}

.social-icon.blue {
  background-color: #1da1f2;
}

@media (max-width: 767px) {
  .team-avatar {
    width: 120px;
    height: 120px;
  }

  .section-title {
    font-size: 2rem;
  }
}

.team-wrapper {
  margin-top: 40px;
}

#team .content-wrapper p {
  font-weight: 300;
  width: 50%;
  margin: 0 auto;
}

.statement-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.vision-icon {
  color: #FF8B00;
}

.mission-icon {
  color: #FF8B00;
}

.statement-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.statement-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.stats-container {
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid #d4d4d4;
}

.stat-box {
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.stat-box:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  z-index: 1;
}

/* .stat-box:first-child {
  background-color: #8bc34a;
  color: white;
} */

.stat-box:first-child:hover {
  background-color: #7cb342;
}

.stat-number {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
  transform: scale(1.1);
}

/* .stat-box:first-child .stat-number {
  color: white;
} */

.stat-title {
  font-size: 1rem;
  line-height: 1.4;
}

.border-right {
  border-right: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .border-right {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

/******************************** 
    INNER PAGE -- BLOG INNER
*********************************/

.header-section {
  padding: 3rem 0;
}
.blog-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.author-section {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF8B00;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.author-name {
  font-weight: 500;
  margin-bottom: 0;
}
.date {
  font-size: 0.85rem;
  color: #777;
}
.social-share {
  display: flex;
  gap: 10px;
}
.social-share a {
  color: #777;
  text-decoration: none;
}
.featured-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.content-section {
  margin-bottom: 2rem;
}
.content-img {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.share-post {
  margin-top: 4rem;
}
.share-icons {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}
.share-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #555;
  text-decoration: none;
}
.divider {
  margin: 2rem 0;
  border-top: 1px solid #eee;
}
@media (max-width: 768px) {
  .blog-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

#blog-inner-page {
  margin-top: 90px;
}

/******************************** 
    INNER PAGE -- PROJECTS INNER
*********************************/

.btn-custom-green {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  margin-right: 10px;
}

.header-section {
  border-bottom: 1px solid #e7e7e7;
}
.client-info-wrapper {
  border-left: 1px solid #e7e7e7;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  flex-direction: column;
}
.client-info-wrapper p {
  margin-bottom: 0;
}
.project-overview {
  padding: 40px 0;
}
.image-section {
  padding: 30px 0;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}
.service-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.subtitle {
  color: #6c757d;
  font-size: 0.9rem;
}

#projects-inner-page {
  margin-top: 90px;
}

.client-info-wrapper .author-img {
  margin-right: 0;
  background-color: transparent;
  width: 100px;
}

.client-info {
  display: flex;
  gap: 40px;
}
