/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', Arial, sans-serif;
    width: auto;
}

:root {
    --primary-color: #d10a11;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --white-color: #fff;
    --black-color: #000;
}

body {
    background-color: #f5f5f5;
    color: var(--secondary-color);
    line-height: 1.6;
    direction: rtl;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color:  #deac7e;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b0080e;
    color: var(--white-color);
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 85px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-item {
    margin-left: 20px;
    position: relative;
}

.nav-link {
    font-weight: 400;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.search-social {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    margin-left: 10px;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 160px;
}

.search-box button {
    
    background-color: #deac7e;
    color: var(--white-color);
    border: none;
    padding: 8px 15px;
    border-radius:  4px 4px 4px 4px ;
    cursor: pointer;
}

.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Breaking News Styles */
.breaking-news {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
}

.breaking-label {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 15px;
}

.news-ticker {
    overflow: hidden;
    flex-grow: 1;
}

.news-ticker ul {
    display: flex;
    animation: ticker 15s linear infinite;
}

.news-ticker li {
    margin-left: 20px;
    white-space: nowrap;
}

.news-ticker a {
    color: var(--white-color);
}

.news-ticker a:hover {
    text-decoration: underline;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Featured News Styles */
.featured-news {
    margin: 30px 0;
}

.featured-item {
    display: flex;
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image {
    flex: 1;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color:  #deac7e;
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.featured-content {
    flex: 1;
    padding: 30px;
}

.featured-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.featured-content h1 a {
    color: var(--secondary-color);
}

.featured-content h1 a:hover {
    color: var(--primary-color);
}

.featured-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.meta {
    color: var(--gray-color);
    font-size: 14px;
}

.meta span {
    margin-left: 15px;
}

.meta i {
    margin-left: 5px;
}

/* Urgent News Styles */
.urgent-news {
    margin: 30px 0;
}

.urgent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.urgent-item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.urgent-image {
    height: 180px;
    overflow: hidden;
}

.urgent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.urgent-item:hover .urgent-image img {
    transform: scale(1.05);
}

.urgent-content {
    padding: 15px;
}

.urgent-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.urgent-content h3 a {
    color: var(--secondary-color);
}

.urgent-content h3 a:hover {
    color: var(--primary-color);
}

/* Latest News Styles */
.latest-news {
    margin: 30px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: var(--secondary-color);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

/* Videos Section Styles */
.videos-section {
    margin: 30px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-item {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.video-item h3 {
    padding: 15px;
    font-size: 16px;
}

.video-item h3 a {
    color: var(--secondary-color);
}

.video-item h3 a:hover {
    color: var(--primary-color);
}

.video-item .meta {
    padding: 0 15px 15px;
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 20px;
    color: #ddd;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.newsletter-text {
    color: #ddd;
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #b0080e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.footer-menu ul {
    display: flex;
}

.footer-menu li {
    margin-right: 15px;
}

.footer-menu a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-item {
        flex-direction: column;
    }
    
    .urgent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .search-social {
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        margin-top: 15px;
    }
    
    .footer-menu ul {
        justify-content: center;
    }
}
/* Politics Section Styles */
.politics-section {
    margin: 40px 0;
}

.politics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.politics-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 30px;
    color: var(--white-color);
}

.slider-content h3 a {
    color: var(--white-color);
}

.slider-content p {
    color: #eee;
    margin: 10px 0;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.3);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
}

.slider-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.politics-side-news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.side-news-item {
    display: flex;
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.side-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.side-news-image {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
}

.side-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-news-content {
    padding: 15px;
    flex-grow: 1;
}

.side-news-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Responsive Styles for Politics Section */
@media (max-width: 992px) {
    .politics-grid {
        grid-template-columns: 1fr;
    }
    
    .politics-slider {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .politics-slider {
        height: 300px;
    }
    
    .slider-content {
        padding: 15px;
    }
    
    .side-news-item {
        flex-direction: column;
    }
    
    .side-news-image {
        width: 100%;
        height: 150px;
    }
}
.fa-brands, .fab {
    font-weight: 400;
    color: #deac7e;
}
.logo-bg1 {
    background-color: #faf9f9;
    border-radius: 100px;
}
.center{
    text-align: center;
}
.black-text{
    color: #000;
}