  .cardCarousalSec{width: 100%; margin-top:50px !important}

/* Section Title */
.section-title {
  text-align: left;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    /* margin-left: 30px; */
}



/* Slider Container */
.slider-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  margin: 0px 50px;
}

/* Card */
.slider-track .card {
  background: #fff;
  min-width: 30%;
  padding: 25px 27px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
  margin: 0px 10px;
}

.card img {
  max-width: 150px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  padding: 14px;
}

.card span {
  color: #005dac;
  font-weight: bold;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: block;
  margin-top: 15px;
  padding: 11px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.btn-primary {
  background: #005dac;
  color: white;
}

.btn-secondary {
  border: 1px solid #005dac;
  color: #005dac;
}


/* Common button style */
.btn-primary,
.btn-secondary {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* RED filled button */
.btn-primary {
  background-color: #005dac;
  color: #ffffff;
  border: none;
}

/* Outline button */
.btn-secondary {
  background-color: #ffffff;
  color: #005dac;
  border: 1px solid #005dac;
  margin-top: 10px;
}

/* Hover states */
.btn-primary:hover {
  background-color: #005dac;
}

.btn-secondary:hover {
  background-color: #fff5f5;
}


/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #005dac;
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
}

.arrow.left {
  left: 1px;
  min-width: 39px;
}

.arrow.right {
  right: 10px;
  min-width: 39px;
}


.hidden {
  display: none;
}


.arrow {
  z-index: 10;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(180deg, rgba(182, 217, 242, 0) 0%, rgba(182, 217, 242, 0.2) 100%), #FFF; /* same as body */
  z-index: 5;
}

.slider-wrapper::before {
  left: 0;
}

.slider-wrapper::after {
  right: 0;
}


/* Mobile View */
@media (max-width: 768px) {
  .slider-track .card {
    min-width: 100%;
    margin: 0;
  }
}