body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }
    html {
  scroll-behavior: smooth;
}

    nav {
      background: linear-gradient(to right, #e96443, #904e95);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .navbar-brand img {
      height: 50px;
	  width:  50px;
      margin-right: 10px;
    }

    .nav-link.active {
      font-weight: bold;
      border-bottom: 2px solid #fff;
    }

    .top-contact {
      font-size: 0.85rem;
      color: #fff;
    }

    header#home {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
	  border: solid rgb(82 191 166 / 16%) 5px;
	  border-radius:15px;
      object-fit: cover;
      z-index: 1;
    }

    .header-content {
      position: relative;
      z-index: 2;
      color: white;
	  background: rgb(0, 0, 0);
      background: rgba(0, 0, 0, 0.5);
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }
.gallery-bg{
	background-color:#5ddfde66;
	margin:5px;
	border-radius:15px;
	border: solid rgb(82 191 166 / 16%) 5px;
}
.product-bg{
	background-color:#f8b9f9;
	margin:5px;
	padding-bottom:15px;
	border-radius:15px;
	border: solid rgb(82 191 166 / 16%) 5px;
}
.services-bg{
	background-color:#5ddfde66;
	margin:5px;
	border-radius:15px;
	border: solid rgb(82 191 166 / 16%) 5px;
}
.contact-bg{
	background-color:#f8b9f9;
	margin:5px;
	padding-bottom:15px;
	border-radius:15px;
	border: solid rgb(82 191 166 / 16%) 5px;
}
.card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1200px;
    }
/* 250PX FOR FOUR ROWS */
.card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  height: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: filter 0.3s ease;
}

.card:hover img {
  filter: brightness(40%);
}

.card-reveal {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgb(162 237 220 / 46%);
  color: white;
  text-align: center;
  transition: bottom 0.4s ease;
}

.card:hover .card-reveal {
  bottom: 0;
}

.card-reveal h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card-reveal p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}

.buy-btn {
  padding: 10px 20px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.buy-btn:active {
  transform: scale(0.95);
  background: #d73838;
}
}
body {
      font-family: sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: #f2f2f2;
      margin: 0;
    }

    .flipcard-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 20px;
    }

    .flipcard {
      width: 300px;
      height: 350px;
      perspective: 1000px;
      pointer-events: auto;
      cursor: pointer;
      touch-action: manipulation;
    }

    .flipcard-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.6s;
      transform-style: preserve-3d;
      position: relative;
    }

    /* Flip on hover (desktop) 
    .flipcard:hover .flipcard-inner {
      transform: rotateY(180deg);
    } 
    */

    /* Flip on click (mobile/JS) */
    .flipcard.is-flipped .flipcard-inner {
      transform: rotateY(180deg);
    }

    .flipcard-front, .flipcard-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      overflow: hidden;
    }

    .flipcard-front {
      background-color: #fff;
    }

    .flipcard-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .flipcard-back {
      background: #0077cc;
      color: white;
      transform: rotateY(180deg);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      text-align: center;
      font-size: 16px;
    }

    @media (hover: none) {
      .flipcard:hover .flipcard-inner {
        transform: none;
      }
    }
    @media (max-width: 768px) {
  .flipcard {
    width: 90%;
    height: 300px;
  }
}
  .services-music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .services-list .service-item {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }

  .service-item img {
    width: 250px;
    border-radius: 10px;
  }

  .music-playlist .music-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .music-details audio {
    width: 200px;
  }

  .disc {
    width: 60px;
    height: 60px;
    background-image: url(/images/disc.png);
    background-size: cover;
    border-radius: 50%;
  }

  .rotating {
    animation: spin 4s linear infinite;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  @media (max-width: 768px) {
    .services-music-grid {
      grid-template-columns: 1fr;
    }

    .music-details audio {
      width: 250px;
    }

    .disc {
      width: 100px;
      height: 40px;
    }
  }



    /* Combined Enquiry + Contact */
    #enquiry-contact {
      background: #f8f9fa;
      padding: 3rem 1rem;
      border-radius: 10px;
    }

    #enquiry-contact h2 {
      margin-bottom: 2rem;
    }

    /* WhatsApp Chat Button */
    #whatsapp-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      text-align: center;
      font-size: 30px;
      line-height: 60px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    #whatsapp-chat:hover {
      background-color: #128c4a;
    }

    /* Footer social icons */
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1rem 0;
      margin-top: 2rem;
    }

    footer .social-icons a {
      color: white;
      margin: 0 10px;
      font-size: 1.3rem;
      transition: color 0.3s ease;
    }

    footer .social-icons a:hover {
      color: #e96443;
    }

    /* Gallery Carousel images */
    .gallery-img {
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
    }

    @media (max-width: 767px) {
      #services .service-item {
        flex-direction: column;
        text-align: center;
      }

      #services .service-item img {
        margin-bottom: 1rem;
        margin-right: 0;
        max-width: 100%;
      }

      .cd-container {
        justify-content: center;
        flex-wrap: wrap;
      }

      .playlist-item {
        max-width: 100%;
      }
    }