/* Custom styles for the blog section */
.blog-section {
  padding: 80px 0;
}

.blog-scroll-container {
  overflow-x: auto;
  padding-bottom: 20px;
}

.blog-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 10px 0;
}

.blog-card {
  flex: 0 0 auto;
  width: 350px;
  transition: transform 0.3s ease;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.blog-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05) rotate(1deg);
}

.blog-meta {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-title a {
  color: #212529;
  text-decoration: none;
}

.blog-title a:hover {
  color: #0d6efd;
}

.blog-excerpt {
  color: #6c757d;
  line-height: 1.6;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.blog-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.blog-scroll-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Section title styling */
.section-title {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 60px;
}

.section-subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .blog-card {
    width: 300px;
  }

  .section-heading {
    font-size: 2rem;
  }
}

.page-hero {
  background-color: var(--accent-color);
  color: #fff !important;
}

.page-hero h1 {
  background-color: var(--accent-color);
  color: #fff !important;
}

.more-btn {
  background-color: var(--accent-color);
  color: #fff !important;
}
.more-btn {
  background-color: var(--accent-color);
  color: #fff !important;
}

.more-btn:hover {
  border: 1px solid var(--accent-color) !important;
  color: var(--accent-color) !important;
}

/* Footer */
.footer-contact a {
  color: #ffffff !important;
}

