/* ══════════════ IMPORTS ══════════════ */
/* External stylesheets for variables and navigation */
@import url('../css/root.css');
@import url('../css/navbar.css');
@import url('../css/responsive.css');


.hero-section{
   width:100%;
  height:900px;
  background: url('../images/bg-image-hero.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
}
.hero-section h5 {
   font: 700 30px var(--font-main);
color: var(--white-text);
text-shadow: 2px 2px #333;
margin-top: 12px;
}

/* ══════════════ HERO CONTENT ══════════════ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .container {
  width: 100%;
}

.hero-section .row {
  width: 100%;
}

/* .hero-section .col-lg-12,
.hero-section .col-md-12,
.hero-section .col-sm-12 {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.hero-content {
  position: relative;
  z-index: 10;
 text-align: left;
  width: 100%;
 
}

.hero-content h1 {
  font: 900 5.1rem/1.2 var(--font-main);
  color: var(--white-text);
  text-align: left;
  letter-spacing: 1px;
  margin: 0;
}
.hero-content h4{
	font: 600 22px/1.5 var(--font-main);
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  
  }
  

}

/* ══════════════ 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); */
	background: rgba(0, 0, 0, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}


/* ══════════════ STATS BOX ══════════════ */
/* Stats section container (overlaps banner) */
.counter-section{
	background: var(--navy-light);
}
.stats-box {
	
	
	z-index: 9;
	padding: 30px 20px;
	background: var(--navy-light);
	border-radius: 00px;
	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;
}

/* Common heading style */
.about_ai_section .about_ai_content h2,
.speakers-section .speaker_title h2,
.ticket-price .ticket-title h2,
.key-sessions-include .key-sessions-content h2,
.why_ai .why-ai-title h2 ,
.who-should-attend .who-should-title h2 {
	font: 700 2.1875rem/1.5 var(--font-display);
	color: var(--black-text);

}

/* Common gradient span inside headings */
.about_ai_section .about_ai_content h2 span,
.speakers-section .speaker_title h2 span,
.ticket-price .ticket-title h2 span,
.key-sessions-include .key-sessions-content h2 span,
.why_ai .why-ai-title h2 span , .who-should-attend .who-should-title h2 span {
	background: var(--blue-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientMove 3s linear infinite alternate;
}

/* Gradient animation */
@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 100% 50%;
	}
}


/* ══════════════ 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: #faf7f2;
	background-color: var(--section-bg);
	padding: 70px 20px;
}

/* Section heading */

/* 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 .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: 30px;
	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;
}

.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 .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;
}
.price-wrapper {
    background: var(--heading-gradient);
    padding: 10px;
    text-align: center;
    border-radius: 100px;
    color: var(--white-text);
    margin: 20px auto;
    max-width: 250px;
    /* margin: 0 auto; */
}
.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;

}
.price-wrapper .price {
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 600;
}
.early-bird{
	position: relative;
    display: inline-block;
    background: var(--blue-primary);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 25px;
    text-decoration: none;
    line-height: 1;
}
.early-bird::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid var(--blue-primary);
}
.early-bird::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid var(--blue-primary);
}
.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;
}

.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;
}


/* why ai section */
.why_ai {
	padding: 70px 0px;
}

.gt-blur-shape {
	position: absolute;
	right: 0;
	top: -45%;
	z-index: -1;
}

.ai-content-define p {
	font: 400 16px / 1.75 var(--font-main);
	color: var(--black-text);
	text-align: justify;
	margin-bottom: 10px;
}

.register_form {
	background-color: var(--navy-light);

	width: 100%;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.register_form::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(27, 23, 76, 0.5);
	z-index: -1;
}

.track-box{
      border: 1px solid #141425;
    background-color: #141425;
    padding: 20px 30px;
    border-radius: 20px;
    color:var(--white-text);
    font-family: var(--font-main);
}

/* footer section */

.footer-bg {
  padding: 40px 0 0;
  background: #0d151e;
}

.social-icons ul {
  display: flex;
  gap: 15px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.social-icons ul li {
  list-style: none;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
}

.social-icons ul li a i {
  color: var(--white-text);
}

.text-center.linkFtr ul {
  margin: 0 0 20px;
}

.linkFtr ul li {
  list-style: none;
  display: inline-block;
  color: var(--white-text);
  font-family: var(--font-main);
  margin-right: 2px;
  margin-left: 2px;
}

.linkFtr ul li a {
  color: var(--white-text);
  font-family: var(--font-main);
  position: relative;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}

.linkFtr ul > li > a:before {
  position: absolute;
  bottom: -8px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #fff;
  content: "";
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -o-transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  transition:
    transform 1s cubic-bezier(0.2, 1, 0.3, 1),
    -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}

.linkFtr ul > li.active > a::before,
.linkFtr ul > li:hover a::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.bottom-footer {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  text-align: center;
}

.bottom-footer p {
  font-size: 15px;
  color: var(--white-text);
  font-family: var(--font-main);
  text-align: center;
  margin: 0;
}

/* event registration form css */

 .event-section{
            padding:70px 0;
			background: #f2f6ff;
        }

        .event-top-text{
            color: var(--blue-primary);
    margin-bottom: 0px;
    font: 500 16px / 1.5 var(--font-display);
        }

        .main-heading{
            font: 700 2.1875rem / 1.3 var(--font-display);
            color: #000000;
            margin-bottom:50px;
        }

        .main-heading span{
            color:var(--blue-primary);
        }

        .event-card{
            position:relative;
            overflow:hidden;
            height:270px;
            border-radius:16px;
        }

        .event-card img{
            width:100%;
            height: 100%;
            object-fit:cover;
            display:block;
        }

        .event-btn{
            position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font: 600 16px / 1.5 var(--font-display);
    transition: 0.3s;
	text-align: center;
	color: #000;
	text-decoration: none;
        }

/* ----------Who Should Attend Section Css--------- */

		.who-should-attend{
	  background: #f2f6ff;
    }

    .who-should-attend .section-title{
      text-align:center;
      font-size:52px;
      font-weight:800;
      margin-bottom:90px;
      color:#000;
      text-transform:uppercase;
    }

    .who-should-attend .attend-box{
      margin-bottom:90px;
      align-items:center;
    }

    .who-should-attend .number{
      font: 700 3.0rem / 1.5 var(--font-display);
      color:var(--blue-primary);
      margin-bottom:10px;
    }

    .who-should-attend .attend-heading{
      font: 600 1.5rem / 1.4 var(--font-display);
      color:#000000;
      margin-bottom:25px;
    }

    .who-should-attend h2{
        margin-bottom: 80px;
    }

    .who-should-attend .attend-text{
      font: 400 16px / 1.5 var(--font-main);
    line-height: 1.8;
    color: #4D4D4D;
      max-width:400px;
    }

    .who-should-attend .container{
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 5rem;
    padding: 5rem 2rem 1rem 2rem;
    }

    .content-box{
        margin-right: 80px;
    }

    .content-box-2{
         margin-left: 80px;
    }
    /* Image Design */
    .image-wrapper{
      position:relative;
      width:100%;
      max-width:480px;
      margin:auto;
      height:380px;
    }

    .side-image{
      position:absolute;
      width:150px;
      height:280px;
      object-fit:cover;
      border-radius:24px;
      top:50px;
      opacity:0.6;
      z-index:1;
    }

    .side-left{
      left:0;
    }

    .side-right{
      right:0;
    }

    .main-image{
      position:absolute;
      width:320px;
      height:380px;
      object-fit:cover;
      border-radius:26px;
      left:50%;
      transform:translateX(-50%);
      z-index:2;
      box-shadow:0 10px 30px rgba(0,0,0,0.15);
    }

	/* --------------breadcrum section css start------------- */

	.hero-bg {
   padding: 180px 0px 100px;
    background-image: url(../images/inner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-bg h2{
	font: 800 50px / 1.3 var(--font-main);
}

.td-breadcrumb-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
}
.td-breadcrumb-list ul li {
    font-family: var(--font-display);
    font-weight: 500;
    color: #fff;
    margin-right: 5px;
    list-style: none;
    color: #fff;
}

.td-breadcrumb-list ul li a{
  color: #fff;
  text-decoration: none;
}
.td-breadcrumb-list ul li.pages {
    color: #f2af7d;
}

/* --------------become a speaker form------------- */

 .become-speakers-area {
  padding: 40px 0;
  background: #e6e6e6;
}

.speakers-form .card {
  padding: 30px;
  border-radius: 5px;
  border: 0;
  box-shadow:
    0 1px 2px rgb(0 0 0 / 10%),
    0 2px 4px rgb(0 0 0 / 10%);
}

.speakers-form .card .card-body {
  padding: 0;
}

.becomespeaker-form .form-control,
.becomespeaker-form .form-select {
  border-radius: 5px;
  height: 42px;
  font-size: 15px;
  font-family: var(--font-main);
  font-weight: 500;
  color: #000000;
  border-color: #cdd8e6;
}

.becomespeaker-form .form-group {
  margin-bottom: 20px;
}

.becomespeaker-form .form-select:focus,
.form-control:focus {
  box-shadow: none;
  border-color: #cdd8e6;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.proposing h4 {
  font-size: 15px;
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}

.proposing .form-check input {
  border-color: #95979b;
  height: 16px;
  width: 16px;
  border-radius: 3px;
}

.proposing .form-check label {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  color: #000000;
}

.becomespeaker-form .text-area {
  height: 100px;
  margin: 0 0 30px;
}

.form-check-input:checked, .form-check-input:focus{
  box-shadow: none;
}

.sub-btn {
  text-decoration: none;
    font: 600 16px / 1.5 var(--font-display);
    padding: 1rem 2rem;
    border-radius: 0px;
    border: 2px solid transparent;
    background: linear-gradient(#1a4bc6, #2361ff) padding-box, linear-gradient(270deg, #ca3bf5, #CE9A46, #ff0066, #1ffff6) border-box !important;
    color: #fff !important;
    background-size: 400% 400%;
    transition: .3s ease;
    animation: gradientMove 5s ease infinite;
}


.becomespeaker-form .sub-btn:hover{
	border: 2px solid transparent;
}

/* .sub-btn:hover {
   background:  var(--blue-primary);
  border-color:  var(--blue-primary);
  color: #fff;
} */

.sub-btn i {
  margin-right: 3px;
}

.becomespeaker-form .sub-btn, .company-form .sub-btn{
	padding: 10px 30px;
}

.becomespeaker-form .form-label {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  color: #000;
  width: 100%;
}

.iti{
	display: block!important;
}

.becomespeaker-form .form-control-lg {
  min-height: auto;
}

.den-btn {
  background: #c9302c;
  border-color: #c9302c;
  margin-left: 10px;
  transition: all 0.8s ease-in-out;
}

.den-btn:hover {
  background: #c9302c;
  border-color: #c9302c;
  color: #fff;
}

.den-btn i {
  margin-right: 3px;
}

.becomespeaker-form label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-family: var(--font-display);
}

.error {
  color: #f14247 !important;
  margin-top: 5px;
}

.form_valid input.error,
.form_valid select.error,
.form_valid textarea.error {
  border-color: #f14247;
}

.becomespeaker-form .form-group input.error {
  border-color: #f14247;
}

.bg-register{
  background: linear-gradient(#1a4bc6, #2361ff) padding-box, linear-gradient(270deg, #ca3bf5, #CE9A46, #ff0066, #1ffff6) border-box !important;
  color: #fff!important;
}

/* ----------------Agenda section css---------------- */

  .agenda-heading h2 {
	font-family: var(--font-main);
	font-size: 30px;
	color: #000;
	font-weight: 800;
	margin-bottom: 10px;
	text-align: center;
	position: relative;
	margin-top: 20px
}

.agenda-heading h6 {
	text-align: center;
	font-size: 18px;
	font-family: var(--font-main);
	font-weight: 700;
	margin-bottom: 20px
}
.master-tablist .fixed{
    position: fixed;
    top: 70px;
    width: auto;
    z-index: 10;
}
#myTabNew {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.slide-down {
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.sec_step_agenda {

  scroll-margin-top: 300px; /* Adjust based on your fixed header height */
}
.td-breadcrumb-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin:0px;
    padding: 0px;
}
.td-breadcrumb-list ul li {
    font-family: var(--font-main);
    font-weight: 500;
    color: #ffffff;
    margin-right: 5px;
    list-style: none;
}
.td-breadcrumb-list ul li:hover a{
    color: #ffffff;
}
.td-breadcrumb-list ul li.pages{
    color:var(--orange)
}


.timeline__item {
	padding: 0 0 20px 40px;
	position: relative
}

.timeline__items {
	list-style: none;
	margin-left: 13em
}

.timeline__item:before {
	border-radius: 50%;
	top: .25em;
	width: 12px;
	height: 12px;
	transform: translateX(-50%) scale(0);
	z-index: 1
}

.timeline__item-in:before {
	transform: translateX(-50%) scale(1)
}

.timeline__item:after,
.timeline__item:before {
	background-color:var(--blue-primary);
	content: "";
	display: block;
	position: absolute;
	left: 0
}

.timeline__item:after {
	top: .75em;
	width: .125em;
	height: 100%;
	transform: translateX(-50%);
	background-color: #d2d2d2
}

.timeline__item-time {
	position: absolute;
	top: 0;
	right: calc(100% + 2.5rem);
	text-align: right;
	width: 17rem;
	transform: translateX(.75em);
	color: var(--color-primary);
	font-weight: 600;
	font-family: var(--font-display);
	font-size: 16px
}

.agenda-schedule-content h2 {
    font-size: 20px;
    font-family: var(--font-main);
    margin: 0 0 10px;
    line-height: 30px;
    font-weight: 800;
    color: var(--color-primary);
}

.agenda-schedule-content p {
	font-size: 16px;
	font-family: var(--font-main);
	color: var(--color-primary);
	margin-bottom: 15px;
	line-height: 25px;
	font-weight: 400
}

.agenda-schedule-content {
	border-bottom: 1px dotted #d2d2d2;
	padding-bottom: 20px
}

.timeline__items li:last-child .agenda-schedule-content {
	border-bottom: 0;
	padding-bottom: 0
}

.senior-tab-fix {
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	margin: 0 0 30px
}

.senior-tab-fix ul {
	background: #f4f5ff;
	border-radius: 0px
}

.senior-tab-fix ul li {
	font-size: 17px;
	font-weight: 600;
	font-family: var(--font-main);
	border-right: 1px solid #ddd;
	padding: 0;
	transition: all .8s ease-in-out;
	/* border-top-left-radius: 20px; */
	/* border-bottom-left-radius: 20px; */
}

.senior-tab-fix ul li a {
	color: var(--summitblack);
	transition: all .8s ease-in-out
}

.senior-tab-fix ul li a:hover {
	color: var(--blue);
	transition: all .8s ease-in-out
}

.senior-tab-fix ul li:last-child {
	border-right: 0
}

.senior-tab-fix ul .active {
	background: var(--blue-primary);
	color: #ffffff;
	transition: all .5s ease-in-out
}

.senior-tab-fix ul  li a.active {
	background: var(--blue-primary) !important;
	color: #ffffff;
        border-radius: 0;
	transition: all .8s ease-in-out
}
.senior-tab-fix ul .active a {
	color: #ffffff;
    padding: 2px 15px;
}
.senior-tab-fix ul a{
    padding: 2px 15px;
}

.senior-tab-fix ul .active a:hover {
	color: #ffffff
}

.tabs_fixed_master {
	position: sticky;
	top: 90px;
	width: 100%;
	left: 0;
	z-index: 8;
	background: #fff;
	padding: 8px 0 0
}

.agenda-schedule-content h3 {
	font-size: 18px;
	font-family: var(--font-main);
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 8px
}

.session_heading {
	margin-top: 10px
}

.session_heading h6 {
	font-size: 16px;
	font-family: var(--font-main);
	font-weight: 800;
	margin-bottom: 10px;
	margin-top: 0
}

.session_list {
	margin-bottom: 15px
}

.session_list ul {
	display: inline-flex;
	padding: 0
}

.session_list ul li {
	margin: 0 0 0;
	list-style: none
}

.session_list img {
	max-width: 60px;
	width: 60px;
	border-radius: 5%;
	height: auto;
	display: inline-block;
	cursor: pointer
}

.name-agenda {
	font-family: var(--font-main) !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	color: var(--blue) !important;
	margin-left: 15px !important;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	cursor: pointer
}

.desig-agenda {
	font-family: var(--font-main);
	font-size: 14px !important;
	color: var(--color-primary);
	font-weight: 500;
	margin-left: 15px !important;
	line-height: 20px !important;
	margin-top: 0 !important
}


.agenda-heading h2 {
	font-family: var(--font-main);
	font-size: 30px;
	color: #000;
	font-weight: 800;
	margin-bottom: 10px;
	text-align: center;
	position: relative;
	margin-top: 20px
}

.agenda-heading h6 {
	text-align: center;
	font-size: 18px;
	font-family: var(--font-main);
	font-weight: 700;
	margin-bottom: 20px
}

.schedule-content p {
	font-size: 16px;
	font-family: var(--font-main);
	color: #0000;
	margin-bottom: 20px;
	line-height: 25px;
	font-weight: 400
}

.agenda-list li {
	position: relative;
	list-style: none;
	font-size: 16px;
	font-family: var(--font-main);
	color: #0000;
	line-height: 25px;
	margin-bottom: 10px;
	font-weight: 400;
	left: -7px
}

.agenda-list li::before {
	content: '';
	background-image: url('../images/check.svg');
	background-size: contain;
	display: inline-block;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 3px;
	margin-right: 0;
	left: -24px;
	background-repeat: no-repeat
}

.schedule-item:last-child .schedule-header {
	border: 0
}
.bank_scrolltabs li{
    margin: 0px;
}

.new-master-key-box {
	text-align: center;
	padding: 30px 20px;
	border: 2px solid #4760dc;
	border-radius: 5px;
	margin: 10px 30px 30px;
	-webkit-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
	position: relative;
	z-index: 1
}

.new-master-key-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	z-index: -1;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	transition: all .8s ease-in-out
}

.new-master-key-box:hover {
	background-color: #4760dc;
	transition: all .8s ease-in-out
}

.new-master-key-icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	background: var(--blue);
	text-align: center;
	margin: 0 auto;
	transition: all .8s ease-in-out
}

.new-master-key-icon img {
	max-width: 100%;
	width: 40px;
	height: auto;
	margin: 0 auto;
	transition: all .5s ease-in-out;
	filter: invert(1);
	transform: rotateY(360deg)
}

.new-master-key-box:hover .new-master-key-icon img {
	transform: rotateY(180deg);
	transition: all .5s ease-in-out
}

.new-master-text {
	margin-top: 20px
}

.new-master-text p {
	font-size: 16px;
	font-family: var(--font-display);
	color: #0000;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
	text-align: center
}

.new-attend-box {
	position: relative
}

.new-attend-box img {
	max-width: 100%;
	z-index: 1;
	width: 64px;
	top: -10px;
	left: -20px;
	position: absolute
}

.number {
	font-size: 60px;
	color: var(--blue);
	font-family: var(--font-main);
	font-weight: 800;
	z-index: 5;
	position: relative
}

.agenda-table tbody tr td{
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 15px;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--color-primary);
    vertical-align: top;
}
.agenda-table tr th {
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
    font-family: var(--font-display);
    color: #ffffff;
    font-weight: 700;
    line-height: 21px;
    background: #111122;
}
.agenda-list li {
    position: relative;
    list-style: none;
    font-size: 15px;
    font-family:  var(--font-main);
    color: var(--color-primary);
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 450;
    left: -7px;
}
.agenda-schedule-content p {
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--black-text);
    margin-bottom: 15px;
    line-height: 34px;
    font-weight: 400;
}

.senior-tab-fix ul li a.active {
    color: var(--summitwhite);
    border-radius: 0px;
    transition: 0.8s ease-in-out;
    background: rgb(0, 172, 168) !important;
}

/* ------------------contact us form---------------------- */
.contact-us {
	padding: 50px 0px;
	scroll-margin-top: 50px;
}

.bg-contact {
	background-image: url('https://www.theasianbanker.com/summit2026/assets/images/newpage/summit-contact.webp');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: auto;
	padding: 50px 50px;
	border-radius: 0.8rem;
}

.inner-columm .sec-title .sub-title {
	font: 700 20px / 1.5 var(--font-display);
	color: #ffffff;
}

.inner-columm {
	position: relative;
	top: 0px;
}

.section-title h3::before {
	left: 0 !important;
}
.why_ai{
	background: #f7f5ef;
}
.why-ai-list li{
	border-bottom: 1px solid #215df4;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.why-ai-list li span {
	color: var(--blue-primary);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
}

.btn-bg-pink {
	padding: 13px 25px !important;
	background-color: #ffffff;
	height: auto !important;
	color: #000000;
	border-radius: 5px;
	font-family: var(--font-display);
	font-weight: 600;
}

.border-white {
	border: 1px solid #ffffff !important;
	color: #000 !important;
}

.sub-m-title {
	font: 600 48px / 1.3 var(--font-display);
	color: #ffffff;
	margin-bottom: 20px;
}

.contact-us .card {
	border-radius: 0rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	padding: 40px;
}

.contact-us .card-body h2 {
	font-family: var(--font-display);
	font-size: 25px;
	color: #000000;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: left;
	position: relative;
	margin-top: 0px;
}

.contact-us .card-body h2::before {
	background-color: #000000;
	content: "";
	height: .25rem;
	left: 0%;
	position: absolute;
	top: -10px;
	width: 3.125rem;
	text-align: center;
}

.contact-us .card-body h3 {
	font: 700 18px / 1.5 var(--font-display);
	color: #111827;
	margin-bottom: 20px;
}

.contact-us .card-body h3 a {
	color: var(--blue);
	text-decoration: underline !important;
}

.contact-info ul li i {
	font-size: 20px;
	margin-right: 6px;
	line-height: 30px;
	display: inline-block;
	text-align: center;
	color: var(--blue);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: 0.8s ease-in-out;
	float: left;
}

.contact-info ul li .whatsapp-icon {
	background-color: #25D366;
	color: #fff;
	padding: 12px;
	border-radius: 50%;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-info ul li .call_icon {
	background-color: var(--blue-primary);
	color: #fff;
	padding: 12px;
	border-radius: 50%;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-info ul li {
	font: 500 15px / 1.5 var(--font-display);
	color: #111827;
	margin-bottom: 10px;
	float: left;
	display: flex;
	align-items: center;
}

.contact-info ul li a {
	font: 500 15px / 1.5 var(--font-display);
	color: #111827;
	float: left;
	display: flex;
	align-items: center;
	text-decoration: none;
}

/* contact us form modal */

.contact-us-modal .modal-content {
	background-color: #10092f;
	border-radius: 10px;
	border: 2px solid var(--orange);
	padding: 5px;
}

.contact-form-title h2 {
	font: 700 29px/1.3 var(--font-display);
	color: #ffffff;
	margin-bottom: 30px;
}

.contact-form-box .form-group label {
	font: 500 14px / 1.5 var(--font-display);
	color: #ffffff;
	margin-bottom: 0px;
}

.contact-form-box .form-group .form-control,
.contact-form-box .form-group textarea,
.contact-form-box .form-group select {
	font: 500 14px / 1.5 var(--font-display);
	color: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 0px;
	/* padding: 10px 15px; */
	outline: none;
	transition: border-color 0.3s ease;
	height: 50px;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	background-color: transparent;
	resize: none;
}

.contact-form-box .form-group .form-control:focus,
.contact-form-box .form-group textarea:focus,
.contact-form-box .form-group select:focus {
	border-color: #fcb316;
	box-shadow: none;
}

.contact-form-box .form-group .btn-primary {
	background-color: #fcb316;
	color: #000000;
	border-color: #fcb316;
}

.contact-form-box .terms_and_conditions a {
	color: #fcb316;
}

.contact-form-box .form-check-input:checked {
	background-color: #fcb316;
	border-color: #fcb316 !important;
}

.contact-form-box .form-group select option {
	background-color: #111;
	color: #fff;
	border-color: #f5c400;
	padding-left: 10px;
}

.contact-form-box .error {
	color: #f2545b !important;
	font-size: 15px;
	display: block;
	margin-top: 5px;
	font-weight: 600;
}

.contact-form-box .error-field {
	border-bottom: 1px solid #ff4d4f !important;
}

#Contactus .btn-close {
	color: #ffffff;
	position: absolute;
	right: 20px;
	background-color: #fff;
	opacity: 1;
	width: 25px;
	height: 25px;
	border-radius: 6px;
}

.contact-form-box .form_check_label{
    font: 500 14px / 1.5 var(--font-display)!important;
    color: #fff;
    margin-bottom: 0px;

}
.contact-form-box .form_check_label a{
	color: var(--orange);
	text-decoration: none;
}
.contact-form-box .subbtn-lg {
    background-color: var(--orange);
	font-weight: 600;
    color: #000;
	border-radius: 0;
    border-color: var(--orange);
}
/* sponsors form css */
.form-foorter-text {
    padding: 10px 0 0;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}
.form-foorter-text p a {
    color: var(--blue-primary);
	text-decoration: none;
	font-weight: 500;
}

/* -----------speaker page css------------- */
.speaker-highlight-section h2{
         font: 600 2.5rem / 1.4 var(--font-display);
         color:#07074d;
         margin-bottom:20px;
      }

      .speaker-highlight-section p{
         font: 400 18px / 1.5 var(--font-display);
         color:#000;
         margin-bottom:40px;
      }

      .speaker-btn{
         background:linear-gradient(90deg,#7d3cff,#2361ff);
         color:#fff;
         padding:14px 40px;
         border-radius:50px;
         text-decoration:none;
         font-size: 16px;
    font-weight: 600;
         display:inline-block;
         transition:0.3s;
      }
	  .speaker-highlight-section{
		margin-bottom: 70px;
	  }
	  