.ubanner {
    width: 100%;
    overflow: hidden;
}

.ubanner img {
    width: 100%;        
    height: auto;       
    display: block;     
    object-fit: contain;
}
.uabout-image-2 img {
    width: 100%;                  
    height: auto;                
    max-height: 650px;            
    border-radius: 24px;
    display: block;               
    object-fit: cover;    
    position: relative;        
}

.party-card {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  font-family: sans-serif;
  text-align: center; /* ✅ center everything */
}

/* Hover effect */
.party-card:hover {
  background: #ffd24d;
  transform: translateY(-6px);
}

/* Image */
.image-box {
  position: relative;
}

.image-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Book button */
.book-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 10px 26px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.party-card:hover .book-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Price row */
.price-row {
  display: flex;
  justify-content: center; /* ✅ center prices */
  align-items: center;
  gap: 10px;
  padding: 12px 18px 5px;
  margin-top: 16px;
}
/* 
.discount{
    background-color: #f5a623;
    padding: 2px 5px ;
      font-weight: 600;
      border-radius: 5px;

} */

.discount {
  background-color: #ffb703; /* original bg color */
  color: #000; /* original text color */
  padding: 4px 8px;
  border-radius: 6px;
  /* font-size: 12px; */
  font-weight: 600;
  font-weight: bold;
  transition: all 0.3s ease; /* smooth transition */
  cursor: pointer;
}
.old{
      font-weight: 600;
      color: red;
      text-decoration: line-through;
}
.current{
    font-weight: 600;
}

.discount:hover{
    background-color: #fff;
}

/* Event info */
.event-info {
  /* padding: 5px 18px; */
  /* margin: 16px auto; */
  margin-top: 8px;
}

.event-info p {
    color:grey;
    font-size: 18px;
    margin-top: 5px;
}
.event-info h4:hover{
    color: #fff;
}
/* Rating */
.rating {
  padding: 10px 18px 16px;
  font-size: 24px;
  color: #f5a623; /* normal star color */
  transition: color 0.3s ease;
  margin-bottom: 10px;
}

/* ⭐ Stars turn white on hover */
.party-card:hover .rating {
  color: #ffffff;
}

.book-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;

  padding: 10px 30px;
  border-radius: 30px;
  border: none;

  background: #000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;

  overflow: hidden; /* 🔥 important */
  z-index: 1;
     white-space: nowrap;   /* 🔥 prevents line break */
  min-width: 130px;      /* ensures enough space */
  text-align: center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Show button when card hovered */
.party-card:hover .book-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Square fill layer */
.book-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #03a363; /* hover bg color */
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.4s ease, height 0.4s ease;
}

/* 🔥 Center → square fill */
.book-btn:hover::before {
  width: 110%;
  height: 110%;
}

/* Keep text white */
.book-btn:hover {
  color: #fff;
}

.party-section {
  max-width: 1200px;
  margin: auto;
  padding: 30px 16px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;

  justify-items: center; /* center cards */
}



@keyframes testing {
    50%{
        transform: rotate(10deg);
    }
}
.umiracletext {
    position: absolute; top: -20px; width: 250px; left: -25px;
    animation: testing 5s linear 0s infinite normal none ;
}



@media (max-width: 768px) {
    .uabout-image-2 img {
        max-height: 380px;        
    }
}
@media (max-width: 575px) {
  .party-section {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .party-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (hover: hover) {
  .party-card:hover {
    transform: translateY(-6px);
  }
}
/* ------- about section  */
.about-section{
  max-width: 1150px;
  margin: 10px auto;
  padding: clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: clamp(14px, 2vw, 22px);
  box-shadow: 0 14px 45px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* soft decorative glow */
.about-section::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 183, 77, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(66, 133, 244, 0.18), transparent 45%),
    radial-gradient(circle at 40% 90%, rgba(52, 168, 83, 0.12), transparent 45%);
  filter: blur(28px);
  opacity: 0.75;
  animation: aboutGlow 10s ease-in-out infinite;
  pointer-events:none;
}

@keyframes aboutGlow{
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(2%, -2%, 0) scale(1.03); }
}

/* subtle dotted pattern */
.about-section::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events:none;
}

/* ========= RESPONSIVE FONT SIZES ========= */

/* Main Heading */
.about-section h2{
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.15;
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  letter-spacing: -0.4px;
  color: #111;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.about-section h2::after{
  content:"";
  display:block;
  width: clamp(60px, 7vw, 90px);
  height: clamp(3px, 0.35vw, 4px);
  margin-top: clamp(8px, 1vw, 12px);
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00, #ffb703, #2a9d8f);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

/* Sub Headings */
.about-section h3{
  font-size: clamp(16px, 1.7vw, 24px);
  margin: clamp(18px, 2.2vw, 26px) 0 clamp(6px, 1vw, 10px);
  color: #1a1a1a;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
  padding-left: clamp(10px, 1.2vw, 14px);
  animation: fadeUp 0.7s ease both;
}

.about-section h3::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.25em;
  width: clamp(4px, 0.6vw, 6px);
  height: 1.15em;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff6a00, #ffb703);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.18);
}

/* Paragraph Text */
.about-section p{
  margin: 0 0 clamp(10px, 1.2vw, 14px);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: clamp(1.6, 2vw, 1.85);
  color: rgba(0,0,0,0.78);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.75s ease both;
}

/* Stagger animation */
.about-section p:nth-of-type(1){ animation-delay: .05s; }
.about-section p:nth-of-type(2){ animation-delay: .10s; }
.about-section p:nth-of-type(3){ animation-delay: .15s; }
.about-section p:nth-of-type(4){ animation-delay: .20s; }
.about-section p:nth-of-type(5){ animation-delay: .25s; }
.about-section p:nth-of-type(6){ animation-delay: .30s; }

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* Hover premium effect */
.about-section:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
}


/* -------------- gallery ------ */
.gallery-info{
  padding: clamp(30px, 5vw, 80px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.gallery-info-wrap{
  width: min(1130px, 92%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 42px);
  border-radius: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 45px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

/* soft glow */
.gallery-info-wrap::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 183, 77, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(66, 133, 244, 0.18), transparent 45%);
  filter: blur(30px);
  opacity: 0.7;
  animation: galleryGlow 10s ease-in-out infinite;
  pointer-events:none;
}

@keyframes galleryGlow{
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(2%, -2%, 0) scale(1.03); }
}

/* Heading */
.gallery-info h2{
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.15;
  margin: 0 0 clamp(10px, 1.5vw, 16px);
  color: #111;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s ease both;
}

.gallery-info h2::after{
  content:"";
  display:block;
  width: clamp(60px, 7vw, 90px);
  height: clamp(3px, 0.35vw, 4px);
  margin-top: clamp(8px, 1vw, 12px);
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00, #ffb703, #2a9d8f);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

/* Intro paragraph */
.gallery-info > .gallery-info-wrap > p{
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: clamp(1.6, 2vw, 1.85);
  color: rgba(0,0,0,0.75);
  margin: 0 0 clamp(14px, 2vw, 22px);
  position: relative;
  z-index: 1;
  animation: fadeUp .8s ease both;
}

/* Points grid */
.gallery-points{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 18px);
  position: relative;
  z-index: 1;
}

/* Point card */
.gallery-point{
  padding: clamp(14px, 2vw, 18px);
  border-radius: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(12px);
  opacity: 0;
  animation: cardIn .7s ease forwards;
}

.gallery-point:nth-child(1){ animation-delay: .05s; }
.gallery-point:nth-child(2){ animation-delay: .10s; }
.gallery-point:nth-child(3){ animation-delay: .15s; }
.gallery-point:nth-child(4){ animation-delay: .20s; }

@keyframes cardIn{
  to{ transform: translateY(0); opacity: 1; }
}

.gallery-point h3{
  font-size: clamp(16px, 1.7vw, 22px);
  margin: 0 0 8px;
  color: #1a1a1a;
  padding-left: 14px;
  position: relative;
}

.gallery-point h3::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.25em;
  width: clamp(4px, 0.6vw, 6px);
  height: 1.15em;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff6a00, #ffb703);
}

.gallery-point p{
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: clamp(1.6, 2vw, 1.85);
  color: rgba(0,0,0,0.76);
}

/* Hover effect */
.gallery-point:hover{
  transform: translateY(-4px);
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 16px 45px rgba(0,0,0,0.10);
}

/* FadeUp */
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px){
  .gallery-points{
    grid-template-columns: 1fr;
  }
}

/* ------------pool party ----------- */
.poolparty-section{
  padding: clamp(34px, 5vw, 90px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.poolparty-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Head */
.poolparty-head{
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 32px);
}

.poolparty-head h2{
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.15;
  color: #111;
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  animation: fadeUp .7s ease both;
}

.poolparty-head h2::after{
  content:"";
  display:block;
  width: clamp(60px, 7vw, 90px);
  height: clamp(3px, 0.35vw, 4px);
  margin: clamp(8px, 1vw, 12px) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b4d8, #48cae4, #ffb703);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.20);
}

.poolparty-head p{
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: clamp(1.6, 2vw, 1.85);
  color: rgba(0,0,0,0.75);
  animation: fadeUp .8s ease both;
}

/* Cards Grid */
.poolparty-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 18px);
}

/* Card */
.poolparty-card{
  padding: clamp(14px, 2.2vw, 22px);
  border-radius: clamp(14px, 2vw, 20px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: cardIn .7s ease forwards;
}

/* Stagger */
.poolparty-card:nth-child(1){ animation-delay: .05s; }
.poolparty-card:nth-child(2){ animation-delay: .10s; }
.poolparty-card:nth-child(3){ animation-delay: .15s; }
.poolparty-card:nth-child(4){ animation-delay: .20s; }

.poolparty-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,180,216,0.20), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,183,77,0.18), transparent 45%);
  filter: blur(30px);
  opacity: 0.85;
  pointer-events:none;
  animation: glowMove 10s ease-in-out infinite;
}

@keyframes glowMove{
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(2%, -2%, 0) scale(1.03); }
}

.poolparty-card h3{
  font-size: clamp(16px, 1.7vw, 22px);
  margin: 0 0 10px;
  color: #111;
  padding-left: 14px;
  position: relative;
  z-index: 1;
}

.poolparty-card h3::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.25em;
  width: clamp(4px, 0.6vw, 6px);
  height: 1.15em;
  border-radius: 10px;
  background: linear-gradient(180deg, #00b4d8, #48cae4);
  box-shadow: 0 10px 22px rgba(0, 180, 216, 0.20);
}

.poolparty-card p{
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: clamp(1.6, 2vw, 1.85);
  color: rgba(0,0,0,0.76);
  position: relative;
  z-index: 1;
}

/* Hover */
.poolparty-card{
  transition: transform .35s ease, box-shadow .35s ease;
}
.poolparty-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.12);
}

/* Animations */
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn{
  to{ transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px){
  .poolparty-content{
    grid-template-columns: 1fr;
  }
}







