/* =========================
   Ragga Rhytham About Images
   ========================= */

.ragga-image-wrap {
  position: relative;
  padding: 60px 40px;
}

/* MAIN IMAGE */
.ragga-image-wrap img:first-child {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* MAIN IMAGE HOVER */
.ragga-image-wrap:hover img:first-child {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 35px 80px rgba(255, 111, 0, 0.35);
}

/* DECORATIVE GRADIENT HALO */
.ragga-image-wrap::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,111,0,0.25), transparent 70%);
  z-index: 1;
  filter: blur(40px);
}

/* SMALL IMAGE */
.ragga-image-wrap img:last-child {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 45%;
  z-index: 3;
  border-radius: 16px;
  border: 6px solid #fff;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* SMALL IMAGE HOVER */
.ragga-image-wrap:hover img:last-child {
  transform: rotate(-3deg) scale(1.05);
}

/* FLOATING EXPERIENCE CARD */
.ragga-float-card {
  z-index: 4;
  animation: floatUpDown 4s ease-in-out infinite;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  border-left: 6px solid #ff6f00;
}

/* FLOATING ANIMATION */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   RESPONSIVE IMAGE ADJUSTMENTS
   ========================= */

@media (max-width: 991px) {
  .ragga-image-wrap {
    padding: 30px 20px;
  }

  .ragga-image-wrap img:last-child {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
    transform: none !important;
  }

  .ragga-float-card {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    margin-top: 20px;
    animation: none;
  }
}

@media (max-width: 576px) {
  .ragga-image-wrap::before {
    display: none;
  }
}


.rr-about-hero {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 80px 0;
  border-radius: 12px;
}

.rr-about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #f7c873, #f06292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rr-about-hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.2rem;
  opacity: 0.9;
}

.rr-cta-btn {
  padding: 15px 40px;
  background: #f7c873;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.4s;
}

.rr-cta-btn:hover {
  background: #f06292;
  color: #fff;
  transform: scale(1.05);
}

.rr-usp-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 15px;
  transition: 0.4s;
}

.rr-usp-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
}

.rr-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.rr-timeline-item {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-left: 4px solid #f7c873;
  border-radius: 12px;
  transition: 0.4s;
}

.rr-timeline-item:hover {
  background: rgba(255,255,255,0.12);
}
