* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif, Cochin, Georgia,
    Times, "Times New Roman", serif, sans-serif;
}
.navbar-toggler {
  transition: all 0.3s ease-in-out;
}

footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}
.social-icons a {
  margin: 0 10px;
  color: #ff3f7c;
  font-size: 20px;
  text-decoration: none;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: none;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #ff3f7c;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
}
#scrollTopBtn:hover {
  background-color: #ff709d;
}
/* Alignment fixes */
.carousel-item {
  width: 100%;
  height: auto;
}
/* .carousel-item img {
  height: 420px;
  object-fit: cover; 
}*/

/* Desktop */
.carousel-item img {
  width: 100%; /* full width */
  height: 550px; /* taller on big screens */
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
  .carousel-item img {
    width: 100%;
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .carousel-item img {
    width: 100%;
    height: 250px;
  }
}
#about .img-fluid {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
#services .img-fluid {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
#contact .img-fluid {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff3f7c; /* Red text on hover */
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ff3f7c;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%; /* Underline grows with animation */
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* prevents image overflow */
}

.image-container img {
  width: 100%;
  height: 250px; /* fixed height for all images */
  object-fit: cover; /* crops image but keeps proportions */
  display: block;
}

.image-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #777;
  color: #fff;
  font-weight: bold;
  padding: 6px 18px;
  font-size: 15px;
  border-radius: 2px;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
}

.blob-img {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: auto;
  clip-path: path(
    "M500,280Q470,350,400,380Q310,410,240,405Q170,400,110,370Q50,340,40,260Q30,180,70,130Q110,80,170,60Q230,40,300,45Q370,50,420,100Q470,150,490,210Q510,270,510,270Z"
  );

  overflow: hidden;
}

.blob-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
