.elementor-2829 .elementor-element.elementor-element-34145bb{--display:flex;}.elementor-2829 .elementor-element.elementor-element-e11afd4{--display:flex;}.elementor-2829 .elementor-element.elementor-element-09dbc73{--display:flex;}.elementor-2829 .elementor-element.elementor-element-065bc94{--display:flex;}.elementor-2829 .elementor-element.elementor-element-12c1fe0{--display:flex;}.elementor-2829 .elementor-element.elementor-element-ef8f5e2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-80aa489 */.dj-hero {
  position: relative;
  width: 100%;
  padding: 120px 30px;
  color: #fff;
  font-family: 'Poppins', sans-serif;

  background: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=2070&auto=format&fit=crop')
              center/cover no-repeat;
}

/* OVERLAY */
.dj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.95),
    rgba(26,15,31,0.9)
  );
  z-index: 1;
}

/* LAYOUT */
.dj-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.dj-hero-left {
  max-width: 520px;
}

.dj-hero-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.dj-hero-left h1 span {
  background: linear-gradient(90deg, #ff4ecd, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 20px;
  margin-top: 15px;
  color: #ff8a00;
}

/* RIGHT */
.dj-hero-right {
  max-width: 420px;
  margin-left: auto;
}

/* TEXT */
.description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* BUTTONS (LOWERED) */
.dj-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-top: 50px; /* 🔥 pushed lower (~2cm) */
}

/* BUTTON BASE */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  min-width: 160px;
  text-align: center;
}

/* GLOW PRIMARY */
.btn.primary {
  background: linear-gradient(90deg, #ff003c, #ff0055);
  color: #fff;

  box-shadow:
    0 0 10px rgba(255,0,85,0.6),
    0 0 25px rgba(255,0,85,0.4);
}

.btn.primary:hover {
  box-shadow:
    0 0 20px rgba(255,0,85,1),
    0 0 40px rgba(255,0,85,0.7);
  transform: translateY(-2px);
}

/* DARK BUTTON */
.btn.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(10,10,20,0.6);

  box-shadow:
    0 0 10px rgba(255,255,255,0.15);
}

.btn.secondary:hover {
  background: #fff;
  color: #000;

  box-shadow:
    0 0 20px rgba(255,255,255,0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  .dj-hero {
    padding: 80px 20px;
  }

  .dj-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .dj-hero-left h1 {
    font-size: 32px;
  }

  .dj-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
  }

  .btn {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d837862 *//* SECTION */
.dj-services {
  position: relative;
  padding: 100px 30px;
  background: #000;
  color: #fff;
}

/* CONTAINER */
.dj-services-container {
  max-width: 1200px;
  margin: auto;
}

/* DESKTOP GRID */
.dj-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.dj-service-card {
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

/* ICON */
.dj-service-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ff0055;
}

/* TITLE */
.dj-service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.dj-service-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* HOVER */
.dj-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,85,0.4);

  box-shadow:
    0 0 20px rgba(255,0,85,0.3),
    0 0 40px rgba(255,0,85,0.15);
}

/* TABLET */
@media (max-width: 1000px) {
  .dj-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔥 MOBILE FINAL */
@media (max-width: 600px) {

  /* LESS TOP SPACE */
  .dj-services {
    padding: 20px 15px 40px;
  }

  /* 2 PER ROW */
  .dj-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* SMALL CARDS */
  .dj-service-card {
    padding: 18px;
    border-radius: 14px;
  }

  /* ICON */
  .dj-service-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  /* TITLE */
  .dj-service-card h3 {
    font-size: 13px;
    margin-bottom: 0;
  }

  /* ❌ HIDE DESCRIPTION */
  .dj-service-card p {
    display: none;
  }

}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-e11afd4 *//* SECTION */
.dj-services {
  padding: 100px 30px;
  background: #000;
  color: #fff;
}

/* CONTAINER */
.dj-services-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.dj-services-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;

  background: linear-gradient(90deg, #ff4ecd, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.dj-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.dj-service-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;

  backdrop-filter: blur(10px);
}

/* ICON */
.dj-service-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ff0055;
}

/* TITLE */
.dj-service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.dj-service-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* 🔥 HOVER GLOW */
.dj-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,85,0.4);

  box-shadow:
    0 0 20px rgba(255,0,85,0.3),
    0 0 40px rgba(255,0,85,0.15);
}

/* MOBILE */
@media (max-width: 1000px) {
  .dj-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dj-services-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3f211c4 */.dap-about-section {
    padding:80px 20px;
    background:#0a0a0a;
}

.dap-about-container {
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* IMAGE */
.dap-about-image img {
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

/* CONTENT */
.dap-about-content h2 {
    font-size:30px;
    color:#fff;
    margin-bottom:15px;
}

.dap-about-content p {
    color:#aaa;
    font-size:14px;
    margin-bottom:12px;
    line-height:1.6;
}

/* TAGS */
.dap-about-highlights {
    margin-top:15px;
}

.dap-about-highlights span {
    display:inline-block;
    background:#111;
    color:#ccc;
    padding:6px 12px;
    margin:5px 5px 0 0;
    border-radius:20px;
    font-size:12px;
}

/* CTA */
.dap-about-cta {
    margin-top:20px;
}

.dap-about-btn {
    display:inline-block;
    padding:12px 18px;
    border-radius:30px;
    background:linear-gradient(135deg,#ff0080,#ff4db8);
    color:#fff;
    font-size:13px;
    text-decoration:none;
    box-shadow:0 0 15px rgba(233,0,151,0.4);
    transition:0.3s;
}

.dap-about-btn:hover {
    transform:translateY(-2px);
    box-shadow:0 5px 25px rgba(233,0,151,0.6);
}

/* MOBILE */
@media(max-width:768px){
    .dap-about-container {
        grid-template-columns:1fr;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-09dbc73 *//* SECTION */
.dj-services {
  padding: 100px 30px;
  background: #000;
  color: #fff;
}

/* CONTAINER */
.dj-services-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.dj-services-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;

  background: linear-gradient(90deg, #ff4ecd, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.dj-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.dj-service-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;

  backdrop-filter: blur(10px);
}

/* ICON */
.dj-service-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ff0055;
}

/* TITLE */
.dj-service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.dj-service-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* 🔥 HOVER GLOW */
.dj-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,85,0.4);

  box-shadow:
    0 0 20px rgba(255,0,85,0.3),
    0 0 40px rgba(255,0,85,0.15);
}

/* MOBILE */
@media (max-width: 1000px) {
  .dj-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dj-services-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5d25ce3 *//* SECTION */
.dj-podcast {
  padding: 100px 30px;
  background: #000;
  color: #fff;
}

/* 🔥 TITLE */
.dj-podcast-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 2px;
  font-weight: 700;

  background: linear-gradient(90deg, #ff4ecd, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* 🔥 SUBTLE GLOW */
  text-shadow: 0 0 20px rgba(255, 0, 85, 0.25);
}

/* CONTAINER FULL WIDTH */
.dj-podcast-container {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.dj-embed-card {
  background: rgba(20,20,30,0.85);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

/* CARD TITLE */
.dj-embed-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
  text-align: center;

  background: linear-gradient(90deg,#ff4ecd,#ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* IFRAME */
.dj-embed-card iframe {
  width: 100%;
  height: 420px;
  border-radius: 12px;
}

/* HOVER */
.dj-embed-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 0 20px rgba(255,0,85,0.25),
    0 0 40px rgba(255,0,85,0.15);
}

/* TABLET */
@media (max-width: 1000px) {
  .dj-podcast-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .dj-podcast {
    padding: 40px 15px;
  }

  .dj-podcast-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .dj-podcast-container {
    grid-template-columns: 1fr;
  }

  .dj-embed-card iframe {
    height: 360px;
  }

}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f11d8b5 *//* ===== DOWNLOADS HEADER ===== */
.dap-downloads-header {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

/* 🔥 CENTER TITLE PERFECTLY */
.dap-downloads-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff5a5f;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* KEEP BUTTON RIGHT */
.dap-view-all-btn {
    margin-left: auto;

    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;

    background: linear-gradient(135deg, #ff5a5f, #e90097);
    box-shadow: 0 4px 12px rgba(233, 0, 151, 0.3);

    transition: all 0.3s ease;
}
.dap-downloads-header {
    min-height: 40px;
}
/* HOVER */
.dap-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 0, 151, 0.5);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-edf7d12 *//* ===== EXACT PODCAST TITLE STYLE ===== */
.dap-section-title {
    text-align: center;
    margin-bottom: 35px;
}

/* MAIN TITLE (MATCHES "MUSIC PODCAST") */
.dap-section-title h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;

    /* 🎯 exact tone from your reference */
    color: #ff5a5f;
}

/* SUBTEXT */
.dap-section-title span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #9ca3af;
}
.dap-section-title h4 {
    text-shadow: 0 0 8px rgba(255,90,95,0.25);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6adee9d *//* ===== FULL WIDTH SECTION ===== */
.dap-booking-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a, #111);
}

/* ACCENT LINE */
.dap-booking-section::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #ff5a5f;
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ===== FULL WIDTH BOX ===== */
.dap-booking-box {
    width: 100%;
    max-width: 100%;   /* 🔥 removed container constraint */
    margin: 0;
    padding: 60px 80px;

    background: #111;
    border-radius: 0;  /* 🔥 edge-to-edge look */
    border: none;

    color: #fff;
    text-align: center;
}

/* ===== TITLE ===== */
.dap-booking-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

/* ===== DESCRIPTION ===== */
.dap-booking-box p {
    color: #9ca3af;
    margin-bottom: 30px;
    font-size: 15px;
}

/* ===== TAGS ===== */
.dap-booking-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.dap-booking-tags span {
    background: #1a1a1a;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #ccc;
}

/* ===== BUTTONS ===== */
.dap-booking-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.dap-btn {
    padding: 15px 26px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* PRIMARY */
.dap-btn.primary {
    background: linear-gradient(135deg, #ff5a5f, #e90097);
    color: #fff;
}

.dap-btn.primary:hover {
    transform: translateY(-3px);
}

/* ALT */
.dap-btn.alt {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.dap-btn.alt:hover {
    background: #fff;
    color: #000;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .dap-booking-section {
        padding: 60px 20px;
    }

    .dap-booking-box {
        padding: 40px 20px;
    }

    .dap-booking-box h2 {
        font-size: 24px;
    }

    .dap-btn {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */