/* ══════════════ IMPORTS ══════════════ */
/* External stylesheets for variables and navigation */
@import url('../css/root.css');
@import url('../css/navbar.css');


/* ══════════════ VIDEO BANNER ══════════════ */
/* Main hero video container */
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Full-width responsive video */
.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay layer on top of video for readability */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}


/* ══════════════ STATS BOX ══════════════ */
/* Stats section container (overlaps banner) */
.stats-box {
  position: relative;
  top: -90px;
  z-index: 9;
  padding: 30px 20px;
  background: var(--navy-light);
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* Individual stat item */
.stat-item {
  position: relative;
  text-align: center;
}

/* Divider line between stat items */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--gradient);
}

/* Large number styling */
.stat-number {
  font: 700 40px/1.5 var(--font-display);
  letter-spacing: 1px;
}

/* Label under stat number */
.stat-label {
  margin-top: 5px;
  font: 400 13px/1.5 var(--font-display);
  letter-spacing: 3px;
  color: #cfcfcf;
}


/* ══════════════ LOGO SECTION ══════════════ */
/* Section heading for logo carousel */
.logo-section .logo-title h2 {
  font: 600 2rem/1.5 var(--font-display);
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Logo images inside slider */
.logo-section .item-slide img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: .3s ease;
}

/* Hover effect for logos */
.logo-section .item-slide img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}


/* ══════════════ ABOUT AI SECTION ══════════════ */
/* Main AI section container */
.about_ai_section {
  --section-bg: #f9f4ef;
  background-color: var(--section-bg);
  padding: 70px 20px;
}

/* Section heading */
.about_ai_section .about_ai_content h2 {
  font: 700 2.1875rem/1.5 var(--font-display);
  color: var(--black-text);
}

/* Gradient text highlight inside heading */
.about_ai_section .about_ai_content h2 span {
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
      animation: gradientMove 3s linear infinite alternate;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
/* Paragraph text styling */
.about_ai_section .main-content p {
  margin-top: 10px;
  font: 400 16px/1.75 var(--font-main);
  color: var(--black-text);
  text-align: justify;
}

/* List container */
.about_ai_section .main-content .ai-list ul {
  margin-top: 0px;
  padding: 0;
  list-style: none;
}

/* List items with icon */
.about_ai_section .main-content .ai-list ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font: 500 15px/1.75 var(--font-main);
}

/* Custom AI icon bullet */
.about_ai_section .main-content .ai-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background: url("../images/icons/ai-icon.svg") no-repeat center/contain;
}

.speakers-section{
  padding: 70px 0px;
  clear: both;
}
.speakers-section .speaker_title h4{
  font: 500 16px/1.5 var(--font-display);
  color:#7846dd;
  margin-bottom:0;
}
.speakers-section .speaker_title h2{
  font: 700 2.1875rem/1.5 var(--font-display);
  color: var(--black-text);
  text-align: left;
}
.speakers-section .speaker_title h2 span{
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
    animation: gradientMove 3s linear infinite alternate;
}
.speakers-section .view_all_speakers a  ,  .price-btn a{
    text-decoration: none;
    font: 600 16px/1.5 var(--font-display);
    background: transparent;
    color: var(--black-text);
    padding: 1rem  2rem;
    border-radius: 0px;
    border: 2px solid transparent;
      background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(270deg, #6D3BF5, #CE9A46, #ff0066, #1f65ff) border-box;
  background-size: 400% 400%;
  transition: .3s ease;
  animation: gradientMove 5s ease infinite;
}
.speakers-section .view_all_speakers a:hover i , .price-btn a:hover i{
  transform: translateX(5px);
  transition: .3s ease;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.speaker-image_wrapper {
  background-color: #eceaea;
  transition: background-color 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  padding-top: 100%;
  position: relative;
  aspect-ratio: 1 / 1.2;
  display: flex;
  overflow: hidden;
}
.speaker-v2 {
    z-index: 2;
    object-fit: cover;
    object-position: 50% 0%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    inset: auto 0% 0%;
}
.speaker-image-background {
    filter: saturate(0%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 100%;
    position: absolute;
    inset: 35% 0% 0%;
}
.speaker_list .slick-slide {
  margin: 0 10px;
  cursor: pointer;
}
.speaker_list .slick-slide .speaker-info h4{
  font:600 1.2rem/1.5 var(--font-display);
  color: var(--black-text);
  margin-bottom: 5px;
}
.speaker_list .slick-slide .speaker-info p{
  font:400 13px/1.5 var(--font-main);
  color: var(--black-text);
} 
/* ══════════════ AVATAR GROUP ══════════════ */
.avatar-group img{
      width: 4rem;
    height: 4rem;
  border:.3125rem solid #fff;
    margin-left: -1rem;
    overflow: hidden;
}
.avatar-group .avatar-count{
    background: var(--heading-gradient);
     width: 4rem;
    height: 4rem;
    border: .3125rem solid #fff;
    margin-left: -1rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 70px;
    color: var(--white-text);
      animation: gradientMove 3s linear infinite alternate;
}


/* ══════════════ TICKET PRICE SECTION ══════════════ */
.ticket-price {
  padding: 70px 0px;
  clear: both;
}
.ticket-price .ticket-title h2{
 font: 700 2.1875rem/1.5 var(--font-display);
  color: var(--black-text);
  text-align: left;
}
.ticket-price .ticket-title h2 span{
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
    animation: gradientMove 3s linear infinite alternate;
}
.ticket-price .plan-box {
    border: 1px solid #111;
    /* border-left: 6px solid #6f42c1; */
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white-text);
    transition: .3s;
    position: relative;
    gap: 1rem;
}
.ticket-price .plan-box .icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--navy-light);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.custom-bg {
      background: linear-gradient(to bottom right, #db107e, #3d58eb);
  top: 0.375rem;   /* ~ top-1.5 */
  right: 0.375rem; /* ~ right-1.5 */
  transition: all 0.3s ease;
  
}
.plan-name .early-bird{
  font: 500 15px var(--font-main);
color: var(--black-text);
}
.plan-right span{
    font: 700 1.4rem/1.5 var(--font-display);
    color: var(--black-text);
    width: 100px;
}
.detail-wrapper {
    position: relative;
    padding-right: 14px;
    padding-bottom: 14px;
        background-color: var(--white-text);
}
.detail-card {
    position: relative;
    z-index: 1;
    border-radius: 0;
    border: 1px solid var(--navy-light);
    padding: 25px 25px 25px;
    background: #fff;
}
.plan-box .plan-name .plan-title {
    font: 600 1.3rem/1.5 var(--font-display);
    color: var(--black-text);
}
.detail-card p{
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 23px;
}
.plan-box {
    position: relative;
    cursor: pointer;
}

.plan-radio {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 18px;
    height: 18px;
    accent-color: #ff0066;
    cursor: pointer;
    z-index: 1;
}
.detail-card ul {
  margin: 0;
  padding: 0;
}
.detail-card ul li{
   margin-bottom: 15px;
    font-family: var(--font-main);
    font-size: 17px;
    list-style: none;
    position: relative;
    padding-left: 40px;
}
.detail-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* REQUIRED for solid icons */
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-light);
}
.detail-wrapper h5{
  font:600 1.5rem/1.5 var(--font-display);
  margin-bottom: 10px;
}
.detail-wrapper  p{
  font-family: var(--font-main);
    font-size: 16px;
    line-height: 23px;
}
.detail-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    bottom: 0;
   background: linear-gradient(90deg, #ff0066 0%,#1f65ff 100%);
   
     transition: all 0.3s ease;
    border-radius: 0px;
    z-index: 0;
}
.key-sessions-include {
  padding: 70px 0px;
}
.key-sessions-bg {
  background: url('../images/key-sessions-bg.jpg') no-repeat center/cover;
   background-attachment: scroll;
}
.key-sessions-include .key-sessions-content h2{
  font: 700 2.1875rem/1.5 var(--font-display);
  color: var(--black-text);
  text-align: left;
}
.key-sessions-include .key-sessions-content h2 span{
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
    animation: gradientMove 3s linear infinite alternate;
}
.list-of-points ul {
  margin: 0;
  padding: 0;
}
.list-of-points ul li{
  position: relative;
  gap: 2rem;
  align-items: center;
  padding: 20px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.list-of-points ul li:hover{
  /* box-shadow: 0 10px 30px rgba(0,0,0,.2); */
  cursor: pointer;
}
/* Default borders */
.list-of-points ul li:not(:last-child){
  border-bottom: 2px solid;
  border-right: 2px solid;

  border-image: var(--heading-gradient);
  border-image-slice: 1;
}

/* 3rd aur 6th item ka right border hatao */
.list-of-points ul li:nth-child(3),
.list-of-points ul li:nth-child(6){
  border-right: none;
}

/* 7th aur 8th item ka bottom border hatao */
.list-of-points ul li:nth-child(7),
.list-of-points ul li:nth-child(8){
  border-bottom: none;
}
/* .list-of-points ul li:not(:last-child)::after{
  content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 2px;
    height: 100%;
    background: var(--gradient);
} */
.list-of-points ul li .icon-name img{
  width: 60px;
  height: 60px;
}
.list-of-points ul li .content-ai p{
  font-family: var(--font-main);
    font-size: 16px;
    line-height: 23px;
    margin: 0;
}

@media (max-width: 768px) {
  .list-of-points ul li {
    border-right: none !important;
  }

  .list-of-points ul li:not(:last-child) {
    border-bottom: 2px solid;
    border-image: var(--heading-gradient);
    border-image-slice: 1;
  }

  .list-of-points ul li:last-child {
    border-bottom: none;
  }
}