/* landing */

.approach-text h5 {
 text-align: center;
}

@media (max-width: 576px) {
  .approach-text h5 {
    text-align: center !important;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  .approach-text p {
    font-size: 0.7rem;
    text-align: center;
  }
}


/* Contact Section */
.contact-section {
  padding: 60px 15px;
}

.contact-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-section h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: black;
}

@media (max-width: 768px) {
  .contact-section {
    text-align: center;
  }

  .contact-section .row {
    flex-direction: column-reverse;
  }

  .contact-section img {
    margin-bottom: 20px;
  }

  .contact-section h4 {
    font-size: 1.5rem;
  }

  .slide-left,
  .slide-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Animation on Scroll */
.slide-left,
.slide-right {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.in-view.slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.in-view.slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Gradient Button */
.btn-gradient {
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg,#ff6600, #e06615);
  transition: background 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #ff6600,#d65b09);
}
