body {
  font-family: "SolaimanLipi", sans-serif;
}

.slider-container {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  height: 250px;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  z-index: 5;
  animation: appear 1s ease-out;
  border-radius: 50px 0px 50px 0px;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.slider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  overflow: hidden;
  pointer-events: none;
  border-radius: 50px 0px 50px 0px;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-in-out;
}

.slide.active img {
  transform: scale(1.1);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  transform: translateY(100%);
  transition: transform 0.7s ease, opacity 0.5s ease;
  opacity: 0;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.slide:hover .slide-content {
  transform: translateY(0);
  opacity: 1;
}

/* Slide title and description parallax effects */
.slide-title {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.2s;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.slide-description {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  transition-delay: 0.4s;
  font-size: 1rem;
  opacity: 0.9;
}

.slide.active .slide-title,
.slide.active .slide-description {
  transform: translateX(0);
  opacity: 1;
}

/* Navigation arrows */
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.nav-btn.prev {
  left: 20px;
}

.nav-btn.next {
  right: 20px;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* Dots indicators */
.dots-container {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #9dd9e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #0e79a6;
  transform: scale(1.2);
}

/* Animation keyframes for transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

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

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

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

@keyframes zoomIn {
  from {
    transform: scale(1.2);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

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

/* Transition effect classes */
.transition-fade .slide-content {
  animation: fadeIn 1s forwards;
}

.transition-slideRight .slide-content {
  animation: slideInRight 1s forwards;
}

.transition-slideLeft .slide-content {
  animation: slideInLeft 1s forwards;
}

.transition-zoom .slide-content {
  animation: zoomIn 1s forwards;
}

.transition-slideUp .slide-content {
  animation: slideInUp 1s forwards;
}

.section-3 {
  background: #17a2b8;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  border-radius: 0 15px;
  margin-top: 20px;
}

.social-share-box {
  position: fixed;
  right: -80px; /* Start hidden */
  top: 50%;
  transform: translateY(-44%);
  width: 75px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px !important;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
}

.social-share-box.show {
  right: 25px !important; /* Show position */
}
.share-header {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
}

.share-header span {
  font-weight: bold;
  font-size: 10px;
}

.close-share {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.share-buttons {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
  width: 40px;
  height: 40px;
  text-align: center;
}

.share-buttons a:hover {
  transform: translateX(-5px);
  opacity: 0.9;
}

/* Individual button colors */
.facebook {
  background: #3b5998;
}
.twitter {
  background: #1da1f2;
}
.linkedin {
  background: #0077b5;
}
.pinterest {
  background: #bd081c;
}
.whatsapp {
  background: #25d366;
}

.share-sidebar {
  width: 10px; /* Increased width for better touch area */
  height: 100px;
  background: #222;
  position: fixed;
  top: 133px;
  right: 0;
  border-radius: 10px 0px 0px 10px;
  opacity: 0.4;
  z-index: 999;
  cursor: pointer;
}
.share-sidebar-left {
  width: 10px; /* Increased width for better touch area */
  height: 100px;
  background: #222;
  position: fixed;
  top: 133px;
  left: 0;
  border-radius: 0px 10px 10px 0px;
  opacity: 0.4;
  z-index: 999;
  cursor: pointer;
}

.click-button {
  display: inline-flex;
  align-items: center;
  padding: 0px;
  padding-left: 8px;
  background-color: #6ecde6;
  border-radius: 9999px;
  text-decoration: none;
  color: white;
  font-weight: normal;
  font-family: sans-serif;
  font-size: 8px;
  border: 1px solid #6ecde6;
  height: 15px;
  margin-bottom: 0px;
  line-height: 15px;
}

.click-button:hover,
.click-button:focus {
  color: #fff;
}

.click-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #222;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 10px;
  position: relative;
}

.click-circle::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #6ecde6;
  border-radius: 50%;
  position: absolute;
}

.p-1122 {
  background: #17a2b8;
  padding: 10px;
  color: #fff;
  font-size: 28px;
  padding-left: 38px;
  margin-top: 20px;
}

.class-ul {
  background: #fff;
  padding: 10px;
}

.class-ul li {
  line-height: 60px;
  font-weight: 600;
}

.class-ul li i {
  float: right;
  width: 50px;
  height: 50px;
  background: #18a2c0;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  color: #fff;
  border-radius: 50%;
}
.hide {
  display: none;
}
.curve-box {
  position: relative;
  background-color: #fff;
  padding: 20px 0px;
  padding-right: 40px;
  padding-left: 20px;
  margin: 30px auto;
  max-width: 750px;
}

.curve-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #315d80;
  border-bottom-left-radius: 100px;
}

h2 {
  color: #000;
}

ul {
  padding-left: 20px;
}

strong {
  color: #000;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 16px;
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #18a2c0;
}

.time-block {
  border: 2px solid #00a6c9;
  border-radius: 12px;
  padding: 15px 20px;
  max-width: 100%;
  font-family: sans-serif;
}

.time-block h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.time-block ul {
  padding-left: 20px;
  margin: 0;
}

.time-block li {
  margin-bottom: 5px;
  list-style: disc;
}

.form-check-input[type="radio"] {
  border-radius: 0 !important;
  /* Removes the round shape */
  width: 18px;
  height: 18px;
  border: 1px solid #1ab1c5;
}

.form-check-input[type="radio"]:checked {
  background-color: #1ab1c5;
}

.custom-card {
  position: relative;
  overflow: hidden;
  border: none;
}

.border-animation {
  position: absolute;
  background: linear-gradient(90deg, transparent, #18a2c0, transparent);
}

.border-top {
  top: 0;
  left: -100%;
  width: 50%;
  height: 3px;
  animation: animateTop 6s linear infinite;
  /* Slowed from 3s to 6s */
}

.border-right {
  top: -100%;
  right: 0;
  width: 3px;
  height: 50%;
  animation: animateRight 6s linear infinite;
  /* Slowed from 3s to 6s */
  animation-delay: 1.5s;
  /* Adjusted from 0.75s to maintain proportion */
}

.border-bottom {
  bottom: 0;
  right: -100%;
  width: 50%;
  height: 3px;
  animation: animateBottom 6s linear infinite;
  /* Slowed from 3s to 6s */
  animation-delay: 3s;
  /* Adjusted from 1.5s to maintain proportion */
}

.border-left {
  bottom: -100%;
  left: 0;
  width: 3px;
  height: 50%;
  animation: animateLeft 6s linear infinite;
  /* Slowed from 3s to 6s */
  animation-delay: 4.5s;
  /* Adjusted from 2.25s to maintain proportion */
}

@keyframes animateTop {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes animateRight {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

@keyframes animateBottom {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

@keyframes animateLeft {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.progress-container {
  width: 80px;
  height: 80px;
  position: relative;
  display: block;
  margin: auto;
}

.progress-circle {
  width: 100%;
  height: 100%;
}

.progress-background {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 10;
}

.progress-indicator {
  fill: none;
  stroke: #18a2c0;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 565.48;
  /* 2πr (r = 90) */
  stroke-dashoffset: 565.48;
  animation: progress 5s linear forwards;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #18a2c0;
}

.progress-text::after {
  content: "0%";
  animation: percentage 5s linear forwards;
}

@keyframes progress {
  0% {
    stroke-dashoffset: 565.48;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes percentage {
  0% {
    content: "0%";
  }

  10% {
    content: "10%";
  }

  20% {
    content: "20%";
  }

  30% {
    content: "30%";
  }

  40% {
    content: "40%";
  }

  50% {
    content: "50%";
  }

  60% {
    content: "60%";
  }

  70% {
    content: "70%";
  }

  80% {
    content: "80%";
  }

  90% {
    content: "90%";
  }

  100% {
    content: "100%";
  }
}

.form-check-input[type="radio"] {
  border-radius: 0 !important; /* Removes the round shape */
  width: 18px;
  height: 18px;
  border: 1px solid #1ab1c5;
}

.form-check-input[type="radio"]:checked {
  background-color: #1ab1c5;
}

.form-span {
    border: 2px solid #18A2C0;
    display: block;
    padding: 5px;
    font-weight: 600;
    border-radius: 10px;
}

.form-input {
    display: block;
    width: 100%;
    padding: 4px;
    border-radius: 10px;
    border: 2px solid #18A2C0;
}
