html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;

}

/* ===============================
       HERO SECTION
    ================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 20px 60px;
      position: relative;
      background: radial-gradient(circle at right, #2b0a0a, #000 100%);
    }

    .hero-content {
      max-width: 1000px;
      color: #fff;
    }

    /* Tag line */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(225, 6, 0, 0.15);
      border: 1px solid rgba(225, 6, 0, 0.4);
      color: #ff5c5c;
      font-size: 14px;
      margin-bottom: 30px;
    }

    /* Headline */
    .hero h1 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero h1 span {
      color: #e10600;
    }

    /* Description */
    .hero p {
      font-size: 18px;
      color: #cfcfcf;
      max-width: 800px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    /* Buttons */
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 80px;
      flex-wrap: wrap;
      text-decoration: none;
    }

    .btn-primary {
      background: #e10600;
      color: #fff;
      padding: 16px 32px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(225, 6, 0, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 16px 32px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      transition: border 0.3s ease, background 0.3s ease;
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.05);
    }

    /* Stats */
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }

    .stat h2 {
      font-size: 36px;
      color: #e10600;
      margin-bottom: 8px;
    }

    .stat p {
      font-size: 14px;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-stats {
        gap: 40px;
      }
    }

 
    /* ===============================
       SERVICES SECTION
    ================================ */
    .services {
      padding: 120px 40px;
      text-align: center;
      background: radial-gradient(circle at right, #2b0a0a, #000 100%);
    }

    .services-tag {
      color: #e10600;
      font-weight: 600;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .services h2 {
      font-size: 52px;
      font-weight: 800;
      margin-bottom: 20px;
      color: #fff;
    }

    .services h2 span {
      color: #e10600;
    }

    .services-desc {
      max-width: 700px;
      margin: 0 auto 80px;
      font-size: 18px;
      color: #cfcfcf;
      line-height: 1.7;
    }

    /* Cards */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.01)
      );
      color: #e10600;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: left;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(225, 6, 0, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #e10600;
      margin-bottom: 24px;
    }

    .service-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .service-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #cfcfcf;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .services h2 {
        font-size: 40px;
      }

      .services-desc {
        font-size: 16px;
      }
    }

  /* ===============================
       ABOUT SECTION
    ================================ */
    .about {
      padding: 120px 60px;
      margin: 0 auto;
      background: radial-gradient(circle at right, #2b0a0a, #000 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* ===============================
       LEFT CONTENT
    ================================ */
    .about-tag {
      color: #e10600;
      font-weight: 600;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .about h1 {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 30px;
      color: #fff;
    }

    .about h1 span {
      color: #e10600;
    }

    .about h2 {
      font-size: 16px;
      line-height: 1.8;
      color: #cfcfcf;
      margin-bottom: 26px;
      max-width: 640px;
    }

    .about-brand {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 40px;
    }

    .about-brand img {
      width: 64px;
      height: 64px;
    }

    .about-brand h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #fff;
    }

    .about-brand span {
      font-size: 14px;
      color: #aaa;
    }

    /* ===============================
       RIGHT CARDS
    ================================ */
    .about-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      color: #e10600;
    }

    .about-card {
      background: linear-gradient(
        135deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.01)
      );
      border-radius: 20px;
      padding: 32px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .about-card.highlight {
      border: 1px solid rgba(225,6,0,0.35);
    }

    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    .about-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(225,6,0,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e10600;
      font-size: 22px;
      margin-bottom: 22px;
    }

    .about-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .about-card p {
      font-size: 14px;
      line-height: 1.7;
      color: #cfcfcf;
      margin: 0;
    }

    /* ===============================
       RESPONSIVE
    ================================ */
    @media (max-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-cards {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .about {
        padding: 100px 30px;
      }

      .about h1 {
        font-size: 40px;
      }

      .about-cards {
        grid-template-columns: 1fr;
      }
    }

    /* ===============================
       CONTACT SECTION
    ================================ */
    .contact {
      padding: 120px 40px;
      text-align: center ;
      margin: 0;
      background: radial-gradient(circle at right, #2b0a0a, #000 100%);
      
    }

    .contact-header {
      text-align: center;
      margin-bottom: 80px;
      color: #fff;
    }

    .contact-header h1 {
      font-size: 52px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .contact-header h1 span {
      color: #e10600;
    }

    .contact-header p {
      font-size: 18px;
      color: #cfcfcf;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Layout */
    .contact-grid {
      display: grid;
      text-align: left;
      grid-template-columns: 1fr 1.5fr;
      gap: 50px;
      color: #e10600;
    }

    /* ===============================
       LEFT INFO
    ================================ */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .info-card {
      background: linear-gradient(
        135deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.01)
      );
      border-radius: 18px;
      padding: 26px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .info-icon {
      width: 52px;
      height: 52px;
      background: rgba(225,6,0,0.15);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e10600;
      font-size: 22px;
    }

    .info-card h4 {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .info-card span {
      font-size: 14px;
      color: #cfcfcf;
    }

    .cta-card {
      background: radial-gradient(circle at top left, #2b0a0a, #000);
      border-radius: 18px;
      padding: 30px;
      border: 1px solid rgba(225,6,0,0.25);
    }

    .cta-card h4 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .cta-card p {
      font-size: 14px;
      color: #cfcfcf;
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .cta-card a {
      color: #e10600;
      font-weight: 600;
      text-decoration: none;
    }

    /* ===============================
       FORM
    ================================ */
    #contact-form {
      background: radial-gradient(circle at right, #2b0a0a, #000 65%);
      border-radius: 22px;
      padding: 40px;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full {
      grid-column: span 2;
    }

    label {
      font-size: 14px;
      font-weight: 500;
    }

    input,
    textarea {
      background: rgba(255,255,255,0.08);
      border: none;
      border-radius: 12px;
      padding: 14px;
      color: #fff;
      font-size: 14px;
      resize: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: #aaa;
    }

    textarea {
      min-height: 140px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: #e10600;
      border: none;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .submit-btn:hover {
      background: #ff1a1a;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: span 1;
      }
    }