/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

p.cls {
    border-bottom: 1px solid #f1f1f1;
    line-height: 2;
}

.bclsdcall1{
	background: #ffffff;
    padding: 49px 10px 40px;
    border-radius: 30px;
    margin-left: 1.5%;
    border: 1px solid #e7dada;
}


.bclsdcall{
	 background: linear-gradient(91deg, #804c9d40 30.73%, #95469a 225.09%);
    padding: 49px 25px 58px;
    border-radius: 30px;
}
p.clsc {
    margin-bottom: -18px;
    font-size: 18px;
}
.ncl {
    background-color: white;
    width: 246px;
    padding: 3px 10px;
    box-shadow: 0 9px 13px 0 #e9e9e4;
    border-radius: 30px;
    color: #0b3948;
    margin-top: 10% !important;
    text-transform: uppercase;
    text-align: center;
}

@keyframes floatImg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.float-img {
  display: inline-block;
  animation: floatImg 5s ease-in-out infinite;
}


@keyframes heartbeat {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.12); }
  40%  { transform: scale(1.0); }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.heartbeat-img {
  animation: heartbeat 2.2s ease-in-out infinite;
  transform-origin: center center;
}


.shine-img {
  position: relative;
  overflow: hidden;
}

.shine-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% { left: -150%; }
  100% { left: 150%; }
}


@keyframes slowRotate {

  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.rotate-bg1 {
  display: inline-block;
  animation: slowRotate 40s linear infinite;
}






.rotate-bg::before {
 content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2025/12/ring_wrb.webp);
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: bgRotate 45s linear infinite;
}

@keyframes bgRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Prevent internal images (like .imgsdv) from rotating */
.rotate-bg img,
.rotate-bg .imgsdv,
.rotate-bg .imgsdv img {
  transform: none !important;
  animation: none !important;
  will-change: auto !important;
  position: relative;
  z-index: 2;
}

/* ===========================================
   RESPONSIVE BREAKPOINTS
   =========================================== */

/* Tablet (1024px ↓) */
@media (max-width: 1024px) {
  .rotate-bg::before {
    transform: scale(1.45); /* little more to avoid edge clipping */
    animation-duration: 35s; /* slower */
  }
}

/* Mobile (768px ↓) */
@media (max-width: 768px) {
  .rotate-bg::before {
    transform: scale(1.6);  /* make image bigger */
    animation-duration: 45s; /* slower for mobile performance */
  }
}



