@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background-color: #fff;
  --text-colot: #111;
  --primary-color: rgb(13, 93, 240);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #333;
    --text-color: #fff;
    --primary-color: rgb(84, 13, 252);
  }
}

/* body {
    background-image: url("https://img.freepik.com/free-vector/abstract-bright-geometric-line-modern-wallpaper-design_1017-60099.jpg?semt=ais_incoming&w=740&q=80");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
    min-height: 100vh;
    z-index: 99999;
   
    font-weight: bold;
} */

body {
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  min-height: 100vh;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  font-family: "Poppins"
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("https://img.freepik.com/free-vector/abstract-bright-geometric-line-modern-wallpaper-design_1017-60099.jpg?semt=ais_incoming&w=740&q=80"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

.custom-navbar {
  background: transparent !important;
  box-shadow: none !important;
  font-weight: 400;
  /* border-bottom: 1px solid #9c9c9c; */
  backdrop-filter: blur(8px);
}

.navbar-nav .nav-link {
  margin: 0 8px;
  /* increase horizontal gap */
}

.navbar-collapse.show {
  backdrop-filter: blur(5px);
  /* Adjust blur intensity */
}

/* Optional: Darken the background slightly when menu is open */
.navbar-collapse.show+.container {
  background: rgba(0, 0, 0, 0.4);
}

/* Ensure navbar items are clear when blurred */
.navbar-collapse.show {
  background-color: rgba(255, 255, 255, 0.9);
  /*Add slight white background to nav items */
}


.Solutions {
  font-size: 5rem;
  font-weight: bold;
  background: linear-gradient(110deg,
      /* Left to right */
      red,
      orange,
      yellow,
      green,
      cyan,
      blue,
      violet,
      red);
  background-size: 800% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveGradient 12s linear infinite;
}

.subtitle {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(110deg,
      /* Left to right */
      red,
      orange,
      yellow,
      green,
      cyan,
      blue,
      violet,
      red);
  background-size: 800% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveGradient 12s linear infinite;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 0%;
  }
}

/* .text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .bg-gradient-primary {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.15), transparent 50%),
                radial-gradient(circle at bottom right, rgba(102, 16, 242, 0.15), transparent 50%);
  } */


.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  color: var(--bs-body-color);
  /* ✅ Uses theme-aware text color */

}

/* button:hover {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
} */


.hero h1 {
  font-size: 5rem;
  margin-bottom: 20px;
  max-width: 800px;
  font-weight: 600;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: left;

}

.hero .cta-buttons a {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  /* border-radius: 50px; */
}

.hero .cta-buttons a:hover {
  background-color: #525252;
}

.hero-image {
  height: 700px;
  width: 700px;
  /* transform: scaleX(-1); */
}

.image1 {
  height: 600px;
}

.bg-gradient-primary {
  background: linear-gradient(90deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.15) 100%);
}

.text-gradient {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.lead {
  font-size: 1.125rem;
}

.service-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd20, #0d6efd40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0d6efd;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* Hover effect on the card */
.hover-card:hover .hover-icon {
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
}



.cardclick {
  cursor: pointer;
}

.accordion-button {
  background-color: #f8f9fa;
  /* Light background for inactive items */
  color: #495057;
  /* Dark text color for inactive items */
  border: 1px solid #ddd;
  /* Light border for inactive items */
  transition: all 0.3s ease;
  /* Smooth transition */
}

.accordion-button:not(.collapsed) {
  background-color: #007bff;
  /* Blue background for active item */
  color: white;
  /* White text for active item */
  border: 1px solid #007bff;
  /* Blue border for active item */
}

.accordion-button:not(.collapsed) .bi-chevron-right {
  transform: rotate(90deg);
  /* Rotate the icon for active items */
}

.accordion-button .bi-chevron-right {
  transition: transform 0.3s ease;
  /* Smooth icon rotation */
}

.accordion-item {
  margin-bottom: 10px;
  /* Spacing between accordion items */
}

.accordion-button:focus {
  box-shadow: none;
  /* Remove focus outline */
}

.accordion-body {
  padding: 20px;
  /* Padding for content */
  background-color: #f8f9fa;
  /* Light background for the body */
}


/* Align text inside accordion-body to the left */
.accordion-body {
  padding: 20px;
  /* Padding for content */
  background-color: #f8f9fa;
  /* Light background for the body */
  text-align: left;
  /* Left align the text */
}


/* .card-custom {
    background: linear-gradient(180deg, rgba(167, 142, 255, 0.7) 35%, rgba(253, 249, 245, 0.67) 100%);
    light gray/white 
    border: 1px solid #ccc; 
    color: #343a40;
    padding: 30px 40px 40px 20px;  
} */

.btn-purple {
  background-color: purple;
  border-color: purple;
  color: white;
}

.btn-purple:hover {
  background-color: #5a006e;
  border-color: #5a006e;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #timeline {
    flex-direction: column !important;
    min-height: auto;
  }

  #timeline:hover .tl-item {
    width: 100% !important;
  }

  .tl-item {
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    position: relative !important;
    display: block !important;
  }

  .tl-item:hover {
    width: 100% !important;
    height: 400px !important;
  }

  .tl-year {
    top: 35%;
    position: absolute;
  }

  .tl-year h4 {
    font-size: 1.1rem;
    white-space: normal;
    text-align: center;
  }

  .tl-content {
    top: 55%;
    margin: 0 1rem;
    position: absolute;
  }

  .tl-content h5 {
    font-size: 0.9rem;
  }

  /* Mobile arrow positioning - vertical layout */
  .arrow {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 auto 10px auto !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
  }

  .arrow img {
    width: 30px !important;
    height: 30px !important;
    transform: rotate(90deg) !important;
    ;
  }

  /* Hide the last arrow in mobile */
  .arrow:last-child {
    display: none !important;
  }

}

/*.marquee-section {*/
/*    background: linear-gradient(90deg, #4facfe, #6a82fb, #a18cd1);*/

/*    color: #fff;*/
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*    padding: 16px 0;*/
/*    border: none;*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
/*}*/


/*.marquee {*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    position: relative;*/
/*}*/


/*.marquee-content {*/
/*    display: inline-block;*/
/* padding-left: 100%; */
/*    font-size: 1.6rem;*/
/*    font-weight: 600;*/
/*    letter-spacing: 0.6px;*/
/*    color: #fff;*/
/*    animation: scroll-left 38s linear infinite;*/
/*}*/


/*.marquee.reverse .marquee-content {*/
/*    animation: scroll-right 38s linear infinite;*/
/*}*/


/*.marquee-content span {*/
/*    margin: 0 50px;*/
/*    transition: transform 0.3s ease, color 0.3s ease;*/
/*    position: relative;*/
/*}*/


/*.marquee-content span:hover {*/
/*    color: #ffdd57;*/
/*    transform: translateY(-3px) scale(1.15);*/
/*}*/


/*.marquee-content span:hover::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: -6px;*/
/*    height: 2px;*/
/*    background: #ffdd57;*/
/*    border-radius: 2px;*/
/*    opacity: 0.9;*/
/*}*/


/*.marquee:hover .marquee-content {*/
/*    animation-play-state: paused;*/
/*}*/


/*@keyframes scroll-left {*/
/*    0% {*/
/*        transform: translateX(0);*/
/*    }*/

/*    100% {*/
/*        transform: translateX(-100%);*/
/*    }*/
/*}*/

/*@keyframes scroll-right {*/
/*    0% {*/
/*        transform: translateX(-100%);*/
/*    }*/

/*    100% {*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/

.marquee-section {
  /* overflow: hidden;
  background: #0d6efd; /* Bootstrap primary blue, change as you like */
  /* padding: 10px 0; */
  background: linear-gradient(90deg, #4facfe, #6a82fb, #a18cd1);
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  padding: 16px 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

/* Base styles for both marquees */
.marquee,
.marquee.reverse {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Duplicate content wrapper */
.marquee-content {
  display: flex;
  gap: 3rem;
  /* more space between items */
  flex-shrink: 0;
  padding-right: 3rem;

}

/* Animate the track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}

.marquee.reverse .marquee-track {
  animation: marquee-reverse 50s linear infinite;
}

/* Move left */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Move right */
@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-content span {
  font-size: 1.5rem;
  /* increased size */
  font-weight: 600;
  /* bolder text */
  color: #fff;
  /* white text */
  text-transform: capitalize;
}

/*#timeline {*/
/*  display: flex;*/
/*  background-color: #031625;*/

/*  &:hover {*/
/*    .tl-item {*/
/*      width: 23.3333%;*/
/*    }*/
/*  }*/
/*}*/

/*.tl-item {*/
/*  transform: translate3d(0, 0, 0);*/
/*  position: relative;*/
/*  width: 25%;*/
/*  height: 40vh;*/
/*  min-height: 600px;*/
/*  color: #fff;*/
/*  overflow: hidden;*/
/*  transition: width 0.5s ease;*/

/*  &:before, &:after {*/
/*    transform: translate3d(0, 0, 0);*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0; top: 0;*/
/*    width: 100%; height: 100%;*/
/*  }*/

/*  &:after {*/
/*    background: transparentize(#031625, 0.15);*/
/*    opacity: 1;*/
/*    transition: opacity 0.5s ease;*/
/*  }*/

/*  &:before {*/
/*    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 75%);*/
/*    z-index: 1;*/
/*    opacity: 0;*/
/*    transform: translate3d(0, 0, 0) translateY(50%);*/
/*    transition: opacity 0.5s ease, transform 0.5s ease;*/
/*  }*/

/*  &:hover {*/
/*    width: 30% !important;*/

/*    &:after {*/
/*      opacity: 0;*/
/*    }*/

/*    &:before {*/
/*      opacity: 1;*/
/*      transform: translate3d(0, 0, 0) translateY(0);*/
/*      transition: opacity 1s ease, transform 1s ease 0.25s;*/
/*    }*/

/*    .tl-content {*/
/*      opacity: 1;*/
/*      transform: translateY(0);*/
/*      transition: all 0.75s ease 0.5s;*/
/*    }*/

/*    .tl-bg {*/
/*      filter: grayscale(0);*/
/*    }*/
/*  }*/
/*}*/

/*.tl-content {*/
/*  transform: translate3d(0, 0, 0) translateY(25px);*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  text-align: center;*/
/*  margin: 0 1.618em;*/
/*  top: 55%;*/
/*  opacity: 0;*/

/*  h1 {*/
/*    font-family: 'Pathway Gothic One',Helvetica Neue,Helvetica,Arial,sans-serif;*/
/*    text-transform: uppercase;*/
/*    color: #1779cf;*/
/*    font-size: 1.44rem;*/
/*    font-weight: normal;*/
/*  }*/
/*}*/

/*.tl-year {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translateX(-50%) translateY(-50%);*/
/*  z-index: 1;*/
/*  border-top: 1px solid #fff;*/
/*  border-bottom: 1px solid #fff;*/

/*  p {*/
/*    font-family: 'Pathway Gothic One',Helvetica Neue,Helvetica,Arial,sans-serif;*/
/*    font-size: 1.728rem;*/
/*    line-height: 0;*/
/*  }*/
/*}*/

/*.tl-bg {*/
/*  transform: translate3d(0, 0, 0);*/
/*  position: absolute;*/
/*  width: 100%; height: 100%;*/
/*  top: 0; left: 0;*/
/*  background-size: cover;*/
/*  background-position: center center;*/
/*  transition: filter 0.5s ease;*/
/*  filter: grayscale(100%);*/
/*}*/

/*#timeline {*/
/*    display: flex;*/
/*    background-color: #031625;*/
/*    position: relative;*/
/*    min-height: 600px;*/
/*}*/

/*#timeline:hover .tl-item {*/
/*    width: 23.3333%;*/
/*}*/

/*.tl-item {*/
/*    transform: translate3d(0, 0, 0);*/
/*    position: relative;*/
/*    width: 25%;*/
/*    height: 40vh;*/
/*    min-height: 600px;*/
/*    color: #fff;*/
/*    overflow: hidden;*/
/*    transition: width 0.5s ease;*/
/*}*/

/*.tl-item:before, */
/*.tl-item:after {*/
/*    transform: translate3d(0, 0, 0);*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0; */
/*    top: 0;*/
/*    width: 100%; */
/*    height: 100%;*/
/*}*/

/*.tl-item:after {*/
/*    background: rgba(3, 22, 37, 0.85);*/
/*    opacity: 1;*/
/*    transition: opacity 0.5s ease;*/
/*}*/

/*.tl-item:before {*/
/*    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 75%);*/
/*    z-index: 1;*/
/*    opacity: 0;*/
/*    transform: translate3d(0, 0, 0) translateY(50%);*/
/*    transition: opacity 0.5s ease, transform 0.5s ease;*/
/*}*/

/*.tl-item:hover {*/
/*    width: 30% !important;*/
/*}*/

/*.tl-item:hover:after {*/
/*    opacity: 0;*/
/*}*/

/*.tl-item:hover:before {*/
/*    opacity: 1;*/
/*    transform: translate3d(0, 0, 0) translateY(0);*/
/*    transition: opacity 1s ease, transform 1s ease 0.25s;*/
/*}*/

/*.tl-item:hover .tl-content {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*    transition: all 0.75s ease 0.5s;*/
/*}*/

/*.tl-item:hover .tl-bg {*/
/*    filter: grayscale(0);*/
/*}*/

/*.tl-content {*/
/*    transform: translate3d(0, 0, 0) translateY(25px);*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    text-align: center;*/
/*    margin: 0 1.618em;*/
/*    top: 55%;*/
/*    opacity: 0;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.tl-content h1 {*/
/*    font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;*/
/*    text-transform: uppercase;*/
/*    color: #1779cf;*/
/*    font-size: 1.44rem;*/
/*    font-weight: normal;*/
/*}*/

/*.tl-content h5 {*/
/*    font-size: 1rem;*/
/*    line-height: 1.4;*/
/*    margin-top: 10px;*/
/*}*/

/*.tl-year {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translateX(-50%) translateY(-50%);*/
/*    z-index: 2;*/
/*    border-top: 1px solid #fff;*/
/*    border-bottom: 1px solid #fff;*/
/*    padding: 10px 20px;*/
/*    background: rgba(0,0,0,0.3);*/
/*}*/

/*.tl-year h4 {*/
/*    font-size: 1.2rem;*/
/*    margin: 0;*/
/*    white-space: nowrap;*/
/*}*/

/*.tl-year p {*/
/*    font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;*/
/*    font-size: 1.728rem;*/
/*    line-height: 0;*/
/*}*/

/*.tl-bg {*/
/*    transform: translate3d(0, 0, 0);*/
/*    position: absolute;*/
/*    width: 100%; */
/*    height: 100%;*/
/*    top: 0; */
/*    left: 0;*/
/*    background-size: cover;*/
/*    background-position: center center;*/
/*    transition: filter 0.5s ease;*/
/*    filter: grayscale(100%);*/
/*}*/

/* Arrow styling - overlaying between sections */
/*.arrow {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%) translateX(-50%);*/
/*    z-index: 10;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: transparent;*/
/*}*/


/*.arrow img {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    object-fit: contain;*/
/*}*/

/* Position arrows between sections */
/*.arrow:nth-of-type(2) { left: calc(20%); }*/
/*.arrow:nth-of-type(4) { left: calc(40%); }*/
/*.arrow:nth-of-type(6) { left: calc(60%); }*/
/*.arrow:nth-of-type(8) { left: calc(80%); }*/

/* Hide the last arrow that goes beyond the timeline */
/*.arrow:nth-of-type(10) { */
/*    display: none !important; */
/*}*/


/* Tablet styles */
/*@media (max-width: 1024px) and (min-width: 769px) {*/
/*    .tl-year h4 {*/
/*        font-size: 1rem;*/
/*    }*/

/*    .tl-content h5 {*/
/*        font-size: 0.9rem;*/
/*    }*/

/*    .tl-content {*/
/*        margin: 0 1rem;*/
/*    }*/
/*}*/

.tl-item {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 25%;
  height: 40vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
  transition: width 0.5s ease;

  &:before,
  &:after {
    transform: translate3d(0, 0, 0);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  &:after {
    background: transparentize(#031625, 0.15);
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  &:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 75%);
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0) translateY(50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  &:hover {
    width: 30% !important;

    &:after {
      opacity: 0;
    }

    &:before {
      opacity: 1;
      transform: translate3d(0, 0, 0) translateY(0);
      transition: opacity 1s ease, transform 1s ease 0.25s;
    }

    .tl-content {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.75s ease 0.5s;
    }

    .tl-bg {
      filter: grayscale(0);
    }
  }
}

.tl-content {
  transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 55%;
  opacity: 0;

  h1 {
    font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: #1779cf;
    font-size: 1.44rem;
    font-weight: normal;
  }
}

.tl-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;

  p {
    font-family: 'Pathway Gothic One', Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1.728rem;
    line-height: 0;
  }
}

.tl-bg {
  transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  transition: filter 0.5s ease;
  filter: grayscale(100%);
}

#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
  display: table;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #0068bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 5%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #00b0bd;
  z-index: -1;
}

#conference-timeline .conference-timeline-content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}

.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
  padding: 15px 20px;
}

.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}

.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -60px;
  color: #00b0bd;
}

.timeline-article .content-left-container {
  float: left;
}

.timeline-article .content-right-container {
  float: right;
}

.timeline-article .content-left:before,
.timeline-article .content-right:before {
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}

.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}

.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}

.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  color: #fff;
  border-radius: 100%;
  /* background: #0071bd; */
}

.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 20px;
  line-height: 40px;
}

.timeline-article .meta-date .month {
  font-size: 18px;
  line-height: 10px;
}

.timeline-card {
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}


/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {

  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }

  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }

  .timeline-article .meta-date {
    margin-left: 0;
    left: 20px;
  }

  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }

  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }

  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }

  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }

  .timeline-article .content-right:before {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }

  .timeline-article p span.article-number {
    display: none;
  }

}

/* Interactive Navbar Styles */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown interactive */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
    margin-top: 0;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(13, 93, 240, 0.1);
  color: var(--primary-color);
  padding-left: 1.5rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}