.services-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #cf2128;
}

.services-card .icon img {
  width: 120px;
  height: 120px;
}

.text-primary {
  color: #cf2128 !important;
}

.dm-hero-circle {
  margin-top: 70px;
  background: #0B0B0B;
  color: #fff;
}

.dm-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.dm-subtext {
  font-size: 1.1rem;
  color: #ccc;
}

/* Buttons */
.dm-btn-primary {
  padding: 12px 20px;
  background-color: #cf2128;
  color: #fff;
  border: none;
}

.dm-btn-primary:hover {
  background-color: #94151c;
}

.dm-btn-outline {
  border: 2px solid #cf2128;
  color: #cf2128;
  padding: 9px 20px;
}

.dm-btn-outline:hover {
  background: #cf2128;
  color: #fff;
}

/* CIRCLE WRAPPER */
.dm-circle-wrapper {
  width: 420px;
  height: 420px;
  margin: 0 auto;
  position: relative;
}

/* OUTER Circle */
.dm-circle-outer {
  width: 420px;
  height: 420px;
  border: 2px dashed #cf2128;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateCircleReverse 24s linear infinite;
  z-index: 1;
}

/* INNER Circle + icons */
.dm-circle-rotate {
  width: 320px;
  height: 320px;
  border: 2px dashed #cf2128;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateCircle 14s linear infinite;
  z-index: 2;
}

/* ICON STYLE */
.dm-icon {
  position: absolute;
  background: #fff;
  color: #cf2128;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Icon placement */
.dm-icon-1 {
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.dm-icon-2 {
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.dm-icon-3 {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.dm-icon-4 {
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.dm-icon-5 {
  top: -25px;
  right: 50%;
  transform: translateX(50%);
}

/* Center image */
.dm-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 5;
}

.dm-center-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animations */
@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateCircleReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .dm-heading {
    font-size: 2rem;
    text-align: center;
  }

  .dm-left {
    text-align: center;
  }

  .dm-circle-wrapper {
    width: 300px;
    height: 300px;
  }

  .dm-circle-outer {
    width: 300px;
    height: 300px;
  }

  .dm-circle-rotate {
    width: 230px;
    height: 230px;
  }

  .dm-right {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

/* Add this part for OUTER icons positioning */
.dm-icon-outer {
  position: absolute;
  background: #fff;
  color: #cf2128;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
}

.dm-icon-6 {
  top: 12px;
  left: 20%;
  transform: translateX(-50%);
}

.dm-icon-7 {
  right: 12px;
  top: 20%;
  transform: translateY(-50%);
}

.dm-icon-8 {
  bottom: 12px;
  right: 20%;
  transform: translateX(50%);
}

.dm-icon-9 {
  left: 12px;
  bottom: 20%;
  transform: translateY(50%);
}

.ctas-section {
  background-color: #cf2128;
}

.ctas-heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.ctas-subtext {
  font-size: 1rem;
  color: #f8f8f8;
}

.ctas-btn-primary {
  background-color: #fff;
  color: #cf2128;
  padding: 15px 55px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ctas-btn-primary:hover {
  background-color: #f5f5f5;
  color: #cf2128;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ctas-heading {
    font-size: 1.7rem;
  }
  .ctas-subtext {
    font-size: 0.95rem;
  }
}

.customs-section-title {
  margin-bottom: 40px;
}

.customs-section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #cf2128; /* Red heading */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.customs-section-title .customs-underline {
  width: 80px;
  height: 3px;
  background: red;
  margin: 0 auto 15px auto;
  position: relative;
}

.customs-section-title .customs-underline::before,
.customs-section-title .customs-underline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 1px;
  background: #aaa;
}

.customs-section-title .customs-underline::before {
  left: -45px;
}

.customs-section-title .customs-underline::after {
  right: -45px;
}

.customs-section-title p {
  color: #333;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

