.dropdown-toggle::after {
    display: none;
}
.header-search-bar {
    background-color: transparent;
    border: 1px solid var(--primary);
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    height: 40px;
}
.header-search-bar input {
    width: 100%;
    border: none;
    background-color: transparent;
}
.search-icon-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 50px;
    background-color: var(--primary);
    border-radius: 8px;
    margin-right: 2px;
}
.header-search-bar .icon{
    color: var(--white);
    font-size: 20px;

}/* ----- 1st-level menu (parent categories) ----- */
.category-dropdown > .dropdown-menu {          /* note the “>” */
    display: none;                             /* hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
}

/* Show parent list when hovering the trigger area */
.category-dropdown:hover > .dropdown-menu {
    display: block;
}

/* ----- 2nd-level menu (child categories) ----- */
.dropdown-submenu > .child-dropdown {          /* again, “>” matters */
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
}

/* Show children only when hovering THAT parent */
.dropdown-submenu:hover > .child-dropdown {
    display: block;
    height: 100%;
}

/* ===== MODERN FOOTER STYLES ===== */

.modern-footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
}

/* Footer Section Styling */
.footer-section {
    margin-bottom: 40px;
}

.footer-title {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-item i {
    color: #64748b;
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.company-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.dbid-text {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.registration-text {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #3b82f6;
    text-decoration: none;
}

/* Social Media Section */
.social-section {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.linkedin {
    background: #0a66c2;
    color: white;
}

.social-link.youtube {
    background: #ff0000;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link.twitter {
    background: #1da1f2;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Download App Section */
.download-section {
    margin-top: 20px;
}

.app-download-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-download-link:hover {
    transform: translateY(-2px);
}

.app-badge {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

/* Custom Google Play Badge */
.google-play-badge {
    background: #000000;
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
    min-width: 150px;
    transition: all 0.3s ease;
}

.google-play-badge:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-content i {
    color: #4caf50;
    font-size: 24px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.get-it {
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.app-download-link {
    text-decoration: none;
}

.app-download-link:hover .google-play-badge {
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 40px;
}

.copyright-text {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-item {
        margin-bottom: 12px;
    }
    
    .contact-item span {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .app-badge {
        height: 45px;
    }
    
    .copyright-text {
        font-size: 13px;
    }
}

/* Footer Hover Effects */
.footer-section:hover .footer-title {
    color: #3b82f6;
    transition: color 0.3s ease;
}

/* Icon styling for contact items */
.contact-item .icon-location::before {
    content: "📍";
}

.contact-item .icon-phone::before {
    content: "📞";
}

.contact-item .icon-email::before {
    content: "✉️";
}
