* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-display: swap;
}



/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* background: #fff; */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    transform: translateY(0); /* visible by default */
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

header.show {
    transform: translateY(0);
    opacity: 1;
    background: #fff;
}
header.show nav ul li a{
  color: #000;
}

/* LOGO */
.logo img {
   width: 125px;
}

/* NAV WRAPPER (desktop normal) */
nav {
    display: flex;
    align-items: center;
}

/* MENU (desktop) */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li {
    position: relative;
    margin-bottom: 12px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    transition: background 0.3s;
     font-family: "Poppins", sans-serif;
     font-weight: 400;
     font-size: 18px;
}

/* DROPDOWN ON DESKTOP */
nav ul li ul {
    display: block;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 170%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.24);
    border-radius: 4px;
    min-width: 190px;
    overflow: hidden;
    padding: 10px 7px;

    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

nav ul li:hover ul {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

nav ul li ul li a {
    padding: 10px 15px;
}

/* BUTTON */
.btn-primary {
    background-color: #FE3072;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: .3s ease;
         font-family: "Poppins", sans-serif;
     font-weight: 400;
     font-size: 18px;
}

.btn-primary:hover {
    background-color: #fff;
    color: #FE3072;
    border: 1px solid #FE3072;
}

/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 30px;
}

/* RIGHT SIDE SLIDE MENU */
@media (max-width: 998px) {

    /* show hamburger */
    .menu-toggle {
        display: block;
                position: relative;
        bottom: 6px;
    }

    /* hide desktop inline menu */
    nav ul {
        display: none;
    }

    /* OFF CANVAS PANEL */
    .offcanvas {
        position: fixed;
        top: 0;
        right: -300px;   /* Hidden offscreen */
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 10px rgba(0,0,0,0.15);
        padding: 70px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        transition: right 0.35s ease;
        z-index: 2000;
    }

    /* OPEN STATE */
    .offcanvas.open {
        right: 0;
        width: 100%;
        align-items: flex-start!important;
    }

    /* Offcanvas menu items */
    .offcanvas ul {
        flex-direction: column;
        display: flex !important;
        gap: 15px;
        list-style: none;
        width: 100%;
    }

    .offcanvas li a {
        font-size: 18px;
        padding: 10px 0;
    }

    /* Dropdown inside slide menu */
    .offcanvas li ul {
        position: static !important;
        background: #f7f7f7;
        box-shadow: none;
         padding: 0;       /* remove left indent */
    width: 100%; 
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    /* open dropdown */
    .dropdown.open ul {
        max-height: 300px;
    }

    /* Button inside panel */
    .btn-primary {
        margin-top: 20px;
        align-self: start;
    }
      .close-btn {
        display: block!important;
    }
}

/* Arrow rotate */
.dropdown i {
    margin-left: 6px;
    transition: .3s;
}

.dropdown.open i {
    transform: rotate(180deg);
}

.offcanvas .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    z-index: 3000;
}

.close-btn {
    display: none;
}

/* hero */
.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Occasions */

#occasions{
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #fff;
  /* size and padding */
  width: 100%;
  padding: 50px 20px;
}
.fixed-container{
    max-width:1400px;
    width: 95%;
    margin: 0 auto;
}
.heading-containers{
text-align: center;
}

.grid-container-occasions {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, 1fr);    /* 2 rows */
  gap: 20px;                             /* space between items */
  padding: 20px;
  width: 70%;
    margin: 20px auto;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;                      /* contain image zoom */
  cursor: pointer;
  position: relative;
}


/* Responsive: stack items on smaller screens */
@media (max-width: 768px) {
  .grid-container-occasions {
    grid-template-columns: 1fr; /* single column */
    grid-template-rows: auto;
  }
}
.img-wrapper {
  overflow: hidden;
  border-radius: inherit;
  position: relative;
}

.img-wrapper h4{
  position: absolute;
  bottom: 20px;  
  left: 50%;              
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  white-space: nowrap;  
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease, border-radius 0.5s ease;
  border-radius: 12px;
}

/* Hover effect */
.img-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
  border-radius: 18px; /* subtle increase */
}

.center-button-containers a{
    background-color: #FE3072;
    padding: 15px 35px;
    border-radius: 14px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #fff!important;
}

.center-button-containers {
    text-align: center;
        margin: 30px 0px;
}


.rotating-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 50%;
    transform: translate(-50%, -50%);

    /* SINGLE LINEAR GRADIENT with your exact colors */
    background: linear-gradient(
        120deg,
        #FE3072 0%,     /* Pink side */
        #FE8556 30%,    /* Orange-pink */
        #FFE4DA 65%,    /* Soft peach */
        #FFFDFE 100%    /* Almost white */
    );

    background-size: 300% 300%;

    /* Slow one-direction rotation */
    animation: rotate 18s linear infinite;

    filter: blur(90px);
    opacity: 0.2;
    z-index: -1;
}

@keyframes rotate {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.heading-containers h2{
    color: #212121;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 10px;
}
.heading-containers p{
    text-align: center;
     font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

/* Perfect event host */

#perfect-event{
    width: 100%;
    float: left;
    padding: 50px 0px;
    background-color: #fff;
      position: relative;
  overflow: hidden;
  z-index: 1;
}

.events-list-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
      width: 70%;
    margin: 50px auto;
}

.events-card {
  background: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 15px 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.events-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px; /* thickness of the underline */
  width: 0%;   /* start hidden */
  background: linear-gradient(90deg, #FE8556 0%, #FE3072 100%);
  border-radius: 2px;
  transition: width 0.5s ease; /* smooth animation */
}

/* Animate underline on hover */
.events-card:hover::after {
  width: 100%;
}

/* Optional: card hover lift effect */
.events-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.events-card img {
max-width:100%;
    margin-bottom: 20px;
}

.events-card h3 {
  margin: 15px 0px 10px;
  font-size: 18px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.events-card p {
  margin: 0 0px 15px;
  font-size: 16px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* Hover effect (optional) */
.events-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive adjustments (optional) */
/* @media (max-width: 768px) {
  .events-card img {
    height: 160px;
  }
} */

@media (max-width: 480px) {
  .events-list-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* Perfect Event Host */


/* CTA */

#event-cta{
    width: 100%;
    float:left;
    padding: 30px 0px;
}
.cta-container {
  position: relative;
  background: linear-gradient(120deg, #FE3072 0%, #FE8556 100%);
  padding: 40px 20px;
  width: 95%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden; /* ensures the circles don’t overflow */
}

/* The circular layered gradient side */
.cta-container {
  position: relative;
  background: linear-gradient(120deg, #FE3072 0%, #FE8556 100%);
  padding: 40px 30px;
  width: 95%;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
}

.cta-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  pointer-events: none;

    background: /* RING 1 (smallest) */ radial-gradient(circle at right, #ffffff 0%, #ffffff 10%, #f3e9e7 12%, /* stroke */ transparent 18%), /* RING 2 */ radial-gradient(circle at right, #ffe8df 0%, #ffe8df 18%, #f2d3c7 20%, /* stroke */ transparent 28%), /* RING 3 */ radial-gradient(circle at right, #ffd1c0 0%, #ffd1c0 28%, #f4b7a0 30%, /* stroke */ transparent 40%), /* RING 4 */ radial-gradient(circle at right, #ffb89f 0%, #ffb89f 38%, #f49f85 40%, /* stroke */ transparent 52%), /* RING 5 */ radial-gradient(circle at right, #ffa07e 0%, #ffa07e 50%, #f18865 52%, /* stroke */ transparent 65%), /* RING 6 */ radial-gradient(circle at right, #ff7e5c 0%, #ff7e5c 63%, #e46a47 65%, /* stroke */ transparent 78%), /* RING 7 (largest) */ radial-gradient(circle at right, #ff6143 0%, #ff6143 78%, #d84f345e 84%, /* stroke */ transparent 84%);
}
.cta-container h4{
        font-size: 52px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.cta-container p{
    font-size: 18px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.cta-button-container {
 background-color: #fff; 
     display: block;
    width: fit-content;
    border-radius: 14px;
}
#cta-button {
        /* White background */
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    display: block;
    width: fit-content;
    margin: 25px 0px;
 font-family: "Poppins", sans-serif;
    /* Gradient text only */
    background: linear-gradient(90deg, #FE3072 0%, #FE8556 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* CTA */


/* Contact Us page */

#contact-us-section {
    width: 100%;
    float: left;
    background-color: #fff;

}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 30px 0px;
  font-family: "Poppins", sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px;
    border-bottom: 1px solid #63636390 !important;
    font-size: 16px;
    border: 0px;
    font-family: "Poppins", sans-serif;
}
input,select,
textarea{
 font-family: "Poppins", sans-serif;
}
.full-width {
  grid-column: span 2;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .full-width {
    grid-column: span 1;
  }
}
input:focus-visible {
    outline: 0px!important;
}
textarea:focus-visible {
    outline: 0px!important;
}
select:focus-visible {
    outline: 0px!important;
}
.form-submit-buttons {
    text-align: center;
    margin: 25px 0px;
}
.form-submit-buttons a {
text-align: center;
font-size: 18px;
font-weight: 600;
background-color: #FE3072;
border-radius: 14px;
padding: 14px 26px;
color: #fff;
}
/* Contact US Page */


/* Footer */
.pm-footer {
  background: #FF2E7E; /* your screenshot pink */
  color: #fff;
  padding: 30px 30px;
  width: 100%;
  float: left;
}

.pm-footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left section */
.pm-footer-left {
  width: 35%;
  min-width: 280px;
}

.pm-logo {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
 font-family: "Poppins", sans-serif;
}

.pm-desc {
  font-size: 16px;
  line-height: 1.6;
   font-family: "Poppins", sans-serif;
   font-weight: 400;
}

/* .pm-social a img {
  width: 22px;
  margin-right: 12px;
  opacity: 0.9;
  transition: 0.2s;
}

.pm-social a img:hover {
  opacity: 1;
} */
.pm-social {
  display: flex;
  gap: 15px;
  margin: 15px 0px;
}

.pm-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: white;          /* white color */
  font-size: 20px;       /* adjust icon size, ~32px container */
  background: transparent;
  text-decoration: none;
  transition: transform 0.3s;
}

.pm-social .social-icon:hover {
  transform: scale(1.2); /* simple hover effect */       /* optional hover color */
}
.pm-footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 25px 0 15px;
}

.pm-copy {
  font-size: 16px;
  opacity: 0.9;
   font-family: "Poppins", sans-serif;
   font-weight: 400;
}

/* Right Columns */
.pm-footer-columns {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.pm-col {
  display: flex;
  flex-direction: column;
}

.pm-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  height: 22px;
   font-family: "Poppins", sans-serif;
}
.pm-col h4.empty-title {
  background: none;
  margin-bottom: 15px; /* same as others */
}
.pm-col a {
  color: #fff;
  font-size: 16px;
  margin: 6px 0;
  opacity: 0.9;
  text-decoration: none;
   font-family: "Poppins", sans-serif;
}

.pm-col a:hover {
  opacity: 1;
}

.pm-col p {
  margin: 6px 0;
  font-size: 16px;
   font-family: "Poppins", sans-serif;
}

/* Bottom footer */
.pm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  
}

.pm-footer-bottom a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
   font-family: "Poppins", sans-serif;
   font-weight: 400;
   padding-right: 12px;
}

.pm-footer-bottom a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .pm-footer-wrapper {
    flex-direction: column;
  }

  .pm-footer-left {
    width: 100%;
  }

  .pm-footer-columns {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .pm-footer {
    padding: 40px 20px;
  }

  .pm-footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* Footer */

/* Responsive */


@media(min-width: 998px){
    .heading-containers p{
        width: 70%;
    margin: 0 auto;
 
    }
   
}

@media(max-width:  998px){
     .heading-containers h2{
        font-size: 24px;
    }
    .heading-containers p{
   font-size: 16px;
    }
    .grid-container-occasions {
        width: 100%;
        padding: 0px;
    }
    .img-wrapper h4 {
        font-size: 22px;
    }
    .pm-logo {
        font-size: 24px;
    }
      .cta-container::after {
    /* top: auto !important;
    right: auto !important;

    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    height: 60%; 
    background:
      radial-gradient(circle at center bottom, #ffffff 0%, #ffffff 10%, #f3e9e7 12%, transparent 18%),
      radial-gradient(circle at center bottom, #ffe8df 0%, #ffe8df 18%, #f2d3c7 20%, transparent 28%),
      radial-gradient(circle at center bottom, #ffd1c0 0%, #ffd1c0 28%, #f4b7a0 30%, transparent 40%),
      radial-gradient(circle at center bottom, #ffb89f 0%, #ffb89f 38%, #f49f85 40%, transparent 52%),
      radial-gradient(circle at center bottom, #ffa07e 0%, #ffa07e 50%, #f18865 52%, transparent 65%),
      radial-gradient(circle at center bottom, #ff7e5c 0%, #ff7e5c 63%, #e46a47 65%, transparent 78%),
      radial-gradient(circle at center bottom, #ff6143 0%, #ff6143 78%, #d84f345e 84%, transparent 84%); */

      display: none;
  }
  .events-list-grid {
    width: 90%;
  }
  .cta-container h4 {
    font-size: 26px;
  }
  .cta-container{
width: 100%;
  }
}

@media(max-width:500px){
    #cta-button {
        padding: 10px 16px;
        font-size: 18px;
    }
    .img-wrapper h4 {
        font-size: 18px;
    }
    #occasions {
        padding: 20px;
    }
}


/* Events Page */

.Event-hero-image{
  max-width: 100%;
  width: 100%;
}
.hero-event-containers {
    position: relative;
    width: 100%;

}

.event-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hero-event-contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: #fff;
    max-width: 980px;
    width: 90%;
    padding: 1rem;
}


.hero-button-containers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-event-contents h1{
  font-size: 60px;
   font-family: "Poppins", sans-serif;
   font-weight: 600;
   margin-bottom: 10px;
   color: #FFFFFF;
}
.hero-event-contents h1 span {
  color: #FE3072;
}

.hero-event-contents p {
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
 margin-bottom: 15px;

}
.secondary-action-button {
  border: 0.5px solid #fff;
  color: #ffffff;
  background: transparent;
}

.primary-action-button {
  background-color: #FE3072;
  color: #ffffff;
  border: none;
  
}
.secondary-action-button,
.primary-action-button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;

  font-size: 18px;
  padding: 16px;

  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#one-platform-solution{
  width: 100%;
  float: left;
  padding: 40px 0px;
}
#one-platform-solution h2{
  text-align: center;
  font-family: "Poppins", sans-serif;
   font-weight: 600;
     font-size: 36px;
     margin-bottom: 10px;
}
#one-platform-solution p{
    font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
}
#every-occasion{
    width: 100%;
  float: left;
  padding: 40px 0px;
  position: relative;
    overflow: hidden;
    z-index: 1;
}
.main-headings{
    text-align: center;
  font-family: "Poppins", sans-serif;
   font-weight: 600;
     font-size: 36px;
     margin-bottom: 10px;
}
 .main-subtexts{
      font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    width: 45%;
    margin: 20px auto;
}


.glider-contain {
  /* max-width: 1200px; */
  margin: auto;
  position: relative;
}

.event-item {
  background: #ffffff;
  padding: 2rem;
  margin: 0.5rem;
  border-radius: 12px;
  text-align: center;
}

/* Arrows */
.glider-prev,
.glider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.glider-prev { left: -40px; }
.glider-next { right: -40px; }

.event-item-flex {
  display: flex;
  gap: 1.5rem;
}

/* Image → smaller width */
.event-item-flex img {
  flex: 0 0 30%;   /* 30% width */
  max-width: 30%;
  border-radius: 12px;
  object-fit: cover;
}

/* Content → larger width */
.event-item-container {
  flex: 1;    
  text-align: left;     /* takes remaining space (~70%) */
}
.event-carousel-headings {
      font-family: "Poppins", sans-serif;
   font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
.event-item-container span {
        font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
}
.event-subtext{
          font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 16px;
    margin: 20px 0px;
}
.event-what-we-take-care{
            font-family: "Poppins", sans-serif;
   font-weight: 600;
    font-size: 18px;
    margin: 15px 0px;
}
.event-item-container ul li{
            font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 15px;
    margin: 15px 0px;
}
.glider-next, .glider-prev {
  top: 50%!important;
  font-size: 24px!important;
  background-color: #FE3072!important;
  color: #fff!important;
      padding: 3px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.glider-next.disabled, .glider-prev.disabled {
background-color: #BCBCBC!important;
    padding: 3px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #636363!important;

}

#event-services {
  width: 100%;
  float: left;
  padding: 40px 0px;
  background-color: #FFF3EE;
}

.services-container {
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 14px;
  margin-bottom: 30px;
}
.service-container-flex {
  display: flex;
  align-items: center; /* vertically center content */
  gap: 2rem;  
}

/* Content takes 50% */
.service-content-containers {
  flex: 1 1 50%;
  /* prevents content from shrinking too small */
}

/* Image takes 50% */
.service-image-container {
  flex: 1 1 50%;

}

.service-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-container-flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-content-containers,
  .service-image-container {
    flex: 1 1 100%;
  }
}

.service-content-containers h4{
              font-family: "Poppins", sans-serif;
   font-weight: 600;
    font-size: 26px;
    margin-bottom: 25px;

}
.service-content-containers ul{
  padding-left: 20px;
}
.service-content-containers ul li{
            font-family: "Poppins", sans-serif;
   font-weight: 400;
    font-size: 15px;
    margin: 15px 0px;

}
.services-cta-buttons {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin: 30px 0px;
}
.cta-secondary-button {
  font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #FE3072;
    color: #FE3072;
}

#client-testimonials {
  width: 100%;
  float: left;
  padding:30px 0px;
}
.testimonials-containers {

    margin: 45px 0px;
}

/* Base testimonial card */
.testimonial-cards {
  padding: 2rem;
  border-radius: 12px;
  color: #fff;
  max-width: 350px;
  margin: 90px 0px;
  transition: transform 0.3s ease;
  padding: 1rem;        /* space inside slide */
  box-sizing: border-box;
}

/* Odd cards → tilt left */
.testimonials-containers .testimonial-cards:nth-child(odd) {
  background-color: #FFBBA1; /* pink/red */
  transform: rotate(11deg);
}

/* Even cards → tilt right */
.testimonials-containers .testimonial-cards:nth-child(even) {
  background-color: #FEE5AF; /* blue */
  transform: rotate(346deg);
}

/* Text styling */
.testimonial-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.testimonial-cards h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
    color: #000;
    font-family: "Poppins", sans-serif;
}

/* Responsive: remove tilt on mobile for readability */
@media (max-width: 768px) {
  .testimonial-cards {
    transform: rotate(0);
    max-width: 100%;
    padding: 1.5rem;
  }
}


.glider-slide {
  height: auto;
}

/* Arrow positioning */
.testimonials-wrapper {
  position: relative;
}

.testimonials-wrapper .glider-prev,
.testimonials-wrapper .glider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.testimonials-wrapper .glider-prev {
  left: -40px;
}

.testimonials-wrapper .glider-next {
  right: -40px;
}

.testimonials-wrapper .glider-track {
  transition: none !important; /* disable snap animation */
}

.testimonials-wrapper .glider {
  will-change: scroll-position;
  overflow: hidden;
}


@media(max-width:992px){
  .event-item-flex {
    flex-direction: column-reverse;
  }
  .service-container-flex {
        flex-direction: column;
        align-items: normal;
  }
.services-container:nth-child(even) .service-container-flex {
    flex-direction: column-reverse;
}
}


@media(max-width:1200px){
  .hero-event-contents h1 {
    font-size: 45px;
  }
  #one-platform-solution h2 {
    font-size: 32px;
  }
  .main-headings {
        font-size: 32px;
  }
  .main-subtexts {
    width: 100%;
  }
}

@media(max-width:600px){
      .hero-event-contents h1 {
  font-size: 22px;
      }
          #one-platform-solution h2 {
            font-size: 24px;
          }
              .main-headings {
                font-size: 24px;
              }
              .service-content-containers h4{
                font-size: 22px;
              }
              .secondary-action-button, .primary-action-button {
                font-size: 16px;
    padding: 10px;
              }
              .hero-event-contents {
                padding: 10px;
                width: 100%;
              }

}

@media(max-width:350px){
      .hero-event-contents {
        padding: 6px;
      }
}
.events-carousel .glider-prev {
  left: -37px;
}
.events-carousel .glider-next {
    right: -35px;
}
#event-mobile{
  display: none;
}
@media(max-width:992px){
  #event-desktop{
    display: none;
  }
  #event-mobile {
    display: block;
  }
}


/* Events Page */



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: red;
}
.book-now-submit{
  text-align: center;
  margin: 25px 0px;
}
.book-now-submit button {
  width: 100%;
}
#booking-form {
  margin: 25px 0px;
}
#modal-title{
    font-weight: 600;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}
/* Modal */



/* Services Page */

#services-offerings{
  width: 100%;
  float: left;
  padding: 30px 0px;
}

.services-container-flex {
    display: flex;
    gap: 4rem;
    margin: 30px auto;
}

.service-content-container p{
      font-weight: 400;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.service-content-container ul{
margin: 20px 0px;
padding-left: 16px;
}
.service-content-container ul li{
      font-weight: 400;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
}

#services-gallery{
  width: 100%;
  float: left;
  padding: 35px 0px;
}
    /* Masonry container */
    .masonry {
      column-count: 4;
      column-gap: 20px;
    }

    /* Responsive breakpoints */
    @media (max-width: 1200px) {
      .masonry {
        column-count: 3;
      }
    }

    @media (max-width: 768px) {
      .masonry {
        column-count: 2;
      }
    }

    @media (max-width: 480px) {
      .masonry {
        column-count: 1;
      }
    }

    /* Card */
    .masonry-item {
      background: #fff;
      margin-bottom: 20px;
      border-radius: 12px;
      overflow: hidden;
      break-inside: avoid;
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    .masonry-item img {
      width: 100%;
      height: auto;
      display: block;
    }

/* Mansory*/
/* Services page */