.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;
}

.text-primarysss {
  color: #000 !important;
}

.customs-section-title {
  margin-bottom: 40px;
}

.customs-section-title h2 {
  /* font-size: 32px; */
  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;
}

/* add new  */
/* Premium Hero Section */
.premium-hero {
  margin-top: 35px;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* Background gradient orbs */
.premium-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(207, 33, 40, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: 0;
}

.premium-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(207, 33, 40, 0.03) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

/* Premium Badge */
.premium-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(207, 33, 40, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(207, 33, 40, 0.3);
  backdrop-filter: blur(5px);
}

/* Premium Heading - FIXED text wrapping */
.premium-heading {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  /* margin-bottom: 20px; */
  background: linear-gradient(to right, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
  max-width: 100%;
}

/* For smaller screens */
@media (max-width: 1200px) {
  .premium-heading {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .premium-heading {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .premium-heading {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .premium-heading {
    font-size: 32px;
  }
}

/* Premium Subtext - FIXED text wrapping */
.premium-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 95%;
  word-break: break-word;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .premium-subtext {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* Premium CTA Group - FIXED alignment */
.premium-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .premium-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Premium Button */
.premium-btn-primary {
  background-color: #cf2128;
  color: var(--contrast-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, #cc4c52, transparent 60%);
}

@media (max-width: 576px) {
  .premium-btn-primary {
    white-space: normal;
    justify-content: center;
    padding: 12px 20px;
    font-size: 12px;
  }
}

.premium-btn-primary:hover {
  background-color: #cc4c52;
  transform: translateY(-2px);
  /* box-shadow: 0 8px 25px 
 color-mix(in srgb, var(--accent-color), transparent 40%); */
  box-shadow: 0 8px 25px color-mix(in srgb, #cc4c52, transparent 60%);
  color: var(--contrast-color);
}

.premium-btn-primary:hover i {
  transform: translateX(5px);
}

/* Premium Play Button */
.premium-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .premium-play-btn {
    white-space: normal;
  }
}

.premium-play-btn:hover {
  color: #cf2128;
}

.play-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.premium-play-btn:hover .play-icon {
  background: #cf2128;
  border-color: #cf2128;
  transform: scale(1.1);
}

.play-icon i {
  font-size: 0.9rem;
  color: #fff;
}

/* Trust Badges - FIXED wrapping */
.premium-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (max-width: 400px) {
  .trust-item {
    white-space: normal;
    font-size: 0.85rem;
  }
}

.trust-item i {
  color: #cf2128;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Premium Circle Wrapper - FIXED sizing */
.premium-circle-wrapper {
  width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

/* Responsive circle sizes */
@media (max-width: 1200px) {
  .premium-circle-wrapper {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 992px) {
  .premium-circle-wrapper {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .premium-circle-wrapper {
    width: 380px;
    height: 380px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .premium-circle-wrapper {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 400px) {
  .premium-circle-wrapper {
    width: 280px;
    height: 280px;
  }
}

/* Floating elements */
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #cf2128 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: floatDots 20s linear infinite;
  z-index: 0;
}

.floating-dots-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  animation: floatDotsReverse 15s linear infinite;
}

/* Premium Outer Circle */
.premium-circle-outer {
  width: 85%;
  height: 85%;
  border: 1px solid rgba(207, 33, 40, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateCircleReverse 30s linear infinite;
  z-index: 1;
  box-shadow: 0 0 30px rgba(207, 33, 40, 0.1);
}

/* Premium Inner Circle */
.premium-circle-rotate {
  width: 60%;
  height: 60%;
  border: 1px solid rgba(207, 33, 40, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateCircle 20s linear infinite;
  z-index: 2;
  box-shadow: 0 0 30px rgba(207, 33, 40, 0.15);
}

/* Premium Icons - FIXED positioning */
.premium-icon {
  background: linear-gradient(135deg, #1a1a1a, #222);
  color: #cf2128;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(207, 33, 40, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: absolute;
}

@media (max-width: 768px) {
  .premium-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .premium-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .premium-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

.premium-icon:hover {
  transform: scale(1.1);
  background: #cf2128;
  color: #fff;
  box-shadow: 0 5px 20px rgba(207, 33, 40, 0.5);
}

.premium-icon-outer {
  background: linear-gradient(135deg, #1a1a1a, #222);
  color: #cf2128;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(207, 33, 40, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
}

@media (max-width: 768px) {
  .premium-icon-outer {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .premium-icon-outer {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

.premium-icon-outer:hover {
  transform: scale(1.1);
  background: #cf2128;
  color: #fff;
}

/* Icon positioning - FIXED for all screen sizes */
.premium-circle-wrapper .dm-icon-1 {
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.premium-circle-wrapper .dm-icon-2 {
  right: -27px;
  top: 50%;
  transform: translateY(-50%);
}

.premium-circle-wrapper .dm-icon-3 {
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.premium-circle-wrapper .dm-icon-4 {
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .premium-circle-wrapper .dm-icon-1 {
    top: -22px;
  }

  .premium-circle-wrapper .dm-icon-2 {
    right: -22px;
  }

  .premium-circle-wrapper .dm-icon-3 {
    bottom: -22px;
  }

  .premium-circle-wrapper .dm-icon-4 {
    left: -22px;
  }
}

@media (max-width: 576px) {
  .premium-circle-wrapper .dm-icon-1 {
    top: -20px;
  }

  .premium-circle-wrapper .dm-icon-2 {
    right: -20px;
  }

  .premium-circle-wrapper .dm-icon-3 {
    bottom: -20px;
  }

  .premium-circle-wrapper .dm-icon-4 {
    left: -20px;
  }
}

.premium-circle-wrapper .dm-icon-6 {
  top: 0px;
  left: 22%;
}

.premium-circle-wrapper .dm-icon-7 {
  right: 0px;
  top: 22%;
}

.premium-circle-wrapper .dm-icon-8 {
  bottom: 0px;
  right: 22%;
}

.premium-circle-wrapper .dm-icon-9 {
  left: 0px;
  bottom: 22%;
}

@media (max-width: 768px) {

  .premium-circle-wrapper .dm-icon-6,
  .premium-circle-wrapper .dm-icon-7,
  .premium-circle-wrapper .dm-icon-8,
  .premium-circle-wrapper .dm-icon-9 {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Premium Center Image */
.premium-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 5;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .premium-center-img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 576px) {
  .premium-center-img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 400px) {
  .premium-center-img {
    width: 100px;
    height: 100px;
  }
}

.premium-center-img::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #cf2128, transparent, #cf2128);
  border-radius: 50%;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

.img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(207, 33, 40, 0.3) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: -1;
}

.premium-center-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.digital-highlight {
  background: #bc161d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* font-weight: 800; */
  position: relative;
  /* display: inline-block; */
  /* text-shadow: 0 0 20px rgba(188, 22, 29, 0.3); */
}

/* Animations */
@keyframes floatDots {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatDotsReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@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);
  }
}