  .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-info-box {
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


  .shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

section.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

a.btn i {
  vertical-align: middle;
}

a.btn {
  transition: all 0.3s ease-in-out;
}

a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-img-wrapper {
  overflow: hidden;
  height: 300px;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.1);
}

 .page-header {
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

aside .input-group input {
  border-radius: 30px 0 0 30px;
}

aside .input-group button {
  border-radius: 0 30px 30px 0;
}

aside .input-group input:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

.blog-post-social a:hover {
  background-color: #0d6efd !important;
  color: white !important;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}



    /* Custom CSS for nested dropdown */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu .dropdown-menu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      margin-top: -1px;
    }

    .dropdown-submenu:hover .dropdown-menu {
      display: block;
    }

    /* Optional: Arrow for submenu */
    .dropdown-submenu > .dropdown-item::after {
      content: "▶";
      float: right;
    }