#header .header-btn-collapse-nav {
  background: #fff !important;
  color: #000 !important;
  font-size: 25px;
  border: 1px solid #000 !important;
}
#kingcards {
  list-style: none;
  display: grid;
  margin-right: 20px;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--kingcards-height));
  gap: var(--kingcards-margin);
  padding-bottom: calc(var(--numcards) * var(--kingcards-top-offset));
  margin-bottom: var(--card-margin);
}

#kingcards-1 {
  --index: 1;
}

#kingcards-2 {
  --index: 2;
}

#kingcards-3 {
  --index: 3;
}

#kingcards-4 {
  --index: 4;
}
.kingcards {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--kingcards-top-offset));
}

.kingcards-content {
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
  background: #fffaf2;
  color: #131212;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-areas: "text img";
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  padding: 0px;
}

.kingcards-content > figure {
  grid-area: img;
  overflow: hidden;
}

.kingcards-content > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.4em;
}

/* Animation */
@supports (animation-timeline: works) {
  @scroll-timeline kingcards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets: selector(#kingcards) start 1, selector(#kingcards) start 0;
    start: selector(#kingcards) start 1;
    end: selector(#kingcards) start 0;
    time-range: 4s;
  }

  .kingcards {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .kingcards__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: kingcards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}

.banner-text {
  font-size: 48px;
  letter-spacing: 0.4px;
  line-height: 50px;
  font-weight: bold;
}
.banner-size {
  height: 500px;
}
.section-bg {
  background: url("img/fecilities/fgbg2.png") left top / cover no-repeat;
  padding: 80px 0;
}

.container-margin-bottom {
  margin-bottom: 80px;
}

.container-padding-y {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.title-main {
  font-size: 40px;
  letter-spacing: 0.4px;
  font-weight: 700;
  color: #000000;
}

.text-main {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  color: #000000;
  line-height: 22px;
}

.title-section {
  font-size: 27px;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: #000000;
}

.text-section {
  
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #000000;
}
.list-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.list-column {
  width: 48%;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .list-container {
    display: block;
  }

  .list-column {
    margin-bottom: 20px;
  }

  .list-column ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }

  .list-column:first-child ul {
    margin-right: 9px;
  }
}
.row-margin-top {
  margin-top: 150px;
}

.row-margin-top-large {
  margin-top: 100px;
}

.row-padding-bottom-large {
  padding-bottom: 40px;
}

.img-padding {
  padding: 30px;
}

.text-padding-left {
  padding-left: 30px;
}

.title-conference {
  letter-spacing: 0.1px;
  font-size: 38px;
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
}

.text-conference {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: left;
  line-height: 22px;
}

.headeres-style {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  padding-top: 15px;
}

.seater-text {
  color: #000000;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
}

.title-ready {
  font-size: 40px;
  letter-spacing: 0.2px;
  line-height: 46px;
  font-weight: 600;
}

.text-ready {
  color: #000000;
  font-size: 20px;
  letter-spacing: 0.2px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 10px;
}

.btn-email {
  font-size: 1.3em;
  border-radius: 50px;
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.custom-style {
    border-radius: 0px !important;
    border-color: #000;
    padding: 8px 7px;
  }
}
/* Hide desktop header on mobile */
@media (max-width: 767px) {
  #header {
    display: none !important;
  }
}

/* Show desktop header on larger screens */
@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}

.mobile-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .logo img {
  height: 50px;
}

.mobile-nav .hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav .nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav .nav-menu.active {
  display: block;
}

.mobile-nav .nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav .nav-menu li {
  margin-bottom: 15px;
}

.mobile-nav .nav-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: rgba(0, 0, 0, 1);
  padding: 10px;
  transition: background 0.3s ease;
}

.mobile-nav .nav-menu a:hover {
  background: #fff;
}

.mobile-nav .nav-menu .dropdown-menu {
  position: static;
  border-left: none;
  border-radius: 0 !important;
  border-right: none;
  border-top: 1px solid rgba(215, 215, 215, 1);
  border-bottom: 1px solid rgba(215, 215, 215, 1);

  box-shadow: none;
  padding: 10px 10px;
  background: #fff;
}

.mobile-nav .nav-menu .dropdown-menu a {
  font-size: 20px;
  padding: 15px 0px;
}

.mobile-nav .book-events {
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.mob-list li {
  display: flex !important;
}
.mob-list .list-column {
  width: 48%;
}

.fs-big {
  font-size: 4.625em !important;
}
.fs-large {
  font-size: 5.875em;
}
.fs-medium {
  font-size: 2.5em !important;
}

#mobile-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.mobile-card {
  border-radius: 8px;
}

.mobile-card.show {
  opacity: 1;
  transform: translateY(0);
}

.mobile-card.hidden {
  opacity: 0;
  transform: translateY(50px);
}

.card__contents {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  /* margin-bottom: 39px; */
  padding: 1rem;
}

/*.text-section {
  text-align: center;
  margin-bottom: 1rem;
}*/

.know-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.know-more:hover {
  text-decoration: underline;
}
.p-b-10 {
  padding-bottom: 11rem !important;
}
.it-head {
  font-size: 4em;
  letter-spacing: 0.2px;
  color: #474747;
}

.latest-heading {
  font-size: 4em;
  letter-spacing: 0.2px;
  color: #474747;
}

/* View all link */
.view-all-link {
  font-weight: 600;
  color: #000000;
  font-size: 1.3em;
}

/* Card images */
.card-image {
  background-size: cover;
  background-position: center;
  height: 300px; /* adjust as needed */
}

.img-01 {
  background-image: url("img/home/Image 01.jpg");
}

.img-02 {
  background-image: url("img/home/Image 02.jpg");
}

.img-03 {
  background-image: url("img/home/Image 03.jpg");
}

/* Category tag */
.category-tag {
  font-size: 0.75em;
  letter-spacing: 0.8px;
}

/* Card date */
.card-date {
  font-family: "Roboto", sans-serif;
  font-size: 0.75em;
  color: #7b7b7b;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Title card */
.title-card {
  font-size: 2em;
  color: #474747;
  letter-spacing: 0.2px;
  font-weight: 800;
}

/* Description */
.card-description {
  font-size: 1.3em;
  color: #474747;
  letter-spacing: 0.2px;
  font-weight: 400;
}

/* Utility class for small text */
.small-text {
  font-size: 0.75em;
}
.career-banner {
  font-size: 73px;
  line-height: 85px;
  animation-delay: 100ms;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0px 100px;
}
@media (min-width: 768px) {
  #mobile-cards {
    display: none;
  }
}

.mobile-only {
  display: none;
}
.logo-box.active .arrow-down {
  display: none;
}
.logo-box .arrow-down {
  display: none;
}

.arrow-down::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #fff; /* White color */
  z-index: 1;
  /* box-shadow: 0px 4px 24px 4px rgba(0, 0, 0, 0.15); */
}

.arrow-down::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #f9f9f9; /* Slightly off-white background to enhance shadow */
  /* box-shadow: 0px 4px 24px 4px rgba(0, 0, 0, 0.15); */
  z-index: 0;
}

@media (max-width: 767px) {
  .mob-list ul {
    display: flex;
    flex-direction: column;
  }
  .list-column li {
    position: relative;
    padding-left: 9px;
    margin-bottom: 12px;
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
  }
  .mob-list li {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-right: 0px;
  }
  .banner-size {
    height: 700px;
  }
  #header .container {
    background: #fff;
    width: 100%;
  }
  .header-logo img {
    width: 45px;
    height: 35px;
  }
  .mobile-nav .nav-menu {
    box-shadow: inset 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  }
  .mobile-nav .nav-menu a {
    font-size: 24px;
    font-weight: 400;
  }
  .mobile-nav .dropdown-toggle::after {
    display: none !important;
  }
  .m-main h2 {
    padding-top: 80px;
  }
  .line-height-2 {
    text-align: left !important;
    font-size: 40px !important;
  }
  .m-home-slider h1 {
    font-size: 40px;
  }
  .thanks-details .thanks {
    padding-top: 40px !important;
  }
  .thanks-details {
    padding:20px !important;
    display: flex;
    flex-direction: column-reverse !important;
  }
  .card-title {
    font-size: 2em;
    letter-spacing: 0.6px;
    font-weight: 700;
  }
  .single-paragraph {
    font-size: 1.8em;
    color: #000000;
  }
  .enlarged-image {
    max-width: 115%;
  }

  .mobile-card .text-section {
    text-align: left !important;
  }
  .teal-gradient {
    min-height: 310vh !important;
  }
  .fs-large {
    font-size: 40px !important;
  }
  .fs-medium {
    font-size: 1.5em !important    ;
  }
  .fs-medium .mb-5 {
    margin-bottom: 0rem !important;
  }
  .p-b-10 {
    padding-bottom: 5rem !important;
  }
  /* Assuming existing classes like .know-more might need styling, add if needed */
  .know-more {
    font-weight: bold;
    font-size: 40px;
    padding-top: 15px;
    line-height: 49px;
  }
  .fs-big {
    font-size: 2.5em !important;
  }
  .mobile-only {
    display: block;
  }
  .general-container {
    display: none;
  }
  .mobile-container .content {
    margin-bottom: 1rem;
  }
  .mobile-container .card-image {
    height: 200px;
    border-radius: 8px;
  }
  .mobile-container .title-card {
    font-size: 1.5em !important;
  }
  .mobile-container .card-description {
    font-size: 1em !important;
  }
  .it-head {
    font-size: 2.3em !important;
  }
  .overlay-content {
    z-index: 2;
    top: 42px !important;
    position: absolute !important;
    background: none;
    color: #ffffff;
    left: 6% !important;
    padding: 45px 26px !important;
    font-size: 7px !important;
    border-radius: 12px;
    text-align: left;
    line-height: 42px !important;
  }
  .g-lg-5 {
    flex-direction: column-reverse;
    display: flex;
  }
  .order-lg-1 {
    margin-bottom: 75px;
    margin-top: 10px !important;
  }
  .career-banner {
    font-size: 40px;
    text-align: left !important;
    line-height: 52px;
    animation-delay: 100ms;
    padding: 0px 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
  }
  .career-heading {
    font-size: 0.8em !important;
  }
  .job-card h4 {
    font-size: 1.2rem !important;
  }
  .about-banner .line-height-2,
  .about-banner p {
    text-align: center !important;
  }
  .about-banner {
    margin-top: 50px;
  }
  .timeline-backbone {
    left: 10px !important;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    grid-template-areas: "year tl-content" "year tl-image";
  }

  .timeline-item::after,
  .timeline-item::before {
    left: -14px !important;
  }
  .timeline-item:nth-child(even) .year {
    justify-self: center;
    transform: rotate(270deg) translateX(calc(var(--year-gap) + 80px)) !important;
  }
  .timeline-item:nth-child(even) .tl-content {
    grid-area: tl-content;
    text-align: left;
    justify-self: end;
    margin-left: 120px;
  }
  .time-item {
    /* font-size: 3em !important;
    top: 91% !important;
    left: -11% !important; */
    font-size: 2em !important;
    top: 490% !important;
    left: -25% !important;
  }
  .timeline-item {
    margin-bottom: 4rem !important;
  }
  .time-item1 {
    font-size: 2em !important;
    top: 247% !important;
    left: -25% !important;
  }
  .tl-update {
    margin: 0 !important;
    padding-left: 40px !important ;
  }
  .timeline-item:nth-child(odd) .year {
    grid-area: year;
    justify-self: center;
    transform: rotate(270deg) translateX(calc(var(--year-gap) + 80px)) !important;
    /* transform: rotate(270deg) translateX(calc(-1 * (var(--year-gap) + 80px))) !important; */
  }
  .timeline-item::before,
  .timeline-item::after {
    content: none !important;
    display: none !important;
  }
  .m-enablers .row h2 {
    text-align: left !important;
  }
  .m-enabler blockquote h2 {
    font-size: 20px !important;
    line-height: 37px !important;
    padding: 65px 11px;
  }
  .m-enabler-button {
    text-align: center;
  }
  .m-enabler-content {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .m-enabler-content button {
    width: 100% !important;
  }
  .counter label {
    padding: 0px 22%;
  }
  .r-d-container h4,
  .r-d-container h2 {
    text-align: left !important;
  }
  .r-d-container h2 {
    line-height: 55px !important;
  }
  .m-tabs {
    display: flex;
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
  }
  .r-d-image {
    width: 295px;
    /* max-height: 277px !important; */
    /* max-width: 496px !important; */
    margin-top: 50px !important;
  }
  .r-d-section3 {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .r-d-section3 .btn {
    width: 100% !important;
    margin-top: 20px !important;
  }
  .leadership-banner {
    height: 400px !important;
    background-image: url(img/page-header/header-img2.jpg);
    background-size: 100% auto;
    background-size: cover !important;
    background-position: center;
    min-height: 299px !important;
    background-repeat: no-repeat;
    background-color: #00000000 !important;
    padding: 125px 0 !important;
  }
  .m-divider2 {
    min-height: 20px !important;
  }
  .filter-btn {
    margin: 5px;
    width: 210px !important;
    padding: 8px 20px;
    font-size: 1.03rem !important;
  }
  .sector-logos {
    gap: 15px !important;
  }
  .startups-heading {
    text-align: left !important;
  }
  .startups-h2 {
    padding: 10% 0% !important;
    font-size: 24px !important;
    line-height: 39px !important;
  }
  .startups-track {
    flex-direction: column !important;
  }
  .statrup-future {
    display: flex !important ;
    flex-direction: column-reverse !important ;
  }
  .startup-base {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  .btn-width {
    width: 100% !important  ;
  }
  .text-newst-end .btn-teal {
    padding: 0px 40px !important  ;
  }
  #mobileToggle {
    display: none !important;
  }

  .footer-section {
    padding-left: 10% !important;
    text-align: left !important;
  }
  .m-home-counter .text-start {
    text-align: center !important;
  }
  .m-home-counter .text-start strong {
    text-align: center !important ;
    font-size: 40px !important ;
    margin-top: 5px !important;
  }
  .m-fecility h1 {
    text-align: left !important;
  }
  .m-fecility img {
    text-align: center !important;
  }
  .m-fecility p {
    text-align: left !important;
  }
  .m-fecility h2 + p {
    text-align: left !important;
  }
  .row-margin-top {
    margin-top: 20px !important;
  }

  .m-home-counter .text-start label {
    text-align: center !important ;
    font-size: 14px !important ;
    margin-top: 5px !important;

    padding: 0px 20% !important ;
  }
  .divider-mob {
    border: 0;
    height: 1px;
    background-color: #ccc;
  }
  .m-height {
    padding-top: 0px !important;
    padding-bottom: 20px !important;
  }
  .mobile-nav .btn {
    font-size: 14px !important;
    color: #fff !important;
  }
  .footer-bottom-links {
    display: flex !important;
  }
  .bottom-img {
    width: 100% !important;
    padding: 0px !important;
  }
  .m-flex-in {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .bottom-padding {
    padding: 15px 25px;
  }
  .startups-container .container-fluid {
    margin-bottom: 50px !important;
  }
  .founder {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .startups-track .founder {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease,
      padding 0.4s ease;
    overflow: hidden;
  }
  .startups-track .founder.hidden {
    display: none !important;
    max-height: 0;
    padding: 0;
    margin: 0;
    flex: 0 0 100%;
  }
  .view-all {
    width: 100% !important;
    background: #fff;
    font-size: 20px;
    color: teal;
    border: 1px solid teal !important;
    padding: 10px 30px !important;
    text-align: center !important;
  }
  .coe-image {
    border-radius: 0px !important;
  }
  .coe-padding {
    padding: 10px;
  }
  .custom-card .card-title,
  .custom-card .card-text {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .coe-main img {
    width: 90px !important;
    height: 90px !important;
  }
  .coe-main .icon-wrap {
    align-items: start !important;
    justify-content: flex-start !important;
  }
  .coe .custom-card {
    box-shadow: 0px 4px 24px 4px rgba(0, 0, 0, 0.15);
  }
  .keyword {
    display: block !important;
  }
  .hero-section {
    position: relative !important;
    height: 100vh !important; /* Full screen height for mobile */
    min-height: 600px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    background-attachment: scroll !important; /* Prevent fixed background issues on mobile */
    background-color: #2196f3 !important; /* Teal background from the image */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    color: white !important;
    padding: 0 15px !important;
  }

  .lines-overlay {
    display: block !important; /* Hide lines overlay as per the image */
  }

  .tech-keywords {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 5 !important;
  }

  .keyword {
    position: absolute !important;
    color: #46fbff !important; /* Cyan color for keywords */
    font-size: 1rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0.9 !important;
    animation: float 4s ease-in-out infinite !important;
  }

  /* Mobile-specific keyword positions */
  .keyword-1 {
    top: 10% !important;
    left: 10% !important;
  }
  .keyword-2 {
    top: 15% !important;
    right: 10% !important;
  }
  .keyword-3 {
    top: 30% !important;
    left: 5% !important;
  }
  .keyword-4 {
    top: 40% !important;
    right: 10% !important;
  }
  .keyword-5 {
    top: 55% !important;
    left: 10% !important;
  }
  .keyword-6 {
    top: 65% !important;
    right: 10% !important;
  }
  .keyword-7 {
    top: 80% !important;
    left: 20% !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  .main-heading {
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
    color: #ffffff !important;
    letter-spacing: 0.2px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important; /* Improve readability */
  }

  .sub-heading {
    font-size: 1.1rem !important;
    font-weight: bold !important;
    opacity: 0.95 !important;
    margin-bottom: 0 !important;
    color: #ffffff !important;
    letter-spacing: 0.2px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important; /* Improve readability */
  }
  .coe-section2 h2 span {
    font-size: 30px !important;
  }
  .coe-section3 .logo-text h3 {
    font-size: 22px !important;
  }
  .content-container {
    background: none;
    border-radius: 0px;
    /*box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    transform: translateX(30px);
    transition: all 0.8s ease;
    z-index: 10;
  }
  .coe-div {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .content-container.active {
    display: block;
    transform: translateX(0);
  }

  .coe-p {
    font-size: 20px !important;
  }
  .kingcards-content .mobile-card p {
    margin-bottom: 0px !important;
    padding-top: 0px !important;
  }
  .kingcards-content .mobile-card .know-more {
    padding-top: 0px !important;
  }
  .kingcards-content .mobile-card .text-section {
    margin-left: -47px !important;
  }
  .thanks {
    font-size: 25px !important;
    line-height: 30px !important  ;
    margin-top: 20px !important;
  }

  /* Target only your custom controls */
  .form-control-ix::placeholder,
  textarea.form-control-ix::placeholder {
    color: rgba(0, 0, 0, 0.6);
    opacity: 1;
    /* ensure full opacity in Firefox */
  }

  /* Optional legacy fallbacks (older WebKit/EdgeHTML) */
  .form-control-ix::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }

  .form-control-ix::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6);
    opacity: 1;
  }

  .form-control-ix:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }

  .form-control-ix::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
  }
  .custom-style {
    border-radius: 0px !important;
    border-color: #000;
    padding: 11px 10px;
  }
  #submitBtn:disabled {
    background-color: grey !important;
    border-color: grey !important;
    cursor: not-allowed;
  }
  .names {
    font-size: 16px !important;
  }
  .tl-update h2 {
    font-size: 18px !important;
  }

  .timeline-item:nth-child(even) .tl-image {
    margin-left: 0px !important;
  }
  .p-l-30 {
    padding-left: 10px !important;
  }
  @keyframes float {
    0%,
    100% {
      transform: translateY(0) !important;
    }
    50% {
      transform: translateY(-10px) !important;
    }
  }

  .logo-box.active .arrow-down {
    display: block !important;
  }

  /* Additional arrow accent */

  #track {
    gap: 0px !important;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .left-panel {
    width: 100%;
    margin-bottom: 20px;
  }

  .logo-box {
    margin-bottom: 15px;
    position: relative;
  }

  .logo-box.initial.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ff0000; /* Red arrow for visibility, adjust as needed */
    z-index: 1;
  }

  .logo-box.initial.active::before {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #fff; /* White background to blend */
    z-index: 0;
  }

  .content-container {
    display: none !important;
    position: static;
  }

  .logo-box .dynamic-content {
    display: none;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .logo-box.active .dynamic-content {
    display: block;
  }

  .dynamic-content.active {
    opacity: 1;
  }

  .dynamic-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .dynamic-content h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
  }

  /* Remove the existing desktop arrow styles for mobile */
  .logo-box.active::after,
  .logo-box.active::before {
    display: none;
  }
  .left-panel {
    background: #f3f3f3 !important;
  }
}
