* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    //max-width: 1200px;
    margin: 0 auto;
   // padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: #1e3c72;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: #ffcc00;
}
span.dts {
    margin-left: 10px;
}
.top-links {
    text-align: center;
    margin-right: 10px;
}
/* Main Header */
.main-header {
    background: linear-gradient(135deg, #ff9933 0%, #ffffff 33%, #138808 66%, #000080 100%);
    //padding: 20px 0;
    border-bottom: 3px solid #ff5722;
}

.logo h1 {
    color: #1e3c72;
    font-family: 'Noto Serif', serif;
    margin-bottom: 5px;
}

.tagline {
    color: #666;
    font-style: italic;
}

/* Breaking News */
.breaking-news {
    background: #ff5722;
    color: white;
   // padding: 10px;
  //  margin-top: 10px;
    border-radius: 4px;
}

.breaking-label {
    background: #d84315;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
}

/* Navigation */
.main-nav {
    background: #1e3c72;
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    overflow-x: auto;
}

.main-nav li {
    flex-shrink: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.main-nav a:hover {
    background: #ff5722;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px 0;
}

/* News Cards */
.news-section {
    margin-bottom: 30px;
}

.section-title {
    color: #1e3c72;
    border-bottom: 2px solid #ff5722;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: 'Noto Serif', serif;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-category {
    color: #ff5722;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: #1e3c72;
    text-decoration: none;
}

.news-title a:hover {
    color: #ff5722;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 12px;
}

/* Sidebar */
img.adv_image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    color: #1e3c72;
    border-bottom: 2px solid #ff5722;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-family: 'Noto Serif', serif;
}

.top-stories li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-stories a {
    color: #333;
    text-decoration: none;
}

.top-stories a:hover {
    color: #ff5722;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #1e3c72;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Noto Sans', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn {
    background: #ff5722;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e64a19;
}

/* Footer */
.main-footer {
    background: #1e3c72;
    color: white;
    padding: 40px 0 20px;
    margin-top: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
	margin-left: 10px;
}

.footer-column h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-family: 'Noto Serif', serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffcc00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff5722;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-links {
        margin-top: 10px;
    }
}

/* Fix for category tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tab-btn {
    padding: 8px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
}

.tab-btn:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.tab-btn.active {
    background: #1e3c72;
    border-color: #1e3c72;
    color: white;
}

.tab-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-list-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.news-list-item a:hover {
    color: #ff5722;
    text-decoration: underline;
}

.news-meta {
    color: #666;
    font-size: 14px;
    display: flex;
    gap: 15px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff5722;
}

.category-header h4 {
    color: #1e3c72;
    font-size: 20px;
    margin: 0;
}

.btn-back {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-back:hover {
    background: #e9ecef;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading-spinner i {
    margin-right: 10px;
}

/* Fix for empty href links */
a[href="#"] {
    cursor: default;
}

a[href="#"]:hover {
    text-decoration: none;
}