.logo img {
    width: 100%;
    max-width: 85px;
    height: 85px;
}

header.main-header {
    background: #fff !important;
}

ul.navbar-nav.me-auto a {
    color: black !important;
    font-weight: 600;
}

.navbar-nav li a {
    color: white !important;
}

/* THEME BUTTON */
.theme-btn {
  background: linear-gradient(135deg, #007f4c, #007f4c);
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.theme-btn:hover {
  background: linear-gradient(135deg, #007f4c, #007f4c);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  color: #fff;
}





.navbar-nav {
    gap: 30px;
}


/* banner css */


.hero-slider {
    overflow: hidden;
}
.single-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.navbar-nav .dropdown-menu a {
    background: #275c39;
}

.navbar-nav .dropdown-menu li {
    padding: 10px 10px 0;
}

.inner-about-text h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.inner-about-text span {
    color: black;
    font-size: 18px;
}

.inner-about-text a {
    color: #275c39;
}
.inner-about-img {
    text-align: right;
}

.inner-about-img img {
    width: 100%;
    max-width: 450px;
}


/* services css */

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #004d26;
}

.section-subtitle {
  font-size: 18px;
  color: #777;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: 0.3s ease;
}

.service-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #007f4c, #007f4c);
  z-index: -1;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.service-box:hover::before {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.service-box i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #008951;
  transition: color 0.4s ease;
}

.service-box h4 {
  font-size: 18px;
  color: #004d26;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.service-box p {
  font-size: 14px;
  color: #555;
  transition: color 0.4s ease;
}

.service-box:hover i, .service-box:hover h4, .service-box:hover p {
    color: #fff !important;
}


/* why choose us css */

.why-choose-us {
  background: #f9f9f9;
}

.why-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-box i {
  font-size: 40px;
  color: #004d26;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.why-box h5 {
  font-size: 18px;
  color: #004d26;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 14px;
  color: #555;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-box:hover i {
  color: #007f4c;
}


/* industries css */



.industries-served-section {
  background: #111;
}

.industry-card {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid transparent;
  position: relative;
}

.industry-card i {
  font-size: 40px;
  color: #004d26;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.industry-card h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.industry-card:hover {
  background: #1f1f1f;
  border-color: #004d26;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 199, 107, 0.3);
}

.industry-card:hover i {
  color: #004d26;
  transform: scale(1.2);
}



.our-process {
  background: #fdfdfd;
}

.our-process .section-title {
  color: #004d26;
  font-weight: bold;
}

.our-process .process-text h4 {
  font-size: 22px;
  color: #004d26;
  margin-bottom: 10px;
}

.our-process .process-text p {
  color: #555;
  font-size: 15px;
}

.process-row {
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
}

.process-row:last-child {
  border-bottom: none;
}

.process-row img {
    width: 100%;
}


.bio-contact-section {
  background: linear-gradient(135deg, #004d26, #004d26);
  color: white;
}

.bio-contact-form input,
.bio-contact-form textarea {
  border: none;
  padding: 12px 20px;
}

.bio-contact-form input::placeholder,
.bio-contact-form textarea::placeholder {
  color: #888;
}

.bio-contact-form textarea {
  resize: none;
}

.bio-contact-form .form-check-input {
  background-color: white;
  border: 1px solid #ccc;
}

.bio-contact-form .btn-light:hover {
  background-color: #e5e5e5;
  color: #004d26;
}



.footer-bar {
  background-color: #1b1b1b;
  border-top: 1px solid #333;
}



.footer-links a {
  color: #ccc;
  margin-left: 15px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #004d26;
  text-decoration: underline;
}



/* About Page Banner */
.page-banner {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0 !important;
}

/* About Section */
.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.about-section .section-title {
  font-size: 30px;
  font-weight: bold;
  color: #004d26;
}

/* Mission & Vision Boxes */
.mission-vision .box {
  transition: 0.3s ease;
}

.mission-vision .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 199, 107, 0.1);
}

/* Why Choose Us Features */
.feature-box {
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: #00c76b !important;
  color: white;
}

.feature-box:hover i {
  color: white;
}

.feature-box h5 {
  font-size: 16px;
  color: #004d26;
  margin-bottom: 0;
}


.timeline-box h5 {
  color: #004d26;
  margin-bottom: 10px;
}

.timeline-box p {
  font-size: 15px;
  color: #555;
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease;
}

.grayscale:hover {
  filter: none;
  opacity: 1;
}


.industry-box {
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.industry-box:hover {
    background: #00c76b !important;
    color: #275c39 !important;
    transform: translateY(-5px);
}

.industry-box:hover i,
.industry-box:hover h5 {
  color: white;
}



.cert-box img {
  max-height: 80px;
  object-fit: contain;
}

.cert-box {
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.cert-box:hover {
  background-color: #00c76b;
  color: white;
  transform: translateY(-5px);
}

.cert-box:hover p,
.cert-box:hover h6 {
  color: white;
}



.section-title {
  font-size: 30px;
  color: #004d26;
  font-weight: bold;
}

.section-subtitle {
  color: #777;
  font-size: 16px;
}

.job-box:hover {
    background-color: #00c76b;
    color: black;
    transform: translateY(-5px);
    transition: 0.3s ease;
}



.job-box:hover p {
  color: white;
}


.contact-section h3 {
  color: #004d26;
  font-weight: bold;
}

.contact-section p {
  font-size: 15px;
  color: #555;
}

.contact-section i {
  width: 24px;
  text-align: center;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #00c76b;
    color: white;
    border: none;
    outline: none;
    padding: 12px 17px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

#scrollTopBtn:hover {
  background-color: #007f4c;
}


.services-slider .service-box {
  background: #fff;
  padding: 30px 20px;
  margin: 0 10px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.services-slider .service-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}


