.section-who-should-attend p, .section-who-should-attend ul, .section-who-should-attend li {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-color);
}

.hero-new {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: left;
  color: #fff;
}

.container-1200 > * {
  margin-bottom: 25px !important;
}
.container-1200 > *:last-child {
  margin-bottom: 0 !important;
}

.text-white {
  color: #fff;
}

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

.italic-300 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.bg-s-mnfg-s-c-2025 {
  background-color: var(--primary-color);
  background-image: url("https://iiot-world-com.b-cdn.net/wp-content/uploads/Hero-background.svg?id=31122");
}

.bg-s-mnfg-s-c-2025 p {
  font-size: 32px;
  line-height: 46px;
}

/* Benefits cards */
.benefit-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 1rem;
}

.benefit-card {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 1.75rem 2rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem 0;
  font-family: "Ubuntu", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  font-family: "Ubuntu", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #3a3a3a;
}

@media (min-width: 1200px) {
  .benefit-card {
    padding: 1.5rem 1.75rem;
  }
}

/* Section Testimonials - Speakers opinions */

.section-testimonials {
  background-color: rgba(63, 63, 63, 0.02);
}

.testimonials {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.testimonial {
  display: grid;
  justify-items: center;
  text-align: center;
  row-gap: 1rem;
}
.testimonial .quote-icon svg {
  width: 44px;
  height: auto;
}
.testimonial blockquote {
  margin: 0;
  max-width: 850px;
}
.testimonial blockquote p {
  margin: 0;
  font-family: "Ubuntu", system-ui, sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.125rem);
}
.testimonial cite {
  display: block;
  margin-top: 0.75rem;
  font-family: "Ubuntu", system-ui, sans-serif;
  font-weight: 700;
  color: var(--text-color);
  font-style: normal;
}

/* Section Trusted Companies */
.section-trusted {
  background-color: var(--secondary-color);
}

.trusted-logos {
    transition: max-height 0.5s ease;
}

.trusted {
  color: #fff;
  text-align: center;
}


.container-1200 {
     max-width: 1200px; /* Ensure parent container width */
     margin: 0 auto; /* Center the container */
     padding: 0 15px; /* Optional padding, adjust as needed */
     box-sizing: border-box; /* Include padding in width */
   }

#trustedLogos {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5-column grid */
  gap: 20px; /* Space between logos */
  margin: 0;
  padding: 0;
  width: 100%; /* Fit within parent container */
  box-sizing: border-box; /* Prevent overflow */
  overflow: hidden; /* Hide content beyond max-height */
  transition: max-height 0.5s ease-in-out; /* Smooth expansion and collapse */
  min-height: 200px; /* Ensure initial visibility */
}

   .logo-item {
      /* background: rgba(255, 255, 255, .95); */
    border-radius: 12px;
    /* padding: 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    border: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    overflow: hidden;
   }

   .logo-item a img {
  transition: transform 0.3s ease; /* smooth animation */
}
   .logo-item a img:hover{
    transform: translateY(-4px);
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, .15), 0 4px 10px rgba(230, 77, 37, .1); */
    /* background: #fff; */
   }

   /* Hide logos beyond the 10th by default */
 .logo-item:nth-child(n+11) {
  display: none;
  opacity: 0;
}

   /* Show all logos when expanded */
   #trustedLogos.expanded .logo-item {
     display: flex !important;
     opacity: 1;
   }

   #trustedLogos img {
     max-width: 120px; /* Constrain image width */
     width: 100%; /* Ensure responsiveness within grid cell */
     height: auto; /* Maintain aspect ratio */
     display: block; /* Prevent inline spacing issues */
   }

   /* Responsive adjustments */
   @media (max-width: 768px) {
     #trustedLogos {
       grid-template-columns: repeat(3, 1fr); /* 3 columns */
       gap: 15px;
     }
   }

   @media (max-width: 480px) {
     #trustedLogos {
       grid-template-columns: repeat(2, 1fr); /* 2 columns */
       gap: 10px;
     }
   }

.trusted .btn-outline {
  color: #fff;
  border-color: #fff;
}

/* Section Impact */

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.impact-card {
  background: #eee;
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  flex: 1 1 280px;
  max-width: 340px;
}

.impact-icon {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
.impact-card p {
  margin: 0;
  font-family: "Ubuntu", system-ui, sans-serif;
  line-height: 1.4;
}

@media (min-width: 600px) {
  .impact-card {
    flex-basis: 320px;
  }
}
@media (min-width: 960px) {
  .impact-card {
    flex-basis: calc(33.333% - 1rem);
  }
}

/* Section Who should attend?*/
.section-who-should-attend {
  background-color: rgba(63, 63, 63, 0.02);
}

.who-attend {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.group {
  margin-top: 1.25rem;
}
.label {
  background: rgba(63, 63, 63, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: inline-block;
  width: 100%;
}
.group ul {
  margin: 0.5rem 0 0 1.25rem;
}
.group li {
  margin: 0.25rem 0;
  font-family: "Ubuntu", sans-serif;
}
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  margin-top: 0.5rem;
}

@media (min-width: 700px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Section Speaker commitment */
.section-speaker-commitment {
  background-color: var(--secondary-color);
}
.speaker-commitment {
  color: #fff;
  text-align: center;
}

.sc-sub {
  opacity: 0.9;
  margin: 0 0 1.5rem;
}
.commit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.commit-card {
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  row-gap: 0.5rem;
}

.commit-card p {
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

@media (min-width: 700px) {
  .commit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Section Speaker Form */

/* Section FAQ*/
.section-faq .container-1200 .who-attend .group > *{
  margin-bottom: 5px;
}
.section-faq .container-1200 .who-attend .group > *:last-child{
  margin-bottom: 0px !important;
}


#testimonialsList {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

#faqList {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

/* To be moved to style.css, globlly*/
.btn-outline {
  font-family: var(--font-primary);
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 300;
  letter-spacing: -0.1px;
  line-height: 1.4;
  transition: transform 0.05s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
.btn-outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.btn-primary {
  font-family: var(--font-primary);
  display: inline-block;
  background: #e64d25;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: filter 0.2s ease, transform 0.05s ease;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 300;
  letter-spacing: -0.1px;
  line-height: 1.4;
}
.btn-primary:hover {
  background: #ef4f32;
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--btn-ring);
}

.padding-section {
  padding-block: clamp(48px, 10vh, 96px);
}

.text-primary{
  color: var(--primary-color);
}

.w-400 {
  font-weight: 400 !important;
}

.w-700 {
  font-weight: 700 !important;
}

.container-1200 {
  padding-inline: clamp(16px, 3vw, 28px);
}

/* Speaker Commitment note (matches screenshot layout) */
.section-speaker-commitment .sc-divider {
  width: 85%;
  max-width: 980px;
  margin: 40px auto 24px;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.section-speaker-commitment .speaker-note {
  color: #fff;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

.section-speaker-commitment .speaker-note p {
  margin: 6px 0;
}

.section-speaker-commitment .speaker-note a {
  color: #fff;
  text-decoration: underline;
}

.section-speaker-commitment .speaker-note p {
  margin: 6px 0;
}

.section-speaker-commitment .note-label {
  font-weight: 700;          /* “Please Note:” on the same line, bold */
}

.section-speaker-commitment .speaker-note a {
  color: #fff;
  text-decoration: underline;
}
.section-speaker-commitment .speaker-note a strong {
  font-weight: 800;          /* make the email extra bold */
}
