@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: var(--content-font-family, "Inter", sans-serif);
}

:root {
  --header-font-family: "Plus Jakarta Sans", sans-serif;
  --content-font-family: "Inter", sans-serif;

  --header-color: #0a0d0b;
  --primaryText: #ffffff;
  --textcolor: #000000;
  --primary: #2a73b7;
  --ternary: #54e6ff;
  --secondary: #7ac3ff;

  --button-primary: #03652b;
  --button-primary-text: #ffffff;
  --button-primary-font: "Inter", sans-serif;
  --button-primary-hover: #cbfc58;

  --button-secondary: #eba8f3;
  --button-secondary-text: #692671;
  --button-secondary-font: "Inter", sans-serif;
  --button-secondary-hover: #cbfc58;

  --hover: rgba(203, 252, 88, 0.5);
  --gradient: rgba(203, 252, 88, 0.5);
  --border: #d9d9d9;
  --paragraph: #41464c;
  --gradientPattern: linear-gradient(
    180deg,
    rgba(203, 252, 88, 0) 68.63%,
    var(--gradient) 100%
  );
}

.container-fluid {
  padding: 0px 120px;
}
ul {
  margin-bottom: 0px;
  padding-left: 0px;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--textcolor, #000000);
}

/* button */
.button {
  font-family: var(--button-primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.5px;
  padding: 8px 8px 8px 30px;
  background: var(--button-primary);
  display: flex;
  align-items: center;
  color: var(--button-primary-text);
  border-radius: 44px;
  border: 1px solid var(--button-primary);
  transition: 0.3s;
}
.button .icon {
  margin-left: 16px;
  background: var(--button-primary-text);
  padding: 15px 12px;
  border-radius: 100px;
  display: flex;
  transition: 0.3s;
}
.button.lilac {
  font-family: var(--button-secondary-font);
  background: var(--button-secondary);
  color: var(--button-secondary-text);
  border-radius: 44px;
  border: 1px solid var(--button-secondary);
  transition: 0.3s;
}

.button.lilac:hover {
  background: var(--button-secondary-hover);
  color: var(--button-secondary-text);
  border: 1px solid var(--button-secondary-hover);
}

.button.lilac .icon svg path {
  stroke: var(--button-secondary);
  transition: 0.3s;
}

.button .icon svg {
  width: 18px;
  height: 13px;
  transition: 0.3s;
}
.button .icon svg path {
  stroke: var(--button-primary);
  transition: 0.3s;
}

.button:hover {
  background: var(--button-primary-hover);
  color: var(--button-primary);
  border: 1px solid var(--button-primary-hover);
}
.button .icon svg {
  width: 18px;
  height: 13px;
}
.button:hover .icon svg path {
  stroke: var(--button-primary);
}

.button-2:hover .icon {
  background: var(--button-primary-text);
}
.button-2 {
  border: 1px solid #c9cccf;
  background: var(--button-primary-text);
  color: #0a0d0b;
}
.button-2 .icon {
  background: linear-gradient(
    180deg,
    rgba(242, 242, 242, 0.2) 0%,
    rgba(215, 215, 215, 0.2) 100%
  );
  border: 1px solid #f2f2f2;
}
.button-2 .icon svg path {
  stroke: #0a0d0b;
}
/* section space */
.padding-96 {
  padding: 96px 0px;
}

/* font */
h1 {
  font-family: var(--header-font-family, "Plus Jakarta Sans", sans-serif);
  font-size: 82px;
  font-weight: 700;
  line-height: 88.8px;
  letter-spacing: -2.5px;
  text-align: center;
  color: var(--header-color);
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: var(--paragraph);
}
.hero-paragraph {
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: var(--paragraph);
}
.section-title {
  display: block;
  font-family: var(--header-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 30.24px;
  color: var(--secondary, #692671);
  margin-bottom: 12px;
}
h2 {
  font-family: var(--header-font-family);
  font-size: 46px;
  font-weight: 700;
  line-height: 57.96px;
  color: var(--textcolor, #000000);
}
h3 {
  font-family: var(--header-font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 30.24px;
  color: #213343;
}

.logo {
  width: 227px;
}
.logo img {
  width: 100%;
}

/* hero slide */
.hero-slide {
  background: linear-gradient(180deg, #ffffff 63.12%, var(--gradient) 100%);
  padding: 158px 0px;
}
.hero-slide .hero-slide-inner {
  position: relative;
}

.date.subdate {
  padding: 8px 16px;
  border: 1px solid var(--hover, #cbfc58);
  display: inline-block;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 24px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.5px;
}
.date.subdate .icon {
  margin-right: 4px;
}
.hero-slide .hero-slide-inner p {
  margin: 24px 0px 42px 0px;
}
.hero-slide .hero-slide-inner .hero-button a {
  margin-right: 24px;
}
.hero-slide .hero-slide-inner .hero-button a:last-child {
  margin-right: 0px;
}
.hero-slide .hero-slide-inner .design-1 {
  position: absolute;
  top: -86px;
  left: 0px;
}
.hero-slide .hero-slide-inner .design-2 {
  position: absolute;
  bottom: -86px;
  right: 0px;
}

/* logo slider */
.logo-slider {
  padding: 20px 0px;
  height: 115px;
  display: flex;
  align-items: center;
}

/* about section */
.about-section h2 {
  margin-bottom: 32px;
}
.about-section p {
  margin-bottom: 20px;
}
.about-section p:last-child {
  margin-bottom: 0px;
}

/* reasons join section */
.reasons-join-section h2 {
  margin-bottom: 64px;
}
.reasons-join-section .join-box {
  background: var(--primaryText, #ffffff);
  transition: 0.3s;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  cursor: pointer;
}
.reasons-join-section .join-box:hover {
  background: #fbffe9;
}
.reasons-join-section .join-box .image-icon {
  margin-bottom: 64px;
}
.reasons-join-section .join-box h3 {
  margin-bottom: 12px;
}
.reasons-join-section .join-box p {
  margin-bottom: 0px;
}
.reasons-join-section .charge-revolution {
  background: var(--primary, #03652b);
  padding: 36px 42px 42px 42px;
  border-radius: 24px;
  margin-top: 64px;
  position: relative;
}
.reasons-join-section .charge-revolution h2 {
  color: var(--primaryText, #ffffff);
  margin-bottom: 24px;
}
.reasons-join-section .charge-revolution p {
  margin-bottom: 46px;
  color: var(--primaryText, #ffffff);
}
.reasons-join-section .charge-revolution a.button {
  margin-right: 24px;
}
.reasons-join-section .charge-revolution a.button:last-child {
  margin-right: 0px;
}
.reasons-join-section .charge-revolution .right-side-design {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
}

/* event agenda */
.event-agenda {
  background: #f5f6f9;
}
.event-agenda h2 {
  margin-bottom: 64px;
}
.event-agenda ul {
  background: var(--secondary, #692671);
  border-radius: 16px;
  padding: 8px;
  white-space: nowrap;
  overflow-x: scroll;
}
.event-agenda ul::-webkit-scrollbar {
  /* height: 4px; */
  display: none;
}
/* .event-agenda ul::-webkit-scrollbar-track {
    background: #C9CCCF; 
}
.event-agenda ul::-webkit-scrollbar-thumb {
    background: #98A2B3; 
}
.event-agenda ul::-webkit-scrollbar-thumb:hover {
    background: var(--ternary); 
} */
.event-agenda ul li .dates {
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
}
.event-agenda ul li.active .dates {
  background: var(--ternary, #eba8f3);
  padding: 12px 24px;
  border-radius: 12px;
  color: var(--secondary, #692671);
}
.event-agenda ul li .dates .day {
  font-size: 26px;
  font-weight: 700;
  line-height: 31.47px;
  color: var(--primaryText, #ffffff);
  margin-bottom: 4px;
}
.event-agenda ul li .dates .sessions {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  color: var(--primaryText, #ffffff);
}
.event-agenda ul li.active .dates .day,
.event-agenda ul li.active .dates .sessions {
  color: var(--secondary, #692671);
}

.event-agenda .search-sessions {
  margin: 24px 0px 36px 0px;
}
.event-agenda .search-sessions div {
  position: relative;
}
.event-agenda .search-sessions .search-box svg {
  position: absolute;
  top: 20px;
  left: 24px;
}
.event-agenda .search-sessions .search-input {
  padding: 21px 24px 24px 56px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  color: #57585c;
  outline: none;
  border-radius: 16px;
  border: none;
  background: var(--primaryText, #ffffff);
}
.event-agenda .search-sessions .search-input::placeholder {
  color: #a4a7b1;
}

.event-agenda .search-sessions .filter .icon-1 {
  top: 20px;
  left: 18px;
  cursor: pointer;
}
.event-agenda .search-sessions .filter .icon-2 {
  top: 19px;
  right: 18px;
  cursor: pointer;
}
.event-agenda .day-preview .date {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  color: var(--textcolor, #000000);
  margin-bottom: 36px;
}
.event-agenda .day-preview .timezone {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph, #41464c);
}

.green {
  color: var(--primaryText);
  background: var(--primary);
  padding: 6px 16px;
  border-radius: 116px;
  margin-right: 24px;
}
.event-agenda .day-preview .agenda-box {
  border-radius: 16px;
  padding: 24px;
  background: var(--primaryText, #ffffff);
  transition: 0.3s;
}
.event-agenda .day-preview .agenda-box:hover {
  background: #fbffe9;
}
.session-detials .agenda-box:hover {
  background: #ffffff !important;
}
.event-agenda .day-preview .agenda-box .date {
  margin-bottom: 8px;
  margin-top: 16px;
}
.event-agenda .day-preview .agenda-box .profile-agenda .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: var(--paragraph, #41464c);
  margin-bottom: 8px;
}
.event-agenda .day-preview .agenda-box .profile-agenda p {
  color: var(--textcolor, #000000);
}
.event-agenda .day-preview .agenda-box .profile-agenda .profile {
  margin-right: 24px;
}
.event-agenda .day-preview .agenda-box .profile-agenda .profile:last-child {
  margin-right: 0px;
}

.profile-agenda .profile .image img {
  width: 40px;
  object-fit: cover;
  height: 80px;
  border-radius: 20px;
}

/* speakers-section */
.speakers-section h2 {
  margin-bottom: 64px;
}

.linkdin:hover svg path {
  fill: #0a66c2;
}
.twitter:hover svg path {
  fill: #242e36;
}
.speakers-section .speakers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 48px 24px;
}
.speakers-section .speakers-inner .box .image {
  position: relative;
}
.speakers-section .speakers-inner .box .image img {
  border-radius: 16px;
  height: 342px;
  object-fit: cover;
}

/* Circle Style */
.speakers-section .speakers-inner .box.circle {
  justify-items: center;
}

.speakers-section .speakers-inner .box.circle .image img {
  border-radius: 50% !important;
  width: 200px !important; /* Adjust size */
  height: 200px !important;
  overflow: hidden; /* Prevents image overflow */
  object-fit: cover;
}

/* Ensure overlay follows the circle */
.speakers-section .speakers-inner .box.circle .image::before {
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  width: auto;
  overflow: hidden;
}

/* Square Style */
.speakers-section .speakers-inner .box.square .image img {
  width: 210px !important;
  height: 210px !important;
  overflow: hidden; /* Prevents image overflow */
  border-radius: 0 !important;
  object-fit: cover;
}

/* Ensure overlay follows the square */
.speakers-section .speakers-inner .box.square .image::before {
  border-radius: 0;
  aspect-ratio: 1/1;
  width: auto;
  overflow: hidden;
}

.speakers-section .speakers-inner .box .image::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: var(--gradientPattern);
  border-radius: 16px; /* Matches parent */
  transition: 0.3s;
}
.speakers-section .speakers-inner .box:hover .image::before {
  background-color: var(--hover);
}
.speakers-section .speakers-inner .box .icon {
  margin-right: 10px;
}
.speakers-section .speakers-inner .box .icon:last-child {
  margin-right: 0px;
}
.speakers-section .speakers-inner .box .speaker-name {
  margin: 24px 0px 8px 0px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  color: var(--textcolor, #000000);
}
.speakers-section .speakers-inner .box .speaker-company {
  color: var(--textcolor, #000000);
  margin-bottom: 10px;
}

.speakers-section .speakers-inner .box.circle .speaker-name {
  text-align: center;
}

.speakers-section .speakers-inner .box.circle .speaker-company {
  text-align: center;
}

.speakers-section .speakers-inner .box.circle .follow-icon {
  justify-content: center;
}

/* collaborate-section */
.collaborate-section {
  background: var(--secondary, #692671);
  position: relative;
  height: 452px;
  overflow: hidden;
}
.collaborate-section .image {
  position: absolute;
  top: 0px;
  right: -150px;
}
.collaborate-section h2 {
  margin-bottom: 24px;
  color: var(--primaryText, #ffffff);
}
.collaborate-section .counter-inner span {
  color: var(--primaryText, #ffffff);
  font-family: var(--header-font-family);
  font-size: 36px;
  font-weight: 700;
  line-height: 45.36px;
  letter-spacing: -0.004em;
}
.collaborate-section .counter-inner p {
  color: #ffffffcc;
}
.collaborate-section .counter-inner .count-button {
  margin-top: 32px;
}

/* sponsors-section */
.sponsors-section h2 {
  margin-bottom: 64px;
}

.sponsors-section .sponsor-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsors-section .premium-box {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  color: var(--textcolor, #000000);
}
.sponsors-section .premium-coloum {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #dcdddf;
}

.sponsors-section .premium-coloum:last-child {
  margin-bottom: 60px;
  padding-bottom: 0px;
  border-bottom: none;
}
.sponsors-section .main-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}

.sponsors-section .separator {
  display: none;
  width: 100%;
  height: 1px;
  background: #dcdddf;
  margin: 16px 0;
}

.sponsors-section .main-channels .box {
  background: #f4f6f9;
  height: 153px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: 0.3s;
  overflow: hidden;
}

.sponsors-section .main-channels .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sponsors-section .main-channels a:hover .box {
  background-color: #fbffe9;
}

/* Toggled Layout */
.sponsors-section.toggled .sponsor-inner {
  flex-direction: column;
  align-items: center;
}

.sponsors-section.toggled .separator {
  display: block;
}

.sponsors-section.toggled .row {
  flex-direction: column;
}

.sponsors-section.toggled .col-sm-2 {
  width: 100%;
}

.sponsors-section.toggled .col-sm-10 {
  width: 100%;
}

.sponsors-section.toggled .premium-coloum {
  border-bottom: none;
}

.sponsors-section.toggled .box {
  background: transparent;
  border-radius: 0px;
  padding: 0px;
}

/* secure-spot-section */
.secure-spot-section h2 {
  margin-bottom: 64px;
}
.secure-spot-section .box .box-inner {
  background: var(--ternary, #eba8f3);
  border-radius: 16px;
  position: relative;
}
.secure-spot-section .box .top {
  padding: 32px 20px 20px 20px;
}
.secure-spot-section .box .top .icon {
  top: -1px;
}
.secure-spot-section .box .bottom .icon {
  bottom: -1px;
}
.secure-spot-section .box .bottom {
  padding: 36px 20px 32px 20px;
}
.secure-spot-section .box .top::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22364%22%20height%3D%222%22%20viewBox%3D%220%200%20364%202%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20x1%3D%220.5%22%20y1%3D%221%22%20x2%3D%22363.5%22%20y2%3D%220.999968%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-dasharray%3D%2210%2010%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  left: 0px;
  width: 100%;
  bottom: -2px;
  height: 2px;
  z-index: 1;
}
.secure-spot-section .box .icon-design {
  margin-bottom: 15px;
}
.secure-spot-section .box .plan-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1px;
  color: #0a0d0b;
  margin-bottom: 12px;
}
.secure-spot-section .box p {
  color: var(--secondary, #692671);
  margin-bottom: 0px;
}
.secure-spot-section .box .prize {
  font-size: 32px;
  font-weight: 600;
  line-height: 44.8px;
  letter-spacing: -2px;
  color: #0a0d0b;
}
.secure-spot-section .box .rupee-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.5px;
  color: #0a0d0b;
  margin-left: 4px;
}
.secure-spot-section .box .plane-prize {
  margin-bottom: 30px;
}
.secure-spot-section .box ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.secure-spot-section .box ul li {
  list-style: disc;
  color: var(--secondary, #692671);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* faq-section */
.faq-section h2 {
  margin-bottom: 46px;
}
.faq-section .accordion h2 {
  margin-bottom: 0px;
}
.faq-section .accordion button:focus,
.accordion-button:not(.collapsed) {
  box-shadow: none;
  background: #f4f6f9;
  color: #1d1f1e;
}

.faq-section .accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12%205.7002V18.3002%22%20stroke%3D%22%231D1F1E%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M5.69922%2012H18.2992%22%20stroke%3D%22%231D1F1E%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
}
.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq-section .accordion-button {
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.005em;
  text-align: left;
  color: #1d1f1e;
  padding: 24px 32px;
  background: #f4f6f9;
  border-radius: 16px !important;
}
.faq-section .accordion-item {
  border: none;
  margin-bottom: 16px;
}
.faq-section .accordion-item:last-child {
  margin-bottom: 0px;
}

.faq-section .accordion button:focus,
.accordion-button:not(.collapsed) {
  border-radius: 16px 16px 0px 0px !important;
  /* border-bottom: 1px solid var(--primaryText); */
}
.faq-section .accordion-body {
  background: #fbffe9;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.005em;
  text-align: left;
  color: #1d1f1e;
  padding: 24px 32px;
}
.faq-section .still-question .left-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: var(--hover, #cbfc58);
  border-radius: 8px;
  margin-right: 32px;
}
.faq-section .still-question {
  margin-top: 46px;
}
.faq-section .still-question .right-box .question-headding {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #1d1f1e;
  margin-bottom: 16px;
}

/* aboutwhoweare */

.aboutwhoweare h2 {
  margin-bottom: 64px;
}
.aboutwhoweare p {
  margin-bottom: 64px;
  color: var(--textcolor);
}

.aboutwhoweare .blog-top-text {
  font-family: var(--header-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.01em;
  color: #1d1f1e;
  margin: 24px 0px;
}

/* news-section */

.news-section .title-top {
  margin-bottom: 64px;
}

.news-section .blog-top-text {
  font-family: var(--header-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.01em;
  color: #1d1f1e;
  margin: 24px 0px;
}

.news-section .date.subdate {
  margin-bottom: 0px;
}
.news-section .right .blog-top-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.01em;
  color: #1d1f1e;
  margin-bottom: 12px;
  margin-top: 0px;
}
.news-section .right .image {
  margin-right: 32px;
}
.news-section .right .news-box {
  margin-bottom: 50px;
}
.news-section .right .news-box:last-child {
  margin-bottom: 0px;
}
.small-news-box-image {
  width: 170px;
  height: 170px;
  border-radius: 20px;
  object-fit: cover;
}

.large-news-box-image {
  border-radius: 20px;
  object-fit: cover;
  width: 600px;
}

.news-image {
  border-radius: 20px;
  object-fit: cover;
}

/* gallery-section */
.gallery-section {
  background: var(--hover, #cbfc58);
  overflow: hidden;
}
.gallery-section .section-title {
  color: var(--primary, #03652b);
}
.gallery-section h2 {
  margin-bottom: 12px;
}
.gallery-section p {
  color: var(--primary, #03652b);
  margin-bottom: 46px;
}
.gallery-section .button:hover {
  border: 1px solid var(--primary, #03652b);
  background: var(--secondary, #692671);
  color: var(--primaryText, #ffffff);
}
.gallery-section .image {
  margin-bottom: 24px;
}
.gallery-section .view-gallery {
  margin-bottom: 110px;
}

.mobile-view-icon {
  border: 1px solid #c9cccf;
  padding: 8px;
  border-radius: 44px;
  margin-left: 24px;
  cursor: pointer;
}
.mobile-view-icon .icon {
  background: linear-gradient(
    180deg,
    rgba(242, 242, 242, 0.2) 0%,
    rgba(215, 215, 215, 0.2) 100%
  );
  border: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 24px;
}

/* inner page hero slide */
.inner-page-header {
  background: var(--primary, #03652b);
  padding: 94px 0px 48px 0px;
  position: relative;
}
.inner-page-header .desing {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
}
.inner-page-header h2 {
  color: var(--primaryText, #ffffff);
}

.speakers-section .search-sessions {
  margin: 24px 0px 36px 0px;
}
.speakers-section .search-sessions div {
  position: relative;
}
.speakers-section .search-sessions div svg {
  position: absolute;
  top: 20px;
  left: 24px;
}
.speakers-section .search-sessions div input {
  padding: 21px 24px 24px 56px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  color: #57585c;
  outline: none;
  border-radius: 16px;
  border: none;
  background: var(--primaryText, #ffffff);
  border: 1px solid var(--border, #d9d9d9);
}
.speakers-section .search-sessions div input::placeholder {
  color: #a4a7b1;
}
.speakers-section .search-sessions .filter select {
  padding: 21px 50px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  /* text-align: center; */
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--border, #d9d9d9);
}
.speakers-section .search-sessions .filter select::-ms-expand {
  display: none;
}
.speakers-section .search-sessions .filter .icon-1 {
  top: 20px;
  left: 18px;
  cursor: pointer;
}
.speakers-section .search-sessions .filter .icon-2 {
  top: 19px;
  right: 18px;
  cursor: pointer;
}

.speakers-section-details .speakers-inner .profile-details h2 {
  margin-bottom: 12px;
}
.speakers-section-details .speakers-inner .profile-details .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--textcolor);
  margin-bottom: 16px;
}
.speakers-section-details .speakers-inner .profile-details .subtitle span {
  color: var(--secondary);
}
.speakers-section-details .speakers-inner .profile-details .follow-icon {
  margin-bottom: 16px;
}

.speakers-section-details .speakers-inner .profile-details .session {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--primaryText, #ffffff);
  background: var(--secondary, #692671);
  margin-bottom: 16px;
}

.speakers-section .day-preview .date {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  color: var(--textcolor, #000000);
  margin-bottom: 36px;
}
.speakers-section .day-preview .asiacalcutta {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph, #41464c);
}

.green {
  color: var(--primary, #03652b);
  background: var(--hover, #cbfc58);
  padding: 6px 16px;
  border-radius: 116px;
  margin-right: 24px;
}
.speakers-section .day-preview .agenda-box {
  border-radius: 16px;
  padding: 24px;
  background: var(--primaryText, #ffffff);
  transition: 0.3s;
}
.speakers-section .day-preview .agenda-box:hover {
  background: #fbffe9;
}
.speakers-section .day-preview .agenda-box .date {
  margin-bottom: 8px;
  margin-top: 16px;
}
.speakers-section .day-preview .agenda-box .profile-agenda .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  color: var(--paragraph, #41464c);
  margin-bottom: 8px;
}
.speakers-section .day-preview .agenda-box .profile-agenda p {
  color: var(--textcolor, #000000);
}
.speakers-section .day-preview .agenda-box .profile-agenda .profile {
  margin-right: 24px;
}
.speakers-section .day-preview .agenda-box .profile-agenda .profile:last-child {
  margin-right: 0px;
}
.event-agenda-details {
  background: transparent;
}
.event-agenda-details .day-preview .date {
  font-family: Inter;
  font-size: 32px;
  font-weight: 600;
  line-height: 38.73px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--textcolor, #000000);
  margin: 12px 0px;
}

.detail-text {
  color: #692671;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 12px;
}
.event-agenda-details .tags-details ul {
  background: transparent;
  padding: 0px;
  border-radius: 0px;
}
.event-agenda-details .tags-details ul li {
  padding: 6px 16px;
  border: 1px solid var(--border, #d9d9d9);
  border-radius: 24px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: -0.5px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--textcolor, #000000);
}
.event-agenda-details .day-preview .agenda-box .top .box span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.event-agenda-details .day-preview .agenda-box .top .box strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.event-agenda-details .day-preview .agenda-box .top .box .span-2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--paragraph, #41464c);
}

.product-list-section.news-section .right .news-box {
  margin-bottom: 0px;
}

.product-list-section.news-section .right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 32px;
}
.product-list-section.news-section .right .image {
  margin-right: 0px;
  margin-bottom: 32px;
}
.product-details-section .main-section h2 {
  font-family: Plus Jakarta Sans;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1d1f1e;
  margin-top: 24px;
  margin-bottom: 0px;
}
.product-details-section .main-section .subdate {
  margin-bottom: 32px;
}

.skeleton {
  animation: skeleton-loading 1.2s ease-in-out infinite;
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-animation {
  background: linear-gradient(
    90deg,
    rgba(234, 234, 234, 0.6) 25%,
    /* Light grey */ rgba(200, 200, 200, 0.4) 50%,
    /* Medium grey for shine effect */ rgba(234, 234, 234, 0.6) 75%
      /* Light grey */
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 6px;
  color: transparent !important;
  pointer-events: none;
}

.skeleton-container {
  position: relative;
}

.skeleton-hidden {
  opacity: 0;
  visibility: hidden;
}

.skeleton-fallback {
  width: 100%;
  height: 80px;
  background: linear-gradient(
    90deg,
    rgba(234, 234, 234, 0.6) 25%,
    rgba(200, 200, 200, 0.4) 50%,
    rgba(234, 234, 234, 0.6) 75%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite linear;
}

.count-time .countdown-content {
  background: var(--primary);
  border-radius: 30px;
  padding: 80px 20px;
}
.count-time .countdown-content h2 {
  color: var(--primaryText);
  margin-bottom: 20px;
}
.count-time .countdown-content p {
  color: var(--primaryText);
}
.count-time .countdown-content ul li span {
  background: var(--hover);
  color: var(--primary);
  border-radius: 30px;
  padding: 20px 20px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-family: Plus Jakarta Sans;
  font-size: 50.15px;
  font-weight: 700;
  line-height: 63.19px;
}
.count-time .countdown-content ul li p {
  margin-top: -16px;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.78px;
  text-align: center;
}
.count-time .countdown-content ul .dots {
  font-size: 40px;
  font-weight: 700;
  color: var(--primaryText);
  margin: 0px 10px;
  line-height: 110px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .count-time .countdown-content {
    text-align: center;
    padding: 60px 20px; /* Reduce padding for better fit */
  }

  .count-time .countdown {
    display: flex;
    justify-content: center; /* Centers the countdown */
    align-items: center;
    width: 100%;
  }

  .count-time .countdown-content ul {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers list items */
    padding: 0;
  }

  .count-time .countdown-timer {
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    width: 100%;
  }

  .count-time .countdown-timer li {
    width: 80%; /* Reduce width for better fit */
    max-width: 200px; /* Prevents items from being too wide */
  }

  .count-time .countdown-content ul .dots {
    display: none; /* Hide dots on mobile */
  }
}

.location-map a.button {
  display: inline-flex;
}
.location-map iframe {
  width: 100%;
  height: 420px !important;
  border-radius: 16px !important;
}
.sponsor-section .sponsor-inner .box .image {
  position: relative;
}
.sponsor-section .sponsor-inner .box .image img {
  border-radius: 16px;
  object-fit: cover;
}
.sponsor-section .sponsor-inner .box .sponsor-name {
  margin: 24px 0px 8px 0px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  color: var(--textcolor, #000000);
}
.sponsor-section .sponsor-inner .box p {
  color: var(--textcolor, #000000);
  margin-bottom: 10px;
}

.sponsor-section-details .sponsor-inner .sponsor-details h2 {
  margin-bottom: 12px;
}

.sponsor-section-details .sponsor-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
  color: var(--secondary);
}

.sponsor-section-details .sponsor-category {
  font-size: 12px;
  font-weight: 500;
  line-height: 24.2px;
  text-align: left;
  padding: 5px 10px 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/*agenda filter*/
.filter {
  position: relative;
  display: inline-block; /* Prevents shifting */
}

/* Custom agenda-filter button */
.filter .agenda-filter-btn {
  padding: 21px 50px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  background: var(--primaryText, #ffffff);
  position: relative;
  white-space: nowrap; /* Prevents button expansion */
  display: inline-block;
}

.agenda-filter-buttons {
  padding: 21px 20px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  background: var(--primaryText, #ffffff);
  position: relative;
  white-space: nowrap; /* Prevents button expansion */
  display: inline-block;
  height: 64px;
  margin-left: 10px;
}

.filter .icon-1 {
  left: 10px;
}

.filter .icon-2 {
  right: 10px;
}

.filter .dot {
  background: var(--secondary);
  color: var(--primaryText);
  font-size: 14px;
  width: 12px;
  height: 12px;
  border-radius: 30px;
  position: absolute !important;
  top: 12px;
  right: 42px;
  display: none;
}

/* agenda-filter menu - Now correctly floating */
.agenda-filter-menu {
  text-align: left; /* Ensures content aligns properly */
  padding: 10px;
  min-width: 200px; /* Prevents shrinking */
  position: absolute !important; /* Force absolute positioning */
  top: 66px !important;
  right: 0;
  width: 90%;
  max-width: 400px;
  background: var(--primaryText, #ffffff);
  border: 1px solid #ccc;
  display: none;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px); /* Start slightly above */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When open, it appears floating */
.agenda-filter-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0); /* Slide down effect */
}

/* Group styles */
.agenda-filter-menu .group-container {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

/* Remove extra scrollbars */
.agenda-filter-menu .group-options {
  max-height: 150px;
  overflow-y: auto;
  padding-right: 5px; /* Prevents horizontal scroll */
  align-items: flex-start; /* Ensures labels align to the left */
}

/* Search box inside each group */
.agenda-filter-menu .group-search {
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

/* Styling for checkboxes */
.agenda-filter-menu label {
  display: block;
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
}

.agenda-filter-menu input[type="checkbox"] {
  margin-right: 5px;
  cursor: pointer;
}

.event-agenda .search-box {
  margin-bottom: 10px;
}

.event-agenda .group-container .group-title-container {
  display: flex;
  justify-content: space-between;
}

.event-agenda .group-container .group-title-container .group-clear-btn {
  color: var(--primary, #000000);
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  outline: none;
  border: none;
  text-decoration: underline;
  display: none;
}

.event-agenda .group-container .search-box {
  border-color: #a4a7b1;
  border-width: 1px;
  border-style: solid;
  padding: 8px 15px 8px 40px;
  border-radius: 16px;
  line-height: 21.78px;
  margin: 5px 5px;
}

.event-agenda .group-container svg {
  position: absolute;
  top: 11px !important;
  left: 12px !important;
  color: #a4a7b1;
}

.event-agenda .group-container .filter-search-input {
  font-size: 14px !important;
  font-weight: 500;
  color: #a4a7b1;
  outline: none;
  border: none;
  background: var(--white, #ffffff);
  padding: 0 !important;
}

.event-agenda .group-container .filter-search-input::placeholder {
  color: #a4a7b1;
}

.event-agenda .group-container .group-title {
  color: var(--secondary, #000000);
  font-size: 16px;
  font-weight: 500;
}

.event-agenda .group-container .more-btn {
  color: var(--primary, #000000);
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  outline: none;
  border: none;
  margin-top: 10px;
}

.event-agenda .group-container .group-option {
  padding: 0px;
  height: 16px;
  width: 16px;
  border: 1px solid #d9d9d9;
  background-color: var(--primaryText, #ffffff);
  border-radius: 4px;
  position: relative;
  accent-color: var(--primary, #ffffff);
}

.event-agenda .agenda-filter-btn .apply-filters {
  color: var(--primaryText, #000000);
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  outline: none;
  border: none;
}

.event-agenda .filter-action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.event-agenda .filter-action-buttons .apply-btn {
  background: var(--primary, #ffffff);
  color: var(--primaryText, #000000);
  font-size: 14px;
  outline: none;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  opacity: 0.6;
  pointer-events: none;
}

.event-agenda .filter-action-buttons .clear-btn {
  background: var(--secondary, #ffffff);
  color: var(--primaryText, #000000);
  font-size: 14px;
  outline: none;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .agenda-filter-menu {
    position: fixed;
    top: 60px;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 350px;
    max-height: 80vh; /* Prevents overflow on small screens */
    overflow-y: auto;
  }

  .agenda-filter-menu .group-options {
    max-height: 50vh; /* Adjust dropdown scroll for mobile */
  }

  .agenda-filter-menu .apply-btn,
  .agenda-filter-menu .clear-btn {
    padding: 14px; /* Easier tap area */
    font-size: 18px;
  }
}

.schedule-calendar {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  border: 1px solid #ccc;
  align-items: stretch; /* Ensures all cells stretch to match the tallest cell */
}

.schedule-calendar td {
  vertical-align: top;
}

.schedule-calendar tr,
td {
  border: 1px dashed var(--border);
}

.schedule-calendar .track-name {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-right: 1px solid #ddd;
  writing-mode: vertical-rl; /* Vertical text from bottom to top */
  text-orientation: mixed;
  white-space: nowrap; /* Prevents text from wrapping */
  background: var(--primary, #000000);
  color: var(--primaryText, #ffffff);
  transform: rotate(180deg);
  padding: 20px 0px;
  position: sticky;
  left: 0;
  z-index: 2;
}

.schedule-calendar td.session-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: stretch;
}

.schedule-calendar .track-time {
  width: 150px;
  border-left: 1px solid var(--border);
  text-align: center;
  padding: 10px 0;
  color: var(--secondary);
}

.schedule-calendar .profile .image img {
  width: 30px;
  object-fit: cover;
  height: 40px;
  border-radius: 20px;
}

.schedule-calendar .session-title {
  font-size: 12px;
}

.schedule-calendar .session-time {
  font-size: 10px;
  text-transform: uppercase;
}

.schedule-calendar .speaker-name {
  font-size: 11px;
}

.schedule-calendar .speaker-company {
  font-size: 10px;
}

.schedule-calendar .session-location {
  font-size: 10px;
  margin: 4px 0;
}

.schedule-calendar .session {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-calendar .session-details {
  font-size: 12px;
}

.schedule-calendar .profiles-container {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

