.header-section-1 {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Purple Bar */
.purple-bar {
    height: 40px;
    background-color: #6a2d7a;
    position: relative;
}

.vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #fff;
}

/* White Bar */
.white-bar {
    height: 100px;
    background-color: #fff;
    position: relative;
    padding: 0 20px;
}

/* RIGHT Side (RTL): Company Name & Persian Date */
.header-right-content {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.company-name,
.persian-date {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    font-size: 14px;
    color: #333;
}

.company-name span:last-child,
.persian-date span:last-child {
    margin-right: 5px;
}

/* Center: Logo (Always centered) */
.header-logo img {
    max-height: 100px;
    width: auto;
    vertical-align: middle;
}

/* LEFT Side (RTL): Search & Login */
.header-left-content {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.search-icon span {
    font-size: 20px;
    color: #333;
    margin-right: 5px;
}

.phone-number {
	display: inline-flex;
	align-items: center;
	background: #e3e3e1;
    padding: 5px;
    display: inline-flex; 
    border-radius: 15px;
	-webkit-box-shadow: 0px 0px 11px 6px rgba(219, 213, 8, 0.71);
	-moz-box-shadow: 0px 0px 11px 6px rgba(219,213,8,0.71);
	box-shadow: 0px 0px 11px 6px rgba(219, 213, 8, 0.71);
}

.phone-number span {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	transition: color 0.3s ease;
}

.phone-number:hover span {
	color: #FFD700;
}

.icon-phone {
font-size: 20px;
	color: #FF0000; /* قرمز */
	margin-left: 5px;
	transition: color 0.3s ease;
	animation: blink 1s infinite;
}

.phone-number:hover .icon-phone {
	color:#FF0000;
	animation: none; /* در هاور، چشمک متوقف شود */
}

/* افکت چشمک‌زن */
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}
/* Mobile: Show company name in purple bar, hide in white bar */
@media (max-width: 768px) {
    .purple-bar-company-name {
        display: block !important;
    }

    .header-right-content,
    .header-left-content {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }
}