 :root {
     --orange: #F26B1D;
     --orange-light: #FF8C42;
     --black: #111;
     --white: #fff;
 }

 /* ══════════════════════════════
       FLOATING PILL HEADER
    ══════════════════════════════ */
 .header-wrap {
     position: fixed;
     top: 18px;
     left: 0;
     right: 0;
     z-index: 500;
     /* padding: 0 clamp(12px, 3vw, 40px); */
     pointer-events: none;
 }

 .sectionPadding {
     padding: 80px 0px;
 }

 header {
     pointer-events: all;
     display: grid;
     grid-template-columns: auto 1fr auto;
     align-items: center;
     border-radius: 50px;
     padding: 10px 40px;
     gap: 16px;
     background: #ffffff96;
     backdrop-filter: blur(22px) saturate(140%) brightness(1.08);
     -webkit-backdrop-filter: blur(22px) saturate(140%) brightness(1.08);
     border: 1px solid rgba(255, 255, 255, 0.22);
     transition: box-shadow 0.3s, background 0.3s;
     max-width: 90%;
     margin: 0 auto;
 }

 header:hover {
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
 }

 .logo-link {
     display: flex;
     align-items: center;
     text-decoration: none;
     flex-shrink: 0;
 }

 .logo-link img {
     height: 45px;
     width: auto;
     display: block;
 }

 nav {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: clamp(10px, 2vw, 32px);
     flex-wrap: nowrap;
 }

 nav a {
     font-size: clamp(0.72rem, 1.1vw, 22px);
     font-weight: 300;
     color: rgba(0, 0, 0, 0.92);
     text-decoration: none;
     letter-spacing: 0.01em;
     white-space: nowrap;
     padding: 4px 0;
     position: relative;
     transition: color 0.2s;
 }

 nav a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 100%;
     height: 1.5px;
     background: var(--orange);
     transition: right 0.25s ease;
 }

 nav a:hover {
     color: var(--orange);
 }

 nav a:hover::after {
     right: 0;
 }

 .btn-connect {
     flex-shrink: 0;
     display: inline-flex;
     align-items: center;
     background: #ff8c00;
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 11px 24px;
     font-size: 14px;
     font-weight: 300;
     cursor: pointer;
     letter-spacing: 0.02em;
     text-decoration: none;
     white-space: nowrap;
     transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
     box-shadow: 0 2px 14px rgba(242, 107, 29, 0.45);
 }

 .btn-connect:hover {
     /* background: var(--orange-light); */
     transform: translateY(-1px) scale(1.03);
     box-shadow: 0 6px 22px rgba(242, 107, 29, 0.55);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 6px;
     margin-left: 4px;
 }

 .hamburger span {
     display: block;
     width: 22px;
     height: 2px;
     background: #f26b1d;
     border-radius: 2px;
     transition: transform 0.3s, opacity 0.3s;
 }

 .hamburger.open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
 }

 .hamburger.open span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
 }

 .mobile-drawer {
     display: none;
     position: fixed;
     top: 76px;
     left: clamp(12px, 3vw, 40px);
     right: clamp(12px, 3vw, 40px);
     background: rgba(180, 180, 180, 0.28);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.14);
     border-radius: 20px;
     padding: 20px 24px 24px;
     flex-direction: column;
     gap: 16px;
     z-index: 499;
     opacity: 0;
     transform: translateY(-8px);
     transition: opacity 0.25s, transform 0.25s;
 }

 .mobile-drawer.open {
     opacity: 1;
     transform: translateY(0);
     display: flex;
     height: 100%;
 }

 .mobile-drawer a {
     font-size: 1rem;
     font-weight: 500;
     color: #000;
     text-decoration: none;
     padding: 8px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 .mobile-drawer a:last-child {
     border-bottom: none;
     color: #fff;
 }

 .mobile-drawer .btn-connect {
     margin-top: 8px;
     width: fit-content;
 }


 @media (max-width: 992px) {

     header {
         background: #d4d4d496;
     }



     nav {

         display: none !important;
     }


     .hamburger {
         display: flex !important;
     }


     header {
         grid-template-columns: auto auto;
         justify-content: space-between;
     }


     /* Blog css end here */

     .header-wrap {
         top: 0;
         padding: 0;
     }

     #mainHeader {
         max-width: 100%;
         border-radius: 0;
     }

     .mobile-drawer {
         display: none;
         position: fixed;
         top: 52px;
         left: 0;
         right: 0;
         background: rgba(180, 180, 180, 0.28);
         backdrop-filter: blur(20px);
         -webkit-backdrop-filter: blur(20px);
         border: 1px solid rgba(255, 255, 255, 0.14);
         border-radius: 0;
         padding: 20px 24px 24px;
         flex-direction: column;
         gap: 16px;
         z-index: 499;
         opacity: 0;
         transform: translateY(-8px);
         transition: opacity 0.25s, transform 0.25s;
     }
.btn-connect{
    display:none;
}

 }