*{padding: 0; margin: 0; box-sizing: border-box;}
body {
    margin: 0;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NAVBAR */
.navbar {
    background: #fcf2f0;
    padding: 2px 0;
    border-bottom: 3px solid #5d171f;
}

.navbar-brand,
.nav-link {
    color: #5d171f !important;
    font-weight: 500;
}

.nav-link {
    padding: 18px 5px;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 25px;
}

.event-btn {
    background: var(--gold);
    color: #fff;
    padding: 8px 23px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 4px;
    background: #5d171f ;
}

/* MOBILE SIDEBAR */
.menu-toggle {
    font-size: 28px;
    color: #fff;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fcf2f0;
    z-index: 9999;
    transition: .4s;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 15px;
}

.mobile-header h4 {
    color: #fff;
    margin: 0;
}

.close-btn {
    font-size: 26px;
    color: maroon;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    color: maroon;
    font-size: 18px;
    margin: 22px 0;
    text-decoration: none;
}

/* SLIDER */
.slider,
.carousel-item {
    height: 672px;
}

.slide {
    background-size: cover;
    background-position: center;
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 25px;
    background-size: 60%;
}
.title-wrapper-cat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .main-title-cat {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 600;
      color: #7a2d2d;
      margin: 0;
    }

    .line-cat {
      width: 80px;
      height: 1px;
      background-color: #c9a77d;
    }

    .sub-title-cat {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: #a67c52;
      margin-top: 10px;
    }
.wrapper-cat {
    background-image: url(../images/muscic-ct-cover.png);
    background-size: cover;
    padding: 60px 0px;
    background-repeat: no-repeat;
    background-position: center, center;
}

.section-cat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.card-cat {
    background: #ffffff;
    /* box background */
    border-radius: 18px;
    padding: 30px 22px 34px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.card-cat:nth-child(1) {
    animation-delay: 0.1s;
}

.card-cat:nth-child(2) {
    animation-delay: 0.2s;
}

.card-cat:nth-child(3) {
    animation-delay: 0.3s;
}

.card-cat:nth-child(4) {
    animation-delay: 0.4s;
}

.card-cat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* icon background exactly like image */
.icon-wrap-cat {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fde6d4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.card-cat:hover .icon-wrap-cat {
    transform: scale(1.08) rotate(3deg);
}

.icon-wrap-cat img {
    width: 68px;
    /* height: 46px; */
    object-fit: contain;
}

.title-cat {
    font-size: 18px;
    font-weight: 600;
    color: #4a2c1f;
    margin-bottom: 10px;
}

.desc-cat {
    font-size: 14px;
    line-height: 1.6;
    color: #6f4b39;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 500;
    color: #4a2c1f;
    background: #f2c39c;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover {
    background: #e7ae7d;
    transform: translateY(-2px);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.youtube-cover{
    background-image: url('../images/muscic-ct-cover.png');
    background-size: cover;
    padding: 80px 0px;
}
/* VIDEO BOX */
.exp2-video-box{
  position:relative;
  height:240px;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 15px 30px rgba(0,0,0,0.25);
  transition:0.4s;
  background:#000;
}

.exp2-video-box:hover{
  transform:translateY(-6px);
}

.exp2-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* PLAY BUTTON */
.exp2-play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  background:rgba(122,45,45,0.9);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.exp2-play-btn::before{
  content:'';
  border-style:solid;
  border-width:12px 0 12px 18px;
  border-color:transparent transparent transparent #fff;
  margin-left:4px;
}

/* MODAL CLOSE BUTTON */
.btn-close-custom{
  position:absolute;
  top:-11px;
  right:12px;
  background:#fff;
  border-radius:50%;
  width:36px;
  height:36px;
  opacity:1;
  z-index: 1200;
}
.category-wrap{
 display:flex;
 justify-content:center;
 gap:20px;
 margin-bottom:40px;
}

.cat-btn{
 padding:14px 38px;
 border-radius:6px;
 background:#d2681f;
 color:#fff;
 font-weight:500;
 letter-spacing:0.4px;
 transition:all 0.3s ease;
 font-family:'Poppins',sans-serif;
}

.cat-btn:hover{
 background:#23c552;
 transform:translateY(-2px);
 box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.cat-btn.active{
 background:#23c552;
 color:#fff;
 box-shadow:0 8px 22px rgba(0,0,0,0.25);
}
.recent-musics{padding: 60px 0px;}
/* CARD */
.song-card-sw{
 background:#fff;
 border-radius:7px;
 padding:11px;
 display:flex;
 flex-direction:column;
 gap:7px;
 box-shadow:0 6px 18px rgba(0,0,0,.1);
 border-left:4px solid #d2681f;
}

/* FIRST LOAD ONLY */
.animate-sw{
 animation:slideUp .6s ease forwards;
}

/* TOP-sw */
.top-sw{display:flex;align-items:center;gap:15px}

/* ICON */
.song-icon-sw{
 width:55px;height:55px;
 background:linear-gradient(135deg,#ffbe3d,#ff9f1c);
 border-radius:14px;
 display:flex;align-items:center;justify-content:center;
 font-size:26px;color:#fff;
 /* animation:float 3s ease-in-out infinite; */
}

/* PLAY BUTTON */
.play-btn-sw{
 margin-left:auto;
 width:46px;height:46px;border-radius:50%;
 background:#23c552;color:#fff;
 display:flex;align-items:center;justify-content:center;
 font-size:20px;cursor:pointer;
}
.play-btn-sw.playing{
 background:#d2681f;
 animation:pulse 1.2s infinite;
}

/* FAVORITE */
.favorite{cursor:pointer;font-size:20px;color:#bbb}
.favorite.active{color:red;animation:heartPop .4s ease}

/* PROGRESS */
.progress-bar-wrap{display:flex;align-items:center;gap:10px}
.progress{flex:1;accent-color:#d2681f}
.time{font-size:12px;color:#666}

/* WAVE */
.wave{display:flex;gap:4px;height:24px}
.wave span{
 width:4px;background:#d2681f;height:8px;border-radius:4px;
 animation:wave 1s infinite ease-in-out;
 animation-play-state:paused;
}
.wave.play span{animation-play-state:running}
.wave span:nth-child(even){animation-delay:.2s}

/* ANIMATIONS */
@keyframes pulse{
 0%{box-shadow:0 0 0 0 rgba(210,104,31,.7)}
 70%{box-shadow:0 0 0 12px rgba(210,104,31,0)}
 100%{box-shadow:0 0 0 0 rgba(210,104,31,0)}
}
@keyframes wave{0%{height:6px}50%{height:24px}100%{height:6px}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes heartPop{0%{transform:scale(.5)}70%{transform:scale(1.4)}100%{transform:scale(1)}}
.award-section{
    background-image: url(../images/brown-cover.png);
    padding:20px 0px 60px 0px;
    background-size: cover;
}
.award-section img{width: 480px; }
.bi-list::before{color: #000;}
.breadcrumb-section {
    position: relative;
    background: url('../images/about-cover.jpg') center/cover no-repeat;
    min-height:380px;
    display: flex;
    align-items: center;
    color: #fff;
    margin-top: 85px;
}
.bhagan-cover{background: url('../images/bhajan-cover.jpg') center/cover no-repeat;}
.kirtan-cover{background: url('../images/kirtan-cover.png') center/cover no-repeat;}
.stage-cover{background: url('../images/stage-show-cover.jpg') center/cover no-repeat;}
.dandiya-cover{background: url('../images/dandiya-cover.jpg')center/cover no-repeat;}
.song-hero{background: url('../images/image\ \(55\).jpg');}


.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 19%);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.breadcrumb-content p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}

.custom-breadcrumb {
    justify-content: center;
    background: transparent;
}

.custom-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: #f1f1f1;
}
.about-sectionkv {
  position: relative;
  padding: 80px 0px 80px 0px;
  overflow: hidden;
  background: #fff6ed;
}

/* Floating starkvs animation */
.starkv {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #f28a1a;
  border-radius: 50%;
  animation: float 8s infinite linear;
  opacity: 0.8;
}
@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-200px) translateX(30px);
  }
}

/* Pink border with glowing animation */
.image-borderkv {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 90%;
  height: 90%;
  border: 2px solid #f28a1a;
  z-index: 1;
  animation: glow 2s infinite alternate;
}
.image-borderkv-two{
   position: absolute;
  top: -25px;
  right: 20px;
  width: 90%;
  height: 90%;
  border: 2px solid #f28a1a;
  z-index: 1;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  /* 0% { box-shadow: 0 0 5px #ff3ea5; } */
  /* 100% { box-shadow: 0 0 20px #ff3ea5; } */
}

/* Main image */
.about-imgkv {
  width: 90%;
  position: relative;
  z-index: 2;
}

/* Mini Stats Box */
.mini-boxkv {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 40px;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.mini-boxkv h2 {
  font-size: 45px;
  margin: 0;
}
.mini-boxkv p {
  margin: 0;
}
/* Vision Boxes */
.vision {
  /* background: #fcf2f0; */
  padding: 60px 20px;
}

.vision h2 {
  text-align: center;
  font-weight: 700;
  color: #3b1d0e;
  border-bottom: 3px solid #8b2635;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 40px;
}

.vision-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: center;
}

.vision-box {
  border: 2px solid #d2691e;
  border-radius: 5px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.vision-box i {
  font-size: 2rem;
  color: #d2691e;
  margin-bottom: 15px;
}

.vision-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 29px;
  background: linear-gradient(90deg, #8b2635, #d2691e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ===== MASONRY GRID ===== */
.gallery-sw{
  max-width:1200px;
  margin:auto;
  padding:20px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:10px;
  gap:20px;
}

.card-sw-gallery{
  border:1px solid #d2681f;
  padding:5px;
  cursor:pointer;
  overflow:hidden;
  animation:fadeUp 0.6s ease forwards;
  opacity:0;
}

.card-sw-gallery img{
  width:100%;
  display:block;
  border-radius:6px;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.card-sw-gallery:hover img{
  transform:scale(1.05);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}

.lightbox.active{display:flex;}

.lightbox img{
  max-width:85%;
  max-height:85%;
}

.arrow{
  position:absolute;
  font-size:40px;
  color:#fff;
  cursor:pointer;
  user-select:none;
  padding:20px;
}

.arrow.left{left:20px;}
.arrow.right{right:20px;}

/* ===== ANIMATION ===== */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}
.gallery-new{padding: 60px 0px;}
/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .gallery-sw{grid-template-columns:repeat(3, 1fr);}
}
@media(max-width:768px){
  .gallery-sw{grid-template-columns:repeat(2, 1fr);}
}
@media(max-width:480px){
  .gallery-sw{grid-template-columns:1fr;}
}
/* ===== LAYOUT ===== */
.contact-section{
  padding:80px 20px;
}

.contact-wrapper{
  max-width:1280px;
  margin:auto;
  background:#fff;
  border-radius:24px;
  box-shadow:0 30px 80px rgba(0,0,0,0.08);
  display:grid;
  grid-template-columns:1fr 1.2fr;
  overflow:hidden;
}

/* ===== LEFT ===== */
.contact-left{
  padding:60px 50px;
  background:linear-gradient(180deg,#ffffff,#f3f6fb);
}

.contact-left h1{
  font-size:42px;
  margin-bottom:15px;
}

.contact-left p{
  font-size:16px;
  color:#555;
  margin-bottom:40px;
}

.info-box{
  display:flex;
  gap:18px;
  margin-bottom:30px;
  align-items: center;
}

.info-icon{
  width:55px;
  height:55px;
  border-radius:50%;
  background:#fcf2f0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#5d171f;
}

.info-text span{
  font-size:14px;
  color:#777;
}
.info-text strong{
  font-size:16px;
}

/* ===== RIGHT ===== */
.contact-right{
  padding:60px 50px;
  position:relative;
}

.contact-right h2{
  font-size:30px;
  margin-bottom:30px;
}

/* ===== FLOATING FORM ===== */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.field{
  position:relative;
}

.field input,
.field textarea{
  width:100%;
  padding:10px 12px;
  border-radius:4px;
  border:1px solid #ddd;
  background:#fafafa;
  outline:none;
  font-size:15px;
}

.field textarea{
  resize:none;
  height:120px;
}

.field label{
  position:absolute;
  top:50%;
  left:16px;
  color:#777;
  font-size:14px;
  transform:translateY(-50%);
  pointer-events:none;
  transition:0.3s;
  background:#fff;
  padding:0 6px;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label{
  top:0px;
  font-size:12px;
  color:#4f46e5;
}

.full{
  grid-column:1/-1;
}

button{
  margin-top:25px;
  width:100%;
  padding:16px;
  border:none;
  border-radius:4px;
  background:#5d171f;
  color:#fff;
  font-size:16px;
  cursor:pointer;
}

/* ===== SUCCESS OVERLAY ===== */
.success-box{
  position:absolute;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  opacity:0;
  pointer-events:none;
  transition:0.4s;
}

.success-box.active{
  opacity:1;
  pointer-events:auto;
}

.check{
  width:80px;
  height:80px;
  border-radius:50%;
  border:4px solid #4f46e5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  color:#4f46e5;
  animation:pop 0.6s ease;
}

@keyframes pop{
  0%{transform:scale(0);}
  80%{transform:scale(1.1);}
  100%{transform:scale(1);}
}

.success-box h3{
  margin-top:20px;
  font-size:24px;
}

.success-box p{
  color:#666;
  margin-top:8px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .form-grid{
    grid-template-columns:1fr;
  }
  .contact-left h1{
    font-size:32px;
  }
}
/* FOOTER */
.footer-dark{
  background: #fcf2f0;
  color:#5d171f;
  padding:70px 0 0;
  /* font-family:Arial, sans-serif; */
  overflow:hidden;
}

/* FADE UP ANIMATION */
.footer-col{
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* LOGO */
.footer-logo img{
  max-width:271px;
  transition:0.4s;
}

.footer-logo h2{
  color:#5d171f;
  font-weight:600;
  margin-top:15px;
  font-size: 30px;
  text-align: center;
}

.footer-logo span{
  color:#6bc1ff;
  font-style:italic;
}

/* HEADINGS */
.footer-heading{
  color:#5d171f;
  font-size:18px;
  margin-bottom:20px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:#5d171f;
  text-decoration:none;
  font-size:16px;
  position:relative;
  transition:0.3s;
}
.get-touch p{text-transform: uppercase;}
.get-touch a{color: #5d171f;}
.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background:#5d171f;
  transition:0.3s;
}

.footer-links a:hover{
  color:#5d171f;
}

.footer-links a:hover::after{
  width:100%;
}

/* COPYRIGHT BAR */
.footer-bottom{
  background: #5d171f;
  margin-top:30px;
  padding:20px 0;
  font-size:14px;
  color:#9d9d9d;
}

.footer-bottom a{
  color:#6bc1ff;
  text-decoration:none;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-dark{text-align:center;}
  .footer-desc{margin:auto;}
}