@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* General Styles */
:root {
  --primary-color: #008000;
  --background-color: #ffffff;
  --primary-text-color: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: "Roboto", sans-serif !important;
}

p {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1rem;
  line-height: 26px;
  color: var(--primary-text-color, #212529);
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

h2 {
  color: var(--primary-color, #008000) !important;
  font-size: 2rem;
  line-height: 2rem;
  text-transform: uppercase !important;
}

/* navbar button */
#primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 2px solid var(--primary-color, #008000);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background-color: transparent !important;
}

#primary-button::before,
#primary-button::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  overflow: hidden;
  z-index: -1;
}

#primary-button::before {
  left: -10px;
  background: #56b356;
}

#primary-button::after {
  right: -10px;
  background: #2e912e;
}

#primary-button:hover::before,
#primary-button:hover::after {
  width: 58%;
}

#primary-button:hover span {
  color: var(--background-color, #fefbeb);
  transition: 0.3s;
}

#primary-button span {
  color: var(--primary-color, #008000);
  font-size: 18px;
  transition: all 0.3s ease-in;
}

/* Navbar Styles */
.navbar .nav-link {
  font-size: 1rem;
  line-height: 2rem;
  color: #1d3571;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #f97316 !important;
}

/* Breadcrumbs */
#breadcrumb {
  background-image: url('./assets/images/breadcrumb1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Stat Section */
#stats-section {
  position: relative;
  /* background-image: url("./Images/stat-bg.jpeg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  background-color: var(--primary-color, #008000);
}

#stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

#stats-section .container {
  z-index: 2;
}

.stat-card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: rgba(0, 0, 0, 0.7);
}

.stat-card .counter {
  display: inline-block;
  color: white;
}

.stat-card span {
  margin-left: -10px;
}

/* Hero Section */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 128, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.hero-content {
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  background-color: rgba(249, 115, 22, 0.9);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
  background-color: #f97316;
  border-color: #f97316;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Service Cards */
#service-card {
  transition: all 0.4s ease-out;
  border: none;
  height: 450px;
  overflow: hidden;
  background: var(--background-color, #ffffff) !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 15px;
}

#service-card .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#service-card:hover .card-img-top {
  transform: scale(1.1);
}

#service-card .card-body {
  padding: 1.5rem;
  position: relative;
  background: #ffffff;
}

#service-card .card-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #1a5d1a !important;
  position: relative;
  padding-bottom: 0.5rem;
}

#service-card .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #f97316;
  transition: width 0.3s ease;
}

#service-card:hover .card-title::after {
  width: 80px;
}

#service-card .card-text {
  color: var(--primary-text-color, #212529);
  font-size: 1rem;
  line-height: 24px;
  margin-bottom: 1.5rem !important;
}

#service-card .text-primary {
  color: #f97316 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

#service-card .text-primary i {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

#service-card:hover .text-primary i {
  transform: translateX(5px);
}

#service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  #service-card {
    height: auto;
    margin-bottom: 2rem;
  }

  #service-card .card-img-top {
    height: 180px;
  }
}

/* Why Section */
.why-card {
  background-color: white;
  box-shadow: 5px 5px green !important;
  border: 1px solid green;
  transition: transform 0.5s ease-out;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* Benefits Section */
.benefit-card {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.benefit-card img {
  transition: transform 0.3s ease;
}

.benefit-card h4 {
  font-size: 20px;
  line-height: 26px;
  color: var(--primary-text-color, #212529);
}

.benefit-card span {
    font-size: 16px;
    line-height: 26px;
}

.benefit-card:hover img {
  transform: scale(1.25);
}

/* Gallery */
.gallery-img {
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Buttons */
.btn-orange {
  background-color: #f97316;
  color: white !important;
  font-weight: bold;
}

.btn-orange:hover {
  background-color: #ea580c;
  color: white;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: transparent !important;
  color: var(--primary-color, #008000) !important;
  font-size: 1.1rem;
  padding: 1.5rem;
  border: 1px solid var(--primary-color, #008000);
  border-radius: 10px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color, #008000) !important;
  color: white !important;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5d1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background: transparent !important;
  color: var(--primary-text-color, #212529) !important;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  border: 1px solid rgba(0, 128, 0, 0.2);
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.accordion-button:hover {
  background: var(--primary-color, #008000) !important;
  color: white !important;
}

.accordion-button:hover::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 767.98px) {
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }

  .accordion-body {
    padding: 1rem;
  }
}

/* Contact Section */
.contact-section {
  border: 2px solid var(--primary-color, #008000);
}

form input,
textarea,
select {
  border: 2px solid var(--primary-color, #008000) !important;
  outline: none !important;
  border-radius: 10px !important;
  background-color: transparent !important;
}

form input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

form input::placeholder,
textarea::placeholder {
  color: var(--primary-text-color, #212529) !important;
  font-size: 1rem;
  list-style: 26px;
}

.contact-section form select {
  color: var(--primary-text-color, #212529) !important;
  font-size: 1.2rem;
}

.contact-section #contact-section-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

/* Team Card */
#team-card {
  box-shadow: 2px 2px green;
  border: 1px solid green;
  transition: transform 0.4s ease-out;
}

#team-card:hover {
  transform: translateY(-5px);
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter {
  animation: countUp 1s ease-out;
}

/* Carousel Section */
.brand-carousel {
  padding: 40px 0;
}

.brand-carousel h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .brand-carousel h1 {
    font-size: 3rem;
  }
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.owl-carousel .item img {
  width: 128px;
  height: auto;
  transition: transform 0.3s ease;
}

.owl-carousel .item img:hover {
  transform: scale(1.1);
}

.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  padding: 5px 15px !important;
  border-radius: 50% !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -30px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -30px;
}

.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}

.owl-carousel .owl-dots {
  margin-top: 20px;
}

/* Modal Styles */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.modal-mail-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.modal-mail-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.modal .btn-close {
  background-color: white;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 1;
  z-index: 10;
  transition: transform 0.3s ease;
}

.modal .btn-close:hover {
  transform: rotate(90deg);
}

/* Contact Page */

/* Process Section Styles */
.process-badge {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-subtitle {
  max-width: 600px;
  margin: 0 auto !important;
  font-size: 1.1rem;
}

.process-card {
  background:  #ffffff;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 128, 0, 0.1);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.process-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #f97316;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: #f97316;
  color: white;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.process-card h3 {
  color: var(--primary-color) !important;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-card {
    padding: 1.5rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-card h3 {
    font-size: 1.1rem;
  }

  .process-card p {
    font-size: 0.9rem;
  }
}

/* Gallery page */
.skeleton-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 0.375rem;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
}



