* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  body {
    font-family:Georgia, 'Times New Roman', Times, serif;
    background: #ffffff;
  
  }

  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    gap: 40px;
    background: #ffffff;
  }

  .hero-text {
    max-width: 50%;
  }

  .hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    word-break: break-word;
  }

  .hero-text h1 span {
    font-size: 100px;
    color: #d63384;
    background: linear-gradient(to right, #e91e63,rgb(123, 0, 72));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-text p {
    margin-top: 20px;
    font-size: 18px;
    color: #202020;
  }

  .blob {
    position: relative;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(147, 0, 73, 0.63), rgba(204, 0, 255, 0.4));
    border-radius: 58% 42% 39% 61% / 51% 56% 44% 49%;
    animation: blobMove 8s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .blob img {
    width: 70%;
    max-width: 100%;
    height: auto;
    z-index: 2;
  }

  @keyframes blobMove {
    0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

  /* Mobile Responsive Fixes */
  @media (max-width: 960px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 100px 0px;
      gap: 0px;
      padding-top: 200px;
    }

    .hero-text {
      max-width: 100%;
    }

    .hero-text h1 {
      font-size: 40px;
    }

    .hero-text h1 span {
        font-size: 70px;
        color: #d63384;
        background: linear-gradient(to right, #e91e63,rgb(123, 0, 72));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        
      }
    .hero-text p {
      font-size: 16px;
    }

    .blob {
      width: 80%;
      height: 320px;
      margin-top: 20px;
    }

    .blob img {
      width: 60%;
    }
  }
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Animation Keyframes */
@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Apply the fadeIn animation to service cards */
  .animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
  }
  
  /* Animation delay for each service card */
  .service-card:nth-child(1) {
    animation-delay: 0.2s;
  }
  .service-card:nth-child(2) {
    animation-delay: 0.4s;
  }
  .service-card:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes blobMove {
    0%, 100% {
      border-radius: 42% 58% 65% 35% / 30% 42% 58% 70%;
      transform: scale(1);
    }
    50% {
      border-radius: 58% 42% 35% 65% / 60% 58% 42% 40%;
      transform: scale(1.05);
    }
  }
  
  .blob-bg {
    background: linear-gradient(135deg, #f9a8d4, #c084fc);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1.3;
    z-index: -1;
    animation: blobMove 8s ease-in-out infinite;
    filter: blur(60px);
  }
  .rolling-circle {
    width: 100px;
    height: 100px;
    border: 4px solid #f472b6;
    border-radius: 50%;
    animation: roll 6s linear infinite;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: -1;
  }
  
  @keyframes roll {
    0% {
      transform: translateX(-50%) rotate(0deg);
    }
    100% {
      transform: translateX(-50%) rotate(360deg);
    }
  }
  
  /* Delays for different cards */
  .rolling-circle.delay-200 {
    animation-delay: 0.2s;
  }
  .rolling-circle.delay-400 {
    animation-delay: 0.4s;
  }
  .rolling-circle.delay-600 {
    animation-delay: 0.6s;
  }
  .hover-glow:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    transform: scale(1.03);
  }
  .section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0.75rem;
  }
  .progress {
    transition: width 2s ease-out; /* Make the width change animate */
}
.progress-bar {
    margin-bottom: 40px;
  }

  .progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
  }

  .bar-container {
    width: 100%;
    height: 16px;
    background: #ffffff;
    border-radius: 9999px;
    overflow: hidden;
  }

  .bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 9999px;
    transition: width 2s ease;
  }

  .teal { background-color: #14b8a6; }
  .cyan { background-color: #06b6d4; }
  .green { background-color: #22c55e; }

  .spacer {
    height: 100vh;
  }
  @keyframes rotate-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .animate-rotate-ring {
    animation: rotate-ring 6s linear infinite;
  }

  