/* Start custom CSS for html, class: .elementor-element-5312d1d *//* ---------- GLOBAL ---------- */
.img-slide {
  width: 23%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Optional: better arrow visibility */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 15px;
}


body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #f8f9fa;
  color: #333;
}

.section-padding {
  padding: 70px 0;
}

.section-title {
  font-weight: 700;
  font-size: 28px;
  color: #0d2a4a;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1100px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #0d2a4a;
  color: #fff;
  font-size: 14px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-bar a:hover {
  color: #0d6efd;
}

/* ---------- NAVBAR ---------- */
.navbar {
  transition: 0.3s ease;
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin-left: 10px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #0d6efd !important;
}

/* ---------- HERO ---------- */
.hero-wrapper {
  position: relative;
}

.hero-img {
  height: 75vh;
  object-fit: cover;
}

/* overlay */
.hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* hero text */
.hero-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0,0,0,.7);
  padding: 0 15px;
  font-size: clamp(22px, 4vw, 36px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- PROFILE ---------- */
.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  padding: 25px;
  line-height: 1.7;
}

.profile-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* ---------- LISTS (OBJECTIVES / ACTIVITIES) ---------- */
.objectives {
  padding-left: 0;
}

.objectives li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.objectives li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

/* ---------- IMAGE GALLERY ---------- */
.uk-inline img {
  border-radius: 10px;
  transition: 0.3s;
}

.uk-inline img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

/* ---------- UPCOMING LABS ---------- */
.upcoming-labs {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.upcoming-labs li {
  background: #fff;
  display: inline-block;
  margin: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  font-size: 14px;
  transition: 0.3s;
}

.upcoming-labs li:hover {
  background: #0d6efd;
  color: #fff;
}

/* ---------- CONTACT ---------- */
#contact h2 {
  color: #0d2a4a;
  font-weight: 600;
}

#contact h4 {
  font-weight: 400;
  color: #555;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-img {
    height: 55vh;
  }

  .section-padding {
    padding: 50px 0;
  }

  .navbar-nav {
    text-align: center;
  }
}
What this improves/* End custom CSS */