 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
 
 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 body {
   background-color: #000;
   color: #fff;
   /* font-family: 'Poppins', sans-serif; */
 }
 @font-face {
  font-family: 'MyCustomFont';
  src: url('../font/Miss\ Stanfort.ttf') format('truetype');
}

 .navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #ff0066;
}

.navbar-brand img {
  width: 12rem;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin-right: 50px;
}
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
      transition-duration: 200ms;
  }
}

 /* From Uiverse.io by WhiteNervosa */ 
.nav-link {
  font-size: 18px;
  color: #e1e1e1;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.nav-link:focus:after,
.nav-link:hover:after {
  width: 100%;
  left: 0%;
}

.nav-link:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

 .hero-section {
   text-align: center;
   padding: 100px 20px;
 }

 .hero-section h1 {
  font-family: "Playfair Display", serif;
   font-style: italic;
   font-size: 3rem;
   font-weight: bold;
 }

 .hero-btn {
   background: linear-gradient(135deg, #92021f, #be4349f7) !important;
   color: #fff;
   padding: 12px 25px;
   border-radius: 30px;
   font-weight: 600;
   margin-top: 20px;
 }

 .section-title {
   font-family: "Playfair Display", serif;
   text-align: center;
   margin: 60px 0 20px;
   font-size: 3rem;
   font-weight: bold;
   font-style: italic;
 }

 .card img {
   height: 250px;
   object-fit: cover;
 }
 .signature {
  font-family: 'mycustomfont';
  font-size: 3rem;
   text-align: center;
   margin-top: 30px;
   font-style: italic;
   color: #e6b17e;
 }

 .overlay-gradient {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   top: 0;
   background: linear-gradient(to top, rgba(0, 0, 0, 0.998), rgba(0, 0, 0, 0.582), rgba(0, 0, 0, 0));
   border-radius: 0.5rem;
 }

 .card-hover-img {
   transition: transform 0.6s ease, filter 0.6s ease;
   border-radius: 0.5rem;
 }

 .custom-card:hover .card-hover-img {
   transform: scale(1.1);
   filter: brightness(1.1);
 }
 @media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .signature {
    font-size: 1.5rem;
  }
  .card img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .navbar-brand img {
    width: 8rem;
  }
  .hero-section {
    padding: 40px 10px;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section p {
    font-size: 0.9rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .signature {
    font-size: 1.3rem;
  }
  .card img {
    height: 180px;
  }
} 
/* @media (max-width:996) {
  .navbar-nav .nav-link{
    flex-wrap: nowrap;
    font-size: 1rem;
  }
  
} */
  section.event-section {
      padding: 60px 0;
    }
    .service-box {
      text-align: center;
      padding: 30px 20px;
    }
    .service-box img {
      width: 70px;
      height: auto;
      margin-bottom: 20px;
      font-size: 3rem;
      /* filter: brightness(0) saturate(100%) invert(81%) sepia(76%) saturate(2000%) hue-rotate(5deg) brightness(103%) contrast(105%); */

    }
    .service-box h4 {
      margin-bottom: 15px;
      font-weight: 600;
    }
    .service-box p {
      font-size: 14px;
      color: #eadcdc;
    }

    
  .footer-link {
  color: #bbb;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-link:hover {
  color: #e6b17e;
}

.social-icon {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #bbb;
  transition: color 0.3s, transform 0.3s;
}
.social-icon:hover {
  color: #e6b17e;
  transform: scale(1.2);
}
 .gradient-text {
      font-size: 50px;
      font-weight: bold;
      background: linear-gradient(90deg, #7a021a, #be4349f7);
      -webkit-background-clip: text; 
      -webkit-text-fill-color: transparent;
      background-clip: text;  
      color: transparent;     
      display: inline-block;
    }