/* BLOG HERO SECTION */
.bolg_container {
    max-width: 1920px;
    margin: 0 auto;
}
.blog-hero {
  position: relative;
  width: 100%;
  height: 444px;
  display: flex;
  align-items: center;
  padding-left: 60px;
  background: url('your-image.jpg') no-repeat right center;
  background-size: cover;
  background-color: #d3d3d5;
}

/* Right fade effect */
.blog-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(255,255,255,0.8), transparent);
}

/* Blue overlay card */
.blog-hero-overlay {
  opacity: 0.502;
  position: relative;
  z-index: 2;
  padding: 50px;
  color: #fff;
  border-radius: 20px;
  filter: drop-shadow(3.441px 4.915px 4.5px rgba(2,2,2,0.66));
  background-color: #00519d;
  width: 70%;
}

.blog-hero-overlay h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero-overlay p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Buttons */
.blog-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-hero-buttons a {
  text-decoration: none;
  background: #afd0df;
  color: #2c4f70;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-hero-buttons a:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


.blog-slider {
  padding: 60px 40px;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.card {
  background: #e9e9e9;
  border-radius: 24px;
  padding: 20px;
  width: 320px;
  display: flex;
  flex-direction: column;
}

.category_name {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #2d6cdf;
  color: #2d6cdf;
  border-radius: 15px;
  font-size: 14px;
  margin-bottom: 0px;
  width: fit-content;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 22px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.image-wrapper {
  position: relative;
  margin-top: auto;
}

.image-wrapper img {
  width: 100%;
  border-radius: 20px;
  height: 200px;
  object-fit: cover;
}
.image-wrapper img.slider-arrowimg {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #f58220;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover {
  background: #d96d12;
}

.dots {
  text-align: center;
  margin-top: 30px;
}

.dot, .slick-dots li button {
  height: 5px !important;
  width: 5px !important;
  background: #c4c4c4 !important;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.dot.active, .slick-dots li button {
  background: #2d6cdf;
}
.slick-dots li.slick-active button {
    opacity: 1;
    background: #2d6cdf !important;
}
.slick-blog .card {
  margin: 0 12px;
  cursor: pointer;
}
.slick-dots li button:before{
  display: none;
}
/* Make slick track flex */
.slick-track {
  display: flex !important;
}

/* Make each slide equal height */
.slick-slide {
  height: inherit !important;
  display: flex !important;
}

/* Make card fill full slide height */
.slick-slide .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Push image section to bottom */
.card .image-wrapper {
  margin-top: auto;
}
.slick-blog .slick-dots{
  bottom: -82px !important;
}
.section-gradient-t {
  left: 0;
}
.blog-hero-buttons .active {
  background-color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
	.blog-hero{
		height:auto;
		padding-left: 0px;
	}
	.blog-hero-overlay{
		width:100%;
	}
	.blog-slider {
		padding: 60px 20px;
	}
}