/* ========== TOP BAR ========== */
/* Top information bar with contact details */
.top-bar {
    background: #2c3e50; /* Deep gray color */
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
}

/* Top Contact and Social Sections */
.top-contact,
.top-social {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

/* General Icon Style */
.top-contact i,
.top-social i {
    margin-right: 0px;
    font-size: 14px;
}

/* 🔘 Circle Background for Contact Icons */
.top-contact i {
    background-color: #ff9933;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* 🔗 Top Social Icons Style */
.top-social a {
    width: 30px;
    height: 30px;
    background-color: #ff9933;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s ease;
}

.top-social a:hover {
    background-color: #ff9933;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* 📱 Mobile View Adjustments */
@media (max-width: 768px) {
    /* Hide contact text on mobile */
    .top-contact .contact-text {
        display: none;
    }

    /* Reduce size for compact layout */
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-contact i,
    .top-social a i {
        font-size: 12px;
    }

    .top-contact a,
    .top-social a {
        width: 24px;
        height: 24px;
    }

    .top-contact i,
    .top-social a {
        width: 24px;
        height: 24px;
    }

    .top-bar-content {
        gap: 8px;
    }

    .top-contact,
    .top-social {
        gap: 12px;
    }
}