/*==============Symposium ECES====================*/

.conference-section{
  position: relative;
  width: 100%;
  height: 520px;          /* subsection height */
  overflow: hidden;
}

.conference-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay */
.conference-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

/* IMPORTANT: use flex to stack items (no overlap) */
.conference-content{
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px;
  gap: 18px;              /* spacing between title/date/countdown */
}

.conference-title{
  margin: 0;
  color: #fff;
  /*font-weight: 800;*/
  font-size: clamp(36px, 6vw, 80px);  /* responsive size */
  line-height: 0.9;                  /* prevents text overlap */
  text-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.conference-date{
  background: #f4bc1c; /*#ff2b74;*/
  color:#101D6B; /*#fff;*/
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
}

/* countdown row */
.countdown{
  display: flex;
  gap: clamp(18px, 4vw, 60px);
  flex-wrap: wrap;
  justify-content: center;
}

.time-box{ min-width: 90px; }

.time-num{
  color: #fff;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.time-label{
  color: rgba(255,255,255,.9);
  margin-top: 6px;
  font-size: 14px;
}
    /* Subsection container (fits inside a webpage) */
    .speakers-section{
      width: min(1050px, 92%);
      margin: 40px auto;
      padding: 10px 0 30px;
    }

    .speakers-section h2{
      font-size: 34px;
      font-weight: 700;
      color:#1d2c3a;
      margin-bottom: 10px;
    }
/* the line */
.speakers-section::after{
  content: "";
  flex: 1;
  height: 2px;
  background: #d7d7d7;
}
    .speakers-section .intro{
      color:#6b7280;
      font-size: 15px;
      line-height: 1.7;
      max-width: 680px;
      margin-bottom: 18px;
    }

    .divider{
      height: 1px;
      background:#e5e7eb;
      margin: 16px 0 28px;
    }

    /* Each speaker row */
.speaker{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: center;   /* ⭐ THIS FIXES THE ALIGNMENT */
}

    /* space between speaker blocks like screenshot */
    .speaker + .speaker{
      margin-top: 34px;
    }

    .avatar-wrap{
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }

.avatar{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    /* Right content with vertical line */
/* right side */
.speaker-content{
  display: flex;
  align-items: center;   /* ⭐ aligns line with image */
  gap: 18px;
}

/* vertical line */
.vline{
  width: 3px;
  height: 80px;          /* adjust if needed */
  background:#1f3e6e;
}

    .speaker-head{
      margin-bottom: 12px;
    }

    .speaker-title{
      font-size: 18px;
      font-weight: 700;
      color:#1d2c3a;
      margin-bottom: 6px;
    }

    .speaker-subtitle{
      font-size: 13px;
      line-height: 1.6;
      color:#7b8794;
      max-width: 720px;
    }

    .speaker-bio{
      font-size: 14px;
      line-height: 1.9;
      color:#7b8794;
      max-width: 780px;
      margin-top: 6px;
    }

    /* Responsive */
    @media (max-width: 820px){
      .speaker{
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .avatar-wrap{
        justify-content: flex-start;
      }

      .speaker-content{
        gap: 14px;
      }

      .vline{
        height: 52px;
      }
    }
    .about-section{
      width: min(1150px, 92%);
      margin: 40px auto;
      padding: 10px 0;
    }
    /* Optional vertical divider */
    .about-col{
      position: relative;
    }

    .about-col.right{
      padding-left: 60px;
    }

    .about-col.right::before{
      content:"";
      position:absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background:#e6e8ee;
    }

    /*.about-grid{
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 40px;
      align-items: center;
    }*/
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal columns now */
  gap: 60px;
}

    /* LEFT illustration */
    .about-visual{
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-visual img{
      width: 100%;
      max-width: 560px;
      height: auto;
      display: block;
    }

    /* RIGHT content */
    .about-content h2{
      font-size: 30px;
      font-weight: 600;
      color:#20314b; /* dark blue like screenshot */
      margin-bottom: 12px;
    }

    .about-content .desc{
      font-size: 14px;
      line-height: 1.8;
      color:#7b8794;
      margin-bottom: 18px;
      max-width: 520px;
    }

    .bullet-list{
      list-style: none;
      margin: 10px 0 22px;
      display: grid;
      gap: 12px;
    }

    .bullet-list li{
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color:#3b4858;
      font-size: 15px;
      font-weight: 600;
    }

    /* circle icon */
    .dot{
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 2px solid #ff5a8b;
      margin-top: 2px;
      flex: 0 0 auto;
      position: relative;
    }

    /* small inner dot */
    .dot::after{
      content:"";
      position:absolute;
      inset: 4px;
      border-radius: 50%;
      background:#ff5a8b;
      opacity: .25;
    }

    /* button */
    .learn-btn{
      display: inline-block;
      padding: 14px 34px;
      background:#f4bc1c; /*#ff5a8b;*/
      color:#fff;
      font-weight: 800;
      letter-spacing: .02em;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 12px 28px rgba(255,90,139,.30);
      transition: transform .15s ease, box-shadow .15s ease;
    }

    .learn-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(255,90,139,.36);
    }

    /* Responsive */
    @media (max-width: 900px){
      .about-grid{
        grid-template-columns: 1fr;
      }
      .about-content h2{
        font-size: 32px;
      }
      .about-visual img{
        max-width: 520px;
      }
    }
    /* Subsection container */
    .agenda-section{
      /*width: min(900px, 92%);*/
      margin: 10px auto 0;
      padding: 24px 0 0;
      position: relative;
    }

    /* Top icon (simple clock) */
    .clock{
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 3px solid #2b3640;
      margin: 0 auto 10px;
      position: relative;
    }
    .clock::before{
      content:"";
      position:absolute;
      width:3px; height:18px;
      background:#2b3640;
      left:50%; top:50%;
      transform: translate(-50%,-85%);
      border-radius:2px;
    }
    .clock::after{
      content:"";
      position:absolute;
      width:16px; height:3px;
      background:#2b3640;
      left:50%; top:50%;
      transform: translate(-10%,-50%) rotate(20deg);
      border-radius:2px;
    }

    .agenda-title{
      text-align:center;
      letter-spacing: 2px;
      font-weight: 800;
      font-size: 22px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    /* horizontal line under title */
    .title-line{
      width: 430px;
      max-width: 90%;
      height: 3px;
      background:#2b3640;
      margin: 0 auto 28px;
    }

    /* Timeline wrapper */
    .timeline{
      position: relative;
      /*padding: 8px 0 10px;*/
      min-height: 520px;
    }

    /* center vertical line */
    .timeline::before{
      content:"";
      position:absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background:#2b3640;
      transform: translateX(-50%);
    }

    .roww{
      display:grid;
      grid-template-columns: 1fr 40px 1fr;
      align-items:center;
      gap: 0;
      margin: 26px 0;
    }

    .time{
      text-align: right;
      padding-right: 22px;
      font-weight: 700;
      color:#384553;
      letter-spacing: .5px;
    }

    /* right gray blocks */
    .event{
      justify-self: start;
      background:#c7cdd3;
      padding: 16px 22px;
      min-width: 280px;
      max-width: 360px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      color:#384553;
    }

.photo-strip{

  height: 300px;
  margin-top: 40px;

  /* ONE background image */
  background-image: url("../images/kihadahall.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}


/* center box */
.location-wrap{

  position: absolute;

  left: 50%;
  bottom: -60px; /* overlap effect like screenshot */

  transform: translateX(-50%);

  background: #eef3f7;

  padding: 30px 50px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

}


.location-title{

  font-size: 22px;
  font-weight: bold;

}


.location-line{

  width: 60%;
  height: 2px;
  background: #333;

  margin: 10px auto;

}


.location-address{

  font-weight: bold;

}

    /* Make it work on smaller screens */
    @media (max-width: 680px){
      .roww{
        grid-template-columns: 1fr;
        gap: 10px;
        padding-left: 10px;
      }
      .timeline::before{
        left: 10px;
        transform:none;
      }
      .time{
        text-align:left;
        padding-right:0;
        padding-left: 24px;
      }
      .event{
        min-width: unset;
        width: 100%;
        max-width: 520px;
        margin-left: 24px;
      }
      .title-line{ width: 300px; }
    }

    /* Subsection */
    .sponsors-section{
      width: min(1100px, 92%);
      margin: 50px auto;
      text-align: center;
    }

    /*.sponsors-title{
      font-size: 44px;
      font-weight: 800;
      color:#1d2c3a;
      margin-bottom: 14px;
    }*/

    .sponsors-subtitle{
      color:#7b8794;
      font-size: 18px;
      line-height: 1.7;
      max-width: 760px;
      margin: 0 auto 42px;
    }

    /* Logo grid */
    .logo-grd{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 44px 60px;
      align-items: center;
      justify-items: center;
      padding: 10px 0;
    }

    .logo-crd{
      width: 100%;
      max-width: 320px;
      min-height: 120px;
      display: grid;
      place-items: center;
      padding: 16px;
    }

    .logo-crd img{
      max-width: 100%;
      width: 180px;         /* keeps similar scale */
      height: auto;
      object-fit: contain;
      filter: none;
    }
.center-logo{
  grid-column: 1 / -1;   /* span full width */
  justify-content: center;
}

    /* Responsive */
    @media (max-width: 900px){
      .logo-grd{
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 40px;
      }
      .sponsors-title{ font-size: 36px; }
    }

    @media (max-width: 560px){
      .logo-grd{
        grid-template-columns: 1fr;
        gap: 26px;
      }
      .sponsors-title{ font-size: 30px; }
      .sponsors-subtitle{ font-size: 16px; }
    }
   .styled-paragraph{
    background-color:#e8e9eb; /*#2aa39a;*/   /* teal background */
    color: navy;                 /* navy text */
    border: 2px solid #101D6B; /*#1f4f4f;*/   /* darker teal border */
    padding: 25px 30px;
    margin: 0 auto;
    max-width: 900px;

    text-align: justify;
    text-indent: 40px;
    line-height: 1.8;
    font-size: 20px;

    box-shadow: 4px 4px 0 #0f2f2f; /* subtle depth like image */
  }