        .titlea .h4{
            color:#000;
        }
        nav li a {
     color: #000; 
}
.post--items-title,
.post--img {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block; /* removes inline gaps */
}

    </style>
    <style>
/* === Carousel Minimal Styling (No Bootstrap Conflict) === */

/* Wrapper */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Inner track */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Each slide */
.carousel-item {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
}

/* Active slide */
.carousel-item.active {
  display: block;
  position: relative;
  opacity: 1;
}

/* Fade transition */
.carousel-fade .carousel-item {
  transition-property: opacity;
}

/* Image style */
.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 22px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

/* Optional caption styling */
.carousel-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 0 6px 6px;
  text-align: center;
  font-size: 14px;
}


.services-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #eef3f8 100%);
    position: relative;
    overflow: hidden;
}
.services-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 65, 87, 0.03) 0,
        rgba(255, 65, 87, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    opacity: 0.4;
    pointer-events: none;
}
.service-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-top: 4px solid #ff4157;
    background: #fff;
    border-radius: 10px;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.service-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.cta-bar {
    background: linear-gradient(90deg, #004aad, #ff4157);
    color: #fff;
}
.cta-bar .btn {
    border-radius: 30px;
    font-weight: 600;
}
.call-btn {
    background: #004aad;
    color: #fff;
}
.call-btn:hover {
    background: #003a8c;
    color: #fff;
}
.whatsapp-btn {
    background: #25d366;
    color: #fff;
}
.whatsapp-btn:hover {
    background: #1ebd5a;
    color: #fff;
}
@media (max-width: 767px) {
    .service-img-wrapper img {
        height: 180px;
    }
}










.services-section {
    background: linear-gradient(135deg, #f9fbfd 0%, #eef3f8 100%);
    position: relative;
    overflow: hidden;
}
.services-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 65, 87, 0.03) 0,
        rgba(255, 65, 87, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    opacity: 0.4;
    pointer-events: none;
}
.service-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-top: 4px solid #ff4157;
    background: #fff;
    border-radius: 10px;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.service-img-wrapper video {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #000;
}
.cta-bar {
    background: linear-gradient(90deg, #004aad, #ff4157);
    color: #fff;
}
.cta-bar .btn {
    border-radius: 30px;
    font-weight: 600;
}
.call-btn {
    background: #004aad;
    color: #fff;
}
.call-btn:hover {
    background: #003a8c;
    color: #fff;
}
.whatsapp-btn {
    background: #25d366;
    color: #fff;
}
.whatsapp-btn:hover {
    background: #1ebd5a;
    color: #fff;
}
.featured-banners {
  background: #f8f9fa;
  border-top: 3px solid #ff4157;
  border-bottom: 3px solid #ff4157;
}
.banner-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  transition: transform 0.8s ease-in-out;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  transition: transform 1.5s ease-in-out; /* smooth horizontal movement */
}
.banner-img:hover {
  transform: scale(1.03);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}
@media (max-width: 768px) {
  .banner-img-wrapper,
  .banner-img {
    height: 220px;
  }
}

