body
    {
        background-color: #000
    }

     #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #111;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
    }

    /* Vinyl Disc Animation */
    .vinyl {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 8px solid #FFD700;
      border-top: 8px solid #fff;
      animation: spin 1.5s linear infinite;
      margin-bottom: 20px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Equalizer Bars */
    .equalizer {
      display: flex;
      gap: 6px;
      height: 40px;
      align-items: flex-end;
    }

    .bar {
      width: 6px;
      background: #FFD700;
      animation: bounce 1s infinite;
    }

    .bar:nth-child(2) { animation-delay: 0.2s; }
    .bar:nth-child(3) { animation-delay: 0.4s; }
    .bar:nth-child(4) { animation-delay: 0.6s; }
    .bar:nth-child(5) { animation-delay: 0.8s; }

    @keyframes bounce {
      0%, 100% { height: 10px; }
      50% { height: 40px; }
    }

    /* Text */
    .dj-text {
      margin-top: 15px;
      font-size: 1.2rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
      animation: fade 2s infinite alternate;
    }

    @keyframes fade {
      0% { opacity: 0.5; }
      100% { opacity: 1; }
    }
    /* Navbar Styling */
    .custom-navbar {
      background-color: #000;
      padding: 12px 30px;
    }
    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 400;
      margin: 0 10px;
      font-size: 18px;
    }
    .navbar-nav .nav-link:hover {
      color: #FFD700!important;
    }
    .plan-btn {
      background-color: #d4af37;
      color: black;
      font-weight: bold;
      padding: 10px 20px;
      border: none;
    }
    .plan-btn:hover {
      background-color: #bfa033;
    }
    .whatsapp-icon {
      font-size: 22px;
      color: white;
      background-color: #25D366;
      border-radius: 50%;
      padding: 8px;
      margin-right: 10px;
    }

    /* Offcanvas for Mobile */
    .offcanvas {
      background-color: #000;
      color: white;
    }
    .offcanvas .nav-link {
      color: white !important;
      font-size: 18px;
      padding: 12px 0;
    }
    .offcanvas .nav-link:hover {
      color: #FFD700!important;
    }
      body {
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Hero Section */


    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #0a0a0a;
      color: #fff;
    }

    /* Navbar */
  .navbar {
  padding: 15px 20px;
  background: rgba(0,0,0,0.85); /* Always visible on mobile */
  transition: background 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 6px 0;  /* mobile spacing */
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color:#FFD700;
}

/* Social icons */
.social-icons a {
  color: #fff;
  margin-right: 12px;
  transition: 0.3s;
  font-size: 18px;
}
.social-icons a:hover {
  color:#FFD700;
}

/* Button */
.btn-outline-light {
  border-radius: 25px;
  font-weight: 500;
  padding: 6px 16px;
  font-size: 14px;
}

/* ✅ Toggler icon visible on dark bg */
.navbar {
  padding: 15px 20px;
  background: rgba(0,0,0,0.85);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #fff;
  margin: 0 15px;
  font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ff3366;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}
.social-icons a:hover {
  color:#FFD700;
}

/* Toggler icon */
.navbar-toggler {
  border: none;
}
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Offcanvas Sidebar */
.offcanvas {
  width: 250px;
}
.offcanvas .nav-link {
  color: #fff;
  margin: 8px 0;
}
.offcanvas .nav-link:hover {
  color: #FFD700;
}




    /* Banner Section */
    .banner {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                  url("images/posttwo.jpg") center/cover no-repeat;
      padding: 0 20px;
    }

    .banner h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .banner h1 span {
      color: #0096FF;
    }

    .banner p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #d6d6d6;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
    }

    .btn-banner {
      background: transparent;
      border: 1px solid #fff;
      border-radius: 25px;
      color: #fff;
      padding: 12px 30px;
      font-weight: 500;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .btn-banner:hover {
      background: #ff3366;
      border-color: #ff3366;
      color: #fff;
      transform: scale(1.05);
    }

    .fade-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .banner h1 {
        font-size: 2.5rem;
      }
      .banner p {
        font-size: 1rem;
      }
    }

    @media (max-width: 576px) {
      .banner h1 {
        font-size: 2rem;
      }
      .banner p {
        font-size: 0.95rem;
      }
    }
    
    .btn-outline-gold {
      border: 2px solid #d4af37;
      color: #d4af37;
      background: transparent;
    }
    .btn-outline-gold:hover {
      background: #d4af37;
      color: #000;
    }

    .btn-gold {
      background: #d4af37;
      color: #000;
      border: none;
    }
    .btn-gold:hover {
      background: #bfa033;
      color: #fff;
    }

    /* Video Styling */
    .hero-video video {
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
      display: block;
    }

    /* Mobile adjustments */
    @media (max-width: 991px) {
      .hero-section {
        text-align: center;
      }
      .hero-text {
        margin-bottom: 25px;
        text-align: center;
      }
      .hero-text h1 {
        font-size: 2rem;
      }
      .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 8px auto;
        display: block;
      }
    }
     .about-section {
      padding: 80px 0;
    }

    .about-text h2 {
      font-size: 28px;
      font-weight: 600;
    }

    .about-text h2 span {
      color: #fff;
      font-weight: 700;
    }

    .about-text p {
      color: #bbb;
      font-size: 15px;
      line-height: 1.7;
      margin-top: 15px;
    }

    .about-text .btn-custom {
      margin-top: 20px;
      border: 1px solid #fff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      background: transparent;
      transition: all 0.3s ease;
    }

  

    .about-image {
      position: relative;
      text-align: center;
    }

    /* Perfect Circle Wrapper */
    .circle-wrapper {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      overflow: hidden;
      margin: auto;
      border: 5px solid #111;
      position: relative;
      z-index: 2;
    }

    .circle-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* keeps perfect circle without stretching */
    }

    /* Decorative Music Notes */
    .music-note {
      position: absolute;
      font-size: 28px;
      color: #ff2d75;
    }

    .note1 {
      top: 10px;
      left: 20px;
    }

    .note2 {
      bottom: -20px;
      right: 0px;
      font-size: 32px;
      color: #fff;
    }

    @media (max-width: 768px) {
      .about-section {
        text-align: center;
      }
      .about-image {
        margin-top: 30px;
      }
      .circle-wrapper {
        width: 250px;
        height: 250px;
      }
    }
    /* Carousel Styling */
    .carousel-indicators [data-bs-target] {
      background-color: #d4af37;
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .carousel-inner img {
      border-radius: 12px;
      width: 100%;
      height: 400px;
      object-fit: cover;
    }
    @media (max-width: 768px) {
      .about-content h2 {
        font-size: 1.8rem;
      }
      .carousel-inner img {
        height: 250px;
      }
    }

    .event-section {
      position: relative;
      background: url('images/banner.jpg') no-repeat center center/cover;
      padding: 60px 0;
    }
    .event-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
     background: rgba(200, 155, 60, 0.7);
 /* pink overlay */
      z-index: 0;
    }
    .event-section .container {
      position: relative;
      z-index: 1;
    }
    /* Event cards */
    .event-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s;
    }
    .event-card:hover {
      transform: translateY(-8px);
    }
    .event-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .event-content {
      padding: 15px;
      color: black;
    }
    .event-content h5 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .event-date-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #fff;
      color: #111;
      font-weight: bold;
      text-align: center;
      border-radius: 6px;
      padding: 5px 10px;
      font-size: 13px;
    }
    .section-title {
      color: #fff;
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
      font-weight: bold;
    }
    .section-title span {
      color: #0096FF; /* gold for highlight */
    }
     .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    color: white;
  }
  .music-section {
      padding: 80px 0;
      text-align: center;
    }
    .music-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 50px;
    }
    .music-card {
      text-align: center;
      margin-bottom: 30px;
    }
    .music-card img {
      width: 220px;
      height: 220px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
      transition: transform 0.4s ease-in-out;
    }
    .music-card img:hover {
      transform: scale(1.05);
    }
    .music-card h5 {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .music-card p {
      font-size: 0.9rem;
      color: #ccc;
    }
    .music-btn {
      margin-top: 30px;
    }
    .music-btn button {
      border-radius: 50px;
      padding: 10px 25px;
      border: 1px solid #fff;
      background: transparent;
      color: #fff;
      transition: all 0.3s ease-in-out;
    }
    .music-btn a
    {
      color: white;
    }
    .music-btn button a :hover {
      background: #fff;
      color: #111;
    }

  .bg-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
    z-index: 3;
  }

  .service-content {
    position: relative;
    z-index: 3; /* higher than overlay */
    padding: 2rem;
  }

  .service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .service-text {
    font-size: 19px;
    line-height: 1.6;
    text-align: justify;
  }

    .btn-learn-more {
      background-color: #fcb336;
      color: black;
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      margin-top: 30px;
    }

    .btn-learn-more:hover {
      background-color: #d4af37;
    }

    @media (max-width: 768px) {
      .service-title {
        font-size: 1.3rem;
      }
      .service-text {
        font-size: 0.9rem;
      }
    }
     .step-icon {
      width: 120px;
      height: 120px;
      background-color: #1a1a1a;
      border: 2px solid gold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      margin-bottom: 20px;
    }
    .step-icon i {
      color: gold;
      font-size: 48px;
    }
    .step-title {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .step-description {
      font-size: 1rem;
      color: white;
      max-width: 300px;
      margin: auto;
    }
     .review-section {
      
      padding: 80px 0;
      text-align: center;
    }
    .review-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
    }
    .review-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      color: black;
      font-size: 16px;
    }

    /* Review Card */
    .review-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    }
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    .review-header img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }
    .review-header h5 {
      margin: 0;
      font-weight: 600;
      font-size: 18px;
    }
    .star-rating {
      color: #FFD700;
      font-size: 16px;
    }
    .review-text {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .review-section h2 {
        font-size: 2rem;
      }
      .review-card {
        padding: 20px;
      }
    }
    .btn-enq
    {
        background-color: #d4af37;
        padding: 10px;
        color: white;
        font-weight: 700;
    }
    .btn-enq:hover
    {
        background-color: #d4af37;
        padding: 10px;
        color: white;
        font-weight: 700;
    }
     .footer {
  background: #111;
  color: #fff;
  padding: 40px 0 10px;
  font-size: 15px;
}

.footer-logo {
  max-width: 140px;
  background-color: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-caption {
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
}

.footer h5 {
  color: #C89B3C;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #C89B3C;
  padding-bottom: 5px;
  display: inline-block;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #C89B3C;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
  
}

.footer .social-icons a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  color: #C89B3C;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 13px;
  color: #ccc;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .social-icons {
    justify-content: center;
  }
}

     .event-form-section {
      padding: 60px 0;
    }
    .event-form-section .form-wrapper {
      background: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .event-form-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
      color: #333;
    }
    .event-form-section .btn-submit {
      background: #C89B3C;
      color: #fff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      transition: 0.3s;
    }
    .event-form-section .btn-submit:hover {
      background: #b38614;
    }
    .event-form-section img {
      border-radius: 10px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-section {
      padding: 60px 0;
    }
    .gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  transform: rotate(-2deg); /* tilt effect */
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1; /* Keeps all images square */
  object-fit: cover; /* Ensures image fills area without distortion */
  border: 8px solid #fff; /* white frame */
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive spacing fix */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 20px;
    transform: rotate(0deg); /* remove tilt on small screens for clean look */
  }
}

    .gold-stroke {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      pointer-events: none;
    }

 .contact-section {
      padding: 60px 0;
      background: black;
      color: black;
    }
    .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      color: black;
    }
    .contact-img {
      border-radius: 12px;
      overflow: hidden;
    }
    .contact-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background-color: white;
      padding: 10px;
    }
    .btn-submit {
      background: #C89B3C;
      color: #fff;
      font-weight: 600;
    }
    .btn-submit:hover {
      background: #C89B3C;
      color: #fff;
    }
    .contact-banner {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                  url('images/posttwo.jpg') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 150px 20px;
      border-radius: 12px;
      margin-bottom: 40px;
    }
    .contact-banner h1 {
      font-size: 42px;
      font-weight: 700;
    }
    .contact-banner p {
      font-size: 18px;
      opacity: 0.9;
    }
      .dj-section {
      background: url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2') no-repeat center center/cover;
      padding: 80px 0;
      position: relative;
      z-index: 1;
    }
    .dj-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: -1;
    }

    .profile-card {
      background: #111;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
    }

    .profile-card h3 {
      font-weight: 700;
    }
    .profile-card p {
      color: #ddd;
      font-size: 14px;
    }

    .profile-stats {
      margin-top: 20px;
      display: flex;
      justify-content: space-around;
    }
    .stat {
      text-align: center;
    }
    .stat i {
      font-size: 40px;
      margin-bottom: 10px;
      display: block;
    }
    .stat h6 {
      margin: 0;
      font-size: 14px;
      color: #ff2d75;
    }
    .stat span {
      display: block;
      font-weight: 600;
      font-size: 18px;
      color: #fff;
    }

    /* Keyframe animation for Dubeb icon */
    .animate-dubeb {
      animation: pulse 1s infinite;
    }
    @keyframes pulse {
      0%   { transform: scale(1); color: #ff3c00; }
      50%  { transform: scale(1.2); color: #ff7300; }
      100% { transform: scale(1); color: #ff3c00; }
    }

    /* Responsive images */
    .gallery-img {
      width: 100%;
      height: 550px;
      object-fit: contain;
      border-radius: 6px;
      margin-bottom: 15px;
    }
      .specialised-section {
      padding: 60px 0;
    }
    .specialised-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }
    .specialised-section h2::after {
      content: "";
      width: 50px;
      height: 3px;
      background:#C89B3C;
      position: absolute;
      left: 0;
      bottom: -10px;
    }
    .specialised-card {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
    }
    .specialised-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .specialised-card:hover img {
      transform: scale(1.05);
    }
    .specialised-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
       background: #C89B3C;
      color: #fff;
      text-align: center;
      padding: 12px 0;
      font-weight: 600;
      font-size: 16px;
    }
      .offers-section {
      padding: 60px 0;
    }

    .offers-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .offers-title h2 {
      font-family: 'Brush Script MT', cursive;
      font-size: 40px;
      color: #fff;
    }

    .offers-title .divider {
      margin: 15px auto;
      width: 100px;
      height: 3px;
      background: #C89B3C;
      position: relative;
    }

    .offers-title .divider::after {
      content: "";
      position: absolute;
      width: 40px;
      height: 3px;
      background: #C89B3C;
      left: 50%;
      transform: translateX(-50%);
      top: -8px;
    }

    .offer-item {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
    }

    .offer-item img {
      width: 250px;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
    }

    .offer-content {
      flex: 1;
      margin-left: 20px;
      position: relative;
      padding-left: 25px;
    }

    .offer-content::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #fff;
    }

    .offer-content::after {
      content: "";
      position: absolute;
      left: -9px;
      top: 20px;
      width: 18px;
      height: 18px;
      background: #FFD700;
      transform: rotate(45deg);
    }

    .offer-content h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .offer-content p {
      font-size: 14px;
      color: #ddd;
    }

    @media (max-width: 768px) {
      .offer-item {
        flex-direction: column;
        text-align: center;
      }
      .offer-content {
        margin-left: 0;
        margin-top: 15px;
        padding-left: 0;
      }
      .offer-content::before,
      .offer-content::after {
        display: none;
      }
    }
      .faq-section {
      padding: 60px 0;
    }

    .faq-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-title h2 {
      font-family: 'Brush Script MT', cursive;
      font-size: 42px;
      color: #FFD700;
      text-shadow: #FFD700;
    }

    .accordion-item {
      background: #1a1a1a;
      border: none;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: #FFD700;
      transition: 0.3s;
    }

    .accordion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 18px rgba(200, 155, 60, 0.7);
    }

    .accordion-button {
      background: transparent;
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      padding: 18px;
      border: none;
      outline: none;
      box-shadow: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Remove Bootstrap default arrow */
    .accordion-button::after {
      display: none !important;
    }

    /* Custom + / - icons */
    .accordion-button .toggle-icon {
      font-size: 20px;
      font-weight: bold;
      transition: transform 0.3s ease;
    }

    .accordion-button.collapsed .toggle-icon::before {
      content: "+";
      color: #FFD700;
    }

    .accordion-button:not(.collapsed) .toggle-icon::before {
      content: "-";
      color: #FFD700 ;
    }

    .accordion-body {
      background: #222;
      color: #ddd;
      font-size: 15px;
      padding: 18px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media(max-width:768px){
      .accordion-button {
        font-size: 16px;
      }
    }