    /* Reset */
    * { 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;
    }
    
    /* Navigation */
    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;
      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;
    }

    /* About Section */
    main.about-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;
    }

    .about-text,
    .about-image {
      flex: 1;
      color: #ccc;
    }

    .about-text h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .about-image img {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, filter 0.3s ease;
      filter: grayscale(100%);
      object-fit: cover;
    }

    .about-image img:hover {
      transform: scale(1.05);
      filter: grayscale(0%);
    }

    /* Footer */
    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 ========== */
    #hamburger-toggle {
      display: none;
    }
    #hamburger-toggle span {
      position: relative;
      display: block;
      background: white;
      height: 2px;
      width: 70%;
      margin: auto;
      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: 2px;
      width: 100%;
      transition: transform 0.4s, top 0.4s;
    }
    #hamburger-toggle span::before {
      top: -10px;
    }
    #hamburger-toggle span::after {
      top: 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;
    }

    #hamburger-toggle,
    #fullscreen-overlay {
    display: none;
    }

    /* Responsive */
    @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;
      }

      main.about-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 60px 6vw;
        margin-top: 50px;
      }

      .about-text {
   
        
        max-width: 500px;
        width: 85%;
        margin: 20px auto 40px;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);      
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 40px 20px; /* matches thankyou */        
        border-radius: 14px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
        display: flex;
        text-align: justify;
      }

      .about-text h1 {
      font-size: 1.5rem; /* same as thankyou h1 on mobile */
      margin-bottom: 15px;
      }

      .about-text p {
      font-size: 0.9rem; /* same as thankyou p */
      line-height: 1.5;
      color: #eee;
      }

      footer {
        height: auto;
        padding: 20px 0;
      }

      footer img {
        height: 35px;
        display: block;
        margin: 0 auto;
      }
    }