 .footer-brand {
     grid-column: unset !important;
 }

 .dropdown-menu {
     min-width: 200px !important;
 }

 .dropdown-menu li a {
     display: block;
     padding: 12px 10px;
     color: rgba(255, 255, 255, 0.7) !important;
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     letter-spacing: 0.5px;
     border-radius: 8px;
     transition: all 0.25s ease;
     border-left: 3px solid transparent;
     /* Hidden border for hover effect */
 }

 /* Hover Effect */
 .dropdown-menu li a:hover {
     background: rgba(153, 69, 255, 0.1);
     /* Very light purple tint */
     color: #14F195 !important;
     /* Solana Green Text */
     border-left: 3px solid #9945FF;
     /* Purple accent line shows up */
     padding-left: 25px;
     /* Subtle push to the right */
 }

 /* Ensure no default bullets from any parent theme */
 .dropdown-menu li::before {
     content: none !important;
 }

 /* Entrance Animation */
 @keyframes fadeInTop {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* --- Desktop Settings --- */
 @media (min-width: 769px) {
     .mobile-only {
         display: none !important;
         /* Mobile links desktop par nahi dikhenge */
     }

     .custom-dropdown {
         position: relative;
         display: inline-block;
     }

     .dropdown-menu {
         display: none;
         position: absolute;
         top: 100%;
         right: 0;
         background: rgba(10, 10, 10, 0.95);
         border: 1px solid rgba(153, 69, 255, 0.4);
         min-width: 180px;
         border-radius: 12px;
         padding: 10px 0;
         z-index: 100;
     }

     .custom-dropdown:hover .dropdown-menu {
         display: block;
     }
 }

 /* --- Mobile Settings --- */
 @media (max-width: 768px) {
     .desktop-only {
         display: none !important;
         /* Settings Dropdown mobile par gayab */
     }

     .mobile-only {
         display: block !important;
         /* Single links mobile par show honge */
     }

     /* Mobile menu list styling */
     .nav-links li {
         width: 100%;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     }

     .nav-links li a {
         padding: 15px 20px;
         display: block;
     }

     /* Side Drawer */
     .mobile-drawer {
         position: fixed !important;
         top: 0 !important;
         max-height: 3000px !important;
         width: 280px !important;
         background: #0d0d0d !important;
         border-left: 1px solid rgba(153, 69, 255, 0.3) !important;
         padding: 0px 20px !important;
         transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
         display: flex !important;
         flex-direction: column !important;
         align-items: baseline;
     }

     .mobile-drawer {
         right: 0 !important;
     }

     /* Drawer Header */
     .drawer-header {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin-bottom: 40px;
     }

     .close-btn {
         background: none;
         border: none;
         color: white;
         font-size: 2rem;
         cursor: pointer;
     }

     /* Link List */
     .nav-links {
         list-style: none;
         padding: 0;
     }

     .nav-links li {
         margin-bottom: 10px;
     }

     .nav-links li a {
         color: rgba(255, 255, 255, 0.8);
         text-decoration: none;
         font-size: 1.1rem;
         display: block;
         padding: 0px 0px !important;
         border-radius: 10px;
         transition: 0.3s;
     }

     .nav-links {
         gap: 0rem !important;
     }

     .nav-links li a:hover {
         background: rgba(153, 69, 255, 0.1);
         color: #14F195;
     }

     .active-link {
         background: rgba(153, 69, 255, 0.1) !important;
         color: #14F195 !important;
     }

     .nav-links a.active-link::after {
         width: 100%;

     }

     .drawer-header {
         display: flex !important;
         justify-content: space-between;
         align-items: center;
         width: 100%;
         padding: 20px 0px 0px;
     }

     .close-btn {
         background: none;
         border: none;
         color: white;
         font-size: 2rem;
         cursor: pointer;
     }

     .nav-links.active {
         left: unset !important;
     }

     #mobile_nav {
         position: fixed;
         top: 0;
         right: 0;
         width: 300px;
         /* Aapki width */
         height: 100vh;
         background: #1a1a1a;
         /* Aapka background color */
         z-index: 9999;

         /* Initially right side se 100% bahar rahega */
         transform: translateX(100%);

         visibility: hidden;
         pointer-events: none;

         /* Smooth sliding transition */
         transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;

         /* Glass effect (optional) */
         border-left: 1px solid rgba(153, 69, 255, 0.3);
         backdrop-filter: blur(10px);
     }

     /* Jab toggle function 'active' class add karega */
     #mobile_nav.active {
         transform: translateX(0);
         /* Wapas apni jagah (0px) par aa jayega */
         visibility: visible;
         pointer-events: auto;
     }

     .bento-menu-btn {
         display: grid !important;

     }

     .close-btn-modern {
         display: block !important;
     }
.hero {
         min-height: 0 !important;
         padding: 50px 0px !important;
     }
 }

 .drawer-header {
     display: none;
 }

 .bento-menu-btn {
     display: none;
     grid-template-columns: repeat(2, 1fr);
     gap: 4px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 10px;
 }

 .dot {
     width: 8px;
     height: 8px;
     background-color: #14F195;
     /* Theme Green */
     border-radius: 2px;
     transition: 0.3s ease;
 }

 .bento-menu-btn:hover .dot {
     transform: scale(1.2);
     background-color: #9945FF;
     /* Hover par Purple */
 }

 .close-btn-modern {
     display: none;
     background: rgba(153, 69, 255, 0.1);
     border: 1px solid rgba(153, 69, 255, 0.4);
     color: #9945FF;
     width: 45px;
     height: 45px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     outline: none;
     position: absolute;
     top: 20px;
     right: 20px;
 }

 .close-btn-modern:hover {
     background: #9945FF;
     color: white;
     transform: rotate(90deg);
     box-shadow: 0 0 20px rgba(153, 69, 255, 0.5);
     border-color: transparent;
 }

 .close-nav-wrapper {
     width: 100%;
     display: flex;
     justify-content: flex-end;
     padding:  0px;
 }

 .arrow-only-btn {
     background: transparent;
     border: none;
     cursor: pointer;
     outline: none;
 }

 .arrow-icon-box {
     width: 45px;
     height: 45px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
 }

 /* Pure CSS Arrow Drawing */
 .css-arrow {
     display: inline-block;
     width: 12px;
     height: 12px;
     border-top: 3px solid #9945FF;
     /* Arrow Line 1 */
     border-right: 3px solid #9945FF;
     /* Arrow Line 2 */
     transform: rotate(45deg);
     /* Isse L-shape arrow ban jata hai */
     transition: all 0.3s ease;
     margin-right: 4px;
     /* Alignment fix */
 }
.navbar-content{
height:2rem !important;}
