  :root {
        --red: #ff4d4d;
        --gold: #ffb347;
        --blue: #4facfe;
        --green: #43e97b;
        --dark: #111;
        --light: #f1f1f1;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
        background: var(--dark);
        color: var(--light);
        line-height: 1.6;
      }

      /* ================= NAV ================= */
      header {
        position: fixed;
        background-color: rgba(17, 17, 17, 0.95);
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 15px 5%;
        backdrop-filter: blur(6px);
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-weight: bold;
        font-size: 1.6rem;
        font-style: italic;
        color: goldenrod;
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 25px;
      }

      nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
      }

      nav ul li a:hover {
        color: blue;
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: rgb(250, 180, 3);
        font-size: 1.8rem;
        cursor: pointer;
      }

      @media (max-width: 768px) {
        .mobile-menu-btn {
          display: block;
        }
        nav {
          position: fixed;
          top: 90px;
          left: -100%;
          width: 40%;
          height: 50vh;
          background: rgba(0, 0, 0, 0.9);
          transition: 0.3s;
          padding-top: 40px;
        }
        nav.active {
          left: 0;
        }
        nav ul {
          flex-direction: column;
          align-items: center;
          gap: 30px;
        }
      }

      /* ================= HERO ================= */
      .hero {
        position: relative;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
        background: #111;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80")
          no-repeat center center/cover;
        clip-path: inset(100% 0 0 0);
        animation: revealImage 2.5s ease forwards;
        z-index: 0;
      }

      @keyframes revealImage {
        to {
          clip-path: inset(0 0 0 0);
        }
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInUp 2s ease;
      }

      .paint-logo {
        font-size: 2.2rem;
        font-style: oblique;
        font-weight: 700;
        margin-bottom: 25px;
        display: inline-block;
        position: relative;
        animation: drip 2s ease forwards;
        color: #fff;
      }

      .paint-logo::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 12px;
        height: 20px;
        background: var(--red);
        border-radius: 50%;
        transform: translateX(-50%) scaleY(0);
        animation: drop 1.8s ease 1s forwards;
      }

      .hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(
          90deg,
          var(--red),
          var(--gold),
          var(--blue),
          var(--green)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: colorShift 8s linear infinite;
        background-size: 200% 200%;
      }

      @keyframes colorShift {
        0% {
          background-position: 0% 50%;
        }
        100% {
          background-position: 200% 50%;
        }
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        color: #f1f1f1;
      }

      .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }

      .btn {
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        background: rgb(250, 0, 96);
        color: white;
        text-decoration: none;
        transition: 0.3s;
      }

      .btn:hover {
        background: rgb(133, 95, 1);
        transform: translateY(-3px);
      }

      .btn-outline {
        background: transparent;
        border: 2px solid white;
        color: white;
      }

      .btn-outline:hover {
        background: white;
        color: #333;
      }

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

      @keyframes drop {
        to {
          transform: translateX(-50%) scaleY(1);
        }
      }

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

      /* ================= FOOTER ================= */
      footer {
        background: #000;
        color: #ccc;
        padding: 60px 5% 30px;
        margin-top: 50px;
      }

      .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 30px;
      }

      .footer-container h3 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.2rem;
      }

      .footer-container p,
      .footer-container a {
        color: #aaa;
        font-size: 0.95rem;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: 0.3s;
      }

      .footer-container a:hover {
        color: var(--red);
      }

      .footer-bottom {
        text-align: center;
        border-top: 1px solid #333;
        padding-top: 15px;
        font-size: 0.9rem;
        color: #888;
      }

      .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .social-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: blue;
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s;
      }

      .social-links a:hover {
        background-color: rgba(0, 0, 255, 0.247);
        color: var(--primary-blue);
        transform: translateY(-3px);
      }

      /* WhatsApp Float */
      .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
        background-color: green;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8rem;
        box-shadow: var(--shadow);
        z-index: 100;
        text-decoration: none;
        transition: all 0.3s;
        animation: pulse 10s infinite;
      }

      .whatsapp-float:hover {
        background-color: green;
        transform: scale(1.1);
      }
      .span {
        color: #fa9405;
        font-style: oblique;
      }

      .span2 {
        color: white;
        font-style: oblique;
      }