* {
  margin: 0%;
  padding: 0%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0%;
  overflow-x: hidden;
}

body .container {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
}

h2 {
  font-weight: 800 !important;
}

section {
  overflow-x: hidden;
}

/* Navbar tweaks */
.navbar {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 0px;
}

.navbar-brand img {
  width: 100%;
  max-width: 250px;
}

.navbar .nav-link {
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ff0202 !important; /* highlight red from design */
}
.navbar .nav-link.active {
  color: #ff0202 !important; /* highlight red from design */
  font-weight: bold;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}

.dropdown-item {
  color: black !important;
  font-size: 12px;
}

.dropdown-item:active {
  background-color: #ff0202 !important;
  color: white !important;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(./assets/images/banner-image.jpg) no-repeat center/cover;
}

.hero-section video {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  /* filter: blur(100%); */
}

.hero-section .container {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  width: 100%;
  /* height: 100%; */
  max-width: 100%;
  min-width: 260px;
  margin: auto;
  padding: 20px;
  z-index: 3;
}

/* @keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

.hero-section .event-logo {
  max-width: 700px;
  margin-top: 0px;
}

.hero-section .lead {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 15px 0px;
}

.hero-section .hero-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section .hero-highlight p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-section .btn {
  font-size: 15px;
  width: 200px;
  transition: transform 0.2s ease;
  border-radius: 0px;
  padding: 10px 15px;
}

.hero-section .sponsor {
  background-color: #ff0202;
  color: white;
}

.hero-section .btn:hover {
  transform: translateY(-3px);
}

.hero-section .assn-partner {
  width: 100%;
  border-radius: 10px;
  padding: 5px;
}

.hero-section .assn-partner img {
  width: 100%;
  max-width: 200px;
}

/* border object */

.hero-section .border-object {
  width: 250px;
  height: 250px;
  position: absolute;
  right: -1%;
  bottom: -10%;
  z-index: 100;
  overflow-x: clip;
}

.border-object span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: transparent;
}

/* Base borders (1px) */
.border-object .blue {
  border: 1px solid #0fc0ea;
  left: 0;
  top: 0;
}

.border-object .green {
  border: 1px solid #50d650;
  left: 20px;
  top: 20px;
}

.border-object .yellow {
  border: 1px solid #e5ce00;
  left: 40px;
  top: 40px;
}

.border-object .pink {
  border: 1px solid #f50ca0;
  left: 60px;
  top: 60px;
}

/* Highlight Animation Effect */
.border-object span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid currentColor; /* thicker animated border */
  box-sizing: border-box;
  clip-path: inset(0 100% 0 0); /* start hidden */
  /* animation: borderMove 10s linear infinite; */
}

.border-object .blue::before {
  color: #0fc0ea;
}

.border-object .green::before {
  color: #50d650;
  animation-delay: 0.5s;
}

.border-object .yellow::before {
  color: #e5ce00;
  animation-delay: 1s;
}

.border-object .pink::before {
  color: #f50ca0;
  animation-delay: 1.5s;
}

/* Animation to "travel" the border */
@keyframes borderMove {
  0% {
    clip-path: inset(0 100% 0 0);
  } /* hidden */
  25% {
    clip-path: inset(0 0 100% 0);
  } /* top side */
  50% {
    clip-path: inset(0 0 0 100%);
  } /* right side */
  75% {
    clip-path: inset(100% 0 0 0);
  } /* bottom side */
  100% {
    clip-path: inset(0 100% 0 0);
  } /* back to start */
}

/*  */

/* Intro Section */
.intro-section {
  background-color: #efefef;
  padding: 70px 0px;
}

.intro-section h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 900 !important;
}

.intro-section h3 span {
  font-family: "Orbitron", sans-serif;
}

.intro-section .text-primary {
  color: #0044ff !important; /* adjust to XD blue */
}

.intro-section p {
  font-size: 15px;
  max-width: 480px;
}

/* Info Blocks */
.info-blocks {
  padding: 70px 0px;
  background: url(./assets/images/Info-bg.jpg) no-repeat center/cover;
  background-color: #00000075;
  background-blend-mode: multiply;
}

.info-blocks .stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
  gap: 15px;
}

.info-blocks .stat {
  flex: 1 1 200px;
}

.info-blocks .stat h2 {
  font-size: 55px;
  font-weight: 800;
  color: white;
}

.info-blocks .red-line {
  width: 50px;
  height: 3px;
  background: red;
  margin: 10px auto;
}

.info-blocks .stat p {
  margin-top: 5px;
  color: #dcdcdc;
}

.info-blocks .info-card {
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-color: #00000089;
}

.info-blocks .info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.info-card h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-family: "Orbitron", sans-serif;
}

/* topics-section */
.topics-section {
  background-color: #efefef;
  padding: 70px 0px;
}

.topics-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.3;
}

.topics-section ul li {
  display: flex;
  align-items: center;
  font-size: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid;
}

.topics-section ul i {
  font-size: 9px;
  color: #e41f2d;
  padding-right: 10px;
}

/* leadership-labs-section starts */
.leadership-labs-section {
  padding: 80px 0px;
  background-color: #000000;
}

.leadership-labs-section h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}

.leadership-labs-section p {
  font-size: 15px;
  line-height: 28px;
  color: #cccccc;
  line-height: normal;
}

.leadership-labs-section .container .row .card {
  background-color: transparent;
  padding: 20px;
  height: 100%;
  width: 100%;
  margin: auto;
  background-color: #7a797931;
}

.leadership-labs-section .container .row .card img {
  position: relative;
  border-radius: 15px;
}

.leadership-labs-section .container .row .card div {
  position: absolute;
  top: 30%;
  bottom: 0;
  width: 80%;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  text-align: start;
  margin-bottom: 0px;
  padding: 20px 30px;
}

.leadership-labs-section .container .row .card div h5 {
  line-height: 30px;
  font-size: 22px;
  font-weight: 900;
}

.leadership-labs-section .container .row .card div p {
  font-size: 14px;
  margin-top: 10px;
  width: 90%;
  color: #e0e0e0;
  line-height: normal;
}
.leadership-labs-section .container .row .card div a {
  padding: 8px 20px;
  background-color: white;
  color: black;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

.leadership-labs-section .container .row .green:hover {
  border-bottom: 1px solid #50d650;
  transition: all 0.5s;
}

.leadership-labs-section .container .row .green h5 {
  color: #50d650;
}

.leadership-labs-section .container .row .red:hover {
  border-bottom: 1px solid #ff030b;
  transition: all 0.5s;
}

.leadership-labs-section .container .row .red h5 {
  color: #ff030b;
}

.leadership-labs-section .container .row .pink:hover {
  border-bottom: 1px solid #f50ca0;
  transition: all 0.5s;
}

.leadership-labs-section .container .row .pink h5 {
  color: #f50ca0;
}

.leadership-labs-section .container .row .purple:hover {
  border-bottom: 1px solid #a976ea;
  transition: all 0.5s;
}

.leadership-labs-section .container .row .purple h5 {
  color: #a976ea;
}

/* leadership-labs-section ends */

/* attendees-section starts */

.attendees-section {
  padding: 70px 0px;
  background-color: #000000;
}

.attendees-section .container .row {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  color: black;
}

.attendees-section .container .row h5 {
  position: relative;
  text-align: center;
}

.attendees-section .container .row h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 2px solid #e41f2d;
  width: 50%;
}

.attendees-section .container .row ul {
  list-style-type: none;
  padding-left: 0px;
  font-size: 15px;
  line-height: 35px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 600;
}

.attendees-section .container .row ul li i {
  font-size: 10px;
  color: #e41f2d;
  display: none;
}

/* attendees-section ends */

/* industry-section starts */

.industry-section {
  padding: 90px 0px;
  background: url(./assets/images/industry-bg.jpg) no-repeat center/cover fixed;
}

.industry-section .container .row .card {
  position: relative;
  height: 100%;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.industry-section .container .row .img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-section .container .row .img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.industry-section .container .row .img-box p {
  position: absolute;
  left: auto;
  right: auto;
  margin: auto;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.industry-section .container .row .text-box {
  background: #efefef;
  padding: 15px 15px 15px 50px;
  color: #333;
  font-size: 15px;
  line-height: normal;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
}

.industry-section .container .row .text-box p {
  margin: 0;
}

.industry-section .container .row .vertical {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) rotate(-90deg);
  background-image: linear-gradient(to right, #e41f2d, #5b5aff);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 10px;
  content: "FOCUS";
}

/* Add this via pseudo-element if you want auto-text */
.vertical::before {
  content: "FOCUS";
}

/* industry-section ends */

/* Attending companies */
.attending-companies {
  padding: 60px 0px;
  background: url(./assets/images/industry-bg.jpg) no-repeat center/cover fixed;
}

.attending-companies .container {
  background-color: #ffffff35;
  padding: 60px 20px;
  border-radius: 10px;
}

.owl-carousel .owl-item img {
  width: 90% !important;
  margin: auto;
}

.owl-nav {
  display: none;
}
/*  */
/* Attending companies */

/* ===== HIGHLIGHTS ===== */
.highlights-section {
  padding: clamp(56px, 6vw, 96px) 0;
  overflow: hidden;
  background-color: #ebebeb;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.highlights-section .container {
  position: relative;
  z-index: 1;
}

#hlSwiper {
  overflow: visible; /* allow active card shadow to spill */
  padding-bottom: 36px; /* room for progress bar */
}

/* Slides sizing: compact by default; JS widens the active one */
#hlSwiper .swiper-slide {
  width: clamp(620px, 72vw, 800px);
  transition: width 0.35s ease;
  display: flex;
  align-items: center;
  margin: auto;
}

/* Card base */
.highlight-card {
  width: 100%;
  height: 100%;
  min-height: 300px;
  /* border-radius: 16px; */
  padding: 40px;
  /* border: 2px solid rgba(255, 0, 51, 0.6); */
  background-color: white;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    background 0.5s ease,
    color 0.8s ease,
    border-color 0.8s ease,
    box-shadow 0.8s ease,
    transform 0.8s ease;
}

/* Title-only (side slides) */
.highlight-card[data-compact] .details {
  background-color: white;
  font-size: 15px;
}

.highlight-card[data-compact] .title {
  margin-bottom: 15px !important;
  transition: all 0.7s;
  color: #ff030b;
}

/* Active (center) */
.highlight-card[data-active] {
  min-height: 300px;
  margin: auto;
  background: #fff;
  color: #1b1f23;
  border-color: transparent;
  box-shadow: 0 5px 20px #00000022;
  transform: translateY(-6px);
}

.highlight-card[data-active] .details {
  background-color: white;
  font-size: 15px;
}

.highlight-card[data-active] .title {
  margin-bottom: 15px !important;
  transition: all 0.7s;
  color: #ff030b;
}

/* Gradient pill */
.gradient-pill {
  padding: 16px 18px;
  background-color: #070014;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* Controls */
.hl-controls {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.hl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hl-btn:hover {
  transform: translateY(-2px);
  border-color: #ff0202;
  background: rgba(255, 0, 51, 0.25);
}

/* Progress bar (Swiper progressbar type) */
.hl-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  width: min(720px, 70vw);
  height: 8px;
}

.hl-pagination .swiper-pagination-progressbar-fill {
  background: #9aa0a6; /* light gray like screenshot */
  border-radius: 8px;
}

.hl-pagination.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

/* what-next-section */

.what-next-section {
  padding: 70px 0px;
  background-color: #000;
}

/* Keep your existing .what-next-section and .what-next */
.what-next {
  position: relative;
  overflow: hidden;
}

.video-text-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: scaleIn 2s ease forwards;
}

/* video inside mask */
.mask-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* outline style applied to the reused text */
.video-text-svg .outline {
  fill: transparent; /* keep fill transparent so only video shows inside */
  /* stroke: #ffffff8b;                 */
  stroke-width: 1; /* adjust thickness to taste */
  stroke-linejoin: round;
  paint-order: stroke fill; /* draw stroke before fill (keeps stroke crisp) */
  vector-effect: non-scaling-stroke; /* keeps stroke width consistent when SVG scales */
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.video-text-svg #t1 {
  fill: white;
}

.video-text-svg text,
.video-text-svg .outline {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
}

/* scale animation */
@keyframes scaleIn {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* responsive tuning (optional) */
@media (max-width: 992px) {
  .video-text-svg text {
    font-size: 66px;
  }
  .video-text-svg .outline {
    stroke-width: 5;
  }
}
@media (max-width: 576px) {
  .what-next-section {
    padding: 30px 0px;
  }
  .video-text-svg text {
    font-size: 90px;
  }
  .video-text-svg .outline {
    stroke-width: 4;
  }
}

/* speakers section starts */
.speaker-section {
  padding: 70px 0px;
}

.speaker-section .container {
  border-radius: 10px;
}

.speaker-section h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.3;
}

.speaker-section .img-card {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  box-shadow: 1px 1px 10px 2px #0000002e;
  background-color: #e3e3e3;
}

.speaker-section .img-card.old img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.speaker-section .name-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  background-color: white;
  color: rgb(0, 0, 0);
  width: 100;
  min-height: 115px;
  box-shadow: 1px 1px 10px 2px #0000002e;
  opacity: 1;
}

.speaker-section .name-card h5 {
  color: #000000;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.speaker-section .name-card p {
  font-size: 13px;
  margin-bottom: 5px;
}

/* speakers section ends */

/* Partners / Impact Section */
.partners-impact-section {
  background: #000;
  color: #fff;
  padding: 70px 0px;
  text-align: center;
}

.partners-impact-section .features-grid {
  width: 99%;
  margin: auto;
  row-gap: 30px;
}

.partners-impact-section .feature-box {
  background: linear-gradient(135deg, #313157, #200010);
  border: 1px solid #ffffff75;
  border-radius: 10px;
  padding: 25px;
  transition: 0.3s;
}

.partners-impact-section .feature-box:hover {
  transform: translateY(-5px);
  border-color: red;
}

.partners-impact-section .feature-box h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.partners-impact-section .features-grid .pink {
  color: #f50ca0;
}

.partners-impact-section .features-grid .purple {
  color: #a976ea;
}

.partners-impact-section .features-grid .blue {
  color: #0fc0ea;
}

.partners-impact-section .features-grid .green {
  color: #50d650;
}

.partners-impact-section .feature-box p {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 0px;
}

.partners-impact-section .CTA-btn a {
  color: white;
  font-size: 15px;
  background-color: rgb(255, 2, 2) !important;
  border-radius: 0px;
  padding: 10px 15px;
}

/*  */

/* partners 2026 starts */

.partners {
  padding: 70px 0px;
  /* background-color: #F8F8F8; */
}

.partners h4 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.partners .gold-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
  /* padding: 0px 35px; */
}

.partners .gold-partners .partner-logo {
  width: 100%;
  width: 250px;
  height: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .exhibiting-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
  gap: 30px;
}

.partners .exhibiting-partners .partner-logo {
  position: relative;
  width: 240px;
  height: 130px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .media-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.partners .media-partners .partner-logo {
  position: relative;
  width: 200px;
  height: 110px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .partner-logo {
  width: 200px;
  height: 130px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* partners 2026 ends */

/* Responsive */
@media (max-width: 767px) {
  .ticket-left {
    border-right: none;
    border-bottom: 2px dashed #fff;
    padding-bottom: 20px;
  }
  .ticket-right h2 {
    font-size: 1.5rem;
  }
}

/* nomination-section */

.nomination-section {
  padding: 90px 0px;
  background-color: #000000;
}

.nomination-section .container {
  position: relative;
  padding: 40px;
}

.nomination-section .container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.nomination-section .container .content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: start;
  padding: 20px;
}

.nomination-section .container .content h3 {
  font-size: 30px;
  font-weight: 800;
  color: #50d650;
}

.nomination-section .container .content .btn-lg {
  background-color: #ff0202 !important;
  color: white;
  border-radius: 0px;
  font-size: 15px;
  padding: 10px 15px;
}

/* venue */

.venue {
  padding: 70px 0px;
}

.venue a {
  color: white;
  font-size: 16px;
  background-color: #ff0202 !important;
  border-radius: 0px;
  padding: 10px 30px;
  text-decoration: none;
}

/* ticket-section */
.ticket-section {
  padding: 90px 0px;
  background-color: #000000;
}

.ticket-section img {
  max-width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
}

/* footer */

footer {
  padding: 40px 0px;
  background-color: #000000;
  position: relative;
}

footer .border-object {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -5%;
  top: 20%;
  z-index: 10;
  overflow-x: clip;
}

footer .border-object span {
  overflow: clip;
}

footer .container {
  z-index: 100;
}

footer .container .col-lg-4 img {
  max-width: 300px;
}

footer .container .col-lg-8 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  row-gap: 25px;
}

footer .container .logo {
  max-width: 330px;
}

footer .container .reach-out {
  max-width: 350px;
  margin: auto;
  display: flex;
}

footer .container form {
  display: flex;
  row-gap: 10px;
}

footer .container form input {
  background-color: transparent;
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  width: 100%;
  padding: 5px 10px;
}

footer .container p {
  color: #c3c3c3;
}

footer .container hr {
  height: 2px;
  background-color: white;
  width: 90%;
  margin: auto;
}

footer .container form button {
  background-color: #ff0202 !important;
  color: white;
  border-radius: 0px;
  font-size: 15px;
  padding: 10px 15px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #ffffffa7;
  cursor: pointer;
  border-radius: 50%;
}

/* media Queries */

@media (max-width: 480px) {
  .navbar-brand img {
    height: 20px !important;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    right: auto;
  }

  h2 {
    font-size: 22px !important;
  }

  .hero-section {
    height: 100%;
  }

  .hero-section .lead {
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0px;
  }

  .hero-section .assn-partner img {
    width: 100%;
    max-width: 120px;
  }

  .hero-section .hero-highlight p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px !important;
  }

  .hero-section .theme {
    font-size: 16px !important;
    margin-top: 0px !important;
  }

  .hero-section .btn {
    width: auto;
    padding: 10px !important;
    font-size: 12px;
  }

  .hero-section .border-object {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -1%;
    bottom: 0%;
    z-index: 1;
    opacity: 0.5;
  }

  .intro-section h3 {
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    line-height: 40px;
  }

  .info-blocks .stat {
    flex: 0 1 140px;
  }

  .info-blocks .stat h2 {
    font-size: 40px !important;
  }

  .info-blocks .card-body {
    padding: 20px !important;
  }

  .leadership-labs-section .container .row .card {
    padding: 5px;
  }

  .leadership-labs-section .container .row .card div {
    position: static;
    width: 100%;
    padding: 20px 15px;
  }

  .leadership-labs-section .container .row .card div h5 {
    width: 100%;
    font-size: 18px;
    line-height: normal;
  }

  .leadership-labs-section .container .row .card div p {
    width: 100%;
    margin-top: 0px;
  }

  .attendees-section .container .row {
    padding: 0px !important;
  }

  .industry-section {
    padding: 70px 0px;
  }

  .highlight-card {
    width: 100% !important;
    margin: auto;
    max-width: 300px;
    padding: 15px;
  }

  .highlight-card[data-active] {
    width: 100% !important;
    margin: auto;
    max-width: 300px;
  }

  .highlight-card .title {
    font-size: 20px;
  }

  #hlSwiper {
    padding-bottom: 0px;
  }

  .gradient-pill {
    padding: 15px;
  }

  .what-next-section h1 {
    font-weight: 900;
    font-size: 30px;
  }

  .partners h4 {
    font-size: 18px;
  }

  .partners-impact-section .feature-box {
    padding: 20px;
  }

  .partners-impact-section .feature-box h5 {
    font-size: 20px;
  }

  .nomination-section .container {
    padding: 30px 20px;
  }

  .nomination-section .container .content {
    padding: 0px;
  }

  .nomination-section .container .content h3 {
    font-size: 20px;
  }

  .nomination-section .container .content p {
    font-size: 14px;
  }

  .ticket-section img {
    max-width: 100%;
  }

  footer .border-object {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -1%;
    bottom: 0%;
    z-index: 1;
    opacity: 0.3;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    right: auto;
  }

  .leadership-labs-section .container .row .card div {
    width: 100%;
    position: static;
    padding: 15px;
  }

  /* footer section */
  footer .border-object {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -1%;
    bottom: 0%;
    z-index: 1;
    opacity: 0.3;
  }
  .ticket-section img {
    max-width: 100%;
  }
}
