/* New Aleart bar */


.SnackbarNewIcon {
    width: 50px;
    height: 50px;
    border: 3px solid gray;
    border-radius: 50%;
    margin-right: 6px;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    transform: scale(0.7);
}

.SnackbarNewIcon.error {
    border-color: #f27474;
}

.SnackbarNewIcon.error .x-mark {
    position: relative;
    display: block;
}

.SnackbarNewIcon.error .errorLine {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #f27474;
    display: block;
    top: 23px;
    border-radius: 1px;
}

.SnackbarNewIcon.error .errorLine.left {
    position: absolute;
    /* transition: all 0.7s ease-in-out; */
    left: 10px;
    animation: errorAnimationLeft 0.7s ease-in-out forwards;
    /* forwards ensures it stays at 45deg */
}

.SnackbarNewIcon.error .errorLine.right {
    position: absolute;
    /* transition: all 0.7s ease-in-out; */
    right: 10px;
    animation: errorAnimationRight 0.7s ease-in-out forwards;
    /* forwards ensures it stays at -45deg */
}

@keyframes errorAnimationLeft {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes errorAnimationRight {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg);
    }
}

.SnackbarNewIcon.warning {
    border-color: #f8bb86;
    overflow: hidden;
}

.SnackbarNewIcon.warning .body {
    position: absolute;
    width: 3px;
    height: 22px;
    left: 50%;
    top: 10px;
    border-radius: 1px;
    margin-left: -1.5px;
    background-color: #f8bb86;
    animation: warningbody .7s ease-in-out forwards;
}

.SnackbarNewIcon.warning .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: -2px;
    left: 50%;
    bottom: 10px;
    background-color: #f8bb86;
    animation: warningdot .7s ease-in-out forwards;
    transition: all ease-in-out .7s;
}

@keyframes warningbody {
    0% {
        top: -20px;
    }

    100% {
        top: 10px;
    }
}

@keyframes warningdot {
    0% {
        bottom: 30px;
    }

    100% {
        left: 49.7%;
        bottom: 10px;
    }
}

.SnackbarNewIcon.info {
    border-color: #c9dae1;
    overflow: hidden;
}

.SnackbarNewIcon.info::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 18px;
    left: 50%;
    bottom: 10px;
    border-radius: 1px;
    margin-left: -1.5px;
    background-color: #c9dae1;
    animation: infobody .7s ease-in-out forwards;
}

.SnackbarNewIcon.info::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: -2px;
    top: 11px;
    background-color: #c9dae1;
    animation: infodot .7s ease-in-out forwards;
    left: 50%;
}

@keyframes infobody {
    0% {
        bottom: -20px;
    }

    100% {
        bottom: 10px;
    }
}

@keyframes infodot {
    0% {
        top: 40px;
    }

    100% {
        left: 49.7%;
        top: 11px;
    }
}

.SnackbarNewIcon.success {
    border-color: green;
}

.SnackbarNewIcon.success .placeholder {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(165, 220, 134, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: 2;
}

.SnackbarNewIcon.success .successLine {
    height: 3px;
    background-color: green;
    display: block;
    border-radius: 1px;
    position: absolute;
    z-index: 2;
}

.SnackbarNewIcon.success .successLine.tip {
    width: 15px;
    left: 8px;
    top: 28px;
    transform: rotate(45deg);
}

.SnackbarNewIcon.success .successLine.long {
    width: 30px;
    right: 5px;
    top: 23px;
    transform: rotate(-45deg);
}

@keyframes animateSuccessTip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 12px;
    }

    70% {
        width: 30px;
        left: -5px;
        top: 23px;
    }

    84% {
        width: 10px;
        left: 12px;
        top: 28px;
    }

    100% {
        width: 15px;
        left: 8px;
        top: 28px;
    }
}

@keyframes animateSuccessLong {

    0%,
    65% {
        width: 0;
        right: 28px;
        top: 33px;
    }

    84% {
        width: 33px;
        right: 0;
        top: 22px;
    }

    100% {
        width: 30px;
        right: 5px;
        top: 23px;
    }
}

.animateSuccessTip {
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    animation: animateSuccessLong 0.75s;
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        transform: rotate(-45deg);
    }

    100%,
    12% {
        transform: rotate(-405deg);
    }
}


.SnackbarNewIcon.success.animate::after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.SnackbarNew {
    visibility: hidden;
    min-width: fit-content;
    background-color: #000;
    box-shadow: 0px 0px 3px #000;
    text-align: left;
    border-radius: 8px;
    padding: 5px 10px 5px 0px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translate(-50%, 30px) scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
}

#SnackbarNewMessage {
    color: var(--color-white) !important;
}

.SnackbarNew.show {
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

@keyframes snackbarOut {
    0% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }

    25% {
        opacity: 0.8;
        transform: translate(-50%, 10px) scale(0.97);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, 20px) scale(0.94);
    }

    75% {
        opacity: 0.3;
        transform: translate(-50%, 25px) scale(0.92);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 30px) scale(0.9);
    }
}

.SnackbarNew.hide {
    animation: snackbarOut 0.2s ease-in forwards;
    z-index: 9999;
    visibility: visible;
}


#btn_spinner {
    position: static !important;
    animation: rotate 1s infinite linear;
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }

}


:root {
     --gradientColorZero: #a960ee;
    --gradientColorOne: #ff333d;
    --gradientColorTwo: #90e0ff;
    --gradientColorThree: #ffcb57;

    /* Transparent versions */
    --gradientColorZeroTransparent: rgba(169, 96, 238, 0);
    --gradientColorOneTransparent: rgba(255, 51, 61, 0);
    --gradientColorTwoTransparent: rgba(144, 224, 255, 0);
    --gradientColorThreeTransparent: rgba(255, 203, 87, 0);

}

.homepage-hero-gradient {
    /* Replacing gradient colors */
   
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100vw; /* assumed final window width */
    height: 100%;
    transform-origin: 0 100%;
    overflow: hidden;
    border: none;
        z-index: -1;
}

.hero-gradient:after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1000px;
    width: 100%;
    height: 100%;
    background: var(--color-white) !important;
    /* background: radial-gradient(var(--gradientColorThree) 23%, var(--gradientColorThreeTransparent) 67% 100%) 385px -24px, radial-gradient(var(--gradientColorOne) 0, var(--gradientColorOneTransparent) 60% 100%) -940px 290px, radial-gradient(var(--gradientColorTwo) 10%, var(--gradientColorTwoTransparent) 60% 100%) -120px 250px, radial-gradient(var(--gradientColorOne) 40%, var(--gradientColorOneTransparent) 57% 100%) 495px -44px, radial-gradient(var(--gradientColorZero) 30%, var(--gradientColorZeroTransparent) 67% 100%) 122px -120px, radial-gradient(var(--gradientColorZero) 10%, var(--gradientColorZeroTransparent) 60% 100%) -420px 120px, radial-gradient(var(--gradientColorTwo) 15%, var(--gradientColorTwoTransparent) 50% 100%) -620px 0, radial-gradient(var(--gradientColorTwo) 25%, var(--gradientColorTwoTransparent) 50% 100%) 520px -250px, var(--gradientColorZero); */
    background-repeat: repeat-y;
}

.rts-hosting-banner.rts-hosting-banner-bg {
    transform-origin: 0 100%;
    overflow: hidden;
}
.rts-hosting-banner.rts-hosting-banner-bg:before {
 /* background: radial-gradient(var(--gradientColorThree) 10%, var(--gradientColorThreeTransparent) 67% 100%) 385px -24px, radial-gradient(var(--gradientColorOne) 0, var(--gradientColorOneTransparent) 60% 100%) -940px 290px, radial-gradient(var(--gradientColorTwo) 10%, var(--gradientColorTwoTransparent) 60% 100%) -120px 250px, radial-gradient(var(--gradientColorOne) 40%, var(--gradientColorOneTransparent) 57% 100%) 495px -44px, radial-gradient(var(--gradientColorZero) 30%, var(--gradientColorZeroTransparent) 67% 100%) 122px -120px, radial-gradient(var(--gradientColorZero) 10%, var(--gradientColorZeroTransparent) 60% 100%) -420px 120px, radial-gradient(var(--gradientColorTwo) 15%, var(--gradientColorTwoTransparent) 50% 100%) -620px 0, radial-gradient(var(--gradientColorTwo) 25%, var(--gradientColorTwoTransparent) 50% 100%) 520px -250px, var(--gradientColorZero); */
    background-repeat: repeat-y;
    /* background: linear-gradient(0deg, #e89c1e  0%, #e21015 70%); */
    background: var(--color-primary);
}
.big-image{
    border-radius: 50%;
    width: 480px;
    height: 480px;
    margin: 0 auto;
    object-fit: cover;
}
.myHeroSwiper  .swiper-slide{
    text-align: center;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.2); /* light glass feel */
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle depth */
  backdrop-filter: blur(10px); /* main blur */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.3); /* frosted border */
}

.header-sticky .glass-effect {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: unset; 
  -webkit-backdrop-filter: unset;
  border: none;
}

.header-sticky {
    background: rgba(255, 255, 255, 0.9); /* light glass feel */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle depth */
  backdrop-filter: blur(10px); /* main blur */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
}
.mt-90 {
    margin-top: -90px;
}
header .site-logo{
    background-color: var(--color-white);
    display: block;
    border-radius: 10px;
    padding: 6px;
}

header .site-logo img{
    height: 64px !important;
}
 .swiper-pagination-bullet.swiper-pagination-bullet-active{
background: var(--color-primary) !important;
width: 30px !important;
border-radius: 4px !important;
     }
    
    .banner-content h1,.banner-content h2, .banner-content h3, .banner-content h4,.banner-content h5,.banner-content h6{
        color: #fff !important;
        opacity: 1 !important;
    }
    .banner-content p , .banner-content ul li {
        color: #fff !important;
        opacity: 1 !important;
    }
    .rts-btn.btn__long ,.btn__two.btn__long.secondary__bg{
background: #e89c1e !important;
transition:all ease-in-out 0.4s ;
    }
    .rts-about-reseller .hosting-info .description{
        max-width: 100%;
        text-align: justify;
    }
      .rts-btn.btn__long i{
        transition: all ease-in-out 0.4s ;

position: relative;
    }
    .rts-btn.btn__long,.btn__two.btn__long.secondary__bg{
        color:var(--color-white) ;
background: #e89c1e ;
background: linear-gradient(232deg, rgb(247, 166, 36) 0%, #e89c1e 66%) ;    
    }
    .rts-btn.btn__long:hover,.btn__two.btn__long.secondary__bg:hover{
        color:var(--color-white) !important;
background: #e89c1e  !important; 
background: linear-gradient(232deg, rgb(251, 165, 28) 0%, #cc7e00 66%)  !important;    
    }
    .rts-about-reseller, .rts-pricing-five , .rts-brand , .rts-blog-area.area-5 , .rts-testimonial.area-3{
    background: var(--color-white)3f3 !important;
}
.bg-red{
    background: var(--color-primary) !important;
}
  
     .text-red , .rts-service-four__tab--content .tab__content--details .feature__list .feature__item::before , a:hover{
        color: var(--color-primary) !important;
     }
     .rts-about-reseller .single-about-info .single .icon , .rts-service-two .service-two-small.style-two .service-icon , .rts-service-two .service-two-small:hover .service-btn , .rts-hosting-feature-five .section-inner .feature-list-area .list-wrapper .icon , .rts-service-four__tab--content .tab__content--details{
        background:var(--color-primary) !important ;
     }
    .single-about-info .single .icon img  , .white-filter , .rts-hosting-feature-five .why-choose-icon{
    filter: invert(1) brightness(1000%) !important;
}
.rts-hosting-feature-five .section-inner .feature-list-area{
    gap: 20px !important;
}

    .glass-effect,header{
        background: var(--color-primary) !important;
        box-shadow: none !important;
        border-radius: 0;
        border: 0;
    }
    .rts-header.style-five.header__default.header-sticky , .rts-service-two .service-two.style-two , .rts-service-four__tab .single__tab.active  , .rts-testimonial__single .content::-webkit-scrollbar-thumb , .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link::after{
                background: var(--color-primary) !important;
    }
    .rts-service-four__tab .single__tab ,.swiper-slide.swiper-slide-active .rts-testimonial__single .content::-webkit-scrollbar-thumb , .rts-testimonial__single:hover .content::-webkit-scrollbar-thumb{
        background: var(--color-white) !important;
    }
    .rts-service-four__tab .single__tab{
        border-color: var(--color-primary) !important;
    }
    .rts-service-two .service-two-small__content .service-btn {
    background: #ffd0d1 !important;
    color: var(--color-secondary);
}
    .rts-service-two .service-two.style-two::before , .rts-service-two .service-two-small.style-two::before , .rts-testimonial.area-3 .section-inner .rts-testimonial__single::before ,
     .rts-testimonial.area-3 .section-inner .rts-testimonial__single::after ,
     .rts-testimonial__single-page::after{
        border-bottom-color:var(--color-primary) !important;        
    }
    .rts-pricing-five .section-inner .pricing-list .pricing-wrapper::after , .rts-brand__slider--single  {
        border-bottom-color: #e89c1e !important;
    }
    .rts-service-two .service-two__content a{
        border-color: var(--color-white) !important;
    }
    .rts-pricing-five .section-inner .pricing-list .pricing-wrapper .content .desc{
        color: rgba(255, 255, 255, 0.8) !important;
    }
    .service-sec  .section-inner .pricing-list .pricing-wrapper{
        overflow: visible !important;
    }
.service-sec .acc-card.active .acc-body , .homeService .acc-card.hover-active .acc-body {
   outline: 1px solid var(--color-primary);
   z-index: 99;
    }
    .service-sec .acc-card.active .acc-body , .homeService .acc-card.hover-active .acc-body{
        position: absolute;
        top: 70px;
        width: 100%;
    }
    .service-sec .acc-card.active .acc-body .acc-btn , .homeService .acc-card.hover-active .acc-body .acc-btn{
        padding: 12px 16px;
        display: block;
    }
    .pricing-wrapper.acc-card.active{
        z-index:9 !important;
    }
    .rts-service-two .service-two-small.style-two , .rts-testimonial__single ,.rts-testimonial.area-3 .section-inner .rts-testimonial__single::before{
        background: var(--color-white) !important;
    }
    .rts-blog__single--meta .cat__date .date{
        color:#8e8e8e ;
    }
    
    .rts-testimonial__single{
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    }
    



    
      
.rts-hero-five{
    padding: 90px 0px;
}
      .rts-header.style-five{
        top: 0 !important;
      }
      .rts-header.style-five .rts-header__wrapper .rts-header__menu .hostie-menu .hostie-desktop-menu .menu-item .hostie-dropdown-main-element{
        color:var(--color-white);
      }
     .hostie-menu .hostie-desktop-menu .menu-item.active a.hostie-dropdown-main-element , .hostie-menu .hostie-desktop-menu .menu-item:hover a.hostie-dropdown-main-element , .hostie-menu .hostie-desktop-menu .menu-item:hover.hostie-has-dropdown .hostie-dropdown-main-element::before{
        color: var(--color-white) !important;
    }
     .hostie-menu .hostie-desktop-menu .menu-item.active .hostie-dropdown-main-element::after  , .hostie-menu .hostie-desktop-menu .menu-item:hover .hostie-dropdown-main-element::after , .rts-footer__widget a.footer__logo{
        background: var(--color-white) !important;
    }
    .hostie-menu .hostie-desktop-menu .hostie-has-dropdown .hostie-dropdown-main-element::before{
        color: var(--color-white);
    }
    .single__tab.tab__btn.active .tab__title {
        color: var(--color-white) !important;
    }
  
    .pricing-wrapper , .rts-testimonial.area-3 .section-inner .rts-testimonial__single::after,.rts-testimonial__single-page::after{
background: #E89C1E !important;
background: linear-gradient(232deg, #f95f62 0%, var(--color-primary) 66%) !important;    }

.rts-hero-five .banner-content .banner-btn{
    padding-top: 18px !important;
}
.rts-testimonial__single-page::after{
    background: transparent !important;
    opacity: 1 !important;
    z-index: -1 !important;
}
.bg-transparent{
    background: transparent !important;
}
.stroke-btn.btn__long.rts-btn{
    border: 1px solid var(--color-primary);
    padding: 16px 10px !important;
    min-width:fit-content;
    border-radius: 4px;
    text-align: center;
    max-width: max-content;
    background-color: transparent !important;
    color: var(--color-primary);
}
.stroke-btn.btn__long.rts-btn{
    border: 1px solid var(--color-primary) !important;
   background: linear-gradient(232deg, #fa494c 0%, var(--color-primary) 100%) !important ;
    color: var(--color-white) !important;
}
/* .stroke-btn.btn__long.rts-btn:hover{
    border: 1px solid var(--color-primary) !important;
   background: linear-gradient(232deg, #fa494c 0%, var(--color-primary) 100%) !important ;
    color: var(--color-white) !important;
} */
.mb-10{
    margin-bottom: 10px !important;
}
.rts-about-reseller .hosting-info__title , .rts-about-reseller .single-about-info .single .content h6 , .text-black , .rts-service-two .service-two-small__content .service-title , .rts-service-four__tab .single__tab .tab__title , .rts-blog__single--meta .title {
color: #000 !important;
}
.new-footer-bg-color{
    background-color: #000217 !important;
}
.social__media--list .media:hover{
background-color: var(--color-primary) !important;
border-color: var(--color-primary);
}
footer .rts-footer__widget a.footer__logo{
        background-color: var(--color-white) !important;
    border-radius: 10px !important;
    padding: 6px !important;
}
footer .rts-footer__widget a.footer__logo img{
        height: 64px !important;
}
footer .contact-method div.footer-mob-icon i{
    color: var(--color-primary) !important;
}
.rts-footer__widget--menu ul li a:hover{
    text-decoration-color:  var(--color-primary) !important;
}
 .rts-footer__copyright-two__wrapper .payment__method a{
    color: var(--color-white) !important;
}
 .rts-footer__copyright-two__wrapper .payment__method a:hover , .rts-footer .contact-method a:hover , .progress-wrap::after{
    color: var(--color-primary) !important;
}
.progress-wrap svg.progress-circle path{
    stroke: var(--color-primary) !important;
}
.progress-wrap::after{
    border-color: var(--color-primary) !important;
}
 html body .loader:after{
    border-top-color: var(--color-primary) !important;
    border-right-color: var(--color-primary) !important;
    border-bottom-color: var(--color-primary) !important;
}


@media (max-width: 576px) {
    .mt-0p{
margin-top: 00px !important;
    }
    
}

/* या फिर simple overlay */
.hero-bg{
    background-image: url("/frontassets/images/home/hero-img-5.jpg");
    background-color: rgba(44, 47, 75, 0.95); 
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.awards-section {
  background: var(--color-primary); /* image jaisa blue */
}

/* GRID LAYOUT */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* desktop = 7 in one row */
  gap: 30px;
  align-items: start;
}

/* Card */
.award-item {
  text-align: center;
}

/* White logo box */
.award-logo {
  background: #ffffff;
  border-radius: 12px;
  height: 110px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.award-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* Title */
.award-item h6 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
/* ===== CLIENTELE GRID ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

/* Client Card */
.rts-brand__slider--single {
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.rts-brand__slider--single img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
}

/* Hide extra clients */
.extra-brand {
  display: none;
}

/* Button */
.clients-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.clients-btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  background: #ad0137;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.clients-btn:hover {
  opacity: 0.9;
  color:var(--color-white) !important;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* Large tablets */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rts-brand__slider--single {
    padding: 12px;
  }
    .awards-grid {
    grid-template-columns: 1fr;
  }
  .award-logo img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
}
/* ------------ */
/* Associate Profile Wrapper */
.associate-profile{
  padding-right: 20px;
}

/* Name – lighter & premium */
.associate-name{
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.description.sal-animate.w-100{
    max-width: 100% !important;
    margin-bottom: 8px !important ;
}

/* Qualification text */
.associate-qualification{
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Feature list – clean grid */
.associate-feature-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

/* Right image wrapper */
.associate-image-wrap{
  display: flex;
  justify-content: center;
}

/* Profile Image – balanced height */
.associate-image{
  max-height: 380px;
  width: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Mobile adjustment */
@media (max-width: 991px){
  .associate-feature-list{
    grid-template-columns: 1fr;
  }
}
.bni-logo{
    max-width: 100% !important;
    max-height: 60px !important;
    margin-bottom: 20px !important;
}
.mobile-menu-main .social__media--list A:hover{
    color: var(--color-white) !important;
}
.flotting-logo {
    position: fixed;
     right: 30px;
  bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG fit */
.flotting-logo svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Pulse circle animation */
.flotting-logo::before,
.flotting-logo::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45); /* WhatsApp green */
    animation: waPulse 2.6s ease-out infinite;
    z-index: -1;
}

/* second wave delay */
.flotting-logo::after {
    animation-delay: 1.3s;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.9);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.edge-sec .icon{
    max-width: 70px;
    background-color: #fff;
    padding: 12px;
    border-radius: 50%;
}
.awards-swiper { padding: 0 0 40px  0; }
.award-card {
    width: 100%;
    height: 140px;
    background: var(--color-white);
    perspective: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.card-front, .card-back {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backface-visibility: hidden;
    transition: transform 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-front img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
}
.card-back {
    background: #fff;
    transform: rotateY(180deg);
    border-radius: 10px;
}
.card-back h6 {
    color: var(--color-primary);
    font-size: 22px;
    text-align: center;
    padding: 6px;
}
.awards-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background:var(--color-white) !important;
}
.award-card:hover .card-front { transform: rotateY(180deg); }
.award-card:hover .card-back { transform: rotateY(0deg); }



.contactus-home .contact-form__content--image img{
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin: 16px 0 0 0 ;
}
.contactus-home .contact-form__content--image{
    margin: 0 !important;
}
.contactus-home .contact-form__content--description{
     max-width: 100%;
}
/* CARD */
.acc-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: 0.35s ease;
    cursor: pointer;
    margin-bottom: 10px; /* Space between cards */
}

.acc-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HEADER */
.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
}

.acc-header .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

/* TOGGLE ICON */
.acc-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

/* DROPDOWN BODY */
.acc-body {
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.acc-body ul {
    padding: 0 22px 20px;
    margin: 0;
}

.acc-body li {
    font-size: 14px;
    color: #444;
    padding: 7px 0 7px 18px;
    position: relative;
    list-style: none;
}

.acc-body li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* ACTIVE STATE */
.acc-card.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.acc-card.active .acc-body {
    max-height: fit-content !important; /* Adjust based on your content */
}

.acc-card.active .acc-toggle {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

/* For smooth opening */
.acc-body {
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.acc-card.active .acc-body {
    padding-top: 0;
    margin-top: -5px;
    padding-bottom: 10px;
}

/* ----------- */
/* default: sab nested dropdown band */
.hostie-submenu .hostie-submenu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 99;
}

/* parent relative */
.hostie-submenu .hostie-has-dropdown {
    position: relative;
}

/* hover par open */
.hostie-submenu .hostie-has-dropdown:hover > .hostie-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.hostie-submenu .hostie-has-dropdown:hover > .hostie-submenu li a{
    padding: 8px 16px;
    color: var(--btc) !important;
    display: block;
}
.hostie-submenu .hostie-has-dropdown:hover > .hostie-submenu li a:hover{
    color: var(--color-primary) !important;
}
.hostie-submenu .hostie-has-dropdown > .hostie-submenu {
    left: auto;
    right: 100%;
}

/* arrow indicator */
.hostie-has-dropdown > a {
    position: relative;
    padding-right: 20px;
}
.rts-single-widget.category-widget{
    padding: 12px 10px !important;
}
.rts-single-widget.category-widget .acc-header{
    padding: 8px !important;
}
.rts-single-widget.category-widget .acc-btn{
    padding:  8px 12px!important;
    display: block;
}
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fbfd;
}

.acc-toggle {
    transition: transform 0.5s ease;
}

.acc-card.active .acc-toggle {
    transform: rotate(45deg);
}
/* .blog-details { display: none; } */
.blog-details.active , .blog-details.Active { display: block; }
.blog-data-cart .title{
    height: 50px !important;
}
.rts-gallary-content {
    margin: 2px 10px 10px 13px;
    min-height: 250px !important;
    overflow-y: auto;
}




