* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      color: #f0f0f0;
      background: #0c0c0c;
    }

    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: #111;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav h1 {
      color: #ff4500;
      font-size: 1.6rem;
      letter-spacing: 2px;
      text-shadow: 0 0 8px #ff6a00;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    nav ul li a {
      color: #f0f0f0;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #ff4500;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: url('https://dlcdnrog.asus.com/rog/media/1694112562305.webp') no-repeat center center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 0 20px;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.65);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      color: #ff4500;
      text-shadow: 0 0 15px #ff6a00, 0 0 30px #ff6347;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }
    /* Navbar Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}


    .btn {
      padding: 12px 28px;
      background: linear-gradient(45deg, #ff4500, #ff6a00);
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      color: #fff;
      font-weight: bold;
      transition: 0.3s;
      box-shadow: 0 0 12px #ff4500;
    }

    .btn:hover {
      background: linear-gradient(45deg, #ff6a00, #ff4500);
      box-shadow: 0 0 25px #ff6a00;
    }

    /* Sections */
    section {
      padding: 60px 20px;
      text-align: center;
    }

    section h2 {
      font-size: 2.5rem;
      color: #ff4500;
      text-shadow: 0 0 12px #ff6a00;
      margin-bottom: 30px;
    }

    section p {
      max-width: 800px;
      margin: auto;
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
    }

    /* Services */
    .services {
      background: #111;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: auto;
    }

    .service {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(255, 69, 0, 0.4);
    }

    .service:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px #ff4500;
    }

    .service img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .service h3 {
      color: #ff6347;
      margin-bottom: 10px;
      text-shadow: 0 0 6px #ff6a00;
    }

    /* Contact Form */
    .contact form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact input, .contact textarea {
      padding: 12px;
      border: none;
      border-radius: 8px;
      outline: none;
      font-size: 1rem;
    }

    .contact button {
      padding: 12px;
      background: linear-gradient(45deg, #ff4500, #ff6a00);
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      color: #fff;
      font-weight: bold;
      transition: 0.3s;
    }

    .contact button:hover {
      background: linear-gradient(45deg, #ff6a00, #ff4500);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 20px;
      background: #000;
      margin-top: 40px;
      font-size: 0.9rem;
      color: #aaa;
    }
     /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.7);
    }
    .modal-content {
      background: #1c1c1c;
      margin: 10% auto;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      color: #fff;
      position: relative;
    }
    .modal-content h2 { margin-bottom: 20px; text-align:center; }
    .modal-content input { width:100%; padding:10px; margin:10px 0; border-radius:5px; border:none; }
    .modal-content button { width:100%; padding:10px; background:#ff4d4d; border:none; color:#fff; border-radius:5px; cursor:pointer; font-weight:700; }
    .close-modal {
      position:absolute;
      top:10px;
      right:15px;
      font-size:20px;
      cursor:pointer;
      color:#fff;
    }
    .modal-switch {
      text-align:center;
      margin-top:10px;
      cursor:pointer;
      color:#ff4d4d;
      font-weight:700;
    }

    /* Testimonials Carousel */
    .testimonials {
      padding:60px 20px;
      max-width:1200px;
      margin:0 auto;
      text-align:center;
    }
    .testimonials h2 { margin-bottom:40px; }
    .testimonial-carousel {
      position: relative;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
    }
    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .testimonial-item {
      min-width: 100%;
      color: #ea2f2f; /* main font color */
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      background: white;
    }
    .testimonial-item p { font-style: italic; margin-bottom: 10px; color: inherit; }
    .testimonial-item .rating { color: #ffb400; margin-bottom: 10px; }
    .testimonial-item strong { color: inherit; }

    .testimonial-nav {
      margin-top:20px;
    }
    .testimonial-nav button {
      background:#ff4d4d;
      border:none;
      color:#fff;
      padding:10px 15px;
      margin:0 5px;
      border-radius:5px;
      cursor:pointer;
      font-weight:700;
    }

    /* Contact Section */
    .contact {
      display:flex;
      gap:50px;
      padding:60px 20px;
      max-width:1200px;
      margin:0 auto;
      flex-wrap:wrap;
    }
    .contact-left, .contact-right {
      flex:1;
      min-width:300px;
    }
    .contact-left h2, .contact-right h2 { margin-bottom:20px; }
    .contact-left p { margin-bottom:15px; font-weight:500; }
    .contact-right form {
      display:flex;
      flex-direction:column;
    }
    .contact-right input, .contact-right textarea {
      padding:10px;
      margin-bottom:15px;
      border-radius:5px;
      border:1px solid #ddd;
      width:100%;
    }
    .contact-right button {
      background:#ff4d4d;
      color:#fff;
      border:none;
      padding:12px;
      font-weight:700;
      border-radius:5px;
      cursor:pointer;
    }

    /* Navbar */
    nav ul { display:flex; gap:20px; align-items:center; }
    nav ul li:last-child { margin-left:auto; }

    /* Footer */
    footer {
      background:#1c1c1c;
      color:#fff;
      text-align:center;
      padding:20px;
      margin-top:40px;
    }
    footer a {
      color:#ff4d4d;
      margin:0 10px;
      text-decoration:none;
      font-weight:700;
    }

    @media(max-width:768px){
      .service-grid { grid-template-columns:1fr; }
      .contact { flex-direction: column; }
    }