.ab4 {
  font-size: 1.25rem; /* Adjust this value as needed */
  font-family: "Arial", sans-serif; /* Change the font if needed */
  margin-top: 30px;
}

.mb-5 {
  margin-bottom: 1rem; /* Adjust this value as needed */
}

ul.ab4 {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove padding */
}

ul.ab4 li {
  margin-bottom: 1rem; /* Adjust the spacing between list items as needed */
  text-align: justify; /* Justify the text within each list item */
  position: relative; /* For custom bullet positioning */
  opacity: 0; /* Start hidden for animation */
  animation: fadeIn 1s forwards; /* Animation properties */
}

ul.ab4 li:before {
  content: "•"; /* Custom bullet */
  color: #007bff; /* Custom bullet color */
  font-size: 1.5rem; /* Bullet size */
  position: absolute; /* Positioning for the bullet */
  left: -25px; /* Adjust as needed */
  top: 0; /* Align with text */
}

.animated-list li:nth-child(1) {
  animation-delay: 0.5s; /* Delay for first item */
}

.animated-list li:nth-child(2) {
  animation-delay: 1s; /* Delay for second item */
}

.animated-list li:nth-child(3) {
  animation-delay: 1.5s; /* Delay for third item */
}

.animated-list li:nth-child(4) {
  animation-delay: 2s; /* Delay for fourth item */
}

/* Keyframes for fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* Slight upward movement */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Final position */
  }
}

/* General Styling */
.py-5,
.py-xl-8 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.bsb-section-py-xxl-1 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.container {
  max-width: 1140px;
}

.text-center {
  text-align: center;
}

/* Heading Styling */
.display-3 {
  font-size: 2.5rem;
}

.fw-bolder {
  font-weight: bolder;
}

.bsb-tpl-highlight-yellow {
  background-color: yellow;
  padding: 0.2rem 0.4rem;
}

.bsb-tpl-font-hw {
  font-weight: 400;
}

.text-accent {
  color: #007bff; /* Accent color */
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5,
.mb-md-6,
.mb-xl-10 {
  margin-bottom: 3rem !important;
}

/* Project Card Styling */
.project-card {
  text-align: center;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #6c757d;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 1s ease-in-out;
}

.animate:nth-child(1) {
  animation-delay: 0.3s;
}

.animate:nth-child(2) {
  animation-delay: 0.6s;
}

.animate:nth-child(3) {
  animation-delay: 0.9s;
}

/* Zoomable Image */
.zoomable {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.zoomable.active {
  transform: scale(2);
  z-index: 10;
  position: relative;
}

/* Responsive Adjustments */
@media (min-width: 576px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}
