
.nav-item a{
  font-size: 17px;
  font-family: math;

}

.glass-card {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 15px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .glass-card:hover {
      transform: translateY(-5px);
    }

    /*---------services-section------------*/

    .services-section {
      background: url('../img/pvc-bg.jpg') no-repeat center center/cover;
      min-height: 90vh;
      /*padding: 4rem 0;*/
    }

    .menu-card {
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      border-radius: 15px;
      padding: 1.5rem;
      transition: 0.3s ease;
    }

    .menu-card:hover {
      transform: translateY(-5px);
      background: rgba(0, 0, 0, 0.6);
    }

    /*-----------gallery-----------------*/
    .gallery-card {
      cursor: pointer;
    }

    .gallery-card img {
      transition: transform 0.4s ease;
    }

    .gallery-card:hover img {
      transform: scale(1.05);
    }

    .overlay-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      padding: 10px;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-weight: 500;
    }

    .gallery-card:hover .overlay-title {
      opacity: 1;
    }

    h2 {
      font-family: math;
    }

    /*-------------------------------------*/
    .icon-circle {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .hero-section {
        height: 450px !important;
      }
    }
    #contact{
     background-color: rgb(236 244 251) !important;
    }


.custom-button {
  position: relative;
  padding: 8px 24px;
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  color: #000;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.custom-button:hover {
  background: #fff;
  color: #000;
}

/*.custom-button::after {
  content: '→';
  position: absolute;
  right: 16px;
  opacity: 0;
  transform: translateX(-10px);

}*/




