@media (max-width: 1024px) {
    .hero-btn{
        margin: auto;
        margin-top: 14px;
    }
  }



  .floating-box {
    position: absolute;
    width: 150px;
    height: 120px;
    background: linear-gradient(145deg, #e74d3cab, #c0392bab); /* red to orange gradient */
    border-radius: 12px;
    box-shadow:
      0 8px 15px rgba(231, 76, 60, 0.3),  /* deeper shadow */
      inset -2px -2px 6px rgba(255, 255, 255, 0.2), /* light top highlight */
      inset 2px 2px 8px rgba(0, 0, 0, 0.1); /* slight inner depth */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatY 5s ease-in-out infinite;
    z-index: 10;
    transform-style: preserve-3d;
  }
  
  
  .box-content {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .box-content i {
    font-size: 24px;
    margin-bottom: 4px;
  }
  
  @keyframes floatY {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-40px);
    }
  }
  

 
  /* lead section */

  .lead-section {
    padding: 60px 40px;
  }
  
  .lead-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .lead-image-area {
    position: relative;
    height: auto;
    flex-shrink: 0;
  }
  
  .lead-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffb347 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    top: 0;
    left: 0;
  }
  
  .lead-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  
  .lead-content {
    max-width: 600px;
  }
  
  .lead-content h1 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .text-highlight {
    color: #ff7a45;
  }
  
  .text-bold {
    font-weight: bold;
  }
  
  .lead-content p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .lead-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #ffb347;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .lead-button:hover {
    background: #ffb347;
    color: #0e001d;
  }
  
  .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .lead-button:hover .arrow {
    transform: translateX(5px);
  }
  
  @media (max-width: 768px) {
    .lead-wrapper {
      flex-direction: column-reverse;
      text-align: center;
    }
  }

  .blade-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 2px;
  height: 70%;
  background: linear-gradient(to bottom, #ff0000, #b30000);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  z-index: 10;
}

/* Card Container */


/* Testimonial card*/


/* .card-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 80%;
}


.card {
  position: relative;
  background-color: #1e1e1e;
  color: white;
  border: 2px solid transparent;
  padding: 2rem 1.5rem 1.5rem;
  
  min-width: 300px;
  border-radius: 1rem;
  transition: 0.4s;
  box-shadow: 0 0 0 2px #1e1e1e;
  
}

@media (max-width: 768px) {
  .card {
    width: 45%;
  }
}


.card:hover .card-icons {
  transform: scale(1.1);
  transition: transform 0.8s ease;
}

.card:hover {
  border-image: linear-gradient(to right, #ff4e50, #f97123);
  border-image-slice: 1;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  border-radius: 1rem;

}

.icon-box {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(6px);
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.main-text {
  margin-top: 2rem;
}

.secondary-text {
  color: #cccccc;
  margin: 0.5rem 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #ff4e50, #f9d423);
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  filter: brightness(1.1);
}
 */

 /* Updated card container */

/* From Uiverse.io by Ashon-G */ 
.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(255, 163, 26, 0.7);
  --c-color-2: #ff1a1a;
  --c-color-3: #b34b4b;
  --c-color-4: rgba(255, 232, 26, 0.7);
  --c-shadow: rgba(255, 223, 87, 0.5);
  --c-shadow-inset-top: rgba(255, 52, 52, 0.9);
  --c-shadow-inset-bottom: rgba(255, 250, 215, 0.8);
  --c-radial-inner: #ff1515;
  --c-radial-outer: #fff172;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  width: 200px;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(
    circle,
    var(--c-radial-inner),
    var(--c-radial-outer) 80%
  );
  box-shadow: 0 0 14px var(--c-shadow);
}

.uiverse:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.uiverse:hover {
  --duration: 1400ms;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }

  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }

  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }

  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }

  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }

  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }

  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }

  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }

  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }

  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }

  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }

  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }

  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}

/* Testimonials */
/* Blobs */
@keyframes blob1 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(30px, -50px); }
  66% { transform: translate(-20px, 20px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes blob2 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(20px, -30px); }
  100% { transform: translate(0px, 0px); }
}

@keyframes blob3 {
  0% { transform: translate(0px, 0px); }
  33% { transform: translate(50px, 20px); }
  66% { transform: translate(-30px, -40px); }
  100% { transform: translate(0px, 0px); }
}

.blob1 {
  animation: blob1 2s ease-in-out infinite;
}

.blob2 {
  animation: blob2 3s ease-in-out infinite;
}

.blob3 {
  animation: blob3 4s ease-in-out infinite;
}
