  
    /* only hero section css code start */
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #080812;
      color: white;
      overflow-x: hidden;
    }
    /* Hero Section */
    .hero-section {
      position: relative;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to bottom, rgba(8, 8, 18, 0.9), rgba(20, 20, 40, 0.7));
      text-align: center;
      overflow: hidden;
    }
    #three-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.85;
    }
    .hero-content h1 {
      font-size: calc(2rem + 2vw); /* Dynamic font size based on viewport width */
      font-weight: 700;
      background: linear-gradient(to right, #FFD700, #FF69B4, #00DDEB);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
      transform: perspective(1200px) rotateX(0deg);
      transition: transform 0.6s ease, text-shadow 0.6s ease;
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      border-right: 3px solid #FFD700; /* Cursor for typing effect */
      max-width: 90%; /* Prevent overflow on small screens */
      margin: 0 auto;
    }
    .hero-content h1:hover {
      transform: perspective(1200px) rotateX(15deg);
      text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    .hero-content p {
      font-size: 1.3rem;
      font-weight: 300;
      color: #d0d0d0;
      max-width: 800px;
      margin: 0 auto 30px;
      letter-spacing: 0.5px;
    }
    .hero-content .cta-btn {
      display: inline-flex;
      align-items: center;
      padding: 15px 30px;
      background: #6A0DAD;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 30px;
      transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .hero-content .cta-btn::before {
      content: '┬Г';
      margin-right: 10px;
      font-size: 1.2rem;
    }
    .hero-content .cta-btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.5s ease, height 0.5s ease;
    }
    .hero-content .cta-btn:hover::after {
      width: 300px;
      height: 300px;
    }
    .hero-content .cta-btn:hover {
      transform: translateY(-3px) scale(1.08);
      background: #7B1FA2;
      box-shadow: 0 0 25px rgba(106, 13, 173, 0.6);
    }
    /* Animations */
    @keyframes glowPulse {
      0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
      50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
      100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
    }
    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }
    @keyframes blinkCursor {
      50% { border-right-color: transparent; }
    }
    .typing {
      animation: typing 3s steps(40, end) forwards, blinkCursor 0.75s step-end infinite;
    }
    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-section {
        height: 70vh;
      }
      .hero-content h1 {
        font-size: calc(1.5rem + 1.5vw);
        white-space: normal; /* Allow wrapping on smaller screens */
        line-height: 1.2; /* Improve readability when wrapped */
      }
      .hero-content p {
        font-size: 1rem;
      }
    }
    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: calc(1.2rem + 1vw);
        max-width: 95%;
      }
      .hero-content p {
        font-size: 0.9rem;
      }
    }
    @media (max-width: 360px) {
      .hero-content h1 {
        font-size: calc(1rem + 0.8vw);
        max-width: 98%;
      }
      .hero-content p {
        font-size: 0.8rem;
      }
    }
    /* Updated form styles */
    .login-section {
      width: 100%;
      max-width: 400px; /* Limit width for better mobile view */
      padding: 20px;
      margin: 0 auto; /* Center within hero-content */
    }
    .input-group {
      border-radius: 50rem; /* Pill shape */
      overflow: hidden; /* Ensure clean rounding */
    }
    .form-control {
      border: none; /* Remove default borders */
      background-color: #ffffff; /* White background for input */
      color: #000000; /* Black text */
    }
    .btn-start {
      background-color: #6A0DAD; /* Adapted to theme purple */
      border: none;
      color: #ffffff; /* White text for better contrast */
    }
    .btn-start:hover {
      background-color: #7B1FA2; /* Slightly darker on hover */
    }
    
    
    
    
    
    