.image-container {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.blurred-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px); /* Adjust the blur strength as needed */
}

.highlight-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: 2px solid #ffffff; /* Adjust the ring color */
    padding: 10px 15px;
    border-radius: 50%;
}

.highlight-button i {
    color: white; /* Adjust the button icon color */
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

h1, .h1 {
    font-size: calc(1.2625rem + 0.15vw);
}
@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 1.375rem !important;
    }
}

h2, .h2 {
    font-size: 1.25rem !important;
}

h3, .h3 {
    font-size: 1.125rem !important;
}

h4, .h4 {
    font-size: 1rem !important;
}

h5, .h5 {
    font-size: 0.938rem !important;
}

h6, .h6 {
    font-size: 0.875rem !important;
}
:root {
    --primary-gold: #f73333;
    --dark-gold: #C5A854;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --border-light: #e0e0e0;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f8f9fa;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-gold);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-menu {
    display: flex;
    gap: 5px;
}

.top-menu a {
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

.top-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.language-selector select {
    cursor: pointer;
    font-size: 13px;
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.language-selector option {
    background: var(--primary-gold);
    color: white;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    height: 120px;
    width: auto;
    max-width: 100%;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .nav-link {
    color: white !important;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.main-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    border-bottom-color: white;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    border-radius: 25px;
    border: 2px solid var(--border-light);
    padding: 8px 40px 8px 20px;
}

.search-box button {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

/* Quick News Section */
.quick-news-section {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-news-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    /* height: 100%; */
}

.quick-news-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quick-news-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

.quick-news-box:hover img {
    transform: scale(1.1);
}

.quick-news-title {
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    /* background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%); */
    color: white;
    /* padding: 10px; */
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    /* text-align: center; */
}

/* Breaking News */
.breaking-news {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 12px 0;
    margin: 20px 0;
    overflow: hidden;
}

.breaking-label {
    background: white;
    color: #dc3545;
    padding: 5px 15px;
    font-weight: bold;
    display: inline-block;
    margin-left: 15px;
}

.breaking-content {
    display: inline-block;
    animation: scroll-text 30s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Story Card */
.main-story {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.main-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.main-story:hover img {
    transform: scale(1.05);
}

.main-story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px;
    color: white;
}

.main-story-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* News Card */
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 15px;
}

.news-category {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-gray);
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

/* Sidebar Widget */
.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.trending-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trending-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 30px;
}

.trending-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-title {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .top-menu {
        flex-wrap: wrap;
        gap: 3px;
    }

    .top-menu a {
        font-size: 12px;
        padding: 3px 6px;
    }

    .language-selector select {
        font-size: 11px;
    }

    .quick-news-box img {
        height: 120px;
    }

    .quick-news-title {
        font-size: 12px;
        padding: 8px;
    }

    .main-story {
        height: 300px;
    }

    .main-story-title {
        font-size: 20px;
    }

    .logo-container img {
        height: 60px;
    }
}
