 <style>
    /* Reset & Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
    
    body {
      font-family: 'Montserrat', sans-serif;
      background: #010101;
      color: #fff;
      overflow-x: hidden;
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2;
      transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }
    .overlay.hidden {
      opacity: 0;
      visibility: hidden;
    }
    /* Hero Section with Embedded Spline Viewer */
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      z-index: 2;
      overflow: hidden;
    }
    a {
	text-decoration: none;
}
.title-container {
  transition: all 0.6s ease-in-out;
}
.title-container p {
  max-width: 1000px; /* increase this value as needed */
  width: 100%;
  margin: 0 auto;
}
/* Shrinking effect */
.shrink {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

/* Hide the title completely after animation */
.hidden {
  display: none;
}

    .spline-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1.15); /* Cropping Effect */
      width: 100vw;
      height: 100vh;
      z-index: 1;
    }
    .hero h1 {
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      position: relative;
      z-index: 2;
      transition: all 0.5s ease-in-out;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 1rem auto 2rem auto;
      opacity: 0.8;
      position: relative;
      z-index: 2;
      transition: all 0.5s ease-in-out;
    }
    .cta-button {
      background: #5f43b2;
      padding: 1rem 2rem;
      border: none;
      font-size: 1rem;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 8px;
      transition: transform 0.2s ease, background 0.2s ease;
      position: relative;
      z-index: 2;
    }
    .cta-button:hover {
      background: #3a3153;
      transform: scale(1.05);
    }
    .shrink {
      position: absolute;
      top: 20px;
      left: 20px;
      text-align: left;
      font-size: 1rem;
      transition: all 1s ease-in-out;
    }
    .shrink h1 {
      font-size: 3rem;
      margin: 0;
    }
    .shrink p {
      font-size: 0.9rem;
      margin: 0;
    }
    .hide {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }
     /* Sections */
    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 2rem;
      position: relative;
      z-index: 3;
    }
    h2 {
      font-size: 2.5rem;
      text-transform: uppercase;
      margin-bottom: 2rem;
      letter-spacing: 0.05em;
    }
    .content-block {
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
      font-size: 1.1rem;
      opacity: 0.9;
    }
    #about {
      position: relative;
      top: 50%;
      right: -23%;
      margin-top: 380px;
      transform: translateY(-50%);
      width: 40%;
      text-align: left;
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    #about h2 {
      font-size: 2rem;
      border-bottom: 2px solid white;
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
    }
    .content-block p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .content-block p:last-child {
      font-weight: bold;
    }
    /* Move Services Section to Left */
    #services {
      position: relative;
      margin-top: 600px;
      top: 70%;
      left: -25%;
      transform: translateY(-50%);
      width: 40%;
      text-align: left;
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .service-item {
      padding: 1rem;
      border-bottom: 2px solid white;
    }
    .service-item:last-child {
      border-bottom: none;
    }
    /* Footer */
    footer {
      text-align: center;
      padding: 1rem 0;
      font-size: 0.9rem;
      opacity: 0.7;
    }
    .navbar {
      display: none; /* Initially hidden */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0);
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transform: translateY(-100%);
      transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .navbar.show {
      transform: translateY(0);
      opacity: 1;
    }

    .navbar h1 {
      color: white;
      margin: 0;
      font-size: 20px;
      padding-left: 20px;
    }

    .navbar .nav-links {
      display: flex;
      gap: 15px;
      padding-right: 20px;
    }

    .navbar .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 10px 15px;
      border-radius: 5px;
      transition: background 0.3s;
    }

    .navbar .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    .vehicle-switch-navbar {
      display: flex;
      padding-left: 50px;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
    }
    
    .vehicle-switch-navbar button {
      background: transparent;
      color: white;
      font-size: 16px;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      transition: background 0.3s;
      cursor: pointer;
    }
    
    .vehicle-switch-navbar button:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .vehicle-switch-navbar button:active {
      transform: scale(0.95);
    }
    </style>