/* =========================================================
   The Balloon Decoration - Custom Stylesheet
   ========================================================= */

:root{
  --pink: #ff3d81;
  --purple: #7c3aed;
  --orange: #ff8a3d;
  --yellow: #ffc93d;
  --teal: #14b8a6;
  --dark: #241938;
  --text-muted: #6b6478;
  --cream: #fff7f0;
  --gradient-primary: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --gradient-warm: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 10px 30px rgba(124, 58, 237, 0.12);
  --shadow-hover: 0 20px 45px rgba(255, 61, 129, 0.22);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--dark);
  background: #fffefc;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand, .footer-brand{
  font-family: var(--font-heading);
}

a{ text-decoration: none; }

section{ position: relative; }

.section-pad{ padding: 90px 0; }

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-eyebrow::before{
  content: "";
  width: 24px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  display: inline-block;
}

.section-title{
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: var(--dark);
}
.section-title span{
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-text{
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.btn-primary-custom{
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(124,58,237,0.28);
  transition: all .3s ease;
}
.btn-primary-custom:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(255,61,129,0.32);
  color: #fff;
}

/* ===== Top Bar ===== */
.top-bar{
  /* background: var(--dark); */
  background: var(--gradient-primary);
  color: #f1eafc;
  font-size: 0.87rem;
}
.top-bar a, .top-bar span{ color: #f1eafc; margin-right: 22px; }
.top-bar a:hover{ color: var(--yellow); }
.top-bar-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-left: 6px;
  margin-right: 0;
  transition: all .3s;
}
.top-bar-social a:hover{ background: var(--pink); }

/* ===== Header ===== */
.site-header{
  background: #fff;
  box-shadow: 0 4px 20px rgba(36,25,56,0.06);
  z-index: 1030;
}
.navbar-brand{
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand i{ color: var(--pink); font-size: 1.5rem; }
.navbar-brand span{ color: var(--purple); }
.nav-link{
  font-weight: 600;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  position: relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:2px;
  height:2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after{ transform: scaleX(1); }
.nav-link:hover{ color: var(--pink) !important; }

.btn-book-nav{
  background: var(--gradient-warm);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(255,138,61,0.3);
}
.btn-book-nav:hover{ transform: translateY(-2px); }

/* ===== Hero ===== */
.hero-section{ position: relative; }
.hero-section .carousel-item img{
  height: 88vh;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.55);
}
.carousel-caption-custom{
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 640px;
  text-align: left;
  color: #fff;
  z-index: 5;
}
.hero-eyebrow{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.carousel-caption-custom h1{
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.carousel-caption-custom h1 span{
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub{
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f1ecff;
}
.hero-btns{ display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary{
  background: var(--gradient-warm);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(255,138,61,0.4);
  transition: all .3s;
}
.btn-hero-primary:hover{ transform: translateY(-3px); color: #fff; }
.btn-hero-outline{
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all .3s;
}
.btn-hero-outline:hover{ background: #fff; color: var(--purple); }

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next{ width: 6%; }

.hero-section .carousel-indicators [data-bs-target]{
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; opacity: .6;
}
.hero-section .carousel-indicators .active{ opacity: 1; background: var(--yellow); }

/* ===== Creativity Strip ===== */
.creativity-strip{
  margin-top: -55px;
  position: relative;
  z-index: 10;
}
.creativity-box{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 14px;
  box-shadow: var(--shadow-soft);
  transition: all .35s ease;
  border-bottom: 4px solid transparent;
}
.creativity-box:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--pink);
}
.creativity-box i{
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}
.creativity-box h3{
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

/* ===== Marquee Strip ===== */
.marquee-wrap{
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
  margin-top: 55px;
  white-space: nowrap;
}
.marquee-track{
  display: inline-flex;
  gap: 60px;
  animation: marquee 26s linear infinite;
  padding-left: 60px;
}
.marquee-track span{
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ===== About ===== */
.about-img-wrap{ position: relative; }
.about-img-main{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
}
.about-img-small{
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-md);
  border: 6px solid #fff;
  box-shadow: var(--shadow-hover);
  height: 190px;
  object-fit: cover;
}
.about-exp-badge{
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gradient-warm);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(255,138,61,0.4);
}
.about-exp-badge h3{ font-size: 1.8rem; font-weight: 800; margin: 0; }
.about-exp-badge p{ font-size: 0.75rem; margin: 0; font-weight: 600; }

.about-points li{
  padding: 8px 0;
  font-weight: 600;
  color: var(--dark);
}
.about-points i{ color: var(--teal); margin-right: 10px; }

/* ===== Services ===== */
.services-section{ background: var(--cream); }
.service-card{
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all .35s ease;
  border: 1px solid rgba(124,58,237,0.06);
}
.service-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.service-img{ overflow: hidden;  }
.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img{ transform: scale(1.1); }
.service-body{ padding: 26px; }
.service-body h3{
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-body p{
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  min-height: 65px;
}
.btn-service{
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .3s;
}
.btn-service:hover{
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* ===== Why Choose Us ===== */
.why-section{ background: #fff; }
.why-card{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  transition: all .3s ease;
  border-left: 4px solid var(--pink);
}
.why-card:hover{
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}
.why-card i{
  font-size: 1.7rem;
  color: var(--pink);
  margin-bottom: 12px;
  display: inline-block;
}
.why-card h3{ font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p{ color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ===== Counter ===== */
.counter-section{
  background: var(--gradient-primary);
  padding: 60px 0;
}
.counter-box h3{
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.counter-box p{
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
}

/* ===== How It Works ===== */
.how-section{ background: var(--cream); }
.how-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all .3s ease;
}
.how-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.how-num{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-warm);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(255,138,61,0.4);
}
.how-card i{
  font-size: 2rem;
  color: var(--purple);
  margin: 18px 0 14px;
  display: inline-block;
}
.how-card h3{ font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.how-card p{ color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== Gallery ===== */
.gallery-item{
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 230px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img{ transform: scale(1.12); }
.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(124,58,237,0.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after{ opacity: 1; }

/* ===== Booking Section ===== */
.booking-section{ padding: 20px 0 90px; }
.booking-box{
  background: var(--gradient-warm);
  border-radius: var(--radius-lg);
  padding: 50px 46px;
  box-shadow: 0 20px 45px rgba(255,138,61,0.35);
}
.booking-box h2{
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 10px;
}
.booking-box p{
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-size: 1rem;
}
.btn-booking-call{
  background: var(--dark);
  color: #fff;
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  margin-right: 12px;
  margin-bottom: 8px;
  display: inline-block;
  transition: all .3s;
}
.btn-booking-call:hover{ transform: translateY(-3px); color: #fff; background:#150e22; }
.btn-booking-enquire{
  background: #fff;
  color: var(--pink);
  border-radius: 50px;
  padding: 13px 28px;
  font-weight: 700;
  display: inline-block;
  transition: all .3s;
}
.btn-booking-enquire:hover{ transform: translateY(-3px); color: var(--purple); }

/* ===== Testimonials ===== */
.testimonial-section{ background: var(--cream); }
.testimonial-card{
  max-width: 700px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.testimonial-card i{
  font-size: 2.4rem;
  color: var(--pink);
  margin-bottom: 14px;
  display: inline-block;
}
.testimonial-card p{
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.7;
}
.testimonial-card h4{
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--purple);
}
.testimonial-card span{ color: var(--text-muted); font-size: 0.9rem; }
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{
  width: 5%;
  filter: invert(1);
}

/* ===== FAQs ===== */
.faq-section .accordion-item{
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-section .accordion-button{
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  padding: 20px 24px;
}
.faq-section .accordion-button:not(.collapsed){
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: none;
}
.faq-section .accordion-button:focus{ box-shadow: none; }
.faq-section .accordion-button::after{ filter: none; }
.faq-section .accordion-body{
  color: var(--text-muted);
  padding: 20px 24px;
  background: #fff;
}

/* ===== Contact ===== */
.contact-info-card{
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  color: #fff;
}
.contact-info-item{
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact-info-item i{
  font-size: 1.3rem;
  background: rgba(255,255,255,0.18);
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h4{ font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p{ color: #f1ecff; margin: 0; font-size: 0.94rem; }
.btn-whatsapp-contact{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #25D366;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  margin-top: 10px;
  transition: all .3s;
}
.btn-whatsapp-contact:hover{ transform: translateY(-3px); color: #1da851; }

.contact-form{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form .form-label{ font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.contact-form .form-control,
.contact-form .form-select{
  border: 1.5px solid #eee0f5;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus{
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,61,129,0.12);
}

.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

/* ===== Footer ===== */
.site-footer{
  background: var(--gradient-primary);;
  color: #cabfdd;
  padding: 70px 0 24px;
}
.footer-brand{
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-brand i{ color: #fff; }
.footer-brand span{ color: var(--yellow); }
.site-footer p{ font-size: 0.92rem; line-height: 1.7;color:#fff }
.site-footer h5{
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
#enu-st{
	background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.28);
    transition: all .3s ease;
	display:block;
	width:100%;
}
.footer-links li{ margin-bottom: 10px; font-size: 0.92rem;     color: #fff;}
.footer-links a{ color: #fff; transition: all .25s; }
.footer-links a:hover{ color: var(--yellow); padding-left: 4px; }
.footer-links i{ margin-right: 8px; color: #000; }
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: all .3s;
}
.footer-social a:hover{ background: var(--gradient-primary); transform: translateY(-3px); }
.site-footer hr{ border-color: rgba(255,255,255,0.1); margin: 20px 0; }
.footer-bottom p{ margin: 0; font-size: 0.85rem; }

/* ===== Floating Icons ===== */
.floating-call, .floating-whatsapp{
  position: fixed;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1050;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  animation: pulse 2.2s infinite;
}
.floating-call{
  right: 24px;
  background: var(--gradient-warm);
}
.floating-whatsapp{
  left: 24px;
  background: #25D366;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,61,129,0.4); }
  70%{ box-shadow: 0 0 0 14px rgba(255,61,129,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,61,129,0); }
}

/* ===== Scroll animation ===== */
[data-aos]{
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease;
}
[data-aos].aos-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px){
  .section-pad{ padding: 60px 0;        overflow-x: hidden; }
  .section-title{ font-size: 1.9rem; }
  .hero-section .carousel-item img{ height: 78vh; }
  .carousel-caption-custom h1{ font-size: 2.2rem; }
  .carousel-caption-custom{ left: 5%; right: 5%; max-width: 100%; }
  .about-img-small{ width: 42%; height: 140px; }
  .booking-box{ text-align: center; }
  .booking-box .text-lg-end{ text-align: center !important; margin-top: 20px; }
}
.cu-lg-wdth{
	width:270px;
}
@media (max-width: 767.98px){
  .hero-section .carousel-item img{ height: 72vh; min-height: 460px; }
  .carousel-caption-custom h1{ font-size: 1.7rem; }
  .hero-sub{ font-size: 0.95rem; }
  .creativity-strip{ margin-top: -35px; }
  .about-img-main{ height: 300px; }
  .about-img-small{ height: 110px; }
  .about-exp-badge{ padding: 10px 16px; }
  .about-exp-badge h3{ font-size: 1.3rem; }
  .gallery-item{ height: 160px; }
  .testimonial-card{ padding: 30px 22px; }
  .contact-form, .contact-info-card{ padding: 26px; }
  .floating-call, .floating-whatsapp{ width: 50px; height: 50px; font-size: 1.3rem; bottom: 16px; }
  .floating-call{ right: 16px; }
  .floating-whatsapp{ left: 16px; }
  .cu-ds-nn{
	  display:none
  }
  .lj-cntr{
	  justify-content:center!important
  }
}

@media (max-width: 575.98px){
  .section-title{ font-size: 1.6rem; }
  .booking-box h2{ font-size: 1.4rem; }
}
@media(max-width:425px)
{
	.cu-fnt{
		font-size:14px!important;
	}
}
@media(max-width:400px)
{
	.cu-fnt{
		font-size:12px!important;
	}
}
@media(max-width:374px)
{
	.cu-fnt{
		font-size:10px!important;
	}
	.cu-lg-wdth{
	width:220px;
}
}
