/* Global css */
.global-area {
    padding: 8rem 20px 5rem 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left Content */
.global-left {
  flex: 1;
  min-width: 300px;
  font-size: 16px;
  line-height: 1.7;
}

.global-left p{font-size: 1.2rem;}



/* Right Content */
.global-right {
    flex: 1;
    min-width: 320px;
    padding: 0 25px 20px 25px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.top-urgency {
    background-color: #f5f5f5;
    margin-bottom: 40px;
    padding: 2rem;
    border-radius: 30px;
}

.global-right h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0a3b76;
}

.global-right h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #083a75;
}

/* Time & Location */
.global-block {
  display: flex;
  flex-wrap: wrap;
}

.global-block-left,
.global-block-right {
  flex: 1;
  min-width: 200px;
}

.global-block h4 {
  width: 100%;
  font-size: 16px;
  color: #083a75;
}

.global-block h4 span{float: right;}

.global-block ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin: -10px 0 0 0;
}

.global-block ul li {
  padding: 5px 0;
  font-size: 15px;
  text-align: left;
}

.global-block ul li strong{float: right !important;}

/* Register Section */
.register-form-block{padding: 2rem;}
.register-form-block h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    text-align: center;
}
.register-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-box{margin-bottom: 1rem;}

.register-box level {
    display: block;
    margin-bottom: 10px;
}

.register-box input[type="text"], .register-box textarea {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.register-box textarea {
  resize: vertical;
  height: 80px;
}

.register-box input[type="submit"] {
    background-color: #2155a0;
    color: white;
    border: none;
    font-size: 18px;
    padding: 15px 0;
    cursor: pointer;
    border-radius: 9px;
    transition: background 0.3s;
    width: 100%;
}

.register-box input[type="submit"]:hover {
  background-color: #0056b3;
}

  .register-btn {
    float: left;
    width: 100%;
    margin-top: 2rem;
}
  .register-btn a {
    background-color: #0a3b75;
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
    width: 100%;
    text-decoration: none;
    float: left;
    text-align: center;
    max-width: 60%;
    min-width: 60%;
    margin: 0 20%;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .global-left,
  .global-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .global-right h2 {
    font-size: 20px;
  }

  .global-block {
    flex-direction: column;
  }

  .global-block-left,
  .global-block-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .global-area {
    padding: 20px 10px;
  }

  .register-box input[type="submit"] {
    font-size: 15px;
    padding: 10px;
  }

  .global-right h2,
  .register-form-block h2 {
    font-size: 18px;
  }

  .global-left {
    font-size: 15px;
  }
}

/* Flobal css end*/




/* Speaker */
.speakers-area {
  padding: 40px 20px;
  background-color: #ffffff;
}

.speaker-heading {
    font-size: 27px;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 600;
}

.speakers-area .container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Speaker Card */
.speaker-block {
    flex: 1 1 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    transition: transform 0.3s ease;
    border: 1px #ecebf0 solid;
    text-align: center;
}
.speaker-pic{text-align: center;]}
.speaker-block:hover {
  transform: translateY(-5px);
}

.speaker-block img {
    width: 200px;
    height: 200px;
    border-radius: 360px;
    margin-bottom: 15px;
    text-align: center;
}

.speaker-block h2 {
  font-size: 22px;
  color: #2155a0;
  margin-bottom: 5px;
}

.speaker-block span {
    font-size: 17px;
    font-weight: bold;
}

.speaker-block p {
    font-size: 15px;
    color: #555;
    margin: 15px 0 15px 0;
    height: 160px;
    overflow-y: scroll;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .speaker-block {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .speakers-area .container {
    flex-direction: column;
    gap: 20px;
  }

  .speaker-block {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .speakers-area {
    padding: 20px 10px;
  }

  .speaker-block h2 {
    font-size: 18px;
  }

  .speaker-block p {
    font-size: 14px;
  }
}

/* Speaker End */





/* Testimonials */
.testimonial-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #dcdddf;
}

    .testimonial-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .testimonial-section p.subtitle {
      color: #666;
      font-size: 16px;
      margin: 0;
    }

    .slider {
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
.testimonial-card {
    border-radius: 12px;
    padding: 20px;
    width: 450px;
    max-width: 90vw;
    position: relative;
}

    .testimonial-card img {
      width: 100%;
      border-radius: 10px;
      display: block;
    }

    .play-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }

    .testimonial-content {
      margin-top: 15px;
      text-align: left;
    }

.testimonial-content p {
    margin: 10px 0 20px 0;
    color: #18181a;
    font-size: 20px;
}

.testimonial-content span{
    color: #18181a;
    font-size: 16px;
}

.testimonial-content strong {
    display: block;
    font-weight: normal;
    margin: 0;
    color: #18181a;
}
.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s;
    color: #0a3b73 !important;
    align-content: center;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    top: 60px;
    margin-top: 175px;
}


.event-header .container {
    gap: 0 !important;
}


    .arrow:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .slider {
        flex-direction: column;
      }
    }
/* Testimonials End */




/* product */
.showcase-area {
    padding: 50px 20px;
    background: #f8f8f8;
    text-align: center;
}

.showcase-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.showcase-container p {
    font-size: 18px;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-size: cover;
    background-position: center;
    color: #fff;
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.product-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #fff;
}

.product-card span {
    margin: 0 0 10px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.product-card p {
    font-size: 16px;
    color: #f1f1f1;
}

.product-card a {
    margin-top: 10px;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.product-card a:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* product end */




.custom-reg {
    float: inherit !important;
    width: inherit !important;
    margin-top: inherit !important;
}


.hero__excerpt a{
    background-color: #70be44;
    color: #fff;
    padding: 12px 24px;
    border-radius: 90px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 18px;
}  
.hero__excerpt a:hover {
    background-color: #58a52c;
}
.hero__title span{
  display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero__title span i {
    width: 11px;
    height: 11px;
    background-color: #70c141;
    border-radius: 90px;
    float: left;
    margin: 4px 8px 0 0;
}