* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        overflow-x: hidden;
      }

      .hero-section {
        height: 100vh;
        background: linear-gradient(135deg, #4a73d1 0%, #2850a0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 30% 70%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
          );
        animation: backgroundMove 10s ease-in-out infinite alternate;
      }

      @keyframes backgroundMove {
        0% {
          transform: translateX(-20px) translateY(-20px);
        }
        100% {
          transform: translateX(20px) translateY(20px);
        }
      }

      .logo-container {
        text-align: center;
        z-index: 10;
        position: relative;
      }

      .logo-text {
        color: white;
        margin-bottom: 2rem;
        animation: logoFloat 3s ease-in-out infinite;
      }

      .logo-main {
        font-size: 8rem;
        font-weight: 800;
        letter-spacing: 0.5rem;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.5rem;
        animation: logoGlow 2s ease-in-out infinite alternate;
      }

      .logo-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 0.3rem;
        text-transform: uppercase;
        opacity: 0.9;
        animation: subtitleSlide 2s ease-out;
      }

      @keyframes logoFloat {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      @keyframes logoGlow {
        0% {
          text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 50px rgba(255, 255, 255, 0.1);
        }
        100% {
          text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 50px rgba(255, 255, 255, 0.3);
        }
      }

      @keyframes subtitleSlide {
        0% {
          opacity: 0;
          transform: translateY(50px);
        }
        100% {
          opacity: 0.9;
          transform: translateY(0);
        }
      }

      .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        animation: bounce 2s infinite;
        font-size: 1.5rem;
        opacity: 0.7;
        cursor: pointer;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0) translateX(-50%);
        }
        40% {
          transform: translateY(-10px) translateX(-50%);
        }
        60% {
          transform: translateY(-5px) translateX(-50%);
        }
      }

      .features-section {
        padding: 100px 0;
        background: linear-gradient(to bottom, #f8f9fa, #ffffff);
      }

      .feature-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 2rem;
        border: none;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .feature-icon {
        font-size: 3rem;
        color: #4a73d1;
        margin-bottom: 1rem;
        animation: iconRotate 4s ease-in-out infinite;
      }

      @keyframes iconRotate {
        0%,
        100% {
          transform: rotateY(0deg);
        }
        50% {
          transform: rotateY(180deg);
        }
      }

      .section-title {
        font-size: 3rem;
        font-weight: 700;
        color: #2850a0;
        text-align: center;
        margin-bottom: 3rem;
        animation: titleFadeIn 1s ease-out;
      }

      @keyframes titleFadeIn {
        0% {
          opacity: 0;
          transform: translateY(30px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }

      .shape {
        position: absolute;
        opacity: 0.1;
        animation: floatShape 15s linear infinite;
        pointer-events: none;
      }

      .shape {
        position: absolute;
        opacity: 0.1;
        animation: floatShape 15s linear infinite;
      }

      .shape:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
      }

      .shape:nth-child(2) {
        top: 60%;
        left: 80%;
        animation-delay: 5s;
      }

      .shape:nth-child(3) {
        top: 80%;
        left: 20%;
        animation-delay: 10s;
      }

      @keyframes floatShape {
        0% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-100px) rotate(180deg);
        }
        100% {
          transform: translateY(0px) rotate(360deg);
        }
      }

      .cta-section {
        background: linear-gradient(135deg, #2850a0 0%, #4a73d1 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
      }

      .cta-btn {
        background: white;
        color: #2850a0;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
      }

      .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        color: #2850a0;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
      }

      /* Typing Effect Styles */
      .typing-effect {
        display: inline-block;
        min-height: 1.2em;
        position: relative;
        font-family: 'Courier New', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
        font-weight: 500;
        font-size: 25px !important;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        color: white !important;
      }

      /* Remove the automatic cursor since we handle it via JavaScript */
      .typing-effect::after {
        display: none;
      }

      @keyframes blink-cursor {
        0%, 50% {
          border-color: white;
          opacity: 1;
        }
        51%, 100% {
          border-color: transparent;
          opacity: 0;
        }
      }

      /* Enhanced cursor animation */
      .typing-cursor-active {
        border-right: 2px solid white;
        animation: blink-cursor 1s infinite;
      }

      /* Smooth typing effect */
      @keyframes typing-char {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Additional styling for better readability */
      #baseurl {
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-family: 'Courier New', 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
        font-weight: 500;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
      }

      #baseurl:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.02);
      }

      /* Enhanced typing cursor */
      .typing-cursor {
        border-right: 2px solid white;
        animation: blink-cursor 1s infinite;
      }

      @keyframes blink-cursor {
        0%,
        50% {
          border-color: white;
        }
        51%,
        100% {
          border-color: transparent;
        }
      }

      /* Typing sound effect simulation */
      @keyframes typing-pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.02);
        }
        100% {
          transform: scale(1);
        }
      }

      @media (max-width: 768px) {
        .logo-main {
          font-size: 4rem;
        }

        .logo-subtitle {
          font-size: 1rem;
        }

        .section-title {
          font-size: 2rem;
        }
      }