:root {
  --trust-green: #2e8b57;
  --trust-orange: #ff8c00;
  --trust-black: #2c2c2c;
  --trust-white: #ffffff;
  --trust-light-green: #90ee90;
  --trust-light-gray: #f8f9fa;
}

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

body {
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background-color: #1faf1a;
  color: var(--trust-black);
}

/* Header Styles */
.navbar {
  background: var(--trust-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--trust-green) !important;
}

.navbar-nav .nav-link {
  color: var(--trust-black) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--trust-orange) !important;
}

/* Hero Section */
.hero {
  /* background: linear-gradient(
          135deg,
          var(--trust-green) 0%,
          var(--trust-light-green) 50%,
          var(--trust-orange) 100%
        ); */
        
 background: linear-gradient(to right, #e9f5e9, #fff3d1);
  /* color: var(--trust-white); */
  color: var(--trust-green);
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  /* color: green; */
  color: var(--trust-green);
}
.hero span {
  color: var(--trust-orange);
}
/* .hero h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
      } */

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-custom {
  background: var(--trust-orange);
  color: var(--trust-white);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #e67e00;
  color: var(--trust-white);
  transform: translateY(-2px);
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--trust-green);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.lab-icon {
  width: 300px;
  height: 300px;
  background: var(--trust-light-gray);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--trust-green);
  margin: 0 auto;
}

/* Tests Section */
.tests-section {
  background: var(--trust-light-gray);
}

.test-card {
  background: var(--trust-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.test-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--trust-green);
  margin-bottom: 0.5rem;
}

.test-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--trust-orange);
}

/* Gallery Section */
.gallery-item {
  background: var(--trust-light-gray);
  border-radius: 10px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.gallery-item img {
  height: 250px;
  width: 350px;
}
.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-icon {
  font-size: 4rem;
  color: var(--trust-green);
}

/* Contact Section */
.contact-section {
  background: var(--trust-light-gray);
}

.contact-info {
  background: var(--trust-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--trust-green);
  color: var(--trust-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.form-control:focus {
  border-color: var(--trust-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Footer */
.footer {
  background: var(--trust-black);
  color: var(--trust-white);
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .tagline {
    font-size: 1.2rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .lab-icon {
    width: 200px;
    height: 200px;
    font-size: 5rem;
  }

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