/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/
/* ===== Global Futuristic Scroll Background ===== */
.fixed-bg {
position: fixed;
    background: radial-gradient(circle at 30% 30%, rgb(225 225 225), #ffffff22 70%), radial-gradient(circle at 70% 70%, rgba(15, 171, 221, 0.01), transparent 90%), url(/wp-content/uploads/2025/12/bg.webp) center / cover no-repeat;
    z-index: -1;
    filter: brightness(1.1) contrast(1.05);
    pointer-events: none;
    transition: opacity 0.6s ease;
	width: 100vw;
	height: 100vh;
}

.ai-projects {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  position: relative;
}

.ai-image-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(15, 171, 221, 0);
  position: relative;
}

.ai-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.5s ease;
  filter: brightness(0.95);
}

.ai-image-wrapper:hover .ai-image {
  transform: scale(1.08);
  filter: brightness(1.1);
  box-shadow: 0 0 40px rgba(15, 171, 221, 0.45);
}

.ai-badge {
  background: linear-gradient(90deg, #3CB4FF, #1155CC);
  font-size: 0.85rem;
  font-weight: 600;
}

.ai-content h3 {
  color: #1155CC;
  position: relative;
}

.ai-content h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3CB4FF, #1155CC);
  margin-top: 10px;
  border-radius: 2px;
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1155CC;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.ai-btn i {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #3CB4FF;
  font-size: 1.2rem;
}

.ai-btn:hover {
  color: #3CB4FF;
  text-shadow: 0 0 8px rgba(15, 171, 221, 0.6);
}

.ai-btn:hover i {
  transform: translateX(5px);
  color: #1155CC;
}

/* 🔹 Glowing connector line */
.ai-divider {
  position: relative;
  height: 70px;
  margin: 50px 0;
}

.ai-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(15,171,221,0.2), rgba(15,171,221,0.9), rgba(22,68,124,0.2));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(15,171,221,0.5);
  animation: pulseGlow 3s infinite ease-in-out;
}
/* subtle pulse animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(15,171,221,0.5); opacity: 0.8; }
  50% { box-shadow: 0 0 25px rgba(15,171,221,0.8); opacity: 1; }
  100% { box-shadow: 0 0 10px rgba(15,171,221,0.5); opacity: 0.8; }
}

@media (max-width: 768px) {
  .ai-image {
    height: 280px;
  }
  .ai-divider::before {
    left: 5%;
    width: 90%;
  }
}
/* ---------- Container ---------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* desktop: 6 across */
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2.2 / 1;
  gap: 5px;
  overflow: hidden;
  border-radius: 12px;
  perspective: 1200px; /* allow children 3D transforms */
}

/* ---------- Grid item (flip wrapper) ---------- */
.grid-item {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;

  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1),
              box-shadow 0.35s ease;

  --img: url('/wp-content/uploads/2025/11/about.avif'); /* main image */
}

/* ---------- FRONT: image slice ---------- */
.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backface-visibility: hidden;

  background-image:
    linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0) 80%),
    var(--img);

  background-repeat: no-repeat;
  background-size: 600% 100%; /* desktop slicing */
  background-position: -120% 0, var(--bg-pos, 0% 0%);
  background-blend-mode: screen;

  transition: background-position 0.9s ease, opacity 0.6s ease;
  box-shadow: inset 0 0 15px rgba(0,255,255,0.06);
}

/* ---------- BACK: overlay + text (SIDEWAYS, UPPERCASE) ---------- */
.grid-item::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;

  /* keep flipped back face so parent flip shows it */
  transform: rotateY(180deg);
  backface-visibility: hidden;

  /* same slice */
  background-image: var(--img);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: var(--bg-pos, 0% 0%);
  background-blend-mode: overlay;

  /* UNIVERSAL OVERLAY COLOR */
  background-color: rgba(0, 224, 255, 0.85);

  /* UNIVERSAL TEXT COLOR */
  color: #000;

  /* TEXT ORIENTATION: sideways and uppercase as requested */
  writing-mode: sideways-lr;
  text-orientation: sideways;
  text-transform: uppercase;

  font-size: clamp(0.9rem, 1.9vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  padding: 1rem;

  transition: opacity 0.45s ease;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.18);
}

/* ---------- Hover Flip ---------- */
.grid-item:hover {
  transform: rotateY(180deg);
  box-shadow: 0 10px 40px rgba(10,30,60,0.18);
}

.grid-item:hover::before { opacity: 0; }
.grid-item:hover::after  { opacity: 1; }

/* ---------- Light Sweep ---------- */
.grid-item::before {
  background-position: -120% 0, var(--bg-pos, 0% 0%);
}

.grid-item:hover::before {
  background-position: 120% 0, var(--bg-pos, 0% 0%);
}

/* ---------- DESKTOP SLICE POSITIONS (6 columns) ---------- */
.grid-item:nth-child(1)::before,
.grid-item:nth-child(1)::after { --bg-pos: 0% 0; }

.grid-item:nth-child(2)::before,
.grid-item:nth-child(2)::after { --bg-pos: 20% 0; }

.grid-item:nth-child(3)::before,
.grid-item:nth-child(3)::after { --bg-pos: 40% 0; }

.grid-item:nth-child(4)::before,
.grid-item:nth-child(4)::after { --bg-pos: 60% 0; }

.grid-item:nth-child(5)::before,
.grid-item:nth-child(5)::after { --bg-pos: 80% 0; }

.grid-item:nth-child(6)::before,
.grid-item:nth-child(6)::after { --bg-pos: 100% 0; }

/* ---------- TABLET (3×2 layout) ---------- */
@media (max-width: 1024px) {

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    aspect-ratio: auto;
  }

  .grid-item { height: 220px; }

  .grid-item::before,
  .grid-item::after { background-size: 300% 200%; }

  /* Row 1 */
  .grid-item:nth-child(1)::before,
  .grid-item:nth-child(1)::after { --bg-pos: 0% 0%; }

  .grid-item:nth-child(2)::before,
  .grid-item:nth-child(2)::after { --bg-pos: 50% 0%; }

  .grid-item:nth-child(3)::before,
  .grid-item:nth-child(3)::after { --bg-pos: 100% 0%; }

  /* Row 2 */
  .grid-item:nth-child(4)::before,
  .grid-item:nth-child(4)::after { --bg-pos: 0% 100%; }

  .grid-item:nth-child(5)::before,
  .grid-item:nth-child(5)::after { --bg-pos: 50% 100%; }

  .grid-item:nth-child(6)::before,
  .grid-item:nth-child(6)::after { --bg-pos: 100% 100%; }
}

/* ---------- MOBILE (2×3 layout) ---------- */
@media (max-width: 600px) {

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-item { height: 120px; }

  .grid-item::before,
  .grid-item::after { 
	  background-size: 200% 300%;
	  writing-mode: horizontal-tb;
	}

  /* Row 1 */
  .grid-item:nth-child(1)::before,
  .grid-item:nth-child(1)::after { --bg-pos: 0% 0%; }

  .grid-item:nth-child(2)::before,
  .grid-item:nth-child(2)::after { --bg-pos: 100% 0%; }

  /* Row 2 */
  .grid-item:nth-child(3)::before,
  .grid-item:nth-child(3)::after { --bg-pos: 0% 50%; }

  .grid-item:nth-child(4)::before,
  .grid-item:nth-child(4)::after { --bg-pos: 100% 50%; }

  /* Row 3 */
  .grid-item:nth-child(5)::before,
  .grid-item:nth-child(5)::after { --bg-pos: 0% 100%; }

  .grid-item:nth-child(6)::before,
  .grid-item:nth-child(6)::after { --bg-pos: 100% 100%; }
}


/*Services card home page*/
.cdm-services-section {
  padding: 20px 0;
  overflow: hidden;
}

.cdm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cdm-service-item {
  position: relative;
  perspective: 1000px;
  height: 360px;
}
.cdm-service-item img {
    border-radius: 16px;
}
/* ==== OVERLAY ==== */
.cdm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #1155CC 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px;
  border-radius: 16px;
}

.cdm-overlay-content {
  text-align: center;
  color: #fff;
}

.cdm-overlay-content h3 {
  font-size: 1.85rem;
  margin-bottom: 6px;
  color: #fff;
  letter-spacing: 0px;
}
.cdm-overlay .service-card-two__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3CB4FF;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.25);
}

.cdm-overlay .service-card-two__btn:hover {
  background: #FFF;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Glow pulse cycling only within brand color range (cyan-blue-teal) */
@keyframes cdm-glow-cycle {
  0% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2),
                0 0 50px rgba(0, 200, 255, 0.1);
  }
  25% {
    box-shadow: 0 0 30px rgba(0, 220, 255, 0.4),
                0 0 60px rgba(0, 180, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(0, 180, 255, 0.6),
                0 0 80px rgba(0, 150, 255, 0.3);
  }
  75% {
    box-shadow: 0 0 40px rgba(0, 220, 200, 0.4),
                0 0 90px rgba(0, 255, 220, 0.2);
  }
  100% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2),
                0 0 50px rgba(0, 200, 255, 0.1);
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .cdm-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .cdm-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ====== Scroll Video Section ====== */
.scroll-image-section { 
  position: relative;
  width: 100%;
  background: #fff;
  /* CRITICAL: Do NOT use overflow:hidden here, or sticky will fail */
}

/* Ensure the row stretches so both columns are equal height */
.scroll-image-section .row {
    align-items: stretch; 
}

/* Video Styling */
#scrollVideo {
    width: 100%;
    height: 60vh; /* Your requested height */
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- DESKTOP STYLES (lg and up) --- */
@media (min-width: 992px) {
    
    /* 1. The Column: Acts as the "Track" */
    .video-column {
        min-height: 100vh;
        /* No position relative here, let it flow */
    }

    /* 2. The Wrapper: The actual sticky element */
    .sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 0; /* Sticks to top of viewport */
        
        height: 100vh; /* Occupies full screen height */
        width: 100%;
        
        /* Flexbox to Center the 60vh video vertically */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
        /* Ensure z-index is lower than header if you have one */
        z-index: 1; 
    }

    /* Adjust text padding to align with the visual flow */
    .scroll-text-inner {
        padding-top: 15vh;
        padding-bottom: 15vh;
    }
}

/* Text Block Styling */
.text-block {
    min-height: 70vh; /* Space between text items */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
	text-align: left;
}

/* --- MOBILE STYLES (Under 992px) --- */
@media (max-width: 991px) {
    /* Step 1: Force the columns to behave like normal blocks */
    .video-column {
        width: 100%; 
        order: 1; 
        /* Important: GSAP will handle the pinning, so we remove CSS sticky */
        position: relative; 
        min-height: 45vh; /* Gives GSAP a fixed height to pin */
    }

    .content-column {
        width: 100%; 
        order: 2; 
        background: #fff;
        position: relative;
        z-index: 1; 
    }

    /* Step 2: Remove sticky properties from the wrapper */
    .sticky-wrapper {
        position: relative; /* Must NOT be sticky */
        top: auto; 
        height: 100%; /* Allows video to fill the 45vh column */
        padding: 0; 
        display: flex; /* Centering helper */
        align-items: center; 
        justify-content: center;
    }
    
    /* Step 3: Define the fixed size of the video container */
    #scrollVideo {
        height: 40vh; /* Reduced slightly for better visibility */
        width: 90%; /* Give some horizontal margin */
        padding: 0; 
    }

    .text-block {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }
	.text-block h2 {
		font-size: 1.5rem;
	}
}

.text-dark-blue {
	color: #1155CC;
	font-weight:700;
}
/*Section Text*/
.sec-text, .client-carousel__subtext {
    max-width: 85%;
    margin: 15px auto 50px;
    font-size: 20px;
    line-height: 1.6;
	color: #333;
	font-weight: 400;
}
.custom-icon-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
}

.custom-icon-list li {
  position: relative;
  padding-left: 30px; /* space for the icon */
  margin-bottom: 10px; /* optional spacing between items */
}

/* Custom icon using your image */
.custom-icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px; /* icon size */
  height: 20px;
  background-image: url('/wp-content/uploads/2025/11/icon.png'); /* 👈 replace this */
  background-size: contain;
  background-repeat: no-repeat;
}
/*popup css */
/* === Let's Talk Popup === */
.cdm-talk-popup {
  position: fixed;
  top: 0;
  right: -700px; /* start hidden */
  width: 690px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdm-talk-popup.active {
  right: 0; /* slides in */
}

.cdm-talk-content {
  width: 100%;
  padding: 30px 20px;
  position: relative;
}

.cdm-talk-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.cdm-close-popup {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.cdm-close-popup:hover {
  color: #ff4b2b;
}
@media (max-width: 575px){
	.cdm-talk-popup{
		width: 100%;
		height: auto;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
}
.form-group {
  margin-bottom: 15px;
}

.cdm-talk-content input,
.cdm-talk-content textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cdm-talk-content input:focus,
.cdm-talk-content textarea:focus {
  border-color: #111;
  outline: none;
}
.cdm-talk-content .cdm-btn {
  width: 100%;
  margin-top: 15px;
}
.cdm-btn--outline {
  background: transparent;
  border: 2px solid #1155CC;
  color: #1155CC;
}
.cdm-btn--outline:hover {
  background: #1155CC;
  color: #fff;
}
/* Form layout grid for top inputs */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 6px 2px;
}

/* Services list compact style */
.services-group {
  margin-top: 15px;
}

.services-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.services-list.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px 5px;
}

.services-list.compact label {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: #444;
  background: #f9f9f9;
  border-radius: 6px;
  padding: 6px 10px;
  transition: 0.2s ease;
  flex-direction: column;
}

.services-list.compact label:hover {
  background: #eef4ff;
}

.services-list.compact input[type="checkbox"] {
  accent-color: var(--cdm-primary, #007bff);
  margin-right: 8px;
  transform: scale(1.05);
}
.about-section__right span {
    color: #1155CC;
}
/* SERVICE HIGHLIGHTS */
.service-highlights {
    text-align: center;
    padding: 10px 20px;
    margin: 40px 0;
}
.service-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}
.service-highlights__item {
    background: #fff;
    border: 1px solid rgba(0,200,255,0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-align: center;
}
.service-highlights__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,200,255,0.15);
}
.service-highlights__icon {
    font-size: 40px;
    color: #3CB4FF;
    margin-bottom: 15px;
}

/* RELATED SERVICES GRID */
.related-services {
    padding: 80px 20px;
}
.related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.related-services__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    transition: all .3s ease;
}
.related-services__image {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: all .4s ease;
}
.related-services__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: all .3s ease;
}
.related-services__item:hover .related-services__image {
    transform: scale(1.05);
}
.related-services__item:hover .related-services__overlay {
    background: rgba(0,0,0,0.6);
}
.related-services__overlay h4 {
    margin-bottom: 5px;
}
.related-services__btn {
    font-size: 0.9rem;
    color: #3CB4FF;
}
/* -----------------------------------------
   INSIDE OUR STRATEGIC FRAMEWORK - TIMELINE STYLE
------------------------------------------ */
.service-framework {
    position: relative;
    padding: 10px 20px;
    overflow: hidden;
}

.service-framework__header {
    text-align: center;
    margin-bottom: 30px;
}

.service-framework .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1155CC;
}

.service-framework .section-subtitle {
    color: #666;
    max-width: 720px;
    margin: 15px auto 0;
}

.service-framework__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 950px;
}

.service-framework__steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #3CB4FF, transparent);
    opacity: 0.2;
    z-index: 0;
}

.service-framework__step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 60px;
}

.service-framework__step.reverse {
    flex-direction: row-reverse;
}

.service-framework__content {
    flex: 1;
    background: #f9fbfd;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-framework__content:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 200, 255, 0.12);
}

.service-framework__content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1155CC;
}

.service-framework__content p {
    color: #666;
    line-height: 1.6;
}

.service-framework__icon-box {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3CB4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(0, 200, 255, 0.3);
}

.service-framework__icon {
    color: #fff;
    font-size: 34px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-framework__steps::before {
        left: 25px;
        transform: none;
    }

    .service-framework__step,
    .service-framework__step.reverse {
        flex-direction: row;
        align-items: flex-start;
        gap: 25px;
    }

    .service-framework__icon-box {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .service-framework__content {
        padding: 25px 20px;
    }
}
@media (max-width: 575px) {
	.service-framework__step,
    .service-framework__step.reverse {
        flex-direction: column;
        align-items: center;
	}
}
/* ---------------------------------------------
   BENEFITS + INLINE CTA OVERLAY
---------------------------------------------- */
.service-details__benefits__image-cta {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.service-details__benefits__image {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 420px;
    position: relative;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-inline-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.service-inline-cta__overlay:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
}

.service-inline-cta__inner {
    color: #fff;
    max-width: 360px;
}

.service-inline-cta__inner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.service-inline-cta__inner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}
.icon-right-arrow {color: #1155CC;}
/* Responsive Fix */
@media (max-width: 992px) {
    .service-details__benefits__image {
        min-height: 300px;
    }
    .service-inline-cta__inner h3 {
        font-size: 1.5rem;
    }
}
/* Podcast */
/* -------------------------
   CDM Podcast Studio Styles
   ------------------------- */
/* Brand tokens */
:root{
  --cdm-primary: #3CB4FF;
  --cdm-dark: #1155CC;
  --bg-faint: #f4f7fb;
  --muted: #6c7a89;
  --ghost: rgba(31,66,127,0.06);
  --glass: rgba(255,255,255,0.6);
}
/* Hero */
#studio-hero{
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  background: linear-gradient(180deg, rgba(20,176,226,0.02), transparent 40%);
}
#studio-hero .display-4{
  color: var(--cdm-dark);
  letter-spacing: -0.02em;
}
#studio-hero .lead{
  max-width: 48rem;
}

/* CTA Buttons */
.btn-cta{
  background: linear-gradient(90deg, var(--cdm-primary) 0%, var(--cdm-dark) 100%);
  color: white;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  box-shadow: 0 8px 24px rgba(20,176,226,0.14);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-cta:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20,176,226,0.18); }
.btn-outline-cta{
  color: var(--cdm-primary);
  border: 1.5px solid var(--cdm-primary);
  background: transparent;
  border-radius: 999px;
}
.btn-outline-cta:hover{ background: var(--cdm-primary); color: #fff; border-color: var(--cdm-primary); }

/* subtle ghost */
.bg-faint{ background: var(--bg-faint); }

/* hero accents */
.hero-wave{
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  background: radial-gradient(1200px 200px at 90% 0%, rgba(31,66,127,0.06), rgba(20,176,226,0.02));
  transform: translateY(14%);
  pointer-events: none;
}
.hero-radial{
  position: absolute;
  width: 380px; height: 380px;
  right: -120px; top: -60px;
  background: radial-gradient(circle at 30% 30%, rgba(20,176,226,0.18), rgba(31,66,127,0.06) 60%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Feature cards */
.feature-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
  border: 1px solid rgba(20,176,226,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover{ transform: translateY(-6px); box-shadow: 0 14px 32px rgba(31,66,127,0.06); }
.feature-card .icon{ font-size: 1.75rem; color: var(--cdm-primary); }

/* Showcase carousel captions */
.carousel-caption{ left: 8%; right: auto; bottom: 12%; text-align: left; }
.carousel-caption h5{ color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,0.45); }
.carousel-caption p{ color: rgba(255,255,255,0.9); text-shadow: 0 6px 18px rgba(0,0,0,0.25); }

/* Booking panel */
.booking-panel { background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.98)); border: 1px solid rgba(31,66,127,0.04); }
.avatar{ width:48px; height:48px; display:inline-flex; border-radius:50%; font-size:1.125rem; align-items:center; justify-content:center; }

/* Calendar placeholder */
.calendar-placeholder { color: var(--muted); opacity: .9; }
.calendar-placeholder .text-ghost{ color: rgba(31,66,127,0.06); font-size: 3.5rem; }

/* Episode card */
.episode-card{ transition: transform .22s ease, box-shadow .22s ease; position: relative; }
.episode-card:hover{ transform: translateY(-8px); box-shadow: 0 18px 40px rgba(31,66,127,0.06); }
.episode-card .overlay{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background: linear-gradient(180deg, rgba(31,66,127,0.0), rgba(31,66,127,0.35)); opacity:0; transition: opacity .18s ease; }
.episode-card:hover .overlay{ opacity:1; }
.episode-card img{ display:block; }

/* play icon styling */
.text-cta{ color: var(--cdm-primary) !important; }

/* testimonial */
blockquote{ font-size: 1.05rem; color: var(--cdm-dark); }

/* CTA footer a */
#studio-cta { background: linear-gradient(90deg, var(--cdm-primary), var(--cdm-dark)); }

/* responsive tweaks */
@media (max-width: 991px){
  #studio-hero{ padding-top: 3rem; padding-bottom: 3rem; }
  .carousel-caption{ left: 5%; right: 5%; text-align:center; }
}
.podcast-zenj-wrap {
  position: relative;
  width: 100%;
  height: 460px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 40px rgba(0,0,0,0.25);
  perspective: 1400px;
}

/* SLIDES */
.podcast-zenj-slide {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.2) translateZ(0);
  filter: brightness(0.8) blur(5px);
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(.22,.61,.36,1),
    filter 1.2s ease;
}

.podcast-zenj-slide.active {
  opacity: 1;
  transform: scale(1) translateZ(40px);
  filter: brightness(1) blur(0px);
}

/* UI */
.podcast-zenj-ui {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

/* BUTTONS */
.podcast-zenj-nav {
  pointer-events: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, box-shadow .3s;
}

.podcast-zenj-nav:hover {
  transform: scale(1.15);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 8px 20px rgba(20,176,226,0.4);
}

.podcast-zenj-caption {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  padding: 12px 30px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Cinematic mouse move FX */
.podcast-zenj-wrap:hover .podcast-zenj-slide.active {
  transition: transform .25s linear, filter .25s linear;
}
/* EPISODE CARD */
.podcast-episode-card {
  transition: .3s ease;
}

.podcast-episode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* THUMBNAIL */
.podcast-thumb-wrap {
  position: relative;
  overflow: hidden;
}

.podcast-thumb-img {
  transition: transform .8s ease, filter .6s ease;
}

.podcast-thumb-wrap:hover .podcast-thumb-img {
  transform: scale(1.08);
  filter: brightness(.7);
}

/* PLAY BUTTON */
.podcast-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: .3s ease;
  cursor: pointer;
}

.podcast-thumb-wrap:hover .podcast-play-trigger {
  transform: translate(-50%, -50%) scale(1.15);
  background: #fff;
}

/* ============ NETFLIX POPUP ============ */
.cdm-video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 99999;
}

.cdm-video-overlay.active {
  display: block;
  opacity: 1;
}

.cdm-video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  max-width: 900px;
  transform: translate(-50%, -50%) scale(.9);
  transition: .35s ease;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.cdm-video-overlay.active .cdm-video-popup {
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.cdm-video-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 50;
}

.cdm-video-frame iframe,
.cdm-video-frame video {
  width: 100%;
  height: 500px;
}
.cdm-calendar-container {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
}

.cdm-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cdm-cal-nav {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    padding: 5px 10px;
}

.cdm-calendar th {
    background: #f6f7fb;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
}

.cdm-calendar td {
    border: 1px solid #eee;
    height: 80px;
    vertical-align: top;
    padding: 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
}

.cdm-calendar td:hover {
    background: #eff5ff;
}

.cdm-day-number {
    display: inline-block;
    background: #e6edff;
    padding: 4px 8px;
    border-radius: 5px;
    color: #1155CC;
    font-weight: 600;
}

.cdm-calendar .booked {
    background: #ffecec !important;
    border-color: #ffb1b1;
}

.slot-label {
    font-size: 11px;
    margin-top: 3px;
    color: #c10000;
    font-weight: 600;
}

/* Popup */
.booking-popup {
    position: fixed;
    top: 0; left: 0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content:center;
    align-items:center;
    z-index: 9999;
}

.popup-inner {
    background: #fff;
    padding: 25px;
    width: 380px;
    border-radius: 12px;
}
.popup-close {
    float:right;
    cursor:pointer;
    font-size:20px;
}

.slot {
    padding: 10px;
    border:1px solid #ddd;
    border-radius:6px;
    margin-top:6px;
    cursor:pointer;
}
.slot:hover {
    background:#f1f7ff;
}

@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}