.sec-pad-lg {
  padding: 100px 0;
}

.rb-section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.rb-section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 15px 0;
  text-transform: uppercase;
}

.rb-section-title .rb-badge,
.rb-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ff8f00 100%);
  color: #111;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  border: 1px solid #ffffff;
  animation: goldShimmer 4s infinite linear;
  background-size: 200% auto;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Redesigned About Section - Impactful 2-column */
/* --- ELITE CELESTIAL MODERNIZATION: ABOUT MASTER --- */
.rb-about-section {
  background: linear-gradient(135deg, #ffffff 0%, #fcf9ff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Celestial Geometry Background Overlay */
.rb-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("img/about/celestial-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.rb-about-section .container {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-family: "Cinzel", serif;
  font-size: 48px;
  font-weight: 400;
  color: #0d0118;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-content h2 strong {
  font-weight: 900;
  display: block;
  background: linear-gradient(135deg, #95003b 0%, #4a001d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.rb-about-img-box {
  position: relative;
  padding: 20px;
}

/* Floating Mastery Badge */
.experience-floating-card {
  position: absolute;
  top: -30px;
  right: -20px;
  background: #6e0010;
  border: 2px solid #ffc107;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-align: center;
  color: #fff;
  animation: floatMaster 4s ease-in-out infinite;
}

.experience-floating-card span {
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 28px;
  color: #ffc107;
  line-height: 1;
}

.experience-floating-card label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
  opacity: 0.8;
}

/* Image Glow & Floating Effect */
.rb-about-img-box img {
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes floatMaster {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* List Items Styling - Card Grid */
.rb-about-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rb-about-list li {
  background: #ffffff;
  border: 1px solid rgba(149, 0, 59, 0.1);
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  color: #1b0a24;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rb-about-list li:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: #ffc107;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
}

.rb-about-list li i {
  width: 35px;
  height: 35px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 14px;
  flex-shrink: 0;
}

/* Glassmorphism Boxes */
.shiva-quote-box,
.about-contact-box {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.shiva-quote-box:hover,
.about-contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.rb-about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
  color: #111;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
  border: 2px solid #ffffff;
}

.rb-about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
  background: #1b0a24;
  color: #ffffff !important;
  border-color: #ffc107;
}

@media (max-width: 991px) {
  .rb-about-section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .rb-about-list {
    grid-template-columns: 1fr;
  }

  .rb-about-img-box {
    padding-left: 0;
    margin-top: 50px;
  }
}

/* --- SERVICE-STYLE WHY CHOOSE US CSS --- */
.sp-why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0005 0%, #2d0010 50%, #0d001a 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.sp-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 991px) {
  .sp-why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.sp-section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}

.sp-stat-card:hover {
  background: rgba(255, 193, 7, 0.08) !important;
  border-color: rgba(255, 193, 7, 0.3) !important;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.sp-btn-home-cta:hover {
  background: #ffffff !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* --- CELESTIAL CONTACT REDESIGN --- */
.celestial-contact-card {
  background: linear-gradient(
    135deg,
    rgba(27, 10, 36, 0.95) 0%,
    rgba(48, 13, 59, 0.9) 100%
  );
  border: 1px solid rgba(255, 192, 0, 0.25);
  padding: 35px 25px;
  margin-top: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 192, 0, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.celestial-contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 192, 0, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.btn-emerald-glow {
  background: #25d366;
  color: #ffffff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-emerald-glow:hover {
  background: #ffffff;
  color: #25d366 !important;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.btn-royal-gold {
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
  color: #111 !important;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-royal-gold:hover {
  background: #ffffff;
  color: #ff8f00 !important;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

.celestial-contact-card h5 {
  animation: pulseSoft 3s infinite ease-in-out;
}

@keyframes garnetGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(149, 0, 59, 0.4);
  }

  50% {
    box-shadow: 0 0 50px rgba(149, 0, 59, 0.7);
  }
}

.garnet-razor-plaque {
  background: linear-gradient(135deg, #a50021 0%, #4a0010 100%);
  padding: 45px 35px;
  margin-top: 40px;
  position: relative;
  z-index: 5;
  clip-path: polygon(
    10% 0,
    90% 0,
    100% 15%,
    100% 85%,
    90% 100%,
    10% 100%,
    0 85%,
    0 15%
  );
  text-align: center;
  animation: garnetGlow 4s infinite ease-in-out;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.garnet-razor-plaque::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

/* Precision Golden Stroke Wrapper */
.garnet-razor-plaque::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #ffd700;
  clip-path: polygon(
    10% 0,
    90% 0,
    100% 15%,
    100% 85%,
    90% 100%,
    10% 100%,
    0 85%,
    0 15%
  );
  pointer-events: none;
  opacity: 0.8;
}

.garnet-razor-plaque h4 {
  font-family: "Cinzel", serif;
  font-weight: 800;
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.garnet-razor-plaque h4 i {
  display: block;
  font-size: 34px;
  margin-bottom: 12px;
  color: #ffd700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.garnet-razor-plaque p {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.98);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.garnet-razor-plaque:hover {
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.1);
}
