@media (max-width: 767px) {
    .dtc81-section {
        padding: 135px 30px 50px 30px !important;
    }
}

.dtc81-overlay {
    pointer-events: none;
}

.challenge-card img {
    transition: transform 0.4s ease-in-out;
}

.challenge-card:hover img {
    transform: scale(1.05);
}

/*Webinars css*/
.genai-wrap {
  background: radial-gradient(circle at right, #174db7 0%, #020617 55%);
  font-family: 'Inter', system-ui, sans-serif;
}

/* TOP BAR */
.genai-top-timer {
  background: #ff3b30;
  padding: 10px 20px;
  display: flex;
  margin-top: -23px;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 15px;
}
/* Mobile only */
@media (max-width: 767.98px) {
    .genai-top-timer {
        margin-top: 23px;
    }
}

/* Tablet only */
@media (min-width: 768px) and (max-width: 991.98px) {
    .genai-top-timer {
        margin-top: 0px;
    }
}
@media (max-width: 767.98px) {
    .webinarc {
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .webinarc {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        text-align: center;
    }

    .webinarc > div {
        align-items: center;
    }
}

.genai-close-btn {
  position: absolute;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
}

/* LEFT */
.genai-heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
}

.genai-desc {
  max-width: 620px;
  color: #cbd5e1;
  margin-top: 20px;
}

/* DATE CARD */
.genai-date-card {
  display: flex;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid #f59e0b;
  background: rgba(0,0,0,0.35);
  width: fit-content;
}

.genai-date-icon {
  font-size: 30px;
}

.genai-date-label {
  font-size: 13px;
  opacity: 0.85;
}

.genai-date-value {
  font-size: 13px;
  font-weight: 400;
}

/* COUNTDOWN */
/* CENTER countdown relative to form */
.genai-countdown-boxes {
  display: flex;
  justify-content: center;     /* CENTER horizontally */
  gap: 12px;
  width: 420px;               /* SAME as form width */
  margin-left: auto;          /* align with form */
  margin-right: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .genai-countdown-boxes {
    width: 100%;
    margin: 0 auto;
  }
}

.time-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  width: 70px;
  text-align: center;
  padding: 8px 0;
}

.time-box span {
  font-size: 22px;
  font-weight: 700;
  display: block;
}

.time-box small {
  font-size: 11px;
  opacity: 0.8;
}

/* ARROW */
.genai-arrow {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
}

/* FORM */
.genai-form-box {
  width: 420px;
  background: linear-gradient(180deg, #2563eb, #1e40af);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.genai-form-box label {
  font-size: 13px;
}

.genai-form-box .form-control {
  height: 46px;
  border-radius: 8px;
  border: none;
}

.genai-submit-btn {
  background: #2563eb;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  color: #fff;
}

.genai-submit-btn:hover {
  background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .genai-heading { font-size: 38px; }
  .genai-form-box { width: 100%; }
  .genai-countdown-boxes { justify-content: center; }
}


/*Webinars css end*/



.webinar-heading {
  font-size: 34px;
  font-weight: 700;
  color: #2563eb;
}

.webinar-subheading {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
}

.speaker-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border: 1px solid #eef2f7;
}

.speaker-image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.speaker-image-box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

/* FIXED OVERLAY */
.speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 14px 5px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.70),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
  color: #ffffff;

  /* IMPORTANT FIX */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.speaker-overlay h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.speaker-overlay p {
  margin: 2px 0 8px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 15px;
}

/* ICONS – BOTTOM LEFT */
.speaker-icons {
  display: flex;
  gap: 10px;
}

.speaker-icons a {
  width: 20px;
  height: 20px;
 /* background: rgba(255,255,255,0.9);*/
  color: #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.speaker-icons a:hover {
 /* background: #2563eb;*/
  color: #ffffff;
}


.speaker-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

.webinar-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.webinar-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
}

.list-title {
  font-weight: 700;
  margin-top: 22px;
}

.webinar-list {
  padding-left: 18px;
  font-size: 14px;
  color: #374151;
}

.webinar-footer {
  background: #2563eb;
  padding: 40px 0;
  color: #ffffff;
}

.webinar-footer i {
  font-size: 28px;
}

.webinar-footer p {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 500;
}

.webinar-register-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 30px;
  font-weight: 600;
}

.webinar-register-btn:hover {
  background: #ffffff;
  color: #2563eb;
}




.webinar-slider-section {
  background: #f6f9ff;
}

.webinar-heading {
  font-size: 42px;
  font-weight: 700;
  color: #2563eb;
  line-height: 1.3;
}

/* Slider */
.webinar-slider-wrapper {
  max-width: 900px;
  height: 420px;
  position: relative;
}

.webinar-slider {
  position: relative;
  height: 100%;
}

.webinar-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  opacity: 0;
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(0.85);
  transition: all 1s ease;
  z-index: 1;
}

.webinar-slide img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* Active */
.webinar-slide.active {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

/* Prev & Next */
.webinar-slide.prev {
  opacity: 0.35;
  transform: translate(-120%, -50%) scale(0.75);
}

.webinar-slide.next {
  opacity: 0.35;
  transform: translate(20%, -50%) scale(0.75);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  background: #ff0000;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 28px;
  color: #2563eb;
  cursor: pointer;
}

/* Dots */
.nav-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  background: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
  .webinar-heading {
    font-size: 30px;
  }

  .webinar-slide.prev,
  .webinar-slide.next {
    display: none;
  }

  .webinar-slide {
    width: 100%;
  }
}





.webinar-cta-section {
    min-height: 420px;
    padding: 80px 15px;
    background: radial-gradient(
        circle at top left,
        #0b0f3a 0%,
        #05073a 30%,
        #04085f 70%,
        #04006b 100%
    );
    color: #ffffff;
}

/* Main Heading */
.webinar-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 250+ Count */
.webinar-count {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
}

/* Subtitle */
.webinar-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Button */
.webinar-btn {
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 44px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.webinar-btn:hover {
    background-color: #1e4fd8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.45);
}

/* Note Text */
.webinar-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 767px) {
    .webinar-title {
        font-size: 30px;
    }

    .webinar-count {
        font-size: 36px;
    }

    .webinar-subtitle {
        font-size: 16px;
    }

    .webinar-btn {
        width: 100%;
        padding: 14px 20px;
    }
}