News
/* Base dropdown container */ .custom-dropdown { display: none; /* hidden by default */ position: absolute; top: 100%; /* directly under Features link */ left: 0; width: 650px; /* adjust width to match design */ background: #fff; padding: 25px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); border-radius: 8px; z-index: 9999; } /* Grid layout inside dropdown */ .custom-dropdown .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; } /* Dropdown items */ .custom-dropdown .item { display: flex; align-items: flex-start; gap: 12px; transition: transform 0.2s ease, box-shadow 0.2s ease; padding: 10px; border-radius: 6px; } .custom-dropdown .item:hover { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); } /* Icon styling */ .custom-dropdown .item img { width: 40px; height: 40px; object-fit: contain; } /* Text styling */ .custom-dropdown .item strong { font-size: 15px; color: #222; } .custom-dropdown .item div { font-size: 13px; color: #555; line-height: 1.4; } /* Show dropdown on hover */ .header-nav-item:hover .custom-dropdown { display: block; }
News