



.title-akhbar{
    width: 100%;
    margin: 10px auto;
    padding: 90px 10px;
    height: 200px;
    display: flex;
    
    
    margin-bottom: 300px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    position: relative;        /* خیلی مهم */
    overflow: hidden;          /* مهم (تا موج بیرون نزنه) */
    z-index: 0;
}
.section1-akhbar{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    margin-right: 100px;
}
.title-akhbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
   background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300'%3E%3Cpath d='M0,100 Q300,250 600,100 T1000,100 L1000,300 L0,300 Z' fill='rgba(30,64,175,0.18)'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.title-akhbar > h1{
    color: #ffffff;
    font-size: 25px !important;
    margin-right: 100px;
}

.title-akhbar > p{
    color: #A0A1AA;
    font-size: 18px !important;
    margin-right: 80px;
}

.input-akhbar{
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-right: 10px;
    gap: 10px;
    height: 52px;
    background: rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 6px 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 6px 20px rgba(2, 6, 23, 0.5);
    border: 1px solid transparent;
        position: relative;
    transition: transform .18s 
    ease, box-shadow .18s 
    ease, border-color .18s 
    ease, background .18s 
    ease;
    overflow: hidden;
}
.input-akhbar input{
    appearance: none;
    border: 0;
    background: transparent;
    outline: none;
    width: 100%;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 8px;
    z-index: 1;
    direction: rtl;
}
.input-akhbar input::placeholder{
    color: rgba(216, 216, 216, 0.9);
}
.input-akhbar:focus-within{
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(2,6,23,0.6);
}