@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Tiro+Bangla:ital@0;1&display=swap');

body {
  /* background: radial-gradient(circle at top left, #182a32, #192e35, #26414d); */
  /*background: radial-gradient(circle at top left, #6F00FF,  #3600F0);*/
  background: radial-gradient(circle at top left, #1B3C53, #1B3C53);
  /* background: linear-gradient(120deg, #0861ba, #002d5b); */
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Roboto','Segoe UI', sans-serif;
}


.glass {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 2px 8px 0 rgba(168, 185, 189, 0.70);
}

.btn-neon {
  background: linear-gradient(135deg, #00feba, #5b86e5);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
}

.btn-neon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00feba, 0 0 20px #5b86e5;
}

section {
  /* padding: 80px 0; */
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3rem;
}

/* Hero image animation */
.hero-img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

.feature-box,
.pricing-box {
  padding: 30px;
  transition: transform 0.3s;
}

.feature-box:hover,
.pricing-box:hover {
  transform: translateY(-5px);
}

.footer {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


#careersummary {
    display: block;
}

.highlightext{
    color: #f1c40f;
    /* color: #00feba; */
    font-weight: 500;
}

#responsive-table {
  width: 100%;
  border-collapse: collapse;
}

#responsive-table td {
  padding: 3px 15px;
  border: none;
  vertical-align: top;
  padding: 3px 15px; color: #f1c40f; 
  font-weight: 400; 
  font-size: 16px;
}



.experience-section {
  /* background: linear-gradient(135deg, #121212, #1f1f1f); */
  color: #f1f1f1;
  margin-left: 20px;
}

.section-title {
  font-size: 2.5rem;
  display: inline-block;
  padding-bottom: 10px;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 0; /* Remove the extra left padding */
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px; /* This centers the line behind the icon (45px icon => 22.5px) */
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #f0c30dc9;
  z-index: 2;
}

.timeline-item {
  position: relative;
  margin-left: 60px;
  margin-bottom: 50px;
}

.timeline-icon {
  /* position: absolute; */
  /* left: -53px; Moves the icon so its center aligns with the vertical line */
  /* top: 0; */
  margin-left: -49px; /* Adjusted to center the icon */
  background: #f1c40f;
  color: #121212;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 10;
  box-shadow: 0 0 5px #25210f;
  border: 2px solid #fff;
}

.timeline-content {
  margin-left: -10px;
  margin-top: -35px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(71, 88, 93, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(143, 179, 182, 0.3);
  border: 1px solid rgba(232, 250, 255, 0.3);
}

.timeline-date {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 8px;
  display: block;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}


.subtopic > p{
  text-align: left;
  padding: 0;
  margin: 5px 0;
  font-size: 14px;
}
  

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating Navigation - No gap, fixed left */
.floating-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(31, 31, 31, 0.5);
  backdrop-filter: blur(5px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1000;
  width: 50px;
  transition: width 0.3s ease;
  overflow: hidden;
  /* font-size: 15px; */
}
.floating-sidebar:hover {
  width: 220px;
}
.floating-sidebar a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #f1f1f1;
  text-decoration: none;
  transition: background 0.3s ease;
  
}
.floating-sidebar a:hover {
  background-color: #f1c40f;
  color: #121212;
  min-width: 200px;
}
.floating-sidebar a i {
  margin-right: 15px;
  font-size: 18px;
  min-width: 30px;
  text-align: center;
  transition: transform 0.2s;
}
.floating-sidebar a:hover i {
  transform: scale(1.2);
  animation: bounce 0.5s;
}
.floating-sidebar span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-sidebar:hover span {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .floating-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(31, 31, 31, 0.15);
    backdrop-filter: blur(5px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1000;
    width: 45px;
    transition: width 0.3s ease;
    overflow: hidden;
  }
  .floating-sidebar:hover {
    width: 220px;
  }
  .floating-sidebar a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #f1f1f1;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .floating-sidebar a:hover {
    background-color: #f1c40f;
    color: #121212;
  }
  .floating-sidebar a i {
    margin-right: 5px;
    font-size: 17px;
    min-width: 30px;
    text-align: center;
    transition: transform 0.2s;
  }
  .floating-sidebar a:hover i {
    transform: scale(1.2);
    animation: bounce 0.5s;
  }
  .floating-sidebar span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .floating-sidebar:hover span {
    opacity: 1;
  }

  #headtext {
    margin-top: 20px;
    padding: 0;
  }

  #careersummary {
    display: none;
  }

  #responsive-table,
  #responsive-table tbody,
  #responsive-table tr {
    display: block;
    width: 100%;
  }

  #responsive-table tr {
    margin-bottom: 0px;
  }

  #responsive-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  #myname {
    font-size: 30px;
  }

  #home {
    padding: 0px 0;
  }
}



  .sodgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
  }

  .sodcard {
    position: relative;
    background: rgba(66, 86, 91, 0.3);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 1s ease-out forwards;
    box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
  }

  .sodcard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #f5ffff, #a200ff, #00f7ff);
    background-size: 400% 400%;
    animation: twinkle 3s ease-in-out infinite;
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: 0;
  }

  .sodcard-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  @keyframes twinkle {
    0%, 100% {
      background-position: 0% 50%;
      opacity: 0.8;
    }
    50% {
      background-position: 100% 50%;
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 1024px) {
    .sodgrid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .sodgrid {
      grid-template-columns: 1fr;
    }
  }

.features h5, .pricing h5, .testimonials blockquote {
  font-weight: 600;
}

.card {
  border: none;
}

.card .btn {
  width: 100%;
}

footer {
  font-size: 14px;
}



#home{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: 30px;
}

.carousel {
      position: relative;
      width: 100%;
      max-width: 1980px;
      height: 500px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    /* Progress bar */
    .progress-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: rgba(255,255,255,0.15);
      z-index: 3;
    }
    .progress-bar {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, #fff, grey);
      transition: width linear;
    }

    /* Slides */
    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: translateX(100%);
      transition: opacity 0.8s ease, transform 0.8s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: #fff;
      padding: 20px;
    }
    .slide.active {
      opacity: 1;
      transform: translateX(0);
      z-index: 1;
    }

    /* Title (letter animation) */
    .slide h1 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 15px;
    }
    .slide h1 span {
      display: inline-block;
      opacity: 0;
      transform: translateX(50px);
      animation: floatIn 0.6s forwards;
    }

    @keyframes floatIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Paragraph (word animation) */
    .slide p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      max-width: 700px;
      line-height: 1.5;
    }
    .slide p span {
      display: inline-block;
      opacity: 0;
      transform: translateY(20px);
      animation: riseIn 0.6s forwards;
    }

    @keyframes riseIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Navigation buttons */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: none;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,0.2);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      z-index: 2;
      transition: all 0.3s ease;
    }
    .nav-btn:hover {background: rgba(255,255,255,0.4);}
    .prev {left: 20px;}
    .next {right: 20px;}

    /* Dots */
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      padding: 8px 20px;
      border-radius: 40px;
      display: flex;
      gap: 10px;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.6);
      cursor: pointer;
      transition: background 0.3s;
    }
    .dot.active {background: #38bdf8;}

    @media (max-width: 768px) {
      .carousel {height: 350px; }
      .slide h1 {font-size: clamp(1.5rem, 5vw, 2rem);}
      .slide p {font-size: clamp(0.9rem, 3vw, 1rem);}
      .nav-btn {width: 45px; height: 45px; font-size: 18px;}
      #home{margin-top: -90px;}
      section{padding: 10px 0;}
    }

    @media screen and (min-width: 769px) and (max-width: 992px) {
/*       .carousel {height: 350px; }
      .slide h1 {font-size: clamp(1.5rem, 5vw, 2rem);}
      .slide p {font-size: clamp(0.9rem, 3vw, 1rem);}
      .nav-btn {width: 45px; height: 45px; font-size: 18px;} */
      #home{margin-top: 0px;}
      section{padding: 10px 0;}
    }



/* Swiper */
.swiper {
  width: 600px;
  height: 300px;
}

@media screen and (min-width: 1900px) {
        #home{
            width: 1900px;
        }
        .carousel{
            width: 1900px;
        }
    }