<style>
    :root {
      --primary: #101010; /* deep blue */
      --accent-yellow: #bd9834; /* bright yellow */
      --accent-green: #49bd34; /* logo green */
      --text-light: #111111;
      --text-dark: #;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--primary);
      color: var(--text-light);
      line-height: 1.6;
    }
    
    header {
      background: var(--primary);
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 3px solid var(--accent-yellow);
    }
    
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .brand img {
      height: 60px;
      width: auto;
      border-radius: 8px;
    }
    
    .brand h1 {
      font-size: 26px;
      font-weight: 700;
      color: var(--accent-yellow);
    }
    
    nav a {
      color: var(--text-light);
      margin-left: 15px;
      font-weight: 600;
      transition: color 0.2s;
    }
    
    nav a:hover {
      color: var(--accent-yellow);
    }
    
    .phone-button {
      background: var(--accent-green);
      color: var(--text-light);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
    }
    
    .phone-button:hover {
      background: var(--accent-yellow);
      color: var(--primary);
    }

    .hero {
      padding: 250px;
      text-align: center;
      background: url('images/Showreel-Grid-Mobile.gif') no-repeat center center; /* Replace with your GIF path */
      background-size: cover; /* Ensure the GIF covers the entire section */
      margin-bottom: 0px;
    }
    
    .hero h2 f7c600{
      font-size: 42px;
      color: var(--accent-yellow);    
      margin-bottoms: 10px;
      animation: fadeIn 1s;
    }
    text-align: center;
    .hero p {
      font-size: 18px;
      max-width: 700px;
      margin-top: 20px;
      animation: fadeIn 1s;
    }
    
    .hero-buttons a {
      display: inline-block;
      margin: 8px;
      padding: 12px 18px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s;
    }
    
    .cta {
      background: var(--accent-yellow);
      color: var(--primary);
    }
    
    .secondary {
      border: 2px solid var(--accent-yellow);
      color: var(--accent-yellow);
    }

    section {
      background: #0000008e;
      color: var(--text-dark);
      padding: 20px 20px;
      max-width: 1000px;
      margin: 40px auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      animation: slideIn 0.5s;
    }
    
    section h3 {white
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 26px;
      text-align: center;
    }

    section h5 {
      color: var(--primary);
      margin-bottom: 10px;
      text-align: center;
      font-size: 26px;
    }
    
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 10px;
      
    }
    
    .card {
      flex: 1 1 280px;
      background: #ffffff;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      border-top: 4px solid var(--accent-yellow);
      animation: fadeIn 0.5s;
    }

    form {
      background: #fcfdfd;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
      animation: fadeIn 0.5s;
    }
    
    form label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
    }f8f8f8
    
    form input,
    form textarea,
    form select {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    
    form button {
      background: var(--accent-green);
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
    }
    
    form button:hover {
      background: var(--accent-yellow);
      color: var(--primary);
    }

    footer {
      background: var(--primary);
      color: var(--text-light);
      text-align: center;
      padding: 20px;
      border-top: 3px solid var(--accent-yellow);
    }
    
    footer a {
      color: var(--accent-yellow);
      text-decoration: none;
      font-weight: 600;
      margin: 0 5px;
    }

    .footer-icons {
      margin-top: 10px;
    }

    .footer-icons i {
      margin: 0 10px;
      color: var(--accent-yellow);
      transition: color 0.3s;
    }

    .footer-icons i:hover {
      color: var(--text-light);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

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

    .phone-image {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
  </style>