@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  text-align: left;
}

p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  transition: 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #21292C;
  font-style: normal;
  margin-bottom: 5px;
  margin-top: 20px;
  line-height: 1.2;
  font-weight: 600;
  -webkit-transition: .5s;
  transition: .5s;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 25px;

}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a {
  color: #007c2b;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
  text-decoration: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  -webkit-transition: .5s;
  transition: .5s;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a,
i,
ol,
li,
ul {
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

*::-moz-selection {
  background: #FF9D00;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #FF9D00;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #FF9D00;
  color: #fff;
  text-shadow: none;
}



/*==============================================
 Header section
==============================================*/
.top-bar-container {
  background: #121617;
  padding: 5px 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}

.top-bar-container::before {
  position: absolute;
  content: "";
  width: 58.333333%;
  height: 100%;
  left: -10px;
  top: 0;
  background: #00B23F;
  z-index: -1;
  transform: skew(20deg);
}

.top-bar-container::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 58.333333%;
  top: 0;
  background: #fff;
  z-index: -1;
  transform: skew(20deg);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar .contact-info a {
  color: #fff;
  text-decoration: none;
}

.top-bar .contact-info a:hover {
  color: #FF9D00;
}

.top-bar .contact-info i {
  margin-right: 5px;
  color: #fff;
  font-size: 15px !important;
}

.top-bar .social {
  display: flex;
  align-items: center;
}

.top-bar .social a {
  color: #fff;
  margin-left: 10px;
}

.top-bar .social a:hover {
  color: #FF9D00;
}

@media (max-width: 576px) {

  .top-bar-container::before,
  .top-bar-container::after {
    display: none;
  }

  .top-bar-container {
    background: #00B23F;
  }

  .top-bar .social {
    display: none;
  }
}

.navbar {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  height: 60px;
  padding: 5px;
  border-radius: 8px;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 16px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  margin: 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #FF9D00;
}

.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(100%);
  left: 0;
  margin-top: 0;
  transform: translateY(0);
}

.navbar-nav .dropdown-item {
  padding: 10px 20px;
  font-size: 16px;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  color: #FF9D00;
  background-color: transparent;
}

.search-icon {
  color: #000;
  font-size: 20px;
  margin: 0 15px;
}

.btn-quote {
  background-color: #00B23F;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-left: 15px;
}

.btn-quote:hover {
  background-color: #007c2b;
}

@media (max-width: 992px) {

  .navbar-nav,
  .search-icon,
  .btn-quote {
    display: none;
  }

  .navbar {
    padding: 0;
  }

  .navbar-brand {
    margin: 0;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
  }

  .mobile-menu {
    background-color: #fff;
  }

  .mobile-menu .nav-link {
    color: #000;
    padding: 8px 12px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .mobile-menu .nav-link:hover {
    color: #00B23F;
    background-color: #f8f8f8;
  }

  .mobile-menu .nav-link.boock-link {
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 0;
    color: #000;
    text-align: left;
    width: 100%;
  }

  .mobile-menu .nav-link.boock-link:hover {
    color: #00B23F;
    background-color: #f8f8f8;
  }

  .mobile-menu .navbar-nav {
    display: block;
  }

  .mobile-menu .nav-item {
    display: block;
  }

  .mobile-menu .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background-color: #f8f8f8;
    padding: 0;
  }

  .mobile-menu .nav-item.show .dropdown-menu {
    display: block !important;
  }

  .mobile-menu .dropdown-item {
    padding: 8px 24px;
    font-size: 14px;
    color: #000;
  }

  .mobile-menu .dropdown-item:hover {
    background-color: #00B23F;
    color: #fff;
  }

  .mobile-menu .nav-link[data-bs-toggle="collapse"]::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
  }

  .mobile-menu .nav-link[aria-expanded="true"]::after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
}

.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-logo img {
  height: 45px;
}

.mobile-menu-logo span {
  color: #000;
  font-weight: bold;
  font-size: 24px;
  margin-left: 10px;
}

.mobile-menu .btn-close {
  margin: 0;
  color: #fff !important;
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.mobile-menu-social a {
  color: #000;
  font-size: 18px;
  border: 2px solid #000;
  border-radius: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mobile-menu-social a:hover {
  color: #00B23F;
  border-color: #00B23F;
  transform: translateY(-3px);
}





/*==============================================
 Hero carousel section
==============================================*/
.carousel-slide-inner {
  min-height: 450px;
  height: auto;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 0;
}

.carousel-slide-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 41, 44, 0.7);
}

.carousel-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 30px;
  z-index: 2;
}

.carousel-text {
  max-width: 50%;
}

.carousel-text h1 {
  font-size: 2.1rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
  color: #00B23F;
}

.carousel-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.btn-hero {
  background-color: #00B23F !important;
  color: #fff !important;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
}

.btn-hero:hover {
  background-color: #007c2b;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border: none;
  z-index: 3;
  display: block !important;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-icon {
  background-color: white;
  border-radius: 50%;
  padding: 12px 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #000;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 768px) {
  .carousel-content {
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
  }

  .carousel-text {
    max-width: 95%;
  }

  .carousel-text h1 {
    font-size: 1.5rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  .carousel-control-prev {
    left: 5px !important;
  }

  .carousel-control-next {
    right: 5px !important;
  }
}



.services-section {
  background-color: #fff;
  padding: 80px 0;
}

.services-section h2 {
  color: #21292c;
  font-weight: bold;
}

.services-section h3 {
  color: #00B23F;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card {
  background-color: #f1f3f5;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
  font-size: 2.5rem;
  color: #00B23F;
  margin-bottom: 15px;
}

.service-card h4 {
  color: #21292c;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

@media (max-width: 767.98px) {
  .services-section h2 {
    font-size: 28px;
  }

  .services-section h3 {
    font-size: 16px;
  }

  .service-card {
    padding: 20px;
  }
}




.testimonials-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.testimonials-section h2 {
  font-size: 36px;
  color: #21292c;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.testimonials-section h3 {
  font-size: 18px;
  color: #00B23F;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  margin: 0 10px;
}

.testimonial-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card h5 {
  font-size: 18px;
  color: #21292c;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-card h6 {
  font-size: 14px;
  color: #00B23F;
  margin-bottom: 15px;
}

.star-rating {
  color: #00B23F;
  font-size: 16px;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  width: 8px !important;
  ;
  height: 8px !important;
  ;
  cursor: pointer;
  border-radius: 50%;
  background-color: #00B23F !important;
}

.slick-dots li button::before {
  display: none !important;
}

.slick-dots li.slick-active button {
  background-color: #21292c !important;
}

.slick-slide {
  height: auto;
}

.slick-list {
  margin: 0 -10px;
}

.slick-track {
  display: flex;
  align-items: stretch;
}

@media (min-width: 992px) {
  .testimonial-card {
    margin: 0 10px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonial-card {
    margin: 0 10px;
    padding: 25px;
  }
}

@media (max-width: 767.98px) {
  .testimonials-section h2 {
    font-size: 28px;
  }

  .testimonials-section h3 {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 20px;
    margin: 0 15px;
  }

  .slick-list {
    margin: 0;
  }
}



.cta-section {
  background-color: #21292C;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.btn-custom {
  background-color: #00B23F;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #007C2B;
  color: #fff;
}

.cta-image {
  position: absolute;
  top: 0;
  right: 4%;
  height: 100%;
  width: 25%;
  object-fit: cover;
  overflow-y: hidden;
}

@media (max-width: 767.98px) {
  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-image {
    display: none;
  }
}




.stats-section {
  position: relative;
  background: url('../images/accomplishments.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  padding: 40px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 41, 44, 0.7);
  z-index: 1;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-content .row {
  margin-left: 0;
  margin-right: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
}

.stat-item i {
  font-size: 2.5rem;
  color: #FF9D00;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(0, 178, 63, 0.4);
}

.stat-item .stat-details {
  text-align: left;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF9D00;
  margin-bottom: 5px;
  transition: all 2s ease-out;
}

.stat-item .stat-text {
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .stats-content .row {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    margin-bottom: 20px;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }
}


.show-more-button {
  background-color: #fff;
  border: 1px solid #00b23f;
  color: #00b23f;
  font-weight: bold;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.show-more-button:hover {
  background-color: #007C2B;
  color: #fff;
}

.show-more-button i {
  margin-right: 0.5rem;
}


/*==============================================
 About Us Area
==============================================*/
.home-about-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
  color: #00B23F;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  color: #21292c;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-content .btn-discover {
  background-color: #00B23F;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.about-content .btn-discover:hover {
  background-color: #007c2b;
}

@media (max-width: 768px) {
  .about-image {
    margin-bottom: 30px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content h3 {
    font-size: 16px;
  }
}


.vision-mission-section .section-title,
.core-values-section .section-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}
.vision-mission-section .section-title::after,
.core-values-section .section-title::after{
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00B23F, #007C2B);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.vision-mission-section, .core-values-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.card-custom {
  background: linear-gradient(145deg, #fff 0%, #F8F9FA 100%);
  border: none;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.card-custom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(126, 173, 142, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  animation: pulse 6s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.8); opacity: 0.5; }
}
.card-custom:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(212, 160, 23, 0.3);
}
.card-custom i {
  font-size: 3rem;
  color: #00B23F;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.card-custom:hover i {
  color: #FF9D00;
}
}
@media (max-width: 767.98px) {
  .card-custom {
    padding: 25px;
    margin-bottom: 20px;
  }
  .card-custom i {
    font-size: 2.5rem;
  }
}


.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
  height: 100%;
}
.value-card:hover {
  box-shadow: 0 0 30px rgba(255, 157, 0, 0.5);
  animation: glow 1.5s infinite alternate;
}
@keyframes glow {
  from { box-shadow: 0 0 15px rgba(212, 160, 23, 0.3); }
  to { box-shadow: 0 0 40px rgba(212, 160, 23, 0.7); }
}
.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(126, 173, 142, 0.4) 0%, transparent 70%);
}
.value-card i {
  font-size: 3rem;
  color: #00B23F;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.value-card:hover i {
  transform: scale(1.2);
}



/*==============================================
 Service Page
==============================================*/
.service-overview {
  background-color: #F8F9FA;
}
.service-overview h1 {
  font-weight: 700;
  font-size: 2rem;
  position: relative;
}
.service-overview h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #00B23F;
}
.service-overview p {
  color: #666;
}
.header-image {
  width: 100%;
  border-radius: 15px;
}
.service-section {
  background-color: #fff;
}
.service-section h2 {
  font-weight: 700;
  position: relative;
}
.service-section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #00B23F;
}
.service-section ul li,
.service-section ol li {
  margin-bottom: 10px;
}
.service-section ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00B23F;
  margin-right: 10px;
}
.service-section ol {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.service-section ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 22px;
  margin-bottom: 1em;
}
.service-section ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: #00B23F;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
}
.service-cta {
  background: linear-gradient(to right, #F0F7F4, #E6F0FA);
  padding: 30px 0;
}
.service-cta h2 {
  font-weight: 700;
  margin-bottom: 10px;
}
.service-cta p {
  color: #666;
  margin-bottom: 20px;
}
.service-cta .cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  border: 2px solid #FF9D00;
  border-radius: 5px;
  color: #FF9D00;
  text-decoration: none;
  margin-right: 10px;
}
.service-cta .cta-phone i {
  margin-right: 5px;
}
.service-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #00B23F;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  transition: background-color 0.3s ease;
}
.service-cta .btn-cta:hover {
  background-color: #009933;
}
@media (max-width: 767.98px) {
  .service-cta h2 {
    font-size: 1.25rem;
  }
  .service-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .service-cta .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
  .service-cta .cta-phone, .service-cta .btn-cta {
    padding: 0 10px;
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .service-cta h2 {
    font-size: 1.5rem;
  }
  .service-cta p {
    font-size: 1rem;
  }
}



/*==============================================
 Projects Page
==============================================*/
.projects-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #21292C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.projects-section .section-title::after {
  content: '';
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #00B23F, #007C2B);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}
.project-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #000;
  transition: transform 0.3s ease;
}
.project-card img {
  width: 100%;
  filter: brightness(50%);
}
.project-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-align: center;
}
.project-card .card-overlay h5 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: #fff;
}
.project-card:hover {
  transform: scale(1.05);
}
.date-time {
  color: #666;
  text-align: center;
}
@media (max-width: 767.98px) {
  .project-card img {
    height: 150px;
  }
  .project-card .card-overlay h5 {
    font-size: 1rem;
  }
}

/*==============================================
 Project page
==============================================*/
.project-section {
  padding: 50px 0;
  background: #fff;
}
.project-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.project-image .thumbnail-container {
  margin-top: 10px;
}
.project-image .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.project-image .thumbnail.highlighted {
  border-color: #00B23F;
  border-width: 3px;
}
.project-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.project-text h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #00B23F;
}
.project-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .project-text h1 {
    font-size: 1.8rem;
  }
  .project-text p {
    font-size: 0.95rem;
  }
}


/*==============================================
 Materials
==============================================*/
.materials-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.materials-section .section-title::after {
  content: '';
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #00B23F, #007C2B);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}
.material-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.material-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
}
.material-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.material-card:hover img {
  transform: scale(1.1);
}
.material-card .card-body {
  padding: 20px;
  text-align: center;
}
.material-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.material-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.material-card .btn-details {
  background: linear-gradient(90deg, #00B23F, #007C2B);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.material-card .btn-details:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2.5rem;
  }
  .material-card img {
    height: 250px;
  }
  .material-card h3, .why-choose-card h3 {
    font-size: 1.3rem;
  }
}



/*==============================================
 Material Page
==============================================*/
.material-section {
  padding: 50px 0;
  background: #fff;
}
.material-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.material-section .thumbnail-container {
  margin-top: 10px;
}
.material-section .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}
.material-section .thumbnail.highlighted {
  border-color: #00B23F;
  border-width: 3px;
}
.material-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.material-text h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #00B23F;
}
.material-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.material-text ul {
  padding-left: 20px;
  padding-bottom: 10px;
}
.material-text ul li{
  list-style: disc;
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.btn-whatsapp i {
  margin-right: 8px;
}
.btn-whatsapp:hover {
  background-color: #1ebe54;
}
@media (max-width: 767.98px) {
  .material-text h1 {
    font-size: 1.8rem;
  }
  .material-text p {
    font-size: 0.95rem;
  }
}



/*==============================================
 Contact Area
==============================================*/
.contact-section {
  background-color: #F8F9FA;
  padding: 60px 0;
}

.contact-container {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-page-info {
  background-color: #C0C0C0;
  padding: 40px;
  color: #21292C;
}

.contact-page-info .sub-title {
  color: #00B23F;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-page-info .main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-page-info .description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-page-info .contact-details {
  margin-bottom: 20px;
}

.contact-page-info .contact-details .detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-page-info .contact-details .detail-icon {
  color: #00B23F;
  font-size: 1.2rem;
  margin-right: 10px;
}

.contact-page-info .contact-details .detail-text {
  font-size: 0.95rem;
}

.contact-page-info .social-links {
  display: flex;
  gap: 15px;
}

.contact-page-info .social-links a {
  color: #666;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-page-info .social-links a:hover {
  color: #00B23F;
}

.contact-form {
  padding: 40px;
}

.contact-form .form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #21292C;
  margin-bottom: 30px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 12px 10px 40px;
  font-size: 0.95rem;
  height: auto;
  color: #666;
  position: relative;
}

.contact-form .form-control::placeholder {
  color: #666;
}

.contact-form .form-control:focus {
  border-color: #00B23F;
  box-shadow: none;
  z-index: 0;
}

.contact-form .input-group-text {
  background-color: #fff;
  border: none;
  padding: 0;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  z-index: 1;
}

.contact-form textarea.form-control {
  padding-left: 12px;
}

.contact-form .btn-submit {
  background-color: #00B23F;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 5px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
  background-color: #007C2B;
}

.map-section {
  padding: 60px 0;
  background-color: #F8F9FA;
}

.map-container {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 15px;
}

@media (max-width: 767.98px) {

  .contact-page-info,
  .contact-form {
    padding: 20px;
  }

  .contact-page-info .main-title {
    font-size: 1.5rem;
  }

  .contact-form .form-title {
    font-size: 1.25rem;
  }

  .map-container iframe {
    height: 300px;
  }
}



/*==============================================
 Quote Page
==============================================*/
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url('../images/accomplishments.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.quote-section {
  padding-bottom: 60px;
}

.quote-container {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.quote-form .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #21292C;
  margin-bottom: 30px;
}

.quote-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote-form .form-column {
  flex: 1;
  min-width: 0;
}

.quote-form .form-column.full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

.quote-form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 12px 10px 40px;
  font-size: 0.95rem;
  height: auto;
  color: #666;
  position: relative;
  width: 100%;
}

.quote-form .form-control::placeholder {
  color: #666;
}

.quote-form .form-control:focus {
  border-color: #00B23F;
  box-shadow: none;
  z-index: 0;
}

.quote-form .input-group {
  position: relative;
  width: 100%;
}

.quote-form .input-group-text {
  background-color: #fff;
  border: none;
  padding: 0;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  z-index: 1;
}

.quote-form textarea.form-control {
  padding-left: 12px;
  height: 100%;
  min-height: 200px;
}

.quote-form .btn-submit {
  background-color: #00B23F;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 5px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.quote-form .btn-submit:hover {
  background-color: #007C2B;
}

@media (min-width: 768px) {
  .quote-form .form-column {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .quote-container {
    margin-top: -30px;
    padding: 20px;
  }

  .quote-form .form-title {
    font-size: 1.5rem;
  }

  .quote-form .form-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

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



/*==============================================
 Blog Page
==============================================*/
.blog-section {
  position: relative;
  background-color: #F8F9FA;
  padding: 60px 0;
}

.blog-section .blog-content {
  position: relative;
  z-index: 2;
}

.blog-section .blog-content .row {
  margin-left: 0;
  margin-right: 0;
}

.blog-section .blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-section .blog-card-img {
  height: 200px;
  object-fit: cover;
}

.blog-section .blog-card-meta {
  font-size: 0.875rem;
  color: #FF9D00;
}

.blog-section .blog-card-meta a {
  color: #FF9D00;
  text-decoration: none;
}

.blog-section .blog-card-meta a:hover {
  text-decoration: underline;
}

.blog-section .blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #21292C;
}

.blog-section .blog-card-btn {
  display: inline-block;
  background-color: #00B23F;
  color: #fff;
  border: none;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-section .blog-card-btn:hover {
  background-color: #007C2B;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .blog-section .blog-card-title {
    font-size: 1rem;
  }

  .blog-section .blog-card-img {
    height: 150px;
  }
}


.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: #00B23F;
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active {
  background: #82878E;
  color: white;
}
.pagination .page-item:hover {
  background: #007C2B;
  color: white;
}




/*==============================================
 Blog Post Page
==============================================*/
.blog-post-section {
  background-color: #F8F9FA;
  padding: 40px 0;
}

.blog-post-section .blog-post-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post-section .breadcrumb {
  background: transparent;
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.blog-post-section .breadcrumb a {
  color: #00B23F;
  text-decoration: none;
}

.blog-post-section .breadcrumb a:hover {
  text-decoration: underline;
}

.blog-post-section .blog-post-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-post-section .blog-post-meta {
  font-size: 0.85rem;
  color: #00B23F;
  margin-bottom: 1rem;
}

.blog-post-section .blog-post-meta a {
  color: #00B23F;
  text-decoration: none;
}

.blog-post-section .blog-post-meta a:hover {
  text-decoration: underline;
}

.blog-post-section .blog-post-meta span {
  margin-right: 15px;
}

.blog-post-section .blog-post-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #21292C;
  margin-bottom: 1.5rem;
}

.blog-post-section .blog-post-text {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}
.blog-post-section .blog-post-text ul, .blog-post-section .blog-post-text ol {
  padding-left: 20px;
}
.blog-post-section .blog-post-text ul li {
  list-style: disc;
}

.blog-post-section .blog-post-sidebar .sidebar-widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.blog-post-section .blog-post-sidebar .sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #21292C;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}

.blog-post-section .blog-post-sidebar .sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #00B23F;
}

.blog-post-section .blog-post-sidebar .search-form {
  position: relative;
}

.blog-post-section .blog-post-sidebar .search-input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 40px 8px 12px;
  width: 100%;
  font-size: 0.9rem;
}

.blog-post-section .blog-post-sidebar .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00B23F;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.blog-post-section .blog-post-sidebar .search-btn:hover {
  background-color: #007C2B;
}

.blog-post-section .blog-post-sidebar .recent-posts-list {
  list-style: none;
  padding: 0;
}

.blog-post-section .blog-post-sidebar .recent-posts-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-content {
  flex: 1;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-title {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-title:hover {
  color: #00B23F;
}

.blog-post-section .blog-post-sidebar .recent-posts-list .recent-post-date {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 991.98px) {
  .blog-post-section .blog-post-hero-img {
    height: 250px;
  }

  .blog-post-section .blog-post-title {
    font-size: 1.25rem;
  }

  .blog-post-section .blog-post-text {
    font-size: 0.95rem;
  }
}


/*==============================================
 Footer section
==============================================*/
footer {
  background-color: #21292c;
  color: #fff;
  padding: 60px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 50px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: bold;
  color: #00B23F;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column h5 {
  font-size: 18px;
  color: #00B23F;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.footer-links ul li a:hover {
  color: #00B23F;
}

.footer-links ul li a i {
  margin-right: 8px;
  font-size: 12px;
  color: #00B23F;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-info p:hover {
  background-color: rgba(212, 160, 23, 0.1);
  transform: translateX(5px);
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.contact-info a:hover {
  color: #00B23F;
}

.contact-info i {
  margin-right: 10px;
  color: #00B23F;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-icons a:hover {
  color: #00B23F;
  border-color: #00B23F;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom a:hover {
  color: #00B23F;
}

@media (max-width: 768px) {
  .row>div {
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom a {
    margin-left: 0;
  }
}

.scroll-to-top,
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #070026;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover,
.whatsapp-button:hover {
  background-color: #ffffff;
}

.whatsapp-button {
  bottom: 90px;
  background-color: #25d366;
  color: white;
}

.whatsapp-button:hover {
  background-color: #1da851;
}



/*=======================================
   Loader
========================================*/
.loader {
  display: none;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}

.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #007C2B;
  color: #007C2B;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}

@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }

  50%,
  100% {
    top: 19px;
    height: 26px;
  }
}

@-webkkeyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webktransform: scaleY(0.4)
  }

  20% {
    -webktransform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webktransform: scaleY(1.0);
  }
}