.hero-section h1 {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-section p {
  font-size: 1.2rem;
}

img:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}

/* Show dropdown on hover */
.navbar .dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
  animation: fadeIn 0.3s ease-in-out;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.socialIcon {
  display: flex;
  align-items: center;
}

.footer_inner ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer {
  background-color: rgba(0, 0, 0, 0.45);
  background-image: url('../img/footer-background-011.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

html,
body {
  overflow-x: hidden;
}

.slide {
  transition: transform 0.5s ease-in-out;
  /* should be < 2s */
}

.headline {
  color: #512DA8;
  font-family: "Oswald", Sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

.custom-link {
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.custom-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.custom-link:hover::after {
  width: 100%;
}

.icon-list-text {
  color: #F5F5F5;
  transition: color 0.3s;
}

ul.list-unstyled li {
  margin-bottom: 10px;
}

.nav-link.active {
  font-weight: bold;
  border-bottom: 3px solid #1d67bd;
  color: #000;
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #9E9CF1;
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 343px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 73px;
  height: 73px;
  margin-bottom: 20px;
}

.card h3 {
  margin: 0 0 15px;
  font-size: 1.2rem;
  color: #ffffff;
}

.card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}

.removeunderline {
  text-decoration: none;
}

.blog-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #512DA8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.blog-excerpt {
  font-size: 15px;
  color: #555;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.read-more {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blue-holder {
  position: relative;
  z-index: 60;
  width: 100%;
  float: left;
  padding: 60px 80px;
  background: linear-gradient(188.43deg, #4B97DE 1%, #35006A 111.21%);
  text-align: center;
}

.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  color: #dc3545;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
