body{
    background: linear-gradient(to left,rgb(15, 19, 61),rgb(6, 6, 8));

}
.navbar {
  background-color: rgba(0, 0, 0, 0.3);
}
#sectionMWK{
    background: linear-gradient(to left,rgb(15, 19, 61),rgb(6, 6, 8));
    color: white;
    height: 100%;
}
.nav-bg{
    background-color: black;
}

.animated-brand {
  animation: fadeSlideIn 1.2s ease-out;
}

.Mens-heading{
    font-family: "Georgia",serif;
    font-weight: bolder;
    font-size: 100px;
}
.Mens-p1{
    color: rgb(133, 131, 131);
    font-size: 20px;
}
/* Main headline animation */
.main-heading {
  font-family: "Georgia", serif;
  font-weight: bolder;
  font-size: 100px;
  color: #ffffff;
  animation: scaleIn 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

/* Subtext animation */
.subtext {
  font-size: 20px;
  color: rgb(180, 180, 180);
  animation: fadeInUp 1.4s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
    margin-bottom: 26px;
}

/* Animations */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.card {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 18px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Ripple effect setup */
.card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Light white ripple color */
    transform: scale(0);  /* Start with scale 0 */
    pointer-events: none;
    opacity: 0;  /* Initially invisible */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out;
}

/* Apply the hover effect */
.card:hover {
    transform: scale(1.07);  /* Slightly scale up the card */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);  /* Add a subtle shadow to give a floating effect */
}
.card:hover .card-heading,
.card:hover .card-para {
    color: white;
}
.card-heading{
    font-size: 26px;
}
.card-para{
    color: rgb(214, 212, 212);
    font-size: 16px;
    margin-bottom: 26px;
}
.card:hover .card-heading, .card:hover .card-para {
    color: white;  /* Make the text color stand out more when hovering */
}
.card a {
    opacity: 0;
    position: absolute;
    bottom: 6px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.card a:hover{
    opacity: 1;
    color: rgb(229, 100, 1);
    font-weight: 500;
}
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 80%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.4s ease;
  border-radius: 50%;
}
.card:hover::before {
  transform: scale(3) skew(30deg, 10deg);
  opacity: 1;
}

.card-1{
    background-image: url("./IMAGES/MEN/BLAZERS/22bee51dcc1e0778e3d6ec2dd64c1553.jpg");
}
.card-2{
    background-image: url("./IMAGES/MEN/CASUAL_WEAR/108d4dab8b552d056f2c3d159caa19cd.jpg");
}
.card-3{
    background-image: url("./IMAGES/MEN/ETHNIC_WEAR/17d7809f7e21b1b50fee1a1ac2f6d862.jpg");
}
.card-4{
    background-image: url("./IMAGES/MEN/PARTY_WEAR/7a8d2972fb391e385ca40466c6e10cd0.jpg");
}


.card-W1{
    background-image: url("./IMAGES/WOMEN/BUSINESS_CASUALS/2ca764d3372199a7e4b239f46f4e92ef.jpg");
}
.card-W2{
    background-image: url("./IMAGES/WOMEN/FORMAL/0454b01507788eb913e571047bd45591.jpg");
}
.card-W3{
    background-image: url("./IMAGES/WOMEN/ETHNIC/04319d389c6932a3dc895b2f6160bae8.jpg");
}
.card-W4{
    background-image: url("./IMAGES/WOMEN/PARTY_WEAR/4efe1263ad8b7e4918f5171b465a4386.jpg");
}


.card-K1{
    background-image: url("./IMAGES/KIDS/ETHNIC/8e5232b21ba3c1d52ffe2d065fdee5e4.jpg");
}
.card-K2{
    background-image: url("./IMAGES/KIDS/PARTY_WEAR/5bc997513196b69969e5c724aa111f19.jpg");
}
.card-K3{
    background-image: url("./IMAGES/KIDS/ETHNIC/de863cda17d2d2453fb4e5dfa685de64.jpg");
}
.card-K4{
    background-image: url("./IMAGES/KIDS/PARTY_WEAR/83aaa3628cd5d93442b9fd8c53bd758d.jpg");
}


/* Ripple effect style */
.card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Light ripple color */
    transform: scale(0);  /* Start with scale 0 */
    pointer-events: none;  /* Ensures the ripple doesn't interfere with other events */
    animation: ripple-animation 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Ripple animation */
@keyframes ripple-animation {
    to {
        transform: scale(4); /* Grow the ripple to cover the card */
        opacity: 0; /* Fade the ripple out */
    }
}
