@charset "UTF-8";
/* === Custom overlay and animation styles === */


/* Ensure overlay is visible over image */
.swiper-slide {
  position: relative;
}

.swiper-slide-caption {
  position: relative;
  z-index: 5;
  height: 100%;
}

.text-overlay-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Text fade & slide animation */
.text-overlay-box h3,
.text-overlay-box h6,
.text-overlay-box a.button {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease;
}

.text-overlay-box.active {
  opacity: 1;
}

.text-overlay-box.active h3,
.text-overlay-box.active h6,
.text-overlay-box.active a.button {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments for tablets and phones */
@media (max-width: 992px) {
  .text-overlay-box {
    max-width: 90%;
    padding: 20px 25px;
    text-align: center;
  }

  .text-overlay-box h3 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .text-overlay-box h6 {
    font-size: 1rem;
  }

  .text-overlay-box a.button {
    margin-top: 12px;
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

@media (max-width: 600px) {
  .text-overlay-box {
    max-width: 95%;
    padding: 18px;
    border-radius: 10px;
  }

  .text-overlay-box h3 {
    font-size: 1.4rem;
  }

  .text-overlay-box h6 {
    font-size: 0.9rem;
  }
}
.text-overlay-box h6 {
  text-transform: none !important;   /* turns off uppercase */
  color:#FFC107 !important;         /* changes color */
  font-weight: 400 !important;       /* optional – keeps it from being bold */
  letter-spacing: normal !important; /* removes wide spacing if present */
}
/* Make the footer section titles smaller */
.footer-corporate-title {
  font-size: 16px !important;   /* smaller than the default ~20px */
  font-weight: 600 !important;
  text-transform: none !important;  /* optional: stops uppercase */
}

/* Make the footer paragraph text (like About Us and Useful Links) smaller */
.footer-corporate p,
.footer-corporate ul li a {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* Make the phone number larger and more prominent */
.footer-creative-contacts .phone {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #FFB400 !important;   /* use your site’s yellow accent */
  text-decoration: none !important;
}

/* Optional: add a hover color for the phone link */
.footer-creative-contacts .phone:hover {
  color: #ffffff !important;
}
p {
  font-size: 14px !important;  /* adjust as needed: 12–16px typical range */
  line-height: 1.6 !important;
}

