/* ========== GENERAL ========== */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #006e74;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ========== HEADER NAVBAR ========== */
.header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-inner-wrapper {
  width: 95%;
  margin: auto;
}
.logo {
  width: 40px;
}
.logo-image {
  width: 100%;
  height: auto;
}
.navbar-brand,
.navbar-brand-logo {
  font-size: 1.3rem;
  font-weight: 100;
  color: black;
  padding: 0 3px;
  font-family: Arial, sans-serif;
  position: relative;
  transition: 0.3s;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #006e74;
  bottom: -1px;
  left: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.navbar-brand:hover {
  color: #006e74 !important;
  text-decoration: none;
}
.navbar-brand:hover::after {
  visibility: visible;
  width: 100%;
}

/* ========== COVER SECTION ========== */
.cover {
  margin-top: 80px;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cover-image-title {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1.5rem;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

/* ========== MAIN BLOG CONTENT ========== */
.cover-letter {
  margin: 5rem;
}
.img-fluid {
  max-width: 100%;
  margin: 20px 0;
}

/* ========== RESPONSIVE ========== */
@media only screen and (max-width: 500px) {
  .cover-letter {
    margin: 2rem;
  }
  .img-fluid {
    width: 100%;
    margin: 10px 0;
  }
}

/* ========== RELATED ARTICLES ========== */
.related-articles {
  background-color: #f9f9f9;
}
.related-articles .card-title {
  font-size: 1rem;
  line-height: 1.4;
}
.related-articles img {
  object-fit: cover;
  width: 100%;
  height: 180px;
  border-radius: 6px;
}
.related-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.arrow-icon {
  position: absolute;
  right: 0.75rem;
  bottom: 1rem;
  font-size: 1.25rem;
  color: #008080;
  transition: transform 0.3s ease;
}
.related-card:hover .arrow-icon {
  transform: translateX(4px);
}
.text-teal {
  color: #008080;
}

/* ========== FOOTER ========== */
.ust-footer {
  background-color: #111827;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.footer__logo {
  padding: 1rem 1.8rem;
}
.footer__logo img {
  width: 2.5rem;
}

.title_space h4,
.footer-heading {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.footer-heading:hover,
.ust-footer li:hover {
  border-bottom-color: white;
}

.ust-footer ul {
  padding-left: 0;
  list-style: none;
}
.ust-footer li{
  display: inline-block;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
  padding-bottom: 2px;
}
.cookie-text {
  margin: 1px;
  padding-right: 2px;
}
.hover-icon {
  transition: filter 0.3s ease;
}
a:hover .hover-icon {
  filter: brightness(0) invert(1); 
}
.cookie-link {
  color: white;
  text-decoration: none !important;
  border-bottom: 1px solid white;
  padding-bottom: 1px;
}
.cookie-link:hover {
  color: #ccc;
  border-bottom-color: #ccc;
}

.social-icons a {
  text-decoration: none;
}
.social-icons i {
  color: black !important;
  font-size: 20px;
  background: none !important;
  border: none;
  display: inline-block;
  vertical-align: middle;
  transition: color 0.3s ease;
}
.social-icons i:hover {
  color: #545454 !important;
}

.bg-light {
  background-color: #f6f6f6 !important;
}

/* Enquiry CTA (optional section if you add it) */
.enquiry {
  padding: 3rem;
  background-color: #d7e0e3;
  text-align: center;
}
.enquiry-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.enquiry-btncustom {
  border: 1px solid #1c242c;
  color: #1c242c;
  background-color: transparent;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.enquiry-btncustom:hover {
  background-color: #1c242c;
  color: white;
}
.banner-nexticon {
  width: 1.25rem;
}
