* {
  font-family: poppins, sans-serif;
  box-sizing: border-box;
  outline: none;
}

.main {
  background-image: url("../img/agentic-automation-in-manufacturing/body-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ===== Hero Section ===== */
.aam-hero-section {
  padding: 60px 0 80px;
}

/* Badge */
.aam-badge {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
  box-shadow: 0px 3.23px 2.57px 0px #0000001F;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

/* Heading */
.aam-heading {
  font-size: 48px;
  font-weight: 500;
  color: #21003F;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Subtitle */
.aam-subtitle {
  font-size: 16px;
  color: #070062;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.aam-subtitle strong {
  color: #6600C0;
  font-weight: 600;
}

/* ===== Info Bar ===== */
.aam-info-bar {
  background: #E0E7FF00;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 15px;
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.08);
}

.aam-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.aam-info-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6600C0;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 3px;
}

.aam-info-value {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #21003F;
  line-height: 1.3;
}

/* ===== Description Card ===== */
.aam-description-card {
  background: #FFFFFF08;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #6600C0;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.08);
}

.aam-description-card p {
  font-size: 18px;
  font-weight: 300;
  color: #070062;
  line-height: 1.8;
  margin-bottom: 14px;
}

.aam-description-card p:last-child {
  margin-bottom: 0;
}

/* ===== Agenda Section ===== */
.aam-agenda-section {
  padding: 20px 0 80px;
}

.aam-agenda-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #21003F;
  margin-bottom: 50px;
}

/* Timeline wrapper */
.aam-timeline {
  position: relative;
  padding: 20px 0;
}

/* Vertical center line */
.aam-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(102, 0, 192, 0.15), rgba(102, 0, 192, 0.4), rgba(102, 0, 192, 0.15));
  transform: translateX(-50%);
}

/* Timeline item */
.aam-timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  will-change: transform, opacity;
}

.aam-timeline-item:last-child {
  margin-bottom: 0;
}

.aam-timeline-item.fade-in-bottom {
  animation: aamFadeInBottom 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.aam-timeline-item.fade-in-top {
  animation: aamFadeInTop 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.aam-timeline-item.is-visible {
  opacity: 1;
}

@keyframes aamFadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aamFadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Center column with dot */
.aam-timeline-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aam-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6600C0;
  border: 3px solid #e0d4f5;
  box-shadow: 0 0 0 3px rgba(102, 0, 192, 0.15);
}

/* Timeline card */
.aam-timeline-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.aam-timeline-card:hover {
  box-shadow: 0 8px 30px rgba(106, 27, 154, 0.14);
  transform: translateY(-2px);
}

.aam-timeline-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #21003F;
  margin-bottom: 8px;
  line-height: 1.4;
}

.aam-timeline-card p {
  font-size: 14px;
  font-weight: 300;
  color: #070062;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Time badge */
.aam-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid #6600C0;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: #21003F;
  white-space: nowrap;
}

.aam-timeline-badge svg {
  color: #6600C0;
  flex-shrink: 0;
}

/* Left item alignment */
.aam-timeline-left .aam-timeline-content-col {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.aam-timeline-left .aam-timeline-badge-col {
  display: flex;
  justify-content: flex-start;
}

/* Right item alignment */
.aam-timeline-right .aam-timeline-content-col {
  text-align: left;
  display: flex;
  justify-content: flex-start;
}

.aam-timeline-right .aam-timeline-badge-col {
  display: flex;
  justify-content: flex-end;
}

.aam-timeline-left .aam-timeline-card,
.aam-timeline-right .aam-timeline-card {
  max-width: 320px;
}

.aam-timeline-left .aam-timeline-card {
  text-align: left;
}


/* ===== Speakers Section ===== */
.aam-speakers-section {
  padding: 20px 0 80px;
}

.aam-speakers-title {
  font-size: 48px;
  font-weight: 600;
  color: #21003F;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.aam-speaker-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(102, 0, 192, 0.15);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aam-speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(106, 27, 154, 0.1);
}

.aam-speaker-img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.aam-speaker-img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  object-fit: cover;
  border: 3.5px solid #6600C0;
  display: block;
}

.aam-speaker-badge {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2.5px 8px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(102, 0, 192, 0.08);
}

.aam-speaker-name {
  font-size: 18px;
  font-weight: 600;
  color: #21003F;
  margin-bottom: 6px;
}

.aam-speaker-role {
  font-size: 13px;
  font-weight: 500;
  color: #6600C0;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ===== Contact Section ===== */
.aam-contact-section {
  padding: 40px 0 80px;
}

.aam-contact-banner {
  background: #DAAFFF14;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(102, 0, 192, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.05);
}

.aam-contact-text {
  font-size: 16px;
  font-weight: 400;
  color: #52009A;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 30px;
}

.aam-contact-btn {
  display: inline-block;
  padding: 12px 42px;
  background: linear-gradient(135deg, #7c3aed, #6600C0);
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(102, 0, 192, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aam-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 0, 192, 0.35);
}

.aam-info-bar-wrapper{
  display: flex;
  align-items: center;
  gap: 20px;
}


/* ===== Footer Bar ===== */
.aam-footer-bar {
  background: #8200E8;
  color: #ffffff;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aam-footer-left {
  display: flex;
  align-items: center;
}

.aam-footer-hq-text {
  display: flex;
  align-items: center;
  gap: 3px;
}

.aam-hq-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aam-hq-val {
  font-size: 13px;
  font-weight: 500;
}

.aam-footer-cities {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.95;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 991.98px) {
  .aam-hero-section {
    padding: 40px 0 60px;
  }

  .aam-heading {
    font-size: 38px;
  }

  .aam-subtitle {
    font-size: 14px;
  }

  .aam-speakers-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .aam-speakers-section {
    padding: 40px 0 60px;
  }

  .aam-contact-section {
    padding: 30px 0 60px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .aam-hero-section {
    padding: 30px 0 50px;
  }

  .aam-heading {
    font-size: 30px;
  }

  .aam-subtitle {
    font-size: 13px;
  }

  .aam-info-bar {
    padding: 14px 16px;
  }

  .aam-info-item {
    padding: 8px 0;
  }

  .aam-info-item + .aam-info-item {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    margin-top: 4px;
    padding-top: 12px;
  }

  .aam-description-card {
    padding: 22px 20px;
  }

  .aam-description-card p {
    font-size: 13px;
  }

  /* Timeline mobile collapse to single col left-aligned */
  .aam-timeline::before {
    left: 20px;
  }

  .aam-timeline-center-col {
    position: absolute;
    left: 20px;
    transform: translateX(-50%);
    top: 25px;
    padding: 0;
    width: auto;
  }

  .aam-timeline-content-col {
    padding-left: 45px !important;
    text-align: left !important;
    display: block !important;
    width: 100%;
    order: 1 !important;
  }

  .aam-timeline-badge-col {
    padding-left: 45px !important;
    margin-top: 12px;
    margin-bottom: 24px;
    display: flex !important;
    justify-content: flex-start !important;
    width: 100%;
    order: 2 !important;
  }



  .aam-timeline-left .aam-timeline-card,
  .aam-timeline-right .aam-timeline-card {
    max-width: 100%;
    text-align: left !important;
  }

  .aam-timeline-item {
    margin-bottom: 0;
  }

  /* Speakers and Contact */
  .aam-speakers-title {
    font-size: 32px;
    text-align: center;
  }

  .aam-speaker-card {
    padding: 25px 15px;
  }

  .aam-contact-banner {
    padding: 25px 20px;
  }

  .aam-contact-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .aam-contact-btn {
    padding: 10px 30px;
    font-size: 13.5px;
  }

  /* Footer Mobile */
  .aam-footer-bar .d-flex {
    justify-content: center !important;
    flex-direction: column !important;
    text-align: center;
  }

  .aam-footer-right {
    justify-content: center;
    flex-direction: column !important;
    gap: 12px !important;
  }
}













/* Small mobile */
@media (max-width: 479.98px) {
  .aam-heading {
    font-size: 26px;
  }

  .aam-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}



