.navbar {
  background-color: grey;
  /* border-bottom: 1px solid #999696; */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  transition: background-color 0.3s ease;
}
.navbar-brand {
  color:#000;
}
.navbar-toggler{
  margin-right: 1%;
}
.navbar .nav-link {
  color: #231b1b !important;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #000;
}
.navbar-toggler {
  border-color: #1B2B23;
}
.nav-link {
position: relative;
display: inline-block;
overflow: hidden;
}

.navbar-toggler .nav-link::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0%;
height: 2px;
background-color: red;
transition: width 0.3s ease;
}

.navbar-toggler .nav-link:hover::after {
width: 100%;
}
.neumorphic {
    background: #e0e0e0;
    box-shadow: 8px 8px 15px #bebebe, -8px -8px 15px #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 80px;
  }

  .neumorphic-btn {
    background: #e0e0e0;
    border: none;
    box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }

  .neumorphic-btn:hover {
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
  }

  .services {
    padding: 60px 20px;
    text-align: center;
  }

  .services h3 {
    margin-bottom: 40px;
    font-weight: 600;
  }

  .service-card {
    background: #e0e0e0;
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #d1d1d1;
    border-radius: 50%;
    box-shadow: inset 6px 6px 10px #bebebe, inset -6px -6px 10px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #666;
  }

  .equal-height {
    display: flex;
    flex-direction: column;
    height: 90%;
  }

  .about-us {
    position: relative;
    color: #fff;
    overflow: hidden;
  }

  .about-us-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-in-out;
  }

  .about-icon {
    display: inline-block;
    margin-top: 30px;
    animation: bounce 2s infinite;
  }

  .icon-animation i {
    transition: transform 0.3s ease;
  }

  .icon-animation i:hover {
    transform: scale(1.1);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .about-us {
    background: linear-gradient(to bottom, #fe4f5c, #ede3e7);
  }

  .container-2{
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding:5%;
  }

  
.move-from-top{
    margin-top:7%;
}

   /* Mobile styles */
    @media (max-width: 480px) {
        .move-from-top {
          margin-top: 15%;
        }
    }

    .footer-section ul li a:hover{
      color:#1B2B23 !important;
    }