
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#contact-23 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0d6efd;
  color: #ffffff;
}
#contact-23 .section-title-container {
  margin-bottom: 30px;
}
#contact-23 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}
#contact-23 .section-main-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#contact-23 .main-contact-message {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 35px;
  color: #f8f9fa;
}
#contact-23 .action-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
#contact-23 .btn-action-contact {
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
#contact-23 .btn-action-contact i {
  margin-right: 12px;
  font-size: 1.3rem;
}
#contact-23 .btn-action-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
#contact-23 .btn-success {
  background-color: #198754;
  border-color: #198754;
  color: #fff;
}
#contact-23 .btn-success:hover {
  background-color: #157347;
  border-color: #146c43;
}
#contact-23 .btn-info {
  background-color: #0dcaf0;
  border-color: #0dcaf0;
  color: #000;
}
#contact-23 .btn-info:hover {
  background-color: #31d2f2;
  border-color: #25cff2;
}
#contact-23 .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}
#contact-23 .btn-secondary:hover {
  background-color: #5c636a;
  border-color: #565e64;
}
#contact-23 .location-snippet-area {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}
#contact-23 .location-snippet-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 10px;
}
#contact-23 .address-text {
  font-size: 1rem;
  color: #e9ecef;
  line-height: 1.5;
  margin-bottom: 15px;
}
#contact-23 .map-link {
  font-size: 0.95rem;
  color: #ffc107;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
#contact-23 .map-link:hover {
  color: #ffd043;
  text-decoration: underline;
}
#contact-23 .map-link i {
  margin-right: 6px;
}



#customer-support-3 {
  text-align: center;
  background: #f8f9fa;
  padding: 80px 0;
}
#customer-support-3 .support-content {
  max-width: 800px;
  margin: 0 auto;
}
#customer-support-3 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#customer-support-3 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#customer-support-3 .contact-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}
#customer-support-3 .contact-form {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#customer-support-3 .contact-form input,
#customer-support-3 .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
#customer-support-3 .contact-form button {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background: #007bff;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
#customer-support-3 .contact-form button:hover {
  background: #0056b3;
}
#customer-support-3 .contact-info {
  flex: 1;
  text-align: left;
}
#customer-support-3 .contact-info div {
  margin-bottom: 20px;
}
#customer-support-3 .contact-info i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 10px;
}
#customer-support-3 .social-links {
  margin-top: 20px;
}
#customer-support-3 .social-links a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #007bff;
  transition: color 0.3s ease-in-out;
}
#customer-support-3 .social-links a:hover {
  color: #0056b3;
}


