body {
  background: #090a10;
  color: #fff;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* ================= Pre Header ================= */
/* .pre-header {
    background: #090a10;
    color: #f5d27a;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(245, 210, 122, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1080;
    backdrop-filter: blur(8px);
} */

.pre-header {
  background: #090a10;
  color: #f5d27a;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(245, 210, 122, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1080;
  backdrop-filter: blur(8px);
  transition: top 0.5s ease;
  /* smooth hide/show */
}

/* Pre-header hidden */
.pre-header.hide {
  top: -60px;
  /* moves out of view */
}

/* ================= Navbar ================= */
.luxury-nav {
  background: #090a10;
  backdrop-filter: blur(12px);
  padding: 5px 0;
  margin-top: 33px;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
}

/* Shrink navbar on scroll */
.luxury-nav.scrolled {
  padding: 8px 0;
  margin-top: 0px;
  background: #090a10;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Optional: add smooth brand animation */
.navbar-brand {
  display: flex;
  /* font-size: 28px; */
  transition: font-size 0.4s ease;
}

.logo-radios {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.luxury-nav.scrolled .navbar-brand {
  font-size: 24px;
}

.pre-left span,
.pre-right a {
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
}

.pre-left i,
.pre-right i {
  color: #f5d27a;
  margin-right: 6px;
}

.pre-center {
  font-weight: 700;
  color: #f5d27a;
  font-size: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #f5d27a, 0 0 12px rgba(245, 210, 122, 0.6);
  animation: glowText 2.5s ease-in-out infinite alternate;
}

@keyframes glowText {
  0% {
    text-shadow: 0 0 5px #f5d27a, 0 0 15px #f5d27a;
  }

  100% {
    text-shadow: 0 0 15px #f5d27a, 0 0 25px #f5d27a;
  }
}

/* ================= Navbar ================= */
/* .luxury-nav {
    background: #090a10;
    backdrop-filter: blur(12px);
    padding: 18px 0;
    margin-top: 22px;
    transition: 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
} */

/* .luxury-nav.scrolled {
    padding: 8px 0;
    background: #090a10;
    backdrop-filter: blur(16px);
} */

.navbar-brand span {
  font-size: 18px;
  font-weight: 600;
  color: #f5d27a !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 12px #f5d27a, 0 0 25px rgba(245, 210, 122, 0.6);
  animation: brandGlow 2s ease-in-out infinite alternate;
}

.brand-icon {
  font-size: 17px;
  margin-right: 10px;
  animation: bounce 2s infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

@keyframes brandGlow {
  0% {
    text-shadow: 0 0 8px #f5d27a, 0 0 20px rgba(245, 210, 122, 0.6);
  }

  100% {
    text-shadow: 0 0 15px #f5d27a, 0 0 30px rgba(245, 210, 122, 0.8);
  }
}

/* Navbar links */
.lux-link {
  color: #f5d27a !important;
  font-size: 17px;
  font-weight: 500;
  margin-left: 28px;
  position: relative;
  transition: 0.3s ease;
}

.lux-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, #f5d27a, #ffcc00);
  box-shadow: 0 0 8px #f5d27a, 0 0 15px #ffcc00;
  transition: width 0.4s ease;
}

.lux-link:hover {
  color: #fff !important;
  text-shadow: 0 0 10px #f5d27a, 0 0 20px #ffcc00;
}

.lux-link:hover::after {
  width: 100%;
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  background: rgba(245, 210, 122, 0.2);
  padding: 6px 10px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(245, 210, 122, 0.35);
}

.navbar-toggler-icon {
  filter: invert(0.9);
}

/* Offcanvas Mobile */
.offcanvas-start {
  background: #090a10;
  width: 280px;
}

.offcanvas-title {
  font-size: 22px;
  font-weight: 700;
  color: #f5d27a;
  text-shadow: 0 0 10px #f5d27a, 0 0 20px #ffcc00;
}

.mobile-nav {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.mobile-nav li {
  margin-bottom: 18px;
}

.mobile-nav a {
  color: #f5d27a;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-nav a:hover {
  color: #ffcc00;
  padding-left: 6px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Gold Theme */
.gold {
  color: #f6c453;
}

.bg-gold {
  background: #f6c453 !important;
}

.glow-gold {
  text-shadow: 0 0 10px #f6c453, 0 0 20px #f6c453;
}

/* Company Name Overlay */
.company-name {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #f5d27a;
  background: #f5d27a5b;
  backdrop-filter: blur(20px);
  text-shadow: 0 0 15px #2a2a2a;
  padding: 5px;
  border-radius: 15px;
  z-index: 10;
}

/* Carousel height */
#heroCarousel .carousel-inner {
  height: 550px;
}

#heroCarousel .carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
}

#heroCarousel img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Carousel captions */
.carousel-caption {
  bottom: 30px;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 60%;
  animation: fadeInUp 1s ease-in-out;
}

.glow-gold {
  color: #f5d27a;
  text-shadow: 0 0 10px #f5d27a;
}

/* Vertical buttons on right */
.carousel-control-wrapper {
  position: absolute;
  bottom: 40px;
  right: 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .carousel-control-wrapper {
    position: absolute;
  bottom: 20px;
  right: 140px !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d27a, #FF8C00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #f5d27a, 0 0 20px #FF8C00;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 20px #f5d27a, 0 0 40px #FF8C00;
}

/* Horizontal Dots indicators at bottom center */
.carousel-indicators {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  gap: 12px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #f5d27a;
  transform: scale(1.3);
  box-shadow: 0 0 10px #f5d27a, 0 0 20px #FF8C00;
}

/* Fade-in animation for captions */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  #heroCarousel .carousel-inner {
    height: 350px;
  }

  .carousel-caption {
    max-width: 80%;
    padding: 1rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption h4 {
    font-size: 1rem;
  }

  .company-name {
    font-size: 1.5rem;
    left: 20px;
    top: 15px;
  }

  .carousel-control-wrapper {
    right: 15px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  #heroCarousel .carousel-inner {
    height: 250px;
  }

  .carousel-caption {
    bottom: 15px;
    padding: 0.8rem;
  }

  .carousel-caption h1 {
    font-size: 1.2rem;
  }

  .carousel-caption h4 {
    font-size: 0.9rem;
  }

  .carousel-control-wrapper {
    gap: 10px;
  }
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  transition: .3s;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: #f6c453;
  box-shadow: 0 0 20px rgba(246, 196, 83, 0.3);
}

/* Section Title */
/* .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
} */

.section-title span {
  color: #f6c453;
}

/* Shows & Podcasts */
.show-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Team */
.main-team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f6c453;
}

/* Testimonials */
.testimonial-box {
  border-left: 3px solid #f6c453;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

/* Subscribe Box */
.subscribe-box {
  background: linear-gradient(45deg, #f6c453, #e0a526);
  padding: 45px;
  border-radius: 20px;
  text-align: center;
}

/* Footer */
/* .footer {
    background: #090a10;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer a {
    color: #f6c453;
}

.footer a:hover {
    text-decoration: underline;
} */

/* =============================
   LUXURY MAIN SECTION
============================= */
.luxury-about {
  padding: 180px 0;
  background: linear-gradient(to bottom right, #05050a, #0e0f17);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Container */
.luxury-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* =============================
   IMAGE AREA
============================= */
.luxury-images {
  position: relative;
}

/* Main Image */
.lux-img {
  border-radius: 26px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
  transition: 0.6s ease;
  cursor: pointer;
  /* looks premium */
}

/* Base Positioning */
.main-img {
  width: 380px;
  height: 480px;
  top: 0;
  left: 0;
  z-index: 3;
}

.small-img {
  width: 220px;
  height: 260px;
}

.small-img.one {
  top: 240px;
  left: 250px;
  transform: rotate(10deg);
  z-index: 2;
}

.small-img.two {
  top: 50px;
  left: 280px;
  transform: rotate(-8deg);
  z-index: 1;
}

.lux-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

/* ===============================
   PREMIUM HOVER EFFECT ADDED HERE
================================ */

/* Shine Reflection */
.lux-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.45),
      transparent);
  transform: skewX(-25deg);
  opacity: 0;
  transition: 0.7s;
}

/* Dark overlay */
.lux-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: 0.5s;
}

/* Hover Zoom + Brightness */
.lux-img:hover img {
  transform: scale(1.12);
  filter: brightness(1.15);
}

/* Activate shine + overlay */
.lux-img:hover::before {
  opacity: 1;
}

.lux-img:hover::after {
  left: 130%;
  opacity: 1;
}

/* Slight lift effect */
.lux-img:hover {
  transform: scale(1.06);
}


/* Neon Glow */
.lux-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 50, 120, 0.5), transparent);
  filter: blur(60px);
  left: 120px;
  top: 160px;
  z-index: -1;
}

/* Floating Circle */
.lux-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  top: -40px;
  left: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Badge */
.lux-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, #ff007a, #ffa600);
  padding: 18px 26px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 30px rgba(255, 80, 20, 0.4);
  z-index: 5;
}

.lux-badge strong {
  font-size: 38px;
  font-weight: 800;
}

/* =============================
   CONTENT AREA
============================= */

.lux-subtitle {
  letter-spacing: 4px;
  color: #ff7b00;
  font-size: 14px;
  font-weight: 600;
}

.lux-title {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.lux-title span {
  color: #ff166a;
}

.lux-desc {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* CEO Block */
.lux-ceo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lux-ceo img {
  width: 75px;
  height: 75px;
  border-radius: 15px;
  object-fit: cover;
}

.lux-ceo h4 {
  font-size: 20px;
  margin: 0;
}

.lux-ceo span {
  color: #aaaaaa;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {
  .luxury-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .luxury-images {
    height: 520px;
  }

  .luxury-content {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .main-img {
    width: 260px;
    height: 340px;
  }

  .small-img.one,
  .small-img.two {
    display: none;
  }

  .lux-title {
    font-size: 32px;
  }
}

.sound-panel {
  position: absolute;
  left: 26px;
  bottom: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08)
}

.wave {
  display: inline-block;
  height: 26px;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff0055, #ff7f00);
  animation: wave 1200ms infinite ease-in-out
}

.wave.w2 {
  animation-delay: 120ms;
  height: 18px
}

.wave.w3 {
  animation-delay: 240ms;
  height: 22px
}

@keyframes wave {
  0% {
    transform: scaleY(.4);
    opacity: .7
  }

  50% {
    transform: scaleY(1.9);
    opacity: 1
  }

  100% {
    transform: scaleY(.45);
    opacity: .7
  }
}


/* Nav Tabs */
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #f6c453;
  font-weight: 500;
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background: linear-gradient(90deg, #f6c453, #e0a526);
  color: #000;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(246, 196, 83, 0.4);
}

/* Glassmorphism sch-Card */
.sch-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 15px;
  padding: 10px 12px;
  box-shadow: 0 20px 40px rgba(246, 196, 83, 0.4);
  transition: transform 0.4s, box-shadow 0.4s;
}

.sch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(246, 196, 83, 0.4);

}

.sch-card-title {
  font-weight: bold;
  color: #f6c453;
}

.sch-card-subtitle {
  color: #ffd966;
}

.sch-card-text {
  color: #ddd;
}

/* Avatar Group */
.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.avatar-group img:hover {
  transform: scale(1.2);
  z-index: 10;
}

.avatar-group img+img {
  margin-left: -15px;
}


footer {
  color: #fff;
  position: relative;
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1400&q=80') no-repeat center center;
  background-size: cover;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.85);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 20px;
  text-align: center;
}

.newsletter h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ddd;
}

.newsletter .input-group {
  max-width: 550px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.newsletter .form-control {
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  outline: none;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .newsletter .form-control {
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  outline: none;
  width: 100%;
}
}
.newsletter .form-control::placeholder {
  color: #999;
}

.newsletter .btn-subscribe {
  background: linear-gradient(90deg, #ff0066, #00ccff);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 7px 30px;
  transition: 0.3s;
}

.newsletter .btn-subscribe:hover {
  opacity: 0.9;
}

/* Footer Main */
.footer-main {
  padding: 60px 20px 40px 20px;
}

.footer-logo h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ff0066;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #ccc;
  font-size: 14px;
}

.footer-links h5,
.footer-contact h5,
.footer-partners h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul,
.footer-partners ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-partners ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-partners ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover,
.footer-partners ul li a:hover {
  color: #ff0066;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-contact .social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-contact .social-icons a:hover {
  color: #ff0066;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .newsletter .input-group {
    flex-direction: column;
  }

  .newsletter .btn-subscribe {
    width: 100%;
    border-radius: 50px;
    margin-top: 10px;
  }
}

/* FAQ Section */
#faq {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.section-title span {
  color: #ff0066;
}

.accordion-button {
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: 0.3s;
}

.accordion-button:hover {
  background: linear-gradient(90deg, #ff0066, #00ccff);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
  transition: transform 0.3s;
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item {
  background: #1a1a1a;
  border: none;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.accordion-item:hover {
  transform: translateY(-3px);
}

.accordion-body {
  background: #0f0f0f;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0 0 10px 10px;
}

.accordion-button i {
  margin-right: 10px;
  color: #ff0066;
  transition: transform 0.3s;
}

.accordion-button:not(.collapsed) i {
  transform: rotate(20deg);
}

@media (max-width: 768px) {
  #faq {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 2rem;
  }
}

.radio-banner-2 {
  height: 260px;
  border-radius: 18px;
  /* padding: 45px; */
  color: #fff;
  margin-top: 120px;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(20, 0, 40, 0.7)),
    url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  overflow: hidden;
  border: 2px solid #fefefe;
}

/* Glassmorphism Light Layer */
.radio-banner-2::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  opacity: 0.25;
}

/* Glow heading */
.premium-title-2 {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 10px #ff69f5, 0 0 25px #e41bff;
}

/* Logo */
.radio-logo-2 img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.55));
}

/* Right Content */
.radio-content-2 {
  position: relative;
  z-index: 2;
  padding-left: 25px;
}

.radio-content-2 h5 {
  background: #fefefe4b;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border-bottom: 2px solid #fefefe;
  color: #f6c453;
  max-width: max-content;
  padding: 8px;
  font-weight: 700;
}

/* Smaller screens */
@media(max-width: 768px) {
  .radio-banner-2 {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .radio-logo-2 img {
    width: 170px;
    height: 170px;
  }

  .radio-content-2 {
    padding-left: 0;
    margin-top: 10px;
  }
}

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  background: #fff;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.team-item::before {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 0;
  height: 3px;
  background: #00A6FF;
  border-radius: 5px;
}

.team-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 277px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease-out 0s;

}

.team-item:hover .team-img img {
  transform: scale(1.1);
  /* transition: all ease 0.4s; */
}

.team-info {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 20px 25px 5px 25px;
  border-radius: 50px;
}

.team-info h5 a {
  color: #000A24;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.team-info h5 a:hover {
  color: #00A6FF;
}

.team-info span {
  display: inline-block;
  font-size: 17px;
  color: #dc3545;
  font-weight: 500;
  margin-top: 4px;
}

.team-social {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 1;
}

.team-social::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20%;
  bottom: 0;
  right: 27px;
  background: #fff;
  border-radius: 5px 5px 0 0;
  transition: all .3s ease-in-out;
  ;
  z-index: -1;
}

.team-item:hover .team-social::before {
  height: 38%;
}

.team-social a {
  display: block;
  color: #fff;
  width: 38px;
  height: 38px;
  line-height: 39px;
  margin: 10px;
  border-radius: 50px;
  text-align: center;
  background: #f6c453;
  border-bottom: 2px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.team-social a:hover {
  color: #fff;
  background: #dc3545;
}



.site-heading {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}

.site-heading-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.site-heading-inline .site-title {
  font-size: 50px;
}

.site-heading-inline .theme-btn {
  border-radius: 10px;
  padding: 4px 12px;
}

.site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #fefefe;
  padding: 5px 2px 5px 5px;
}

.site-title-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f6c453;
  height: 50%;
  width: 100%;
  z-index: -1;
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 50px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span {
  color: #fff;
}



@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(52px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 767px) {

  .site-title,
  .site-heading-inline .site-title {
    font-size: 32px;
  }

  .site-heading-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}


.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
  z-index: 1;
  background: url('../images/bg/breadcrumb.jpg');
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: #fefefe;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #fefefe;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fefefe;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Boostrap icon';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #fefefe;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: #e0a526;
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: #e0a526;
}

.dev-title-premium {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #f7e7a1, #dbb85d, #ffea9a);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(255, 216, 77, 0.5);
}

/* ================== GOLD GLASS CONTACT CARDS ================== */
.dev-info-card {
  background: rgba(255, 216, 77, 0.07);
  border: 1px solid rgba(255, 216, 77, 0.4);
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: 0.35s ease-in-out;
  box-shadow: 0 0 25px rgba(255, 216, 77, 0.15);
}

.dev-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255, 216, 77, 0.4);
}

.dev-info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.15);
  transition: 0.8s;
}

.dev-info-card:hover::after {
  left: 150%;
}

.dev-info-card i {
  font-size: 48px;
  color: #ffdf6e;
  text-shadow: 0 0 20px rgba(255, 216, 77, 0.6);
  margin-bottom: 15px;
}

/* ================== CURVED WAVE SECTION ================== */
.dev-wave-section {
  position: relative;
  margin-top: 50px;
}

.dev-wave-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('https://svgshare.com/i/12x6.svg') no-repeat center;
  background-size: cover;
}

/* ================== FORM WITH GOLD BORDER ================== */
.dev-form-wrapper {
  margin-top: 50px;
  background: rgba(255, 216, 77, 0.06);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 216, 77, 0.4);
  box-shadow: 0 0 30px rgba(255, 216, 77, 0.25);
}

.dev-form-side-image {
  background: url('../images/radio/contact.jfif') center/cover no-repeat;
  min-height: 100%;
}

.dev-form-fields {
  padding: 35px;
}

.dev-form-fields input,
.dev-form-fields textarea {
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.4);
  color: #fff;
}

.dev-form-fields input::placeholder,
.dev-form-fields textarea::placeholder {
  color: #e6d58c;
}

.dev-form-fields button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  color: #000;
  font-weight: 700;
  background: linear-gradient(90deg, #ffea9a, #dbb85d);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.5);
  transition: 0.4s;
}

.dev-form-fields button:hover {
  box-shadow: 0 0 35px rgba(255, 216, 77, 0.8);
  transform: translateY(-3px);
}

/* ================== MAP ================== */
.dev-map-box {
  margin-top: 50px;
  border: 1px solid rgba(255, 216, 77, 0.4);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 216, 77, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.25);
}

/* Hero */
.devr-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('https://images.unsplash.com/photo-1501686638-1a5b7b7b9b4f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 215, 102, 0.03) inset;
  border: 1px solid rgba(255, 215, 102, 0.06);
}

.devr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 215, 102, 0.02), rgba(255, 215, 102, 0.01));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.devr-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.devr-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 215, 102, 0.12), rgba(255, 215, 102, 0.06));
  border: 1px solid rgba(255, 215, 102, 0.16);
  color: #ffd36b;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(255, 197, 72, 0.04), 0 0 14px rgba(255, 197, 72, 0.02) inset;
  letter-spacing: 0.4px;
}

.devr-title {
  font-size: 44px;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 900;
  color: #fff7e9;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.devr-sub {
  color: rgba(255, 235, 190, 0.9);
  font-size: 18px;
  margin-bottom: 6px;
}

.devr-hero-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.devr-meta-pill {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 102, 0.06);
  color: #ffd36b;
  font-weight: 600;
  font-size: 13px;
}

.devr-divider {
  height: 2px;
  width: 120px;
  background: linear-gradient(90deg, rgba(255, 215, 102, 0.9), rgba(255, 215, 102, 0.3));
  margin-top: 16px;
  border-radius: 3px;
}

/* Glass cards */
.devr-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 102, 0.06);
  padding: 28px;
  height: 512px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Cards */
.devr-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 215, 102, 0.04);
  transition: transform .32s, box-shadow .32s;
  height: 100%;
}

.devr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7);
}

.devr-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 215, 102, 0.12), rgba(255, 215, 102, 0.06));
  color: #ffd36b;
  font-size: 28px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 215, 102, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.devr-card h5 {
  color: #fffbe6;
  font-weight: 800;
  margin-bottom: 8px;
}

.devr-card p {
  color: rgba(255, 245, 220, 0.9);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0;
}

/* Section headings */
h3.dev-section-title {
  font-weight: 900;
  color: #fffdf5;
  margin-bottom: 16px;
}

p.section-text {
  line-height: 1.7;
  color: rgba(255, 245, 220, 0.95);
  margin-top: 12px;
}

ul.section-list {
  margin-top: 18px;
  color: rgba(255, 245, 220, 0.95);
  line-height: 1.8;
  padding-left: 20px;
}

.devr-side-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 102, 0.04);
}

.devr-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Team */
.devr-team-card {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 215, 102, 0.05);
  text-align: center;
  padding: 12px;
}

.devr-team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 102, 0.03);
}

.devr-team-name {
  font-weight: 700;
  margin-top: 10px;
  color: #fffdf0;
}

.devr-team-role {
  color: rgba(255, 235, 200, 0.8);
  font-size: 13px;
}

/* Timeline */
.devr-timeline {
  position: relative;
  margin-top: 10px;
}

.devr-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 215, 102, 0.16), rgba(255, 215, 102, 0.06));
  border-radius: 3px;
}

.devr-timeline-item {
  position: relative;
  padding: 18px 20px 18px 72px;
}

.devr-timeline-item .dot {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffd36b, #f4c145);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.devr-timeline-item h6 {
  color: #fffdf5;
  margin-bottom: 6px;
  font-weight: 800;
}

.devr-timeline-item p {
  color: rgba(255, 245, 220, 0.9);
  margin: 0;
}

/* CTA */
.devr-cta {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffd36b, #f4c145);
  color: #0a0706;
  font-weight: 800;
  margin-top: 18px;
  box-shadow: 0 12px 40px rgba(255, 183, 75, 0.12);
  text-decoration: none;
}

/* Footer */
.devr-footer {
  margin-top: 48px;
  text-align: center;
  color: rgba(255, 235, 200, 0.9);
  padding: 30px 0 60px;
}

/* Responsive */
@media(max-width:991px) {
  .devr-title {
    font-size: 34px;
  }

  .devr-hero {
    min-height: 320px;
  }
}

@media(max-width:576px) {
  .devr-title {
    font-size: 26px;
  }

  .devr-hero-inner {
    padding: 24px;
  }

  .devr-team-photo {
    height: 180px;
  }

  .devr-timeline::before {
    left: 18px;
  }

  .devr-timeline-item {
    padding-left: 56px;
  }
}

/* subtle reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all .7s cubic-bezier(.2, .9, .2, 1);
}

.reveal.show {
  opacity: 1;
  transform: none;
}
.dev-section-titles {
  font-size: 36px;
  font-weight: 800;
  color: #ffd766;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dev-section-sub {
  font-size: 18px;
  color: #b8b1a1;
  margin-bottom: 25px;
}

/* ------------------- HERO ------------------- */
.dev-career-hero {
  background: url('https://images.unsplash.com/photo-1487180144351-b8472da7d491?auto=format&fit=crop&w=1400&q=80')
    center/cover no-repeat;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(255,215,102,0.1);
  position: relative;
}

.dev-career-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.dev-career-hero .dev-text-box {
  position: relative;
  z-index: 2;
}

.dev-career-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: #ffd766;
}

.dev-career-hero p {
  color: #fffdf5;
  font-size: 20px;
}

/* ------------------- GLASS CARD ------------------- */
.dev-glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 102, 0.08);
  min-height: 200px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  transition: 0.3s;
}
.dev-glass-card h4 {
  color: #ffd766;
  font-weight: 700;
}

.dev-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 102, 0.4);
}

/* ------------------- JOB CARD ------------------- */
.dev-job-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,215,102,0.1);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.dev-job-box:hover {
  border-color: #ffd766;
}

.dev-job-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffd766;
}

.dev-job-meta {
  color: #b8b1a1;
  font-size: 14px;
  margin-bottom: 12px;
}

.dev-apply-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #ffd766;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.dev-apply-btn:hover {
  background: #ffe9a6;
}

/* ------------------- CTA ------------------- */
.dev-career-cta {
  background: #ffd766;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #000;
  margin-top: 60px;
}

.dev-career-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg,#111,#222);
    color: #fff;
    padding: 10px 0;
    box-sizing: border-box;
    font-weight: 600;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  .marquee {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 12s linear infinite;
  }

  /* pauses on hover */
  .marquee-wrap:hover .marquee { animation-play-state: paused; }

  /* respect user's reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .marquee { animation: none; }
  }

  @keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  .lux-link.active {
  color: #ffb400 !important;
  font-weight: 600;
  position: relative;
}

.lux-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ffb400;
}
