       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

a { text-decoration: none !important;}


		.container { width:1260px}

        /* Top Bar */
        .top-bar {
            background-color: #2c3e50;
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: #3498db;
        }

        .top-bar .date {
            color: #ecf0f1;
        }

        /* Logo & Search Row */
        .logo-search-row {
            background-color: #fff;
            padding: 0px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .logo {
			
        }
		
		.logo img { height: 55px; margin-top: 20px; margin-bottom: 20px;}

        .logo span {
            color: #3498db;
        }

        .search-block {
            position: relative;
        }

        .search-block input {
            width: 100%;
            padding: 5px 30px 5px 10px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: border-color 0.3s;
            direction: rtl;
        }

        .search-block input:focus {
            outline: none;
            border-color: #3498db;
        }

        .search-block button {
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #3498db;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 10px;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }

		
		.header-bg {    
	height: 100px;
    background-image: url(../images/header-bg-02.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;}		
		
        .search-block button:hover {
            background-color: #2980b9;
        }

        /* Main Navigation */
        .main-nav {
            background-color: #2b96e2;
            position: relative;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .main-nav.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .nav-menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .nav-menu > li {
            position: relative; font-family: cairo;
        }

        .nav-menu > li > a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .nav-menu > li > a:hover {
            background-color: #2c3e50;
        }

        .nav-menu > li > a i {
            margin-left: 5px;
            font-size: 12px;
        }

        /* Dropdown Menu */
        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #2c3e50;
            min-width: 220px;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .nav-menu > li:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu-custom li a {
            display: block;
            color: #ecf0f1;
            text-decoration: none;
            padding: 12px 25px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .dropdown-menu-custom li a:hover {
            background-color: #34495e;
            padding-right: 30px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background-color: transparent;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 15px;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1999;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Sidebar */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100%;
            background-color: #2c3e50;
            transition: right 0.3s ease;
            z-index: 2000;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            background-color: #34495e;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-header h3 {
            color: #fff;
            margin: 0;
            font-size: 20px;
        }

        .mobile-menu-close {
            background-color: transparent;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-menu li a {
            display: block;
            color: #ecf0f1;
            text-decoration: none;
            padding: 15px 20px;
            border-bottom: 1px solid #34495e;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .mobile-nav-menu li a:hover {
            background-color: #34495e;
        }

        .mobile-nav-menu li a i {
            margin-left: 10px;
            font-size: 14px;
        }

        /* Mobile Dropdown */
        .mobile-dropdown {
            background-color: #1a252f;
        }

        .mobile-dropdown a {
            padding-right: 40px !important;
            font-size: 15px;
        }

        .mobile-dropdown-toggle {
            position: relative;
        }

        .mobile-dropdown-toggle::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 20px;
            transition: transform 0.3s;
        }

        .mobile-dropdown-toggle.active::after {
            transform: rotate(180deg);
        }

        .mobile-dropdown {
            display: none;
        }

        .mobile-dropdown.active {
            display: block;
        }

        /* NEW: Mobile Header - Shows only on mobile */
        .mobile-header {
            display: none;
            background-color: #fff;
            padding: 10px 0;
            position: relative;
            z-index: 999;
            border-bottom: 1px solid #e0e0e0;
        }

        .mobile-header.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: slideDown 0.3s ease;
        }

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

        .mobile-header .mobile-logo img {
            height: 40px;
        }

        .mobile-header .mobile-menu-btn {
            background-color: transparent;
            border: none;
            color: #2b96e2;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            /* Hide desktop header sections on mobile */
            .top-bar,
            .logo-search-row {
                display: none;
            }

            /* Hide desktop navigation */
            .main-nav {
                display: none;
            }

            /* Show mobile header */
            .mobile-header {
                display: block;
            }

            .container {
                width: 100%;
                max-width: 100%;
            }
        }

        @media (min-width: 992px) {
            /* Hide mobile header on desktop */
            .mobile-header {
                display: none !important;
            }
        }

        /* Spacer for sticky menu */
        .content-spacer {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            padding: 40px 20px;
        }

	.banner-home { overflow: hidden; margin-bottom: 10px; }
	.banner-home img { width:100%; border-radius: 6px; height: 90px; }

/*=============================================================================*/

	#main-news { position: relative;}
	#main-news .owl-prev { position: absolute; top:30%; left: 0; z-index: 999; width:30px; height: 30px; border-radius: 4px; background-color: #fff !important;opacity: 0.7  }
	#main-news .owl-next { position: absolute; top:30%; right: 0; z-index: 999;width:30px; height: 30px; border-radius: 4px ;background-color: #fff !important; opacity: 0.7 }


	.sub-story { overflow: hidden; margin-bottom: 10px;}
	.sub-story img { width:90px; height: 75px; float: right; margin-left: 10px;}
	.sub-story .title { font-family: cairo; font-size: 16px; font-weight: bold; text-align: right; direction: rtl;}
	.sub-story .title  a { color: #000;}
	
	
	.gray-box { border-right: 1px solid #ccc; padding-right: 15px;}
	
	.writer { overflow: hidden; margin-bottom: 15px; }
	.writer img { width:70px; height: 60px; float: right; margin-left: 10px; border-radius: 4px}
	.writer .title { font-family: cairo; font-size: 13px; font-weight: bold; text-align: right; direction: rtl;}
	.writer .writer-name { font-family: cairo; font-size: 12px; font-weight: bold; text-align: right; direction: rtl; color: #2b96e2}
	.writer .title  a { color: #000;}	



/*========================================================================*/

.footer-box { color:#fff; }
.footer-box h2 { color:#fff;font-size: 20px; font-weight: bold; margin-bottom: 15px;}
.footer-box ul { list-style: none; margin: 0px;padding: 0px}
.footer-box ul li a { color:#fff; font-size: 14px; display: block; padding-right: 10px; border-right: 1px solid #fff; margin-bottom: 10px;}
	
	
	.social-footer { display: flex;}
	.social-footer a { display: block; color:#fff; font-size: 35px;margin-right: 5px; margin-left: 5px;}


	.breaking-news{background-color:#cd090c;height:60px;padding:10px;position:fixed;bottom:0;width:100%;z-index:99999}
	.breaking-news a  { display: inline-block; direction: rtl; font-family: Al-Jazeera; font-size: 22px; color: #fff; font-weight: bold;}
	.breaking-news img {  padding: 5px ;  margin-left: 10px;}
	
	.ticker-icon { height: 35px;}

/*=============================== Post =================================*/


	.share-icons { padding: 10px;}
	
	.post-image { text-align: center;}
	
	.post-content {    
	text-align: justify;
    direction: rtl;

    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    line-height: 30px;
	font-family: cairo;

}

	.post-content span {color:#000 ; text-align:justify; direction: rtl;  font-size: 18px !important; font-weight: bold; line-height: 30px;}
	.post-content div {color:#000 !important; text-align:justify; direction: rtl;  font-size: 18px !important; font-weight: bold; line-height: 30px;}
	.post-content p {color:#000 !important; text-align:justify; direction: rtl;  font-size: 18px !important; font-weight: bold; line-height: 30px;}
	.post-content h4 {color:#000 !important; text-align:justify; direction: rtl;  font-size: 18px !important; font-weight: bold; line-height: 30px;}
	.post-content h2 {color:#000 !important; text-align:justify; direction: rtl;  font-size: 18px !important; font-weight: bold; line-height: 30px;}
	
	.post-date { font-size: 14px; text-align: right; direction: rtl;}
	
	.post-content img { width: 98%; border-radius: 4px; margin-top: 10px; margin-bottom: 10px;}
	
	
.post-image img {
    border-radius: 10px;
    width: 80%;

    margin-bottom: 15px;
}	
	
	.content h1 {
		
		text-align: right;
    direction: rtl;

    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
	}

.writer-image { text-align: right; margin-bottom: 10px;}
.writer-image img { width:80px; border-radius: 10px; margin-bottom: 10px;}
.writer-image .writer-name { font-size: 14px; color:#2b96e2; }

/*================================= Category ==================================*/


.pagination {
clear: both;
font-family: arial; 
overflow: hidden;
padding-right: 10px;
width: 100%;
margin-bottom: 10px;
padding-top: 15px
}

.pagination ul {
list-style: none outside none;
margin: 0
}

.pagination ul li {
	float: right
}

.currenttext, .pagination a:hover {
	background: none repeat scroll 0 0 #fb752e;
	font-family: arial;
	font-size: 12px;
	font-weight: 700;
	color: #FFF;
	display: inline-block;
	float: right;
	line-height: 1.2em;
	margin: 0 5px 0 0;
	padding-top: 9px;
	padding-bottom: 9px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none
}

.pagination a {
	font-family: arial;
	font-size: 12px;
	font-weight: 700;
	
	color: #000;
	display: inline-block;
	float: right;
	width:35px;
	line-height: 1.2em;
	margin: 0 5px 0 0;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	transition: all .25s linear 0s;
	background-color:#fff;
	text-align: center;
	border-radius: 4px;
}

.pagination a:hover {
	background: none repeat scroll 0 0 #fb752e;
	color: #FFF;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px
}
.pagination a.pagearrow {
	border: 1px solid #D81D28;
	color: #64A7FE;
	display: inline-block;
	float: right;
	line-height: 1.2em;
	margin: 0 5px 0 0;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	transition: all .25s linear 0s
}

.pagination a.pagearrow:hover {
	background: none repeat scroll 0 0 #64A7FE;
	color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 6px;
	padding-right: 6px
}

.pagination a.active { background-color: #0B2F67; color:#fff;}	



.video-container {
  position: relative;
  padding-bottom: 56.25%;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 0;
  overflow: hidden
}
.video-container embed, .video-container iframe, .video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

