/*  What We do pages css  */

.what-we-do-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  padding-top: 120px;
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.2rem;
  font-weight: 400;
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

/* Process Section */
.process-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.process-step:nth-child(even) {
  flex-direction: row;
}

.process-step:nth-child(even)::before {
  left: 0;
  right: auto;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: 10px;
  left: 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-content {
  flex: 1;
}

.step-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.step-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.step-details {
  background: rgba(40, 167, 69, 0.1);
  padding: 0.8rem;
  border-radius: 10px;
  border-left: 4px solid #28a745;
}

.step-details ul {
  margin: 0;
  padding-left: 1.5rem;
}

.step-details li {
  color: #495057;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Treatment Options */
.treatment-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.treatment-option {
  flex: 1;
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.treatment-option:hover {
  border-color: #28a745;
  transform: translateY(-3px);
}

.treatment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fd7e14, #e55a4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.treatment-icon i {
  font-size: 1.5rem;
  color: white;
}

.treatment-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.treatment-desc {
  color: #6c757d;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

/* Technologies Section */
.technologies-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-title {
  color: #2c3e50;
  font-weight: 600;
  font-size: 2.2rem;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: #f8f9fa;
  transform: translateX(10px);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fd7e14, #e55a4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon i {
  font-size: 1.5rem;
  color: white;
}

.tech-content h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 2rem;
  border-radius: 15px;
  color: white;
}

.impact-title {
  font-weight: 600;
  font-size: 2.2rem;
  color: white;
}

.impact-description {
  font-size: 1.1rem;
  opacity: 0.9;
}

.impact-stat {
  padding: 1.2rem;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  backdrop-filter: blur(10px);
}

.stat-icon i {
  font-size: 2rem;
  color: #28a745;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .what-we-do-section {
    padding-top: 100px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-card,
  .process-section,
  .technologies-section,
  .impact-section {
    padding: 1.5rem;
  }

  .process-step {
    flex-direction: column !important;
    text-align: center;
    gap: 1.2rem;
  }

  .process-step::before {
    display: none;
  }

  .step-number {
    position: static;
    margin-bottom: 1rem;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .step-icon i {
    font-size: 1.8rem;
  }

  .treatment-options {
    flex-direction: column;
    gap: 1rem;
  }

  .tech-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .tech-item:hover {
    transform: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .process-title,
  .tech-title,
  .impact-title {
    font-size: 1.8rem;
  }

  .service-card,
  .process-section,
  .technologies-section,
  .impact-section {
    padding: 1.2rem 0.8rem;
  }

  .process-step {
    padding: 1rem;
  }

  .step-title {
    font-size: 1.3rem;
  }
}

/* What we do pages ends here */

/* About us css starts  */

.about-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  min-height: 100vh;
  padding-top: 120px;
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 5rem;
}

.about-content {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-content p {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

/* .about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #343a40;
} */

.about-content strong {
  color: #2c3e50;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-section {
    padding-top: 100px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-content {
    padding: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-content .lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .about-content {
    padding: 1.5rem;
  }
}

/* About Us Css ends here */

/* Contact Section Styles */
.contact-section {
  top: -5rem;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.section-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 110, 53, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--accent-color)
  );
}

.contact-info {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.contact-info-text h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.contact-info-text p {
  margin: 0;
  opacity: 0.9;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(42, 110, 53, 0.15);
  background-color: white;
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 210px;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42, 110, 53, 0.3);
}

.submit-btn span {
  position: relative;
  z-index: 2;
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0.5;
}

.input-wrapper {
  position: relative;
}

/* Success message styles */
.success-message {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
}

.success-message i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Loading animation */
.btn-loading {
  pointer-events: none;
}

.btn-loading span {
  opacity: 0;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-info {
    padding: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 100px 0 60px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-info {
    padding: 25px;
  }

  .contact-info-item {
    margin-bottom: 25px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team page starts here  */

.TM-team-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #f8faf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.TM-team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/content/Gallery/4.jpg") center/cover;
  opacity: 0.29;
  z-index: 0;
}

/* Section Header */
.TM-section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.TM-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.TM-section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.TM-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Team Category Titles */
.TM-team-category-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.TM-team-category-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Team Wrappers */
.TM-core-team-wrapper,
.TM-technical-team-wrapper,
.TM-advisory-team-wrapper {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.TM-advisory-team-wrapper {
  margin-bottom: 0;
}

/* Team Grid */
.TM-team-grid,
.TM-advisory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.TM-team-col,
.TM-advisor-col {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
}

/* Team Cards */
.TM-team-card,
.TM-advisor-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(42, 110, 53, 0.1);
}

.TM-team-card:hover,
.TM-advisor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* Image Containers */
.TM-team-image-wrapper,
.TM-advisor-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.TM-team-image,
.TM-advisor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.TM-team-card:hover .TM-team-image,
.TM-advisor-card:hover .TM-advisor-image {
  transform: scale(1.05);
}

/* Overlay Effects */
.TM-team-overlay,
.TM-advisor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 110, 53, 0.8),
    rgba(58, 140, 69, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.TM-team-card:hover .TM-team-overlay,
.TM-advisor-card:hover .TM-advisor-overlay {
  opacity: 1;
}

/* Social Links */
.TM-social-links {
  display: flex;
  gap: 15px;
}

.TM-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
}

.TM-team-card:hover .TM-social-link,
.TM-advisor-card:hover .TM-social-link {
  transform: translateY(0);
  opacity: 1;
}

.TM-social-link:nth-child(1) {
  transition-delay: 0.1s;
}

.TM-social-link:nth-child(2) {
  transition-delay: 0.2s;
}

.TM-social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px) scale(1.1);
}

/* Team Info */
.TM-team-info,
.TM-advisor-info {
  padding: 30px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.TM-team-name,
.TM-advisor-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.TM-team-card:hover .TM-team-name,
.TM-advisor-card:hover .TM-advisor-name {
  color: var(--secondary-color);
}

.TM-team-role,
.TM-advisor-title {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #121d29;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.TM-team-description,
.TM-advisor-expertise {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Advisory Board Specific Styles */
.TM-advisor-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.TM-advisor-image-wrapper {
  height: 250px;
}

.TM-advisor-info {
  padding: 25px 20px;
}

.TM-advisor-name {
  font-size: 1.3rem;
}

.TM-advisor-title {
  font-size: 0.9rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #121d29;
}

.TM-advisor-expertise {
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .TM-team-col,
  .TM-advisor-col {
    min-width: 280px;
    max-width: 350px;
  }

  .TM-section-title {
    font-size: 2.5rem;
  }

  .TM-team-category-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 991.98px) {
  .TM-team-section {
    padding: 60px 0;
  }

  .TM-section-header {
    margin-bottom: 50px;
  }

  .TM-section-title {
    font-size: 2.2rem;
  }

  .TM-team-grid,
  .TM-advisory-grid {
    gap: 25px;
  }

  .TM-core-team-wrapper,
  .TM-technical-team-wrapper {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .TM-team-section {
    padding: 50px 0;
  }

  .TM-section-title {
    font-size: 2rem;
  }

  .TM-section-subtitle {
    font-size: 1.1rem;
  }

  .TM-team-category-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .TM-team-col,
  .TM-advisor-col {
    min-width: 100%;
    max-width: 400px;
  }

  .TM-team-grid,
  .TM-advisory-grid {
    gap: 20px;
  }

  .TM-team-image-wrapper,
  .TM-advisor-image-wrapper {
    height: 250px;
  }

  .TM-team-info,
  .TM-advisor-info {
    padding: 25px 20px;
  }

  .TM-core-team-wrapper,
  .TM-technical-team-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .TM-team-section {
    padding: 40px 0;
  }

  .TM-section-header {
    margin-bottom: 40px;
  }

  .TM-section-title {
    font-size: 1.8rem;
  }

  .TM-section-subtitle {
    font-size: 1rem;
  }

  .TM-team-category-title {
    font-size: 1.5rem;
  }

  .TM-team-image-wrapper,
  .TM-advisor-image-wrapper {
    height: 220px;
  }

  .TM-team-info,
  .TM-advisor-info {
    padding: 20px 15px;
  }

  .TM-team-name,
  .TM-advisor-name {
    font-size: 1.2rem;
  }

  .TM-team-description,
  .TM-advisor-expertise {
    font-size: 0.9rem;
  }

  .TM-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Animation Enhancements */
.TM-team-card,
.TM-advisor-card {
  animation: fadeInUp 0.6s ease-out;
}

.TM-team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.TM-team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.TM-team-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Team page ends here */

/* ======================
   Careers Page Styles (CR prefix)
   ====================== */

/* Hero Section */
.CR-hero-section {
  padding: 180px 0 100px;
  background: linear-gradient(
    135deg,
    rgba(42, 110, 53, 0.9),
    rgba(58, 140, 69, 0.9)
  );
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.CR-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/content/Gallery/Grape\ 3.png") center/cover;
  opacity: 0.2;
  z-index: 0;
}

.CR-hero-pattern {
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  z-index: 1;
}

.CR-hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.CR-hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.CR-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.CR-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: var(--accent-color);
  color: white;
}

/* Section Titles */
.CR-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.CR-section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.CR-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card Styles */
.CR-card-hover {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.CR-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Culture Section */
.CR-culture-section {
  background-color: white;
  padding: 80px 0;
}

.CR-culture-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(42, 110, 53, 0.1);
  height: 100%;
  text-align: center;
}

.CR-culture-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 25px rgba(42, 110, 53, 0.3);
}

.CR-culture-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.CR-culture-text {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Benefits Section */
.CR-benefits-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.CR-benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(42, 110, 53, 0.1);
  height: 100%;
  text-align: center;
}

.CR-benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 25px rgba(42, 110, 53, 0.3);
}

.CR-benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.CR-benefit-text {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Positions Section */
.CR-positions-section {
  background-color: white;
  padding: 80px 0;
}

.CR-position-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(42, 110, 53, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.CR-position-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.CR-position-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.CR-position-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.CR-position-location,
.CR-position-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.CR-position-badge {
  background-color: var(--accent-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.CR-position-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.CR-position-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.CR-skill-tag {
  background-color: var(--light-green);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.CR-position-cta {
  display: flex;
  gap: 1rem;
}

.CR-apply-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
}

.CR-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 110, 53, 0.3);
  color: white;
}

/* How to Apply Section */
.CR-apply-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.CR-apply-card {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(42, 110, 53, 0.1);
}

.CR-apply-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.CR-apply-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.CR-apply-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.CR-apply-instructions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.CR-instruction-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.CR-instruction-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(42, 110, 53, 0.3);
}

.CR-instruction-content {
  flex: 1;
}

.CR-instruction-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.CR-instruction-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.CR-requirements-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.CR-requirements-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.CR-requirements-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.CR-email-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 5px 15px rgba(42, 110, 53, 0.2);
}

.CR-email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 110, 53, 0.3);
  color: white;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .CR-hero-title {
    font-size: 2.8rem;
  }

  .CR-section-title {
    font-size: 2.2rem;
  }

  .CR-apply-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 991.98px) {
  .CR-hero-section {
    padding: 150px 0 80px;
  }

  .CR-hero-title {
    font-size: 2.5rem;
  }

  .CR-hero-subtitle {
    font-size: 1.2rem;
  }

  .CR-culture-section,
  .CR-benefits-section,
  .CR-positions-section,
  .CR-apply-section {
    padding: 60px 0;
  }

  .CR-instruction-item {
    flex-direction: column;
    gap: 1rem;
  }

  .CR-instruction-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .CR-hero-section {
    padding: 130px 0 60px;
  }

  .CR-hero-title {
    font-size: 2.2rem;
  }

  .CR-position-header {
    flex-direction: column;
    gap: 1rem;
  }

  .CR-position-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .CR-apply-card {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .CR-hero-title {
    font-size: 2rem;
  }

  .CR-section-title {
    font-size: 1.8rem;
  }

  .CR-position-card {
    padding: 1.8rem;
  }

  .CR-apply-card {
    padding: 1.5rem;
  }

  .CR-apply-title {
    font-size: 1.6rem;
  }

  .CR-apply-subtitle {
    font-size: 1.1rem;
  }
}

/* products pages style */

/* Custom Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Product Hero Section */
.product-hero {
  padding: 150px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(42, 110, 53, 0.1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/content/Gallery/termites.png") no-repeat center center/cover;
  opacity: 0.5;
  z-index: -1;
}

.product-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.8rem;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-image-container {
  position: relative;
  max-width: 100%;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1),
    rgba(23, 162, 184, 0.1)
  );
  border-top: 1.5px solid rgba(0, 141, 0, 0.801);
  border-bottom: 1.5px solid rgba(0, 141, 0, 0.801);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.product-image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.product-image-container:hover img {
  transform: scale(1.03);
}

/* Features Section */
.product-features {
  padding: 80px 0;
  background-color: #fff;
}

.feature-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.feature-card:hover .feature-icon {
  color: white;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* How It Works Section */
.how-it-works {
  padding:  10px 0;
  background-color: #f9f9f9;
  position: relative;
}

.process-steps {
  position: relative;
  padding: 40px 0;
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  align-items: center;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  z-index: 2;
}

.step-content {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  flex-grow: 1;
  position: relative;
}

.step-content::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #fff;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42, 110, 53, 0.85);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Modal for gallery images */
.gallery-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.gallery-modal .modal-header {
  border-bottom: 1px solid var(--light-green);
  background-color: var(--light-green);
}

.gallery-modal .modal-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* Specifications Section */
.specifications {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.specs-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.specs-table .table {
  margin-bottom: 0;
}

.specs-table .table th {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 20px;
}

.specs-table .table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.specs-table .table tr:last-child td {
  border-bottom: none;
}

/* CTA Section */
.product-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.product-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.product-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .product-title {
    font-size: 2.2rem;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .step-content::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .product-hero {
    padding: 130px 0 60px;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-subtitle {
    font-size: 1.1rem;
  }
}
