* { margin: 0; padding: 0; box-sizing: border-box; }
    html, body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      overflow-y: auto;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE 10+ */
    }
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: #000;
      z-index: -2;
    }
    body::after {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: url('../images/Header-Updated.png') no-repeat center center;
      background-size: cover;
      z-index: -1;
      opacity: 1;
    }
    
    img {
        pointer-events: none;
        user-select: none;
        }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: 80px;
      padding: 0 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      box-shadow: 0 8px 16px rgba(0,0,0,0.25);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    nav .logo img {
      height: clamp(26px, 5vw, 40px);
      margin-left: clamp(-37px, -2vw, 0px);
    }
    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      padding: 6px 16px;
      transition: 0.3s ease;
    }
    nav ul li a:hover {
      color: #f0c040;
    }
    .contact-section {
      min-height: calc(100vh - 140px);
      padding: 80px 10vw;
      flex: 1 0 auto;
      display: flex;
      flex-direction: row;
      gap: 50px;
      align-items: center;
      justify-content: center;
      margin-bottom: 80px;
      margin-top: 80px;
    }
    .contact-form-area {
      margin: auto;
      display: flex;
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
    .contact-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ccc;
    }
    .contact-info h1 {
      font-size: 3rem;
    }
    .contact-info p {
      font-size: 1.1rem;
      color: #ccc;
      max-width: 500px;
    }
    .contact-form {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    form {
      width: 100%;
      max-width: 400px;
    }
    input[type="text"], input[type="email"], textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 8px;
      border: none;
    }
    textarea {
      margin-bottom: 10px;
    }
    .button-group {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .send-message, .whatsapp-button {
      margin: 5px 0;
    }
    button, .whatsapp-button a {
      display: inline-block;
      padding: 14px 42px;
      border: none;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: 0.3s ease;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-decoration: none;
    }
    button {
      background: #f0c040;
      color: #000;
    }
    .whatsapp-button a {
      background: #fff;
      color: #000;
    }
    .whatsapp-button img {
      height: 20px;
      vertical-align: middle;
      margin-right: 8px;
    }
    footer {
      background: rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(50px);
      text-align: center;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer img {
      height: 45px;
    }

    #hamburger-toggle,
    #fullscreen-overlay {
    display: none;
    }

    /* Hover effect for WhatsApp button */
    button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px) scale(1.03);
    }


    .whatsapp-button a:hover {
    background: #000000;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    }

    @media (max-width: 768px) {
      nav {
        padding: 15px 5vw;
        flex-direction: row;
        justify-content: space-between;
      }
      nav .logo img { height: clamp(26px, 5vw, 40px); margin-left: 5px; }
      nav ul { display: none !important; }

      #hamburger-toggle {
        display: block;
        position: fixed;
        top: 25px;
        right: 25px;
        width: 35px;
        height: 30px;
        z-index: 1100;
        cursor: pointer;
      }

      #hamburger-toggle span {
        position: relative;
        display: block;
        background: white;
        height: clamp(1.5px, 0.25vw, 2px);
        width: clamp(12px, 7vw, 25px);
        top: 50%;
        transform: translateY(-50%);
        transition: background 0.4s;
      }

      #hamburger-toggle span::before,
      #hamburger-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
        background: white;
        height: clamp(1.5px, 0.25vw, 2px);
        width: 100%;
        transition: transform 0.4s, top 0.4s;
      }

      #hamburger-toggle span::before {
        top: clamp(-7px, -2vw, -10px);
      }

      #hamburger-toggle span::after {
        top: clamp(7px, 2vw, 10px);
      }

      #hamburger-toggle.open span {
        background: transparent;
      }

      #hamburger-toggle.open span::before {
        transform: rotate(45deg);
        top: 0;
      }
      #hamburger-toggle.open span::after {
        transform: rotate(-45deg);
        top: 0;
      }

      #fullscreen-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        clip-path: circle(0% at 100% 0);
        -webkit-clip-path: circle(0% at 100% 0);
        transition: clip-path 0.8s ease-in-out;
        z-index: 1090;
        justify-content: center;
        align-items: center;
      }

      #fullscreen-overlay.active {
        clip-path: circle(150% at 100% 0);
        -webkit-clip-path: circle(150% at 100% 0);
      }

      #fullscreen-overlay ul {
        list-style: none;
        text-align: center;
        padding: 0;
      }

      #fullscreen-overlay ul li {
        margin: 20px 0;
      }

      #fullscreen-overlay ul li a {
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
      }

      #fullscreen-overlay ul li a:hover {
        color: #ccc;
      }
      
      button, .whatsapp-button a {
    width: 180px;        /* Shrink width for mobile */
    font-size: 0.9rem;  /* Make text a bit smaller */
    font-weight: 500;    /* If you want lighter weight on mobile */
    padding: 10px 0;     /* Adjust vertical padding */
    margin: 0 auto;      /* Center horizontally if block */
    display: block;      /* Center with margin: 0 auto; */
    text-align: center;
  }
      .contact-info h1 {
      font-size: 2.5rem;
      }
      .contact-info p {
      font-size: .9rem;
      color: #ccc;
      max-width: 500px;
      }
      .contact-form {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      }

      footer {
        height: auto;
        padding: 20px 0;
      }
      footer img {
        height: 35px;
        display: block;
        margin: 0 auto;
      }

    }