@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
h1,h2,h3,h4,h5,h6,p,span,a,button{
    font-family: 'Hind Siliguri', sans-serif;
}
.lb_slider {
    width: 100%;
    overflow: hidden;
    background: url(../images/images-bnr.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    position: relative;
}
.lb_slider .mainslider .item .lb_sld_cont .lb{
    background: #7b0011 !important;
}
.lb_slider .mainslider .item .lb_sld_cont h2, .lb_walb .lb_walb_con h2{
    text-shadow: 0 0 18px #7b0011 !important;
}
.lb_walb{
    background: transparent url('../images/images-bg1.jpg') no-repeat;
    background-position: right;
    background-size: cover !important;
}
.lb_walb .lb_walb_con .lb_walb_btn .a_wa, .lb_footer .ftr_wa .ftr_walink .a_wa{
    border: 1px solid #7b0011 !important;
    background: #7b0011 !important;
}
.lb_walb .lb_walb_con span, .lb_parnter h2 span, .lb_why h2 span, .lb_footer .ftr_title span, .lb_footer .ftr_wa h2 span{
    color: #efcd2e !important;
    font-weight: bold;
}
.lb_parnter{
  background: url(../images/gradient-1773693121104.png);
    background-position: center center;
    background-size: auto !important;
}
.lb_parnter .lb_partner_wrap .lb_partner_wrap_inn .flip-box-front{
    background-image: url('../images/red-black-gradient-background_212417-1860.avif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.lb_footer .ftr_social a::before{
    box-shadow:  0 0 30px 3px #7b0011;
}
.lb_footer{
    background: url(../images/gradient-1773693121104.png);
    background-position: center center;
    background-size: auto !important;
}
.lb_slider .main{
    background: #00000000;
}
.lb_walb .lb_walb_con .lb_walb_btn .a_wa , .lb_footer .ftr_wa .ftr_walink .a_wa{
    margin-top: 15px !important;
    margin-bottom: 0px !important;
    font-size: 17px;
    padding: 12px 20px !important;
    font-weight: 500 !important;
    background: linear-gradient(171deg,rgba(2, 0, 36, 1) 0%, rgba(121, 9, 9, 1) 66%, rgba(255, 0, 0, 1) 100%) !important;
}
.lb_why .why_ul li{
    background: url(../images/images-bnr.jpg);
    background-position: right;
    background-size: auto !important;
}

.fire-top {
    position: absolute;
    top: -30px;
    left: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: 40px;
}

@media screen and (max-width: 767px){
    .lb_header{
        background: #26272a69 !important;
    }
    .lb_header nav {
        background: #26272a !important;
        border-radius: 10px;
        box-shadow: 0 0 5px #000000;
    }
    .lb_slider .mainslider .item .lb_sld_img .sicard{
        bottom: 0px !important;
    }
    .lb_header{
        width: 95%;
        margin-top: 7px;
        margin-left: 2.5%;
        border-radius: 25px;
        padding: 0 20px !important;
        backdrop-filter: blur(10px);
    }
}


@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.round-animation {
  position: relative;
  border-radius: 12px; /* works */
  z-index: 1;
  display: block;
}

.round-animation::before {
  content: "";
  position: absolute;
  inset: -2px; /* border thickness */
  border-radius: inherit;

  background: conic-gradient(
    from var(--angle),
    red 0 24deg,
    yellow 180deg 204deg,
    transparent 24deg 180deg,
    transparent 204deg 360deg
  );

  /* MAGIC PART */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;

  padding: 5px; /* border width */
  animation: spin 3s linear infinite;
  z-index: -1;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}



/* Wrapper */
.live-support-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.live-support-btn {
    width: 65px;
    height: 65px;
    background: #760000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    cursor: pointer;
    position: relative;
}

/* Ripple Circles */
.live-support-btn::before,
.live-support-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #760000;
    border-radius: 50%;
    animation: ripple 2s linear infinite;
    opacity: 0;
}

/* Second ripple delay */
.live-support-btn::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
.live-supprt-img{
    width: 50px;
    height: 100%;
    object-fit: contain;
}
/* Social Icons Container */
.support-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    height: 0px;
}

/* Show State */
.support-options.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: 100%;
}

/* Individual Icons */
.support-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #760000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    color: black;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp {
    color: #25D366;
}

.imo {
    font-weight: bold;
    color: #0077ff;
}


.mySlider{
    width: 95%;
    margin-left: 2.5% !important;
    border-radius: 10px !important;
    height:auto;
}

.slider-img{
    width:100%;
    height:100%;
    object-fit:cover;
}