.about-costume-image {
    height: 100%;
    
}

.about-costume-image img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    
}
/* Add these styles to your existing CSS */

.costume-service-area {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}

.costume-service-area img {
  min-height: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-top-left-radius: 80px;
  transition: all 0.6s ease;
  transform: scale(1);
  filter: brightness(0.9);
}

.costume-service-area:hover img {
  transform: scale(1.03);
  border-top-left-radius: 40px;
  filter: brightness(1);
}

.costume-service-area .thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.costume-service-area .thumbnail:hover {
  cursor: pointer;
}

.service-text {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px;
  z-index: 3;
  transform: translateY(0);
  transition: all 0.4s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.costume-service-area:hover .service-text {
  color: #f0f0f0;
}

.service-overlay {
  background: linear-gradient(0deg, 
    rgba(2, 0, 36, 0.9) 0%, 
    rgba(2, 0, 36, 0.4) 30%, 
    rgba(255, 255, 255, 0) 55%, 
    rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease;
  opacity: 0.8;
}

.costume-service-area:hover .service-overlay {
  background: linear-gradient(0deg, 
    rgba(8, 4, 75, 0.9) 0%, 
    rgba(2, 0, 36, 0.4) 40%, 
    rgba(255, 255, 255, 0) 70%, 
    rgba(255, 255, 255, 0) 100%);
  opacity: 1;
}

/* Add a subtle border effect on hover */
.costume-service-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.costume-service-area:hover::after {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Add a floating icon effect */
.costume-service-area::before {
  content: '↗';
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  z-index: 4;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.costume-service-area:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Item Layout */
.cta-item-wrapper {
  display: flex;
  align-items: flex-start;
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

/* Medium screens - first two side by side */
@media (max-width: 991px) and (min-width: 768px) {
  .cta-item-wrapper {
    max-width: 250px;
  }
  
  /* Center the third item on medium screens */
  .col-md-12 .cta-item-wrapper {
    max-width: 250px;
    margin: 0 auto;
    justify-content: center;
  }
}

/* Small screens - stacked */
@media (max-width: 767px) {
  .cta-item-wrapper {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

/* CTA Icon */
.cta-icon {
  margin-right: 15px;
  color: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cta-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* CTA Text */
.cta-text {
  flex: 1;
}

.cta-text h6 {
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Cool Link Styles */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.cta-link:hover {
  color: #4dabf7;
  transform: translateX(5px);
}

.cta-link:hover .link-text {
  background: linear-gradient(90deg, #4dabf7, #74c0fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-link:hover i {
  transform: translate(2px, -2px);
}

/* Arrow icon animation for external links */
.cta-link[target="_blank"]:hover i {
  transform: translate(3px, -3px);
}

/* Underline effect */
.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4dabf7, #74c0fc);
  transition: width 0.3s ease;
}

.cta-link:hover::after {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cta-link {
    justify-content: center;
  }
  
  .cta-text h6 {
    justify-content: center;
  }
}

.object-fit-cover {
  object-fit: cover;
}