        /* slider and menu buttons 1 to 300 */
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 2.6;
        }

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: relative;
        }

/* Default (desktop) */
.logo-img {
    width: 100px;
    height: 70px;
}

/* Mobile view (≤600px) */
@media (max-width: 600px) {
    .logo-img {
    width: 100px;
    height: 70px;
    }
}


        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover,
        nav ul li a.active {
            /* background: linear-gradient(135deg, #0b82b8, #4ecdc4); */
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        /* Ensure toggle hidden on desktop */
        @media (min-width: 769px) {
            .menu-toggle { display: none !important; }
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

/* Slider Background Images */
.slide1 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider1.jpg") center/cover no-repeat;
}

.slide2 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider2.jpg") center/cover no-repeat;
}

.slide3 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider3.jpg") center/cover no-repeat;
}


        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 2rem;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }

        .nav-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 20px;
        }

        .next-arrow {
            right: 20px;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                z-index: 1001;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li a {
                padding: 1rem 2rem;
                border-radius: 0;
                border-bottom: 1px solid #eee;
                background: transparent !important;
                color: #333;
                box-shadow: none;
                transform: none;
            }

            /* Mobile: remove persistent highlight; add subtle tap effect */
            nav ul li a.active {
                background: transparent !important;
                color: #0b82b8;
                box-shadow: none;
                transform: none;
            }

            nav ul li a:hover,
            nav ul li a:active {
                background: linear-gradient(90deg, rgba(11,130,184,0.12), rgba(78,205,196,0.12));
                color: #0b82b8;
            }

            .slide-content h1 {
                font-size: 2.5rem;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }

            .slider-arrow {
                display: none;
            }
        }
      .menu-toggle.open span:nth-child(1),
      .menu-toggle.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
      }
      .menu-toggle.open span:nth-child(2),
      .menu-toggle.active span:nth-child(2) {
          opacity: 0;
      }
      .menu-toggle.open span:nth-child(3),
      .menu-toggle.active span:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
      }


/* Balloon Decoration Ranchi | Birthday Party Decoration Ranchi 302 to 389 */
.services-section {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  color: #666;
  margin-bottom: 10px;
  font-weight: normal;
}

.section-subtitle {
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ff6b6b;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-title {
  font-size: 18px;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .services-section {
    padding: 40px 15px;
  }
}

/* Best Seller Birthday Decorations cards 391 to 574 */


 .best-seller-section {
            padding: 80px 20px;
            background: #f8f9fa;
            font-family: 'Arial', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .decorations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
            gap: 30px;
        }

        .decoration-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .decoration-card:nth-child(1) { animation-delay: 0.1s; }
        .decoration-card:nth-child(2) { animation-delay: 0.2s; }
        .decoration-card:nth-child(3) { animation-delay: 0.3s; }
        .decoration-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .decoration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .card-number {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            color: white;
            z-index: 2;
        }

        .card-01 { background: #ff6b6b; }
        .card-02 { background: #4ecdc4; }
        .card-03 { background: #45b7d1; }
        .card-04 { background: #96ceb4; }

        .decoration-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-bottom: 1px solid #eee;
        }

        .decoration-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .decoration-card:hover .decoration-image img {
            transform: scale(1.05);
        }

        .decoration-content {
            padding: 25px;
            text-align: center;
        }

        .decoration-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .decoration-card:hover .decoration-title {
            color: #4169e1;
        }

        .decoration-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95rem;
            transition: opacity 0.3s ease;
        }

        .decoration-card:hover .decoration-description {
            opacity: 0.9;
        }

        .call-button {
            display: inline-block;
            background: #4169e1;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .call-button:hover {
            background: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(65,105,225,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .decorations-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .best-seller-section {
                padding: 60px 15px;
            }
        }

                /* ========== CONTENT SECTION CSS START  566 to 916 ========== */
        .content-section {
            padding: 60px 20px;
            background: #fff;
            font-family: Arial, sans-serif;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .content-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .content-description {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            text-align: justify;
        }

        .budget-friendly-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }

        .budget-friendly-text {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            text-align: justify;
        }

        .why-choose-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }

        .features-list li::before {
            content: "•";
            color: #333;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .features-list li strong {
            color: #333;
        }

        .location-info {
            text-align: center;
            margin-bottom: 30px;
        }

        .location-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .location-link {
            color: #4169e1;
            text-decoration: none;
        }

        .location-link:hover {
            text-decoration: underline;
        }

        .faq-section {
            margin-top: 40px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .faq-title {
            font-size: 18px;
            color: #666;
            display: inline-block;
            position: relative;
        }

        .faq-icon {
            display: inline-block;
            width: 25px;
            height: 25px;
            background: #ccc;
            border-radius: 50%;
            margin-left: 10px;
            vertical-align: middle;
            text-align: center;
            line-height: 25px;
            color: white;
            font-size: 14px;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: #f9f9f9;
            padding: 15px 10px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        .faq-toggle {
            font-size: 18px;
            color: #666;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 15px;
        }
        /* ========== CONTENT SECTION CSS END ========== */

        /* ========== FOOTER CSS START ========== */
        .footer {
            background: linear-gradient(135deg, #b8860b, #0b82b8);
            padding: 60px 20px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            text-align: center;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffd700;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        /* Footer link animated underline */
        .footer-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 100%;
            height: 2px;
            background: #ffd700;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover::after {
            transform: scaleX(1);
        }

        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }

        .contact-info {
            font-size: 0.95rem;
            line-height: 0.8;
        }

        .contact-info strong {
            color: #ffd700;
        }

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

.float-btn {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333; /* fallback color */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

/* Icon image */
.icon-img {
    width: 24px;   /* size control */
    height: 24px;
    animation-delay: 0.5s;
}

/* Phone */
.phone-btn {
    background-color: #25d366;
    bottom: 140px;
    animation-delay: 0.5s;
}

/* WhatsApp */
.whatsapp-btn {
    background-color: #25d366;
    bottom: 80px;
    animation-delay: 0.5s;
}

/* Message */
.message-btn {
    background-color: #25d366;
    bottom: 20px;
}


        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ff6b6b;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        /* Footer bottom animated underline */
        .footer-bottom a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .footer-bottom a:hover::after {
            transform: scaleX(1);
        }
        /* ========== FOOTER CSS END ========== */

        /* ========== RESPONSIVE CSS START ========== */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .floating-buttons {
                right: 15px;
                bottom: 20px;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 0.3rem;
            }
        }
        /* ========== RESPONSIVE CSS END ========== */

        /* about 920 to 1114 */

            /* Hero Section with Single Image */
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url("header image.jpg"); /* 🔹 Replace with your image */
      background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .hero-divider {
      width: 100px;
      height: 4px;
      background: #FFD700;
      margin: 0 auto 20px;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }

    .main-content {
      background: #f8f8f8;
      padding: 80px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .welcome-section {
      background: linear-gradient(135deg, #0b82b8, #A0522D);
      color: white;
      text-align: center;
      padding: 60px 0;
    }

    .welcome-section h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .welcome-section p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .content-section {
      background: white;
      padding: 60px 0;
    }

    .section-title {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 30px;
      border-left: 4px solid #FFD700;
      padding-left: 20px;
    }

    .journey-text {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 25px;
      color: #666;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-card {
      background: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h4 {
      color: #8B4513;
      font-size: 1.3rem;
      margin-bottom: 15px;
    }

    .service-card p {
      color: #666;
      line-height: 1.7;
    }

    .community-section {
      background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
      padding: 50px 0;
    }

    .commitment-section {
      background: white;
      padding: 50px 0;
    }

    .cta-section {
      background: linear-gradient(135deg, #0b82b8, #A0522D);
      color: white;
      text-align: center;
      padding: 60px 0;
    }

    .cta-section h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: #8B4513;
      padding: 0px 30px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #9b4f27;
      color: white;
      transform: translateY(-2px);
    }

    .stats {
      display: flex;
      justify-content: space-around;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      margin: 10px;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: bold;
      color: #0b82b8;
    }

    .stat-label {
      color: #666;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
    }


    /* services 1117 to 1275*/

.balloon-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #7f8c8d;
}

/* One row, 4 columns */
/* Changed Code */
.decoration-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Helps avoid overflow */
}

.decoration-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

/* Hover effect */
.decoration-card:hover {
    transform: translateY(-10px);
}

/* Added CSS */
@media (max-width: 768px) {
    .decoration-row {
        flex-direction: column;
        gap: 15px;
    }

    .decoration-card {
        flex: none;
        width: 100%;
    }
}
/* Image box */
.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Example images */
.card-5 .card-image { background-image: url("img/img31.webp"); }
.card-6 .card-image { background-image: url("img/img32.webp"); }
.card-7 .card-image { background-image: url("img/img33.webp"); }
.card-8 .card-image { background-image: url("img/img34.webp"); }
.card-9 .card-image { background-image: url("img/img35.webp"); }
.card-10 .card-image { background-image: url("img/img36.webp"); }
.card-11 .card-image { background-image: url("img/img37.webp"); }
.card-12 .card-image { background-image: url("img/img38.webp"); }
.card-13 .card-image { background-image: url("img/img39.webp"); }
.card-14 .card-image { background-image: url("img/img40.webp"); }
.card-15 .card-image { background-image: url("img/img41.webp"); }
.card-16 .card-image { background-image: url("img/img42.webp"); }
.card-17 .card-image { background-image: url("img/img43.webp"); }
.card-18 .card-image { background-image: url("img/img44.webp"); }
.card-19 .card-image { background-image: url("img/img45.webp"); }
.card-20 .card-image { background-image: url("img/img46.webp"); }
.card-21 .card-image { background-image: url("img/img47.webp"); }
.card-22 .card-image { background-image: url("img/img48.webp"); }
.card-23 .card-image { background-image: url("img/img49.webp"); }
.card-24 .card-image { background-image: url("img/img50.webp"); }
.card-25 .card-image { background-image: url("img/img51.webp"); }
.card-26 .card-image { background-image: url("img/img52.webp"); }
.card-27 .card-image { background-image: url("img/img53.webp"); }
.card-28 .card-image { background-image: url("img/img54.webp"); }

.card-29 .card-image { background-image: url("img/img55.webp"); }
.card-30 .card-image { background-image: url("img/img56.webp"); }
.card-31 .card-image { background-image: url("img/img57.webp"); }
.card-32 .card-image { background-image: url("img/img58.webp"); }
.card-33 .card-image { background-image: url("img/img59.webp"); }
.card-34 .card-image { background-image: url("img/img60.webp"); }
.card-35 .card-image { background-image: url("img/img61.webp"); }
.card-36 .card-image { background-image: url("img/img62.webp"); }
.card-37 .card-image { background-image: url("img/img63.webp"); }
.card-38 .card-image { background-image: url("img/img64.webp"); }
.card-39 .card-image { background-image: url("img/img65.webp"); }
.card-40 .card-image { background-image: url("img/img66.webp"); }
.card-41 .card-image { background-image: url("img/img67.webp"); }
.card-42 .card-image { background-image: url("img/img68.webp"); }
.card-43 .card-image { background-image: url("img/img69.webp"); }
.card-44 .card-image { background-image: url("img/img70.webp"); }

/* Title */
/* Title */
.card-title {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Floating balloons animation */
.floating-balloon {
    position: absolute;
    width: 25px;
    height: 35px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 3s ease-in-out infinite;
    opacity: 0.9;
}

.balloon-1 { background: #ff6b6b; top: 10%; left: 10%; animation-delay: 0s; }
.balloon-2 { background: #4ecdc4; top: 20%; right: 15%; animation-delay: 1s; }
.balloon-3 { background: #45b7d1; bottom: 15%; left: 20%; animation-delay: 2s; }
.balloon-4 { background: #96ceb4; bottom: 25%; right: 10%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


/* coustermer review  1206 to 1282 */

/* Container */
.container { max-width: 1200px; margin: auto; padding: 20px; }

/* Reviews */
.reviews-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  animation: fadeIn 1.2s ease;
}
.reviews-header h2 { text-align: center; color: #0b82b8; font-size: 28px; margin-bottom: 20px; }
.reviews-container {
  display: flex; gap: 20px; position: relative; overflow: hidden;
}
.review-card {
  flex: 1; background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 20px; position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.reviewer-avatar {
  position: absolute; top: -20px; left: 20px; width: 50px; height: 50px;
  background: #0b82b8; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 22px;
}
.reviewer-name { font-weight: bold; font-size: 16px; margin-top: 25px; }
.reviewer-location { font-size: 13px; color: #777; display: flex; align-items: center; gap: 6px; }
.stars { color: #ffb400; font-size: 16px; margin: 10px 0; }
.review-text { font-size: 14px; color: #555; }

/* Navigation Arrows */
.nav-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,77,109,0.8); border: none; width: 35px; height: 35px;
  border-radius: 50%; cursor: pointer; color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.nav-arrows:hover { background: #ff4d6d; }
.nav-left { left: -15px; }
.nav-right { right: -15px; }

/* Content Sections */
.content-section {
  background: #fff; border-radius: 12px; padding: 25px;
  margin-bottom: 25px; box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.content-section:hover { transform: translateY(-6px); }
.content-section h3 { color: #0b82b8; margin-bottom: 12px; font-size: 20px; }
.content-section p { color: #555; font-size: 15px; }

/* FAQ */
.faq-section {
  background: #fff; border-radius: 12px; padding: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.faq-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.faq-icon {
  width: 26px; height: 26px; background: #ff4d6d; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.faq-title { font-size: 15px; color: #666; }
.faq-item { border-bottom: 1px solid #eee; padding: 12px 0; cursor: pointer; }
.faq-question { font-size: 14px; color: #333; }
.faq-plus { float: right; font-size: 18px; color: #ff4d6d; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* gallery cards images only  1284 to 1436 */

/* General container */
.gallery-container {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

/* Title */
.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0b82b8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Grid layout (5 rows × 4 cols = 20) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Each gallery item */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Image background (placeholder for balloon pics) */
.balloon-decoration {
  width: 100%;
  padding-top: 70%; /* maintains aspect ratio */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay on hover */
.decoration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
}

.gallery-item:hover .decoration-overlay {
  opacity: 1;
}

.decoration-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.decoration-description {
  font-size: 0.9rem;
}

/* Floating balloons animation */
.floating-balloon {
  position: absolute;
  width: 60px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #0b82b8, #35a4e5ff);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.balloon-1 { top: 70%; left: 5%; animation-delay: 0s; }
.balloon-2 { top: 80%; right: 10%; animation-delay: 2s; }
.balloon-3 { bottom: 10%; left: 50%; animation-delay: 4s; }

@keyframes float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* Sparkle effects */
.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 10px #fff, 0 0 20px #f06292, 0 0 30px #ba68c8;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(0.5); opacity: 0.5; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* --- Background Images for all 20 items --- */

/* Row 1 */
.img-birthday   { background-image: url("img/img1.webp"); }
.img-christmas  { background-image: url("img/img2.webp"); }
.img-minion     { background-image: url("img/img3.webp"); }
.img-number     { background-image: url("img/img4.webp"); }

/* Row 2 */
.img-anniversary { background-image: url("img/img5.webp"); }
.img-wedding     { background-image: url("img/img6.webp"); }
.img-baby        { background-image: url("img/img7.webp"); }
.img-corporate   { background-image: url("img/img8.webp"); }

/* Row 3 */
.img-engagement { background-image: url("img/img9.webp"); }
.img-theme1     { background-image: url("img/img10.webp"); }
.img-theme2     { background-image: url("img/img11.webp"); }
.img-theme3     { background-image: url("img/img12.webp"); }

/* Row 4 */
.img-theme4 { background-image: url("img/img13.webp"); }
.img-theme5 { background-image: url("img/img14.webp"); }
.img-theme6 { background-image: url("img/img15.webp"); }
.img-theme7 { background-image: url("img/img16.webp"); }

/* Row 5 */
.img-theme8  { background-image: url("img/img17.webp"); }
.img-theme9  { background-image: url("img/img18.webp"); }
.img-theme10 { background-image: url("img/img19.webp"); }
.img-theme11 { background-image: url("img/img20.webp"); }



/* coustermer review 1439 to 1703  */

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.reviews-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden; /* ✅ for slider effect */
}

.reviews-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.review-card {
    flex: 0 0 calc(25% - 15px); /* ✅ Desktop: 4 cards */
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background-color: #0b82b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.profile-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.reviewer-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.location {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 13px;
}

.location-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    opacity: 0.6;
}

.stars {
    margin: 15px 0;
}

.star {
    color: #ffa500;
    font-size: 16px;
    margin-right: 2px;
}

.review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-button:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.nav-button.prev {
    left: -20px;
}

.nav-button.next {
    right: -20px;
}

.content-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.main-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.description a {
    color: #007bff;
    text-decoration: none;
}

.description a:hover {
    text-decoration: underline;
}

.section-subtitle {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 600;
}

.benefits-section {
    margin: 30px 0;
}

.benefits-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 15px;
}

.benefits-list li::before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.faq-section {
    margin-top: 40px;
}

.faq-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 15px;
}

.faq-toggle {
    font-size: 20px;
    color: #888;
}

/* ✅ Tablet (3 per row) */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* ✅ Mobile (1 per row) */
@media (max-width: 600px) {
    .review-card {
        flex-direction: column;   /* ek ke neeche ek */
        gap: 20px;

    }

    .review-card {
        flex: 0 0 100%;           /* full width */
    }

    .section-title {
        font-size: 22px;
    }

    .nav-button {
        display: none;            /* mobile me arrows hide */
    }
}


/* contact form 1735 to  1960*/

/* --- Contact Container --- */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Header --- */
.contact-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #0b82b8 0%, #0b82b8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.contact-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: float 20s linear infinite;
}
@keyframes float {
  0% { transform: translate(-50px, -50px) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}
.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.contact-header p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* --- Content Grid --- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
}

/* --- Form --- */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.form-group { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}
.required { color: #ef4444; }
input, textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
  background: white;
  transform: translateY(-1px);
}
textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.submit-btn {
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}
.submit-btn:active { transform: translateY(0); }

/* --- Info --- */
.contact-info { padding: 40px; }
.info-section {
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  color: white;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.info-section:hover { transform: scale(1.02); }
.info-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(30px,-30px);
}
.info-section h3 { font-size: 1.5rem; margin-bottom: 16px; }
.info-section p { opacity: 0.95; line-height: 1.6; }
.phone-link, .email-link {
  color: white; text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.phone-link:hover, .email-link:hover { border-color: white; }

/* --- Icons --- */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 40px;
}
.icon-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.icon-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}

/* --- Floating elements --- */
.floating-elements {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: -1;
}
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float-around 20s linear infinite;
}
.floating-circle:nth-child(1){ width:80px; height:80px; top:20%; left:10%; animation-delay:-2s; }
.floating-circle:nth-child(2){ width:60px; height:60px; top:60%; right:15%; animation-delay:-8s; }
.floating-circle:nth-child(3){ width:100px; height:100px; bottom:20%; left:20%; animation-delay:-15s; }
@keyframes float-around {
  0%{ transform:translateY(0) rotate(0deg); }
  33%{ transform:translateY(-20px) rotate(120deg); }
  66%{ transform:translateY(20px) rotate(240deg); }
  100%{ transform:translateY(0) rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width:768px){
  .contact-content{ grid-template-columns:1fr; gap:30px; padding:40px 20px; }
  .contact-header{ padding:40px 20px 30px; }
  .contact-form, .contact-info{ padding:30px 20px; }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .info-section{ padding:24px; }
  .contact-icons{ padding:0 20px; }
}
@media (max-width:480px){
  html{ padding:10px; }
  .contact-container{ border-radius:16px; }
  .contact-header h1{ font-size:2rem; }
  .contact-form, .contact-info{ padding:20px; }
  .info-section{ padding:20px; }
}



/* slider and menu buttons 1 to 300 */
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 2.6;
        }

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

/* Default (desktop) */
.logo-img {
    width: 100px;
    height: 70px;
}

/* Mobile view (≤600px) */
@media (max-width: 600px) {
    .logo-img {
    width: 100px;
    height: 70px;
    }
}


        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a:hover,
        nav ul li a.active {
            background: linear-gradient(135deg, #0b82b8, #4ecdc4);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
        }

/* Slider Background Images */
.slide1 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider1.jpg") center/cover no-repeat;
}

.slide2 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider2.jpg") center/cover no-repeat;
}

.slide3 {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("slider3.jpg") center/cover no-repeat;
}


        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 2rem;
            margin-top: -41px;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }

        .nav-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: 20px;
        }

        .next-arrow {
            right: 20px;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li a {
                padding: 1rem 2rem;
                border-radius: 0;
                border-bottom: 1px solid #eee;
            }

            .slide-content h1 {
                font-size: 2.5rem;
            }

            .slide-content h2 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }

            .slider-arrow {
                display: none;
            }
        }

/* Balloon Decoration Ranchi | Birthday Party Decoration Ranchi 302 to 389 */
.services-section {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  color: #666;
  margin-bottom: 10px;
  font-weight: normal;
}

.section-subtitle {
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ff6b6b;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-title {
  font-size: 18px;
  color: #666;
  margin-bottom: 5px;
  font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .services-section {
    padding: 40px 15px;
  }
}

/* Best Seller Birthday Decorations cards 391 to 574 */


 .best-seller-section {
            padding: 80px 20px;
            background: #f8f9fa;
            font-family: 'Arial', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .decorations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
            gap: 30px;
        }

        .decoration-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s ease;
        }

        .decoration-card:nth-child(1) { animation-delay: 0.1s; }
        .decoration-card:nth-child(2) { animation-delay: 0.2s; }
        .decoration-card:nth-child(3) { animation-delay: 0.3s; }
        .decoration-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .decoration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .card-number {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            color: white;
            z-index: 2;
        }

        .card-01 { background: #ff6b6b; }
        .card-02 { background: #4ecdc4; }
        .card-03 { background: #45b7d1; }
        .card-04 { background: #96ceb4; }

        .decoration-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-bottom: 1px solid #eee;
        }

        .decoration-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .decoration-card:hover .decoration-image img {
            transform: scale(1.05);
        }

        .decoration-content {
            padding: 25px;
            text-align: center;
        }

        .decoration-title {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

         .decoration-title {
            color: #010103;
        }

        .decoration-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95rem;
            transition: opacity 0.3s ease;
        }

        .decoration-card:hover .decoration-description {
            opacity: 0.9;
        }

        .call-button {
            display: inline-block;
            background: #4169e1;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .call-button:hover {
            background: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(65,105,225,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .decorations-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .best-seller-section {
                padding: 60px 15px;
            }
        }

                /* ========== CONTENT SECTION CSS START  566 to 916 ========== */
        .content-section {
            padding: 60px 20px;
            background: #fff;
            font-family: Arial, sans-serif;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .content-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .content-description {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            text-align: justify;
        }

        .budget-friendly-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }

        .budget-friendly-text {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            text-align: justify;
        }

        .why-choose-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }

        .features-list li::before {
            content: "•";
            color: #333;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .features-list li strong {
            color: #333;
        }

        .location-info {
            text-align: center;
            margin-bottom: 30px;
        }

        .location-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .location-link {
            color: #4169e1;
            text-decoration: none;
        }

        .location-link:hover {
            text-decoration: underline;
        }

        .faq-section {
            margin-top: 40px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .faq-title {
            font-size: 18px;
            color: #666;
            display: inline-block;
            position: relative;
        }

        .faq-icon {
            display: inline-block;
            width: 25px;
            height: 25px;
            background: #ccc;
            border-radius: 50%;
            margin-left: 10px;
            vertical-align: middle;
            text-align: center;
            line-height: 25px;
            color: white;
            font-size: 14px;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: #f9f9f9;
            padding: 15px 10px;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        .faq-toggle {
            font-size: 18px;
            color: #666;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 15px;
        }
        /* ========== CONTENT SECTION CSS END ========== */

        /* ========== FOOTER CSS START ========== */
        .footer {
            background: linear-gradient(135deg, #b8860b, #0b82b8);
            padding: 60px 20px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            text-align: center;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffd700;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }

        .contact-info {
            font-size: 0.95rem;
            line-height: 0.8;
        }

        .contact-info strong {
            color: #ffd700;
        }

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

.float-btn {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333; /* fallback color */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

/* Icon image */
/* .icon-img {
    width: 24px;   /* size control */
    /* height: 24px;
    animation-delay: 0.5s;
} */ 

/* Phone */
/* .phone-btn {
    background-color: #25d366;
    bottom: 140px;
    animation-delay: 0.5s; */
/* } */

/* WhatsApp */
/* .whatsapp-btn {
    background-color: #25d366;
    bottom: 80px;
    animation-delay: 0.5s;
} */

/* Message */
/* .message-btn {
    background-color: #25d366;
    bottom: 20px;
}


        .float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #ff6b6b;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        } */
        /* ========== FOOTER CSS END ========== */

        /* ========== RESPONSIVE CSS START ========== */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .floating-buttons {
                right: 15px;
                bottom: 20px;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 0.3rem;
            }
        }
        /* ========== RESPONSIVE CSS END ========== */

        /* about 920 to 1114 */

            /* Hero Section with Single Image */
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url("header image.jpg"); /* 🔹 Replace with your image */
      background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .hero-content {
      max-width: 800px;
      padding: 0 20px;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .hero-divider {
      width: 100px;
      height: 4px;
      background: #FFD700;
      margin: 0 auto 20px;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }

    .main-content {
      background: #f8f8f8;
      padding: 80px 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .welcome-section {
      background: linear-gradient(135deg, #0b82b8, #A0522D);
      color: white;
      text-align: center;
      padding: 60px 0;
    }

    .welcome-section h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .welcome-section p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .content-section {
      background: white;
      padding: 60px 0;
    }

    .section-title {
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 30px;
      border-left: 4px solid #FFD700;
      padding-left: 20px;
    }

    .journey-text {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 25px;
      color: #666;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-card {
      background: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h4 {
      color: #8B4513;
      font-size: 1.3rem;
      margin-bottom: 15px;
    }

    .service-card p {
      color: #fff;
      line-height: 1.7;
    }

    .community-section {
      background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
      padding: 50px 0;
    }

    .commitment-section {
      background: white;
      padding: 50px 0;
    }

    .cta-section {
      background: linear-gradient(135deg, #0b82b8, #A0522D);
      color: white;
      text-align: center;
      padding: 60px 0;
    }

    .cta-section h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: #8B4513;
      padding: 0px 30px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #9b4f27;
      color: white;
      transform: translateY(-2px);
    }

    .stats {
      display: flex;
      justify-content: space-around;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      margin: 10px;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: bold;
      color: #0b82b8;
    }

    .stat-label {
      color: #666;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
      }
    }


    /* services 1117 to 1275*/

.balloon-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #7f8c8d;
}

/* One row, 4 columns */
.decoration-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.decoration-card {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.decoration-card:hover {
    transform: translateY(-10px);
}

/* Image box */
.card-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Example images */
.card-1 .card-image { background-image: url("img/img31.webp"); }
.card-2 .card-image { background-image: url("images/balloon-cloud.jpg"); }
.card-3 .card-image { background-image: url("images/balloon-centerpiece.jpg"); }
.card-4 .card-image { background-image: url("images/balloon-arch.jpg"); }

/* Title */
.card-title {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Floating balloons animation */
.floating-balloon {
    position: absolute;
    width: 25px;
    height: 35px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 3s ease-in-out infinite;
    opacity: 0.9;
}

.balloon-1 { background: #ff6b6b; top: 10%; left: 10%; animation-delay: 0s; }
.balloon-2 { background: #4ecdc4; top: 20%; right: 15%; animation-delay: 1s; }
.balloon-3 { background: #45b7d1; bottom: 15%; left: 20%; animation-delay: 2s; }
.balloon-4 { background: #96ceb4; bottom: 25%; right: 10%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


/* coustermer review  1206 to 1282 */

/* Container */
.container { max-width: 1200px; margin: auto; padding: 20px; }

/* Reviews */
.reviews-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  animation: fadeIn 1.2s ease;
}
.reviews-header h2 { text-align: center; color: #0b82b8; font-size: 28px; margin-bottom: 20px; }
.reviews-container {
  display: flex; gap: 20px; position: relative; overflow: hidden;
}
.review-card {
  flex: 1; background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 20px; position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.reviewer-avatar {
position: absolute;
    top: 1px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #0b82b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}
.reviewer-name { font-weight: bold; font-size: 16px; margin-top: 25px; }
.reviewer-location { font-size: 13px; color: #777; display: flex; align-items: center; gap: 6px; }
.stars { color: #ffb400; font-size: 16px; margin: 10px 0; }
.review-text { font-size: 14px; color: #555; }

/* Navigation Arrows */
.nav-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,77,109,0.8); border: none; width: 35px; height: 35px;
  border-radius: 50%; cursor: pointer; color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.nav-arrows:hover { background: #ff4d6d; }
.nav-left { left: -15px; }
.nav-right { right: -15px; }

/* Content Sections */
.content-section {
  background: #fff; border-radius: 12px; padding: 25px;
  margin-bottom: 25px; box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.content-section:hover { transform: translateY(-6px); }
.content-section h3 { color: #0b82b8; margin-bottom: 12px; font-size: 20px; }
.content-section p { color: #555; font-size: 15px; }

/* FAQ */
.faq-section {
  background: #fff; border-radius: 12px; padding: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.faq-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.faq-icon {
  width: 26px; height: 26px; background: #ff4d6d; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.faq-title { font-size: 15px; color: #666; }
.faq-item { border-bottom: 1px solid #eee; padding: 12px 0; cursor: pointer; }
.faq-question { font-size: 14px; color: #333; }
.faq-plus { float: right; font-size: 18px; color: #ff4d6d; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* gallery cards images only  1284 to 1436 */

/* General container */
.gallery-container {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

/* Title */
.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0b82b8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Grid layout (5 rows × 4 cols = 20) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* Each gallery item */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Image background (placeholder for balloon pics) */
.balloon-decoration {
  width: 100%;
  padding-top: 70%; /* maintains aspect ratio */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay on hover */
.decoration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
}

.gallery-item:hover .decoration-overlay {
  opacity: 1;
}

.decoration-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.decoration-description {
  font-size: 0.9rem;
}

/* Floating balloons animation */
.floating-balloon {
  position: absolute;
  width: 60px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, #0b82b8, #35a4e5ff);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.balloon-1 { top: 70%; left: 5%; animation-delay: 0s; }
.balloon-2 { top: 80%; right: 10%; animation-delay: 2s; }
.balloon-3 { bottom: 10%; left: 50%; animation-delay: 4s; }

@keyframes float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* Sparkle effects */
.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 10px #fff, 0 0 20px #f06292, 0 0 30px #ba68c8;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(0.5); opacity: 0.5; }
  50%      { transform: scale(1.2); opacity: 1; }
}

/* --- Background Images for all 20 items --- */

/* Row 1 */
.img-birthday   { background-image: url("img/new3.jpg"); }
.img-christmas  { background-image: url("img/img2.webp"); }
.img-minion     { background-image: url("img/img3.webp"); }
.img-number     { background-image: url("img/img4.webp"); }

/* Row 2 */
.img-anniversary { background-image: url("img/img5.webp"); }
.img-wedding     { background-image: url("img/img6.webp"); }
.img-baby        { background-image: url("img/img7.webp"); }
.img-corporate   { background-image: url("img/img8.webp"); }

/* Row 3 */
.img-engagement { background-image: url("img/new12.jpg"); }
.img-theme1     { background-image: url("img/img10.webp"); }
.img-theme2     { background-image: url("img/img11.webp"); }
.img-theme3     { background-image: url("img/img12.webp"); }

/* Row 4 */
.img-theme4 { background-image: url("img/img13.webp"); }
.img-theme5 { background-image: url("img/img14.webp"); }
.img-theme6 { background-image: url("img/img15.webp"); }
.img-theme7 { background-image: url("img/img16.webp"); }

/* Row 5 */
.img-theme8  { background-image: url("img/img17.webp"); }
.img-theme9  { background-image: url("img/img18.webp"); }
.img-theme10 { background-image: url("img/img19.webp"); }
.img-theme11 { background-image: url("img/img20.webp"); }



/* coustermer review 1439 to 1703  */

.reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.reviews-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden; /* ✅ for slider effect */
}

.reviews-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.review-card {
    flex: 0 0 calc(33% - 15px); /* ✅ Desktop: 4 cards */
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background-color: #0b82b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.profile-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.reviewer-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.location {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 13px;
}

.location-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    opacity: 0.6;
}

.stars {
    margin: 15px 0;
}

.star {
    color: #ffa500;
    font-size: 16px;
    margin-right: 2px;
}

.review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-button:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.nav-button.prev {
    left: -20px;
}

.nav-button.next {
    right: -20px;
}

.content-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.main-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.description a {
    color: #007bff;
    text-decoration: none;
}

.description a:hover {
    text-decoration: underline;
}

.section-subtitle {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 600;
}

.benefits-section {
    margin: 30px 0;
}

.benefits-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-size: 15px;
}

.benefits-list li::before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.faq-section {
    margin-top: 40px;
}

.faq-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-size: 15px;
}

.faq-toggle {
    font-size: 20px;
    color: #888;
}

/* ✅ Tablet (3 per row) */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* ✅ Mobile (1 per row) */
@media (max-width: 600px) {
    .review-card {
        flex-direction: column;   /* ek ke neeche ek */
        gap: 20px;

    }

    .review-card {
        flex: 0 0 100%;           /* full width */
    }

    .section-title {
        font-size: 22px;
    }

    .nav-button {
        display: none;            /* mobile me arrows hide */
    }
}


/* contact form 1735 to  1960*/

/* --- Contact Container --- */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 10px;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Header --- */
.contact-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #0b82b8 0%, #0b82b8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.contact-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: float 20s linear infinite;
}
@keyframes float {
  0% { transform: translate(-50px, -50px) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}
.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.contact-header p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* --- Content Grid --- */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
}

/* --- Form --- */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.form-group { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}
.required { color: #ef4444; }
input, textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
  background: white;
  transform: translateY(-1px);
}
textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.submit-btn {
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}
.submit-btn:active { transform: translateY(0); }

/* --- Info --- */
.contact-info { padding: 40px; }
.info-section {
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  color: white;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.info-section:hover { transform: scale(1.02); }
.info-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(30px,-30px);
}
.info-section h3 { font-size: 1.5rem; margin-bottom: 16px; }
.info-section p { opacity: 0.95; line-height: 1.6; }
.phone-link, .email-link {
  color: white; text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.phone-link:hover, .email-link:hover { border-color: white; }

/* --- Icons --- */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 40px;
}
.icon-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b82b8 0%,#0b82b8 100%);
  display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.icon-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(102,126,234,0.4);
}

/* --- Floating elements --- */
.floating-elements {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: -1;
}
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float-around 20s linear infinite;
}
.floating-circle:nth-child(1){ width:80px; height:80px; top:20%; left:10%; animation-delay:-2s; }
.floating-circle:nth-child(2){ width:60px; height:60px; top:60%; right:15%; animation-delay:-8s; }
.floating-circle:nth-child(3){ width:100px; height:100px; bottom:20%; left:20%; animation-delay:-15s; }
@keyframes float-around {
  0%{ transform:translateY(0) rotate(0deg); }
  33%{ transform:translateY(-20px) rotate(120deg); }
  66%{ transform:translateY(20px) rotate(240deg); }
  100%{ transform:translateY(0) rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width:768px){
  .contact-content{ grid-template-columns:1fr; gap:30px; padding:40px 20px; }
  .contact-header{ padding:40px 20px 30px; }
  .contact-form, .contact-info{ padding:30px 20px; }
  .form-row{ grid-template-columns:1fr; gap:0; }
  .info-section{ padding:24px; }
  .contact-icons{ padding:0 20px; }
}
@media (max-width:480px){
  html{ padding:10px; }
  .contact-container{ border-radius:16px; }
  .contact-header h1{ font-size:2rem; }
  .contact-form, .contact-info{ padding:20px; }
  .info-section{ padding:20px; }
}


/* footer  contact */

.fixed_enquiry_btn_web {
    position: fixed;
    bottom: 5%;
    left: 3%;
    z-index: 99;
}

.fixed_enquiry_btn_web a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.fixed_enquiry_btn_web a.phone {
    background-color: #F15D30;
}

.fixed_enquiry_btn_web a.dsk_whatsapp {
    background-color: #24CC63;
}

.fixed_enquiry_btn_web a.envelope {
    background-color: #0693e3;
}

/* ===== Ensure mobile nav link text remains visible (override globals) ===== */
@media (max-width: 768px) {
    header .nav-container nav ul li a {
        color: #333 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    header .nav-container nav ul li a:hover,
    header .nav-container nav ul li a:active,
    header .nav-container nav ul li a.active {
        color: #0b82b8 !important;
        background: linear-gradient(90deg, rgba(11,130,184,0.12), rgba(78,205,196,0.12)) !important;
        box-shadow: none !important;
        transform: none !important;
    }
}

/* ===== Classic hamburger toggle styling ===== */
/* Works globally; only visible on mobile due to existing media rules */
.menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    z-index: 1100;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #0b82b8;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.menu-toggle:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Keep line color consistent when toggled to X */
.menu-toggle.active span {
    background: #0b82b8;
}

.fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }