.hero-image img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    border: 2px solid #1D9DAE;;
    border-radius: 24px 0 0 24px;
    box-shadow: 2px 2px 32px 0px #3FD2EA3D;

    /* Gradient border fix */
    /* border-image-source: linear-gradient(90deg, #1D9DAE 0%, rgba(36, 118, 132, 0) 98%);
    border-image-slice: 1;
    border-image-repeat: stretch; */
}
.upcoming-events {
	padding: 100px 0 0;
    background: #001214;
    color: #fff;
}

.section-title {
    text-align: center;
	font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 40px;

    background: linear-gradient(
        93.06deg,
        #FFFFFF 51.13%,
        #0C4148 105.22%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Card */
.event-card {
    background: #0D3E45;
    border: 1px solid #157885;
    border-radius: 24px;
    box-shadow: 0px 4px 16px 0px #3FD2EA3D;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image */
.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

/* Badge */
.event-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #35FF75;
    color: #01272B;
    padding: 8px 16px;
    border-radius: 20px 0 24px 0;
	font-family: Inter;
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	letter-spacing: 0%;
	box-shadow: 2px 2px 8px 0px #01272B29;
}
.event-badge-workshop {
	background: #3FD2EA;
}

/* Content */
.event-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
	justify-content: space-around;
}

.event-content h3 {
    margin-bottom: 20px;
    color: #fff;
	font-family: Manrope;
	font-weight: 700;
	font-size: 24px;

}

/* Meta row */
.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Manrope;
	font-weight: 500;
	font-size: 16px;
    color: #fff;
}

/* Paragraph */
.event-content p {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
    margin-bottom: 30px;
    color: #CCF8FF;
}

/* Button */
.event-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #3FD2EA;
    color: #0C4148;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.event-btn:hover {
    background: #2cbfd7;
}

/* Responsive */
@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}
/* Section spacing */
.leadership-section {
    padding: 100px 0;
    background: #001214;
    color: #fff;
}

/* Header */
.leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.leadership-header h2 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 20px;

    background: linear-gradient(
        93.06deg,
        #FFFFFF 51.13%,
        #0C4148 105.22%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.leadership-header p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 60px;
    color: #ffffff;
}

/* Cards Layout */
.leadership-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 0 20px;
}

.lead-card {
    background: #0d3e45;
	background: url('../images/enterprise-ai-hackathons/card-light-overlay.png') no-repeat right / cover, #0d3e45;
    border: 1px solid #157885;
    box-shadow: 0px 4px 16px rgba(19, 87, 97, 0.12);
    border-radius: 12px;
    padding: 40px 25px;
	text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.lead-card-large {
    padding: 20px;
}

.card-icon {
    margin-bottom: 20px;
}
.leadership-cards-number{
	font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    background: linear-gradient(93.25deg, #FFFFFF 70%, #0C4148 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead-card h3 {
    font-size: 22px;
    font-weight: 500;
}

/* Marquee */
.logo-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 25s linear infinite;
}

.logo-marquee img {
    height: 250px;
    object-fit: contain;
	border: 1px solid #157885;
    border-radius: 24px;
    box-shadow: 0px 4px 16px 0px #3FD2EA3D;
}

.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 992px) {
    .leadership-cards {
        grid-template-columns: 1fr;
    }

    .lead-card-large {
        padding: 40px;
    }

    .leadership-header h2 {
        font-size: 32px;
    }

    .leadership-header p {
        font-size: 18px;
    }
}

.format-list {
    list-style: none;
    position: relative;
}

/* Custom gradient box before each li */
.format-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; 
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(315.95deg, #12606A 4.7%, #3FD2EA 85.45%);
}
.session-structure {
  background: #001214;
  padding: 0 20px 100px;
}

.session-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.session-heading {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  text-align: center;
  background: linear-gradient(93.06deg, #FFFFFF 51.13%, #0C4148 105.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.session-subtext {
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

/* Cards row */
.session-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.session-card {
  border: 1px solid #157885;
  border-radius: 24px;
  padding: 30px 45px;
  text-align: center;
  box-shadow: 0px 4px 16px 0px #1357611F;
  background: linear-gradient(180deg, #0E4F56 0%, #0C3F45 100%);
  background: url('../images/event/bottom-right-shadow.png') no-repeat center / cover, #0d3e45;
}

.session-card img {
  max-width: 60px;
  margin-bottom: 30px;
}

.session-card p {
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  margin: 0;
}

/* Detail card */
.session-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 1px solid #157885;
  border-radius: 24px;
  box-shadow: 0px 4px 16px 0px #1357611F;
  background: linear-gradient(180deg, #0E4F56 0%, #0C3F45 100%);
}
.session-detail-card .detail-content{
	 padding: 20px 32px;
}
.detail-content h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  margin-left: 0;
}

.detail-list li {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.detail-note {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* Image side */
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .session-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .session-heading {
    font-size: 32px;
  }

  .session-subtext {
    font-size: 18px;
  }

  .session-cards {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   Webinar Testimonials Section
================================ */
.webinar-testimonials-block{
    /* padding: 20px 0; */
    width: 100%;
    display: flex;
    flex-direction: column;
	background-color: #0D3E45;
	background-image: url("../images/event/voice-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
	
}
.webinar-testimonials {
    padding: 50px 30px;
    color: #fff;
    position: relative;
    /* max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid #157885;
    box-shadow: 0px 4px 16px 0px #1357611f; */
}

.webinar-testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.webinar-testimonials .section-heading {
    font-size: 48px;
    text-align: center;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* --- Testimonial Grid --- */
/* --- Testimonial Grid --- */
.webinar-testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    position: relative;
	padding: 0 40px;
}

.webinar-testimonials .testimonial-card {
    background: #00191c;
    border: 1px solid #0d3e45;
    /* border-image-source: linear-gradient(98.62deg, #0D3E45 -4.01%, rgba(0, 25, 28, 0.88) 134.44%);
  border-image-slice: 1; */
    box-shadow: 0px 4px 16px 0px #1357611f;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
}

/* Image-only testimonial (smaller square) */
.webinar-testimonials .testimonial-card.image-only {
    width: 150px;
    height: 190px;
    padding: 0;
    overflow: hidden;
    justify-self: center;
    align-self: center;
    z-index: 2;
}

.webinar-testimonials .testimonial-card.image-only .testimonial-img-mobile {
    display: none;
}

.webinar-testimonials .testimonial-card.image-only img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* Gradient text for testimonial */
.webinar-testimonials .testimonial-text {
    background: linear-gradient(90deg, #adf5ff 14.36%, #1fa6b8 84.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.webinar-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.webinar-testimonials .testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.webinar-testimonials .testimonial-author h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.webinar-testimonials .testimonial-author span {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #3FD2EA;
}

/* Decorative quote images */
.webinar-testimonials .quote-image {
    position: absolute;
    z-index: 0;
}

.webinar-testimonials .quote-top {
    top: -40px;
    left: -30px;
    width: 60px;
    z-index: 1;
}

.webinar-testimonials .quote-bottom {
    bottom: -40px;
    right: -30px;
    width: 60px;
    z-index: 1;
}

/* Divider Line */
.webinar-testimonials .divider-line {
    border: none;
    border-top: 1px solid #157885;
    margin: 80px 0 50px;
}

/* --- Our Promise Section --- */
.webinar-testimonials .promise-section {
    text-align: center;
}

.webinar-testimonials .promise-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.webinar-testimonials .promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.webinar-testimonials .promise-card {
    background: #15788533;
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.webinar-testimonials .promise-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.webinar-testimonials .promise-card p {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .webinar-testimonials .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .webinar-testimonials .testimonial-card.image-only {
        width: 100%;
        height: 120px;
        justify-self: center;
    }

    .webinar-testimonials .testimonial-card.image-only .testimonial-img {
        display: none;
    }

    .webinar-testimonials .testimonial-card.image-only .testimonial-img-mobile {
        display: block;
    }

    .webinar-testimonials .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make last card span both columns */
    .webinar-testimonials .promise-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .webinar-testimonials .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .webinar-testimonials .testimonial-card.image-only {
        width: 100%;
        height: 100px;
        margin: 0 auto;
    }

    .webinar-testimonials .section-heading {
        font-size: 26px;
    }
}

