:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;

  --accent-purple: #7c3aed;
  --accent-purple-dark: #5b21b6;
  --accent-gold: #f59e0b;
  --accent-blue: #3b82f6;
  --accent-pink: #ec4899;

  /* ✅ Single-line shadows (important fix) */
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);

  --radius: 16px;
  --radius-lg: 24px;
}
html,body{
	width: 100%;
	overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

a {
  text-decoration: none !important;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 80px 0;
}
.section-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-purple);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
  position: relative;
/*  display: inline-block;*/
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
/*  background: var(--accent-gold);*/
  border-radius: 2px;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--accent-purple),
    var(--accent-purple-dark)
  );
  margin-top: 12px;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}
.btn-outline-dark {
  border: 2px solid #1e293b;
  color: #1e293b;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}
.btn-outline-dark:hover {
  background: #1e293b;
  color: white;
}

/* Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-wrapper {
  text-align: center;
}
.magic-hat {
  font-size: 3.5rem;
  animation: floatHat 2s ease-in-out infinite;
}
.loader-text {
  font-family: "Fredoka", sans-serif;
  font-size: 1.2rem;
  margin: 15px 0;
  color: var(--accent-purple);
}
.loader-bar {
  width: 200px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
  animation: load 1.5s ease-in-out infinite;
}
@keyframes floatHat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}
@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Top Brand Section */
.top-brand-section {
/*  background: linear-gradient(135deg, #fef3c7 0%, #e0e7ff 100%);*/
background: #672b83;
  padding: 20px 0;
  text-align: center;
}
.main-brand-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0;
  color: white;
  /*background: linear-gradient(
    135deg,
    var(--accent-purple-dark),
    var(--accent-purple),
    var(--accent-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;*/
}
.main-brand-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-top: 5px;
}
.top_numbers a{
	    background: #cbc8cd;
    color: #672b83;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    border-radius: 8px;
}
.top_numbers  a i{
  color: #672b83;
}

/* Main Header / Navbar */
.main-header {
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.navbar-wrapper {
  padding: 15px 0;
}
/* Arrow rotate */
.dropdown-arrow {
  transition: transform 0.3s ease;
}

.mobile-dropdown-item.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}
.brand-logo {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--accent-purple);
  font-size: 22px;
}
.logo-icon {
  font-size: 1.8rem;
}
.desktop-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.05);
}
.dropdown-menu {
  border: none;
  padding: 8px 0;
  border-radius: 12px;
  background: white;
}
.dropdown-item {
  padding: 10px 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dropdown-item:hover {
  background: rgba(124, 58, 237, 0.05);
  color: var(--accent-purple);
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-free-mode.swiper-backface-hidden {
    margin-top: 33px;
}
/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  padding-bottom:2em !important;
  background: white;
  z-index: 2000;
  overflow-y: scroll !important;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.mobile-sidebar.active {
  transform: translateX(0);
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 5px;
  border-radius: 50%;
}
.sidebar-close:hover {
  background: #f1f5f9;
}
.mobile-nav-list {
  flex: 1;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}
.mobile-link:hover,
.mobile-link.active {
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent-purple);
}
.mobile-link i {
  width: 22px;
  text-align: center;
}
.dropdown-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 35px;
}
.mobile-dropdown.active {
  max-height: 300px;
}
.mobile-dropdown .dropdown-item {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.mobile-dropdown .dropdown-item:hover {
  background: rgba(124, 58, 237, 0.05);
}
.sidebar-cta .btn-primary-custom {
  width: 100%;
  padding: 12px;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 435px !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
      background-repeat: no-repeat !important;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.balloon-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.05;
}
.hero-section, a{
/*	border: 1px solid white	!important;*/

}
/*.btn-outline-dark{
	color: 	white !important;
}
/*.hero-section p, h1,span{
	color: white !important;
	
}*/*/



/* About & Trust Cards */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #1e293b;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: white;
}
.bg-gold {
  background: var(--accent-gold);
}
.bg-purple {
  background: var(--accent-purple);
}
.bg-blue {
  background: var(--accent-blue);
}
.bg-pink {
  background: var(--accent-pink);
}
.party-balloon-img {
    position: relative;
    text-align: end;
    margin-bottom: 43px;
}
@media (max-width: 1400px) {
    img.p-balloon {
        bottom: 5px;
        left: -90px;
        width: 50%;
    }
}
.party-balloon-img img {
    border-radius: 50%;
}


img.p-balloon {
    position: absolute;
    bottom: 20px;
    left: -12px;
    width: 240px;
}
.party-balloon-img img {
    border-radius: 50%;
}
.call-us {
    display: flex;
    border-radius: 15px;
    align-items: center;
    padding: 40px;
    width: 80%;
    margin-top: 40px;
}
.call-us span {
    color: white;
    display: block;
    font-size: 15px;
}
.call-us{
	    background-color: #672b83;
}
.call-us p {
    color: white;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
    padding-bottom: 0;

}

button#loadMoreBtn  {
    border: none;
}

.call-us a {
  padding-top: 3px;
    padding-bottom: 3px;
    display: block;
}
/* Services */
.service-card {
  background: #2441ab;
/*background: linear-gradient(148deg, rgb(103 43 131) 8%, rgba(34, 140, 212, 1) 43%, rgba(34, 145, 214, 1) 45%, rgb(237 83 154) 90%);*/
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid #e2e8f0;
}
.service-card  img{
	width: 120px;
	aspect-ratio: 2 / 2;
}
/* First Card - Soft Blue */
.service-card:nth-child(1),
.col-md-6:nth-child(1) .service-card,
.row > div:nth-child(1) .service-card {
  background: rgb(240, 244, 255) !important;
  border-color: rgb(191, 219, 254);
}

/* Second Card - Soft Pink */
.service-card:nth-child(2),
.col-md-6:nth-child(2) .service-card,
.row > div:nth-child(2) .service-card {
  background: rgb(255, 240, 245) !important;
  border-color: rgb(254, 205, 211);
}

/* Third Card - Soft Green */
.service-card:nth-child(3),
.col-md-6:nth-child(3) .service-card,
.row > div:nth-child(3) .service-card {
  background: rgb(240, 253, 244) !important;
  border-color: rgb(187, 247, 208);
}

/* Fourth Card - Soft Purple */
.service-card:nth-child(4),
.col-md-6:nth-child(4) .service-card,
.row > div:nth-child(4) .service-card {
  background: rgb(243, 232, 255) !important;
  border-color: rgb(216, 180, 254);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-purple);
}
.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: white;
}
.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin: 15px 0;
}
.service-card , p{
/*	color: white;*/
}
.service-card ul{
	margin: 0;
	padding: 0;
	text-align:justify;
	list-style-type: none;
}
.service-card ul li{
	border-bottom: 1px solid white;
}

/* Gallery */
.gallery-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  height: 200px;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-thumb:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.3s;
}
.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}


/* Gallery Filters */
.gallery-filters {
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
  color: white;
  border-color: var(--accent-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

/* Gallery Items */
.gallery-item {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hide {
  display: none;
}

/* Gallery Thumbnail */



.gallery-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(124, 58, 237, 0.85) 0%, 
    rgba(168, 85, 247, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 15px;
  text-align: center;
}

.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  animation: zoomIn 0.3s ease;
}

.gallery-overlay span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

@keyframes zoomIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* lightGallery Customization */
.lg-outer .lg-thumb-item {
  border-radius: 8px !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--accent-purple) !important;
  transform: scale(1.1);
}

.lg-outer .lg-toogle-thumb {
  background: var(--accent-purple) !important;
  border-radius: 8px !important;
}

.lg-outer .lg-toolbar {
  background: rgba(0,0,0,0.8) !important;
  border-radius: 0 0 12px 12px !important;
}

.lg-outer .lg-toolbar .lg-icon {
  color: white !important;
  width: 48px !important;
  background: transparent !important;
}

.lg-outer .lg-toolbar .lg-icon:hover {
  color: var(--accent-gold) !important;
}

.lg-sub-html {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%) !important;
  padding: 20px 40px !important;
}

.lg-sub-html h4 {
  font-family: 'Fredoka', sans-serif !important;
  color: var(--accent-gold) !important;
  font-size: 1.3rem !important;
  margin-bottom: 5px !important;
}

.lg-sub-html p {
  color: white !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

/* Counter */
.lg-toolbar .lg-counter {
  color: white !important;
  font-size: 1rem !important;
  padding-left: 20px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-thumb img {
    height: 180px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .lg-sub-html {
    padding: 15px 20px !important;
  }
  
  .lg-sub-html h4 {
    font-size: 1.1rem !important;
  }
}

/* Loading Animation */
.gallery-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    #f0f0f0 0%, 
    #e0e0e0 50%, 
    #f0f0f0 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
}

.gallery-thumb img {
  position: relative;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-thumb img.loaded {
  animation: none;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  background: #f1f1f1;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.filter-btn.active {
  background: linear-gradient(45deg, #6a5cff, #8b5cf6);
  color: #fff;
}

.filter-btn:hover {
  background: #ddd;
}

/* Video & CTA */
.video-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.video-play-btn {
  position: absolute;
  top: 50%;
      display: flex !important;
      align-items: center !important;
    justify-content: center !important;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s;
  color: var(--accent-purple);
}
.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-purple);
  color: white;
}
.bg-gradient-primary {
 /* background: linear-gradient(
    135deg,
    var(--accent-purple),
    var(--accent-purple-dark)
  );*/
  background: #672b83;
}
.ready_heading{
  color: white;
}
ul.list-unstyled.footer-links {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
/* Testimonials */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  min-height: 220px;
}
.testimonial-item {
  display: none;
  animation: fadeIn 0.5s ease;
}
.testimonial-item.active {
  display: block;
}
.testimonial-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--accent-purple);
  width: 24px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.main-footer {
  background: #1e293b !important;
}
.footer-title {
  font-family: "Fredoka", sans-serif;
  color: white;
  margin-bottom: 15px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}
/*.social-icon a ,i{
  color: white;
}*/
 .social-icon:hover{
  background: #672b83;
   transform: translateY(-3px);
 }
 .to_icons{
  display: flex;
  gap: 7px;
 }
.to_icons a {
    background: #672b83;
}

/* Responsive */
@media (max-width: 992px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
}
/* Make all cards equal size */
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3; /* keeps same ratio */
  overflow: hidden;
  border-radius: 12px;
}

/* Image fit perfectly */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 key line */
  display: block;
  border-radius: 12px;
}

/* Overlay fix */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.faq-question {
     padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #e5e5e5;
    font-weight: 600;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: bold;
  color: #6a11cb;
  transition: 0.3s;
}

/* Answer hidden */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
}

/* OPEN STATE */
.faq-item.faq-open .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* Hover */
.faq-item:hover {
  transform: translateY(-2px);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
/*      background: #444;*/
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }






.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills nicely */
  border-radius: 12px;
}

/* Maintain equal height grid */
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}


.filter-btn {
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
}


.testimonial-section {
  background:#e7e3e39c;
  padding: 80px 0;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
}

.subtitle {
  color: #666;
}

/* Card */
.testimonial-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  transition: 0.3s;
  height: 100%;
}

.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Quote */
.quote-icon {
  width: 60px;
  height: 60px;
  background: #e6ff00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 26px;
}

/* Text */
.testimonial-text {
  color: #555;
  font-size: 15px;
}

/* Author */
.author-name {
  font-weight: 700;
  margin-top: 10px;
}

.date {
  color: #999;
  display: block;
  margin-bottom: 8px;
}

/* Stars */
.stars {
  color: #ff9800;
}
.section-padding_gallrey{
  padding: 80px 0;
  background: #dcdcdc42 !important;
}
/* Swiper spacing fix */
.swiper-slide {
  height: auto;
}
#bookingForm,input:focus{
  outline: none;

}
input,select,textarea {
    border: 1px solid #d7d0d0;
    border-radius: 8px;
}
#bookingForm,textarea:focus{
  outline: none;
}
#bookingForm,select:focus{
  outline: none;
}
#bookingForm input,textarea,select{
  width: 100%;

}
#bookingForm input,textarea{
  padding: 8px;
}
#bookingForm ,select{
  padding:11px;

}
#bookingForm ,textarea{
  height: 100%;
}
.faq-question h5{
  font-weight: 500 !important;
  font-size: 18px;
}
.faq-answer p{
  font-size: 15px;
  color: gray;
}
.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}



@media (max-width: 1200px) {
    .b-shap {
        display: none;
    }
    .btn-primary-custom {
    	width: 172px;
 }
 .service-card  h3{
 	font-size: 22px;
 }
 .trust-card , h4{
 	font-size: 21px;
 }
 .trust-card ,p{
 	font-size: 16px;
 }
}

@media screen and  (max-width: 993px) {
    .b-shap {
        display: none;
    }
    img.p-balloon{
    	left: 0;
    }
    .call-us{
    	width: 100%;
    }
   .navbar-wrapper > .d-flex {
    justify-content: space-between !important;
    width: 100%;
  }
}
@media (max-width: 1200px) {
    .party-balloon-img {
        position: relative;
        text-align: center;
        margin-bottom: 43px;
        margin-top: 70px;
    }
}
@media (max-width: 576px) {
    .party-balloon-img {
        position: relative;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .call-us {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 15px;
    }
    .top_numbers.d-flex.gap-4.align-items-center {
        display: none !important;
}
button#mobileToggle {
    position: absolute;
    right: 14px !important;
}
   
}

@media (max-width: 1400px) {
    .call-us {
        padding: 20px;
    }
}

@media (max-width: 768px) {
     .gallery-item {
    aspect-ratio: 1 / 1; /* square on mobile */
  }
   .section-padding {
    padding: 60px 0;
  }
  .hero-section {
    height: auto;
    min-height: 500px;
    padding-top: 60px;
  }
    .party-balloon-img{
    	text-align: center !important;
    }
}
@media (max-width: 1400px) {
    .call-us img {
        width: 82px;
        margin-right: 30px;
    }
        .call-us a {
        font-size: 23px;
        color: yellow;
    }
}


.show_desktop{
    display:block;
}
.show_mobile{
    display:none;
}


@media (max-width: 576px) {
.hero-section {
    
    height: 20vh !important ;
}
.show_desktop{
    display:none;
}
.show_mobile{
    display:block;
}
}


@media (max-width: 320px) {
    .section-title {
        
        font-size:28px;
    }
}

