* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
  
      color: white;
      overflow-x: hidden;
    }
.margin-div{
margin-top:105px;}

    .hero {
      
      position: relative;
      min-height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: white;
    }

    .bg-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), transparent, rgba(244, 63, 94, 0.05));
      filter: blur(3rem);
    }

    .shapes-container {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .elegant-shape {
      position: absolute;
      opacity: 0;
      transform: translateY(-150px) rotate(0deg);
      animation: fadeIn 2.4s ease forwards;
    }

    .shape-inner {
      position: relative;
      animation: float 12s ease-in-out infinite;
    }

    .shape-design {
      position: absolute;
      inset: 0;
      border-radius: 9999px;
      border: 2px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(2px);
    }

    .shape-design::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 9999px;
      background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
    }

    .shape-1 {
      left: -10%;
      top: 15%;
      animation-delay: 0.3s;
    }

    .shape-1 .shape-inner {
      width: 600px;
      height: 140px;
    }

    .shape-1 .shape-design {
      background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent);
    }

    .shape-2 {
      right: -5%;
      top: 70%;
      animation-delay: 0.5s;
    }

    .shape-2 .shape-inner {
      width: 500px;
      height: 120px;
    }

    .shape-2 .shape-design {
      background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent);
    }

    .shape-3 {
      left: 5%;
      bottom: 5%;
      animation-delay: 0.4s;
    }

    .shape-3 .shape-inner {
      width: 300px;
      height: 80px;
    }

    .shape-3 .shape-design {
      background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
    }

    .shape-4 {
      right: 15%;
      top: 10%;
      animation-delay: 0.6s;
    }

    .shape-4 .shape-inner {
      width: 200px;
      height: 60px;
    }

    .shape-4 .shape-design {
      background: linear-gradient(to right, rgba(245, 158, 11, 0.15), transparent);
    }

    .shape-5 {
      left: 20%;
      top: 5%;
      animation-delay: 0.7s;
    }

    .shape-5 .shape-inner {
      width: 150px;
      height: 40px;
    }

    .shape-5 .shape-design {
      background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent);
    }

    .content {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .content-inner {
      max-width: 48rem;
      margin: 0 auto;
      text-align: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background-color: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.5s;
    }

    .badge img {
      width: 20px;
      height: 20px;
    }

    .badge span {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.05em;
    }

    .title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
            margin-top: 1.5rem;

      
      letter-spacing: -0.025em;
      line-height: 1.2;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.7s;
      color:black;
    }

    .title-primary {
      background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.8));
      -webkit-background-clip: text;
      background-clip: text;
      display: block;
    }

    .title-accent {
      background: linear-gradient(to right, rgb(165, 180, 252), rgba(255, 255, 255, 0.9), rgb(251, 207, 232));
      -webkit-background-clip: text;
      background-clip: text;
      display: block;
    }

    .description {
      font-size: 1rem;
      color: rgba(0, 0, 0);
      margin-bottom: 2rem;
      line-height: 1.7;
      font-weight: 300;
      letter-spacing: 0.05em;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
      padding: 0 1rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.9s;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, #030303, transparent, rgba(3, 3, 3, 0.8));
      pointer-events: none;
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
        transform: translateY(-150px) rotate(-15deg);
      }
      100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(15px);
      }
    }

    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Media Queries */
    @media (min-width: 640px) {
      .title {
        font-size: 3.75rem;
      }
      .description {
        font-size: 1.125rem;
      }
      .shape-1 {
        left: -5%;
      }
    }

    @media (min-width: 768px) {
      .title {
        font-size: 6rem;
        margin-bottom: 2rem;
      }
      .description {
        font-size: 1.25rem;
      }
      .badge {
        margin-bottom: 3rem;
      }
      .shape-1 {
        top: 20%;
      }
      .shape-2 {
        top: 75%;
      }
      .shape-3 {
        bottom: 10%;
        left: 10%;
      }
      .shape-4 {
        top: 15%;
        right: 20%;
      }
      .shape-5 {
        top: 10%;
        left: 25%;
      }
    }