
:root {
  /* Brand */
  --bmp-primary: #F9A825;     /* Main orange (CTA, highlights) */
  --bmp-primary-dark: #F57C00;
  --bmp-secondary: #F54434;   /* Red buttons (Know More) */

  /* Text */
  --bmp-heading: #1F2937;     /* Dark heading text */
  --bmp-body: #6B7280;        /* Paragraph text */
  --bmp-muted: #9CA3AF;

  /* Backgrounds */
  --bmp-bg-light: #FFF7EC;    /* Hero bg */
  --bmp-bg-soft: #FFFBF5;     /* Section bg */
  --bmp-bg-footer: #F3F4F6;

  /* Cards */
  --bmp-card: #FFFFFF;
  --bmp-shadow: 0 8px 30px rgba(0,0,0,.06);
  
}

.btn-bmp{
   padding: 10px 20px;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    background:var( --bmp-primary) ;
    color: #fff;
     font-family: "Onest", sans-serif;
     border-radius: 50px;
     text-decoration: none;
}
.btn-bmp:hover{
    background:#da7007 ;
    color: #fff;
}

.btn-bmp-red{
   padding: 10px 20px;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    background:var( --bmp-secondary) ;
    color: #fff;
     font-family: "Onest", sans-serif;
     border-radius: 50px;
     text-decoration: none;
}
.btn-bmp-red:hover{
    background:#cf392b ;
    color: #fff;
}



.navbar {
    --bs-navbar-color: rgb(0 0 0), 1;
    --bs-navbar-active-color: var(--bmp-secondary);
}


body {
  scroll-behavior: smooth;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  min-height: 200vh;
}

.hero-section {
  padding: 120px 0 80px;
  background: url(../images/hero-bg2.jpg) no-repeat;
  background-size: contain;
}
figure, img, svg {
    max-width: 100%;
}

.section-bg {
  padding: 80px 0;
  background: #fffaf4;
}
.section{
    padding: 130px 0;
}

.section2{
    padding: 100px 0 0 0; 
}

.feature-box {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.05);
  height: 100%;
}
#features{
    background: url(../images/bg-2.svg) no-repeat;
  background-size: cover;
}
.footer{
    background: url(../images/footer-bg.jpeg) no-repeat;
  background-size: cover;
  padding: 50px 0 10px;
}

.footer-temple{
    background: url(../business/footer-bg.jpg) no-repeat;
  background-size: cover;
  padding: 90px 0 10px;
}
.cta-section {
padding: 30px;
    background: #f9a825;
    height: 190px;
    border-radius: 30px;
    margin-bottom: 100px;
}

.bg-devotee{
    background: #FFF4E3;
    height: 453px;
}
.serviceTemple{
    position: relative;
    bottom: 156px;
}
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bmp-primary)
}
.box{
    padding: 10px;
    border: 1px solid #DFDFDF;
    border-radius: 6px;
    margin-right: 20px;
}
.cta-image{
    width: 300px;
    position: relative;
    bottom: 105px;
}
.footer a {
    color: #000;
    text-decoration: none;
}
.footer a:hover {
    color: #ff8b17;
    text-decoration: underline;
}

.box-t{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box-t img{
    height: 200px;
}

.channel-panel {
    padding: 20px;
    background: #FFF3E0;
    border-radius: 30px;
}

.channel-panel2 {
    padding: 20px;
    background: #FFE3E3;
    border-radius: 30px;
}
.list-1 p::after{
    content:"" ;
    background: url(../business/Line2.svg) no-repeat;
    position: absolute;
    left: 24%;
    width: 100%;
    height: 6px;
    margin-top: 30px;

}
.list-2 p::after{
    content:"" ;
    background: url(../business/Line3.svg) no-repeat;
    position: absolute;
    left: 24%;
    width: 100%;
    height: 6px;
    margin-top: 30px;

}
/* business-screen */

.cta-temple{
  background: #FFBC3B;
background: linear-gradient(90deg,rgba(255, 188, 59, 1) 0%, rgba(245, 68, 52, 1) 100%);
  padding: 30px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 4.5rem;
    }
}


.bg-temple{
    background: #f54434 !important;
}
.bg-temple-light {
    background: #ffe9e7 !important;
}

.music-btn {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #ff5858;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  overflow: visible;
}

/* Pulse circle */
.music-btn .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(255 0 0);
  animation: pulse 1.6s ease-out infinite;
  opacity: 0;
}

/* Play state */
.music-btn.playing .pulse {
  opacity: 1;
}

/* Icon above pulse */
.music-btn i {
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@media (max-width: 767.98px) {
  .section, .hero-section, .footer-temple, .footer{
    text-align: center !important;
  }
  .hero-section .d-flex {
        justify-content: center;
  }
  .hero-section .img2{
    width: 50%;
  }
  .navbar>.container{
    display: block;
  }
  .section2 {
    padding: 0;
}
.col {
    flex: 1 0 50%;
    text-align: center;
}
.d-table {
    display: block !important;
}
#solution {
    padding: 100px 0;
}
.cta-section {
    padding: 30px;
    height: auto;
}
.cta-image {
    width: 100%;
    position: static;
}
#features .col {
        flex: 1 0 100%;
        text-align: left;
    }
.section {
    padding:60px 0;
}
 }