 @font-face {
      font-family: "Minecraft";
      src: url("https://fonts.cdnfonts.com/s/20010/MinecraftTen-VGORe.ttf") format("truetype");
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Minecraft", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Loading Animation */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease-out;
    }

    .loader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .loader-content {
      text-align: center;
      color: #00ffcc;
    }

    .loader-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(0, 255, 204, 0.3);
      border-radius: 50%;
      border-top-color: #00ffcc;
      animation: spin 1s ease-in-out infinite;
      margin: 0 auto 20px;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    body {
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
      line-height: 1.6;
    }

    header {
      background-color: rgba(0, 0, 0, 0.9);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0, 255, 204, 0.1);
      border-bottom: 1px solid rgba(0, 255, 204, 0.1);
      backdrop-filter: blur(10px);
    }

    .headercontent {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      height: 100px;
      padding: 0 5%;
      color: white;
    }

    .headercontent p {
      font-size: 24px;
      color: #00ffcc;
      font-weight: bold;
      letter-spacing: 1px;
      text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    }

    .cont {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      color: white;
      font-size: 18px;
      font-weight: 700;
    }

    .cont li {
      list-style-type: none;
      position: relative;
    }

    .cont li::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #00ffcc;
      transition: width 0.3s ease;
    }

    .cont li:hover::after {
      width: 100%;
    }

    .cont a {
      text-decoration: none;
      color: white;
      transition: color 0.3s ease;
    }

    .cont a:hover {
      color: #00ffcc;
    }

    .contact {
      border: 2px solid #00ffcc;
      border-radius: 5px;
      color: #00ffcc;
      padding: 8px 20px;
      background-color: transparent;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: bold;
    }

    .contact:hover {
      background-color: #00ffcc;
      color: #000;
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
    }

    .icon {
      background-color: transparent;
      border: none;
      cursor: pointer;
      margin-left: 15px;
    }

    .icon img {
      vertical-align: middle;
      margin-left: 5px;
      transition: transform 0.3s ease;
    }

    .icon:hover img {
      transform: scale(1.1);
    }

    .hero-section {
      background-color: #000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      color: white;
      padding: 80px 5%;
      min-height: 80vh;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
      z-index: 0;
    }

    .sec_cont {
      color: white;
      max-width: 600px;
      z-index: 1;
    }

    .sec_cont h2 {
      margin-bottom: 20px;
      font-size: 3.5rem;
      line-height: 1.1;
      background: linear-gradient(to right, #fff 0%, #00ffcc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeInUp 1s ease;
    }

    .para {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #00ffcc;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
      text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    }

    .sec_cont p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeInUp 1s ease 0.4s forwards;
      color: #ccc;
    }

    .hero-cta {
      display: inline-block;
      padding: 12px 30px;
      background-color: #00ffcc;
      color: #000;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid #00ffcc;
      opacity: 0;
      animation: fadeInUp 1s ease 0.6s forwards;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1rem;
    }

    .hero-cta:hover {
      background-color: transparent;
      color: #00ffcc;
      box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    }

    .bot-container {
      width: 600px;
      height: 600px;
      z-index: 1;
      position: relative;
    }

    .bot {
      width: 100%;
      height: 100%;
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    spline-viewer {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .square-shape {
      position: absolute;
      bottom: 20px;
      left: 500px ;
      transform: translateX(-50%);
      width: 300px;
      height: 50px;
      background: black;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
      border: 1px solid #00ffcc;
      backdrop-filter: blur(5px);
    }

    .square-shape::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      background: #00ffcc;
      border-radius: 50%;
      left: 15px;
      animation: pulse 1.5s infinite;
      box-shadow: 0 0 10px #00ffcc;
    }

    .square-shape p {
      color: #00ffcc;
      font-size: 14px;
      letter-spacing: 1px;
      text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
    }

    .cards-section {
      background-color: #0d0d0d;
      color: white;
      padding: 100px 5%;
      text-align: center;
      position: relative;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
      color: #00ffcc;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: #00ffcc;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .card {
      background-color: #1a1a1a;
      border-radius: 12px;
      padding: 30px;
      width: 300px;
      text-align: left;
      position: relative;
      transition: all 0.3s ease;
      border: 1px solid #333;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #00ffcc;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
      border-color: #00ffcc;
    }

    .card h3 {
      margin-top: 20px;
      font-size: 1.5rem;
      color: #00ffcc;
    }

    .card p {
      font-size: 1rem;
      margin-top: 15px;
      color: #aaa;
      line-height: 1.5;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #00ffcc;
      border-radius: 50%;
      position: absolute;
      top: 25px;
      left: 25px;
      box-shadow: 0 0 10px #00ffcc;
    }

    .cta-form {
      background-color: #000;
      color: white;
      padding: 100px 5%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      position: relative;
      overflow: hidden;
    }

    .cta-form::before {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
      z-index: 0;
    }

    .cta-text {
      flex: 1;
      min-width: 300px;
      z-index: 1;
    }

    .cta-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #00ffcc;
    }

    .cta-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }

    .contact-form {
      flex: 1;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 1;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      background: #1a1a1a;
      border: 1px solid #333;
      color: white;
      font-size: 16px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #00ffcc;
      box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    }

    .contact-form button {
      background-color: #00ffcc;
      color: #000;
      padding: 15px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .contact-form button:hover {
      background-color: #00e6b8;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
    }

    /* Testimonials */
    .testimonials {
      background-color: #100f0f;
      color: white;
      padding: 100px 5%;
      text-align: center;
      position: relative;
    }

    .testimonials h2 {
      font-size: 2.5rem;
      margin-bottom: 60px;
      color: #00ffcc;
      position: relative;
    }

    .testimonials h2::after {
      content: '';
      position: absolute;
      width: 50px;
      height: 3px;
      background: #00ffcc;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .testimonial-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .testimonial {
      background-color: #1a1a1a;
      border: 1px solid #333;
      padding: 30px;
      max-width: 350px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
      transition: all 0.3s ease;
      position: relative;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 60px;
      color: rgba(0, 255, 204, 0.1);
      font-family: serif;
      line-height: 1;
    }

    .testimonial:hover {
      box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
      transform: translateY(-5px);
      border-color: #00ffcc;
    }

    .testimonial p {
      font-style: italic;
      margin-bottom: 20px;
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .testimonial h4 {
      margin: 0;
      color: #00ffcc;
      font-size: 1.2rem;
    }

    .testimonial span {
      font-size: 0.9rem;
      color: #888;
      display: block;
      margin-top: 5px;
    }

    footer {
      background-color: #000;
      color: #ccc;
      padding: 80px 5% 30px;
      position: relative;
      border-top: 1px solid rgba(0, 255, 204, 0.1);
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, #00ffcc 50%, transparent 100%);
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      text-align: left;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-brand {
      flex: 1;
      min-width: 300px;
    }

    .footer-brand h2 {
      color: #00ffcc;
      margin-bottom: 15px;
      font-size: 1.8rem;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: #aaa;
      line-height: 1.6;
    }

    .footer-links {
      flex: 0 0 200px;
    }

    .footer-links h4,
    .footer-social h4 {
      margin-bottom: 20px;
      color: #00ffcc;
      font-size: 1.2rem;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.9rem;
    }

    .footer-links ul li a:hover {
      color: #00ffcc;
    }

    .footer-social {
      flex: 0 0 200px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: #1a1a1a;
      border-radius: 50%;
      color: #ccc;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #00ffcc;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 255, 204, 0.2);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 40px;
      margin-top: 40px;
      font-size: 0.8rem;
      color: #666;
      border-top: 1px solid #333;
      max-width: 1200px;
      margin: 0 auto;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @keyframes pulse {
      0% { opacity: 0.5; }
      50% { opacity: 1; }
      100% { opacity: 0.5; }
    }

    /* Glow effect for interactive elements */
    .glow-on-hover {
      transition: box-shadow 0.3s ease;
    }

    .glow-on-hover:hover {
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 101;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
      color: #00ffcc;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      z-index: 100;
      transition: right 0.3s ease;
      padding: 100px 30px 30px;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
      border-left: 1px solid #00ffcc;
      backdrop-filter: blur(10px);
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav .cont {
      flex-direction: column;
      gap: 20px;
    }

    .mobile-nav .btn {
      margin-top: 30px;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .bot-container {
        width: 500px;
        height: 500px;
      }
    }

    @media (max-width: 992px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
      }

      .sec_cont {
        max-width: 100%;
        margin-bottom: 40px;
      }

      .bot-container {
        margin: 0 auto;
      }

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

      .testimonials h2,
      .cta-text h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .headercontent {
        justify-content: space-between;
        padding: 0 5%;
      }

      .cont {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .sec_cont h2 {
        font-size: 2.5rem;
      }

      .para {
        font-size: 1.2rem;
      }

      .bot-container {
        width: 100%;
        height: 400px;
      }

      .square-shape {
        width: 250px;
      }

      .card {
        width: 100%;
        max-width: 350px;
      }

      .footer-container {
        flex-direction: column;
      }

      .footer-links,
      .footer-social {
        flex: 1;
        min-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .headercontent p {
        font-size: 20px;
      }

      .sec_cont h2 {
        font-size: 2rem;
      }

      .hero-cta {
        width: 100%;
        text-align: center;
      }

      .square-shape {
        width: 200px;
        height: 40px;
      }

      .square-shape p {
        font-size: 12px;
      }

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

      .testimonials h2,
      .cta-text h2 {
        font-size: 1.8rem;
      }
      
      .hero-section {
        min-height: auto;
        padding: 80px 5% 60px;
      }
    }