.text-purple {
    color: #000000;
}

.expertise-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    padding: 0;
}

.expertise-card .card-header {
    background: linear-gradient(90deg, #ad1212, #ff0000, #ad1212);
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    font-size: 18px;
}

.expertise-card ul {
    padding: 20px;
}

.expertise-card li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.expertise-card li:last-child {
    border-bottom: none;
}

.expertise-card li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}


.tech-card {
    background: #fff;
    border-radius: 48px 8px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.tech-card .icon {
    width: 40px;
    height: 40px;
}

.gradient-card {
    background: linear-gradient(135deg, #732ff9, red);
}




.boxs {
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.boxs:hover {
    background: linear-gradient(90deg, #e1252b, #ff3e4f, #e1252b);
    border-radius: 8px 48px;
    color: white;
}

.boxs:hover .tech-card {
    background: transparent;
    color: white;
    box-shadow: none;
}

.boxs:hover .tech-card h5,
.boxs:hover .tech-card p {
    color: white;
}


.text-gradient {
    background: linear-gradient(to right, #e1252b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-container {
    position: relative;
    max-height: 331px;
    overflow-y: auto;
    padding-left: 40px;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

.timeline-inner {
    position: relative;
}

.timeline-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 90%;
    background: repeating-linear-gradient(to bottom, #e1252b, #d1383d 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.timeline-step {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.step-icon {
    background: linear-gradient(135deg, #e1252b, #c85a5e);
    border-radius: 15px;
    padding: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-icon img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.step-content h5 {
    margin: 0;
    font-weight: bold;
}

.step-content p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #333;
}

.timeline-container::-webkit-scrollbar {
    width: 8px;
}

.timeline-container::-webkit-scrollbar-thumb {
    background: linear-gradient(#e1252b, #d36d70);
    border-radius: 10px;
}


/* Wrapper with video */
.custom-video-wrapper {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center; /* horizontal centering */
  color: #fff;
}

/* Background video */
.custom-video-wrapper .banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Overlay */
.custom-video-wrapper .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Fixed the class name and centered content */
.customs-containers {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* Vertical center */
  height: 100%;
}
.banners-title{
    color: #fff;
}
.banner-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-primary-custom,
.btn-secondary-custom {
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Primary button */
.btn-primary-custom {
  background-color: #e1252b; /* your custom red color */
  color: #fff;
}

/* Secondary button */
.btn-secondary-custom {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-primary-custom:hover {
  background-color: #c41720;
  color: #fff;
}

.btn-secondary-custom:hover {
  background-color: #fff;
  color: #e1252b;
}





