/* General */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

a {
  color: #006e74;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.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;
}
.blog-carousel {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: 1rem;
}

.blog-carousel-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.blog-carousel img {
  height: 150px;
  object-fit: cover;
}
.text-teal {
  color: #008080;
}

.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); 
}

.nav-header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #006e74;
  margin-left: auto;
  margin-right: auto;
}
.navbar-brand ,.navbar-brand-logo {
  display: block;
  position: relative;
  color: black;
  text-decoration: none; /* prevent default underline */
  transition: 0.3s;
  font-size: 1.8rem;
  font-weight: 100;
  padding: 0 3px;
  font-family: Arial, sans-serif;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: #006e74;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.navbar-brand:hover {
  color: #006e74 !important;
  text-decoration: none; /* prevent underline on hover too */
}

.navbar-brand:hover::after {
  visibility: visible;
  width: 100%;
}


.img-fluid{
  max-width: 100%; 
  margin: 20px;
}

/* Cover Section */
.cover-letter{
    margin: 5rem;
}
.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;
}

/* Enquiry Section */
.enquiry {
  padding: 3rem;
  background-color: #d7e0e3;
  text-align: center;
}

.enquiry-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.enquiry_button {
  display: inline-block;
}

.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;
}
.social-icons a {
  text-decoration: none;
}

.social-icons i {
  color: black !important;
  font-size: 20px;
  background: none !important;
  border: none;
  padding: 20px;
  display: inline-block;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #555; /* optional: dark gray on hover */
}

.ust-footer {
  background-color: #111827; 
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}
.ust-footer ul {
  padding-left: 0;
}
.ust-footer li {
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.ust-footer h6,
.ust-footer h5 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.ust-footer .bg-light {
  background-color: #f6f6f6 !important;
}
.ust-footer a {
  color: white;
}
.footer__logo{
  padding: 1rem 1.80rem;
}
.footer__logo img {
  width: 2.5rem;
}
.cookie-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
  padding-bottom: 1px;
}
.cookie-link:hover {
  color: #ccc;
  border-bottom-color: #ccc;
}
.cookie-text{
  margin: 10px 20px 20px;
  padding-left: 530px;
}
.title_space h4 {
  font-weight: bold;
  margin-bottom: 1.25rem; 
}
.footer-heading {
  display: inline-block;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
  padding-bottom: 1.5px;
  font-size: 1rem;     /* Adjust to match rest of UI */
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.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;
}
.footer-heading:hover,.ust-footer li:hover {
  border-bottom-color: white;
}

