/*
Theme Name: BPSC Teacher News Theme
Author: BPSC Team
Version: 1.0
*/
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

/* Base Font Settings */
body {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Headings - Hindi Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
}

/* Paragraphs - Hindi Font */
p {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Post Title */
.post-title {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif !important;
}

/* Post Body Headings */
.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif !important;
}

/* Post Body Paragraphs */
.post-body p {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}

/* Hero Section */
.hero h2 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif !important;
}

/* Section Titles */
.section-title {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif !important;
}

/* Update Cards */
.update-card h3 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}

/* Policy Cards */
.policy-card h3 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}

/* Footer */
.footer-section h3 {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif !important;
}

/* Navigation */
nav a {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}

/* Buttons */
button,
.submit-btn,
.share-trigger-btn {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Header */
header {
    background: linear-gradient(135deg, #0a2463 0%, #1e3c72 50%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
    width: 100%;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo-text p {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Navigation Links - Futuristic Gradient Line */
nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

nav a:hover::after {
    width: calc(100% - 40px);
}

nav a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Breaking News Ticker */
.news-ticker {
    background: linear-gradient(90deg, #d32f2f 0%, #f44336 50%, #d32f2f 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
    width: 100%;
}

.ticker-label {
    background: #fff;
    color: #d32f2f;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    padding-right: 100%;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hero Section - Logo on Left Side */
.hero {
    background: linear-gradient(135deg, rgba(10,36,99,0.95) 0%, rgba(30,60,114,0.95) 50%, rgba(42,82,152,0.95) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 35px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,53,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(42,82,152,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.govt-emblem {
    display: flex;
    flex-shrink: 0;
}

.emblem-circle {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border: 3px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    backdrop-filter: blur(10px);
}

.emblem-icon {
    font-size: 35px;
}

.hero-text-content {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-box {
    max-width: 580px;
    display: flex;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    min-width: 0;
}

.search-box button {
    padding: 12px 24px;
    background: #ff6b35;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 14px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.search-box button:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    width: 100%;
}

/* Category Tabs - Fixed Text Cutting */
.category-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 5px 0 15px 0;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.category-tabs::-webkit-scrollbar {
    height: 6px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 5px;
}

.category-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    overflow: visible;
    line-height: 1.2;
    flex-shrink: 0;
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.6);
    border-radius: 3px;
}

.category-tab:hover::after {
    width: 80%;
}

.category-tab:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30,60,114,0.3);
}

.category-tab.active {
    background: #1e3c72;
    color: white;
    box-shadow: 0 4px 12px rgba(30,60,114,0.3);
}

.category-tab.active::after {
    width: 80%;
}

/* Section Title - With Underline */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    position: relative;
    flex-wrap: wrap;
}

.section-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #1e3c72;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
    border-radius: 2px;
}

/* Updates Grid - Smaller Cards */
.updates-section {
    margin-bottom: 60px;
    width: 100%;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.update-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
    border-left: 3px solid #1e3c72;
    position: relative;
    width: 100%;
}

.update-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.6);
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.update-card:hover::after {
    width: 100%;
}

.update-content {
    padding: 18px;
}

.update-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-card h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.update-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 8px;
}

/* Read More Links - Futuristic Gradient Line */
.read-more {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.read-more:hover::after {
    width: 100%;
}

.read-more:hover {
    color: #d32f2f;
    transform: translateX(3px);
}

/* Policy Section - Fixed Spacing */
.policy-section {
    margin-bottom: 0;
    padding: 50px 0 60px;
    background: linear-gradient(to bottom, rgba(30,60,114,0.02), rgba(30,60,114,0.05));
    border-radius: 20px 20px 0 0;
    width: 100%;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.policy-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    border-top: 4px solid #1e3c72;
    width: 100%;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top-width: 6px;
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.policy-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.policy-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 13px;
}

/* Policy Links - Futuristic Gradient Line */
.policy-link {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 13px;
    position: relative;
    padding-bottom: 3px;
}

.policy-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.policy-link:hover::after {
    width: 100%;
}

.policy-link:hover {
    color: #d32f2f;
    transform: translateX(5px);
}

/* Footer - Fixed Wave Alignment */
footer {
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f2027 100%);
    color: white;
    padding: 0;
    margin-top: 0;
    position: relative;
    width: 100%;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: #0a1929;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 100px 20px 50px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.footer-about p {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-btn:hover {
    background: #ff6b35;
    transform: translateY(-5px);
    border-color: white;
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

/* Footer Links - Futuristic Gradient Line */
.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    position: relative;
    padding-bottom: 2px;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.footer-section a:hover::after {
    width: calc(100% - 20px);
}

.footer-section a:hover {
    color: #ff6b35;
    padding-left: 8px;
}

.footer-section a::before {
    content: '▸';
    color: #ff6b35;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.newsletter {
    margin-top: 25px;
}

.newsletter h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: 'Poppins', sans-serif;
}

.newsletter input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter button {
    width: 100%;
    padding: 14px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.newsletter button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Footer Bottom Links - Futuristic Gradient Line */
.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(211, 47, 47, 0.5);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #0a2463;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav a {
        padding: 15px 25px;
        width: 100%;
    }

    nav a::after {
        left: 25px;
    }

    nav a:hover::after {
        width: calc(100% - 50px);
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-text-content {
        text-align: center;
    }

    .emblem-circle {
        width: 60px;
        height: 60px;
    }

    .emblem-icon {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .search-box {
        flex-direction: column;
        max-width: 100%;
    }

    .search-box input {
        padding: 11px 16px;
        font-size: 13px;
    }

    .search-box button {
        width: 100%;
        padding: 11px;
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
        margin: 30px auto;
    }

    .section-title {
        font-size: 22px;
    }

    .section-icon {
        font-size: 26px;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-section {
        padding: 40px 15px 50px;
    }

    /* Footer Mobile - Quick Links & Categories Side by Side */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 15px 40px;
    }

    .footer-links-section,
    .footer-categories-section {
        display: inline-block;
        width: 48%;
        vertical-align: top;
    }

    .footer-links-section {
        margin-right: 4%;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .category-tabs {
        justify-content: flex-start;
    }

    .ticker-label {
        font-size: 10px;
        padding: 6px 12px;
    }

    .ticker-text {
        font-size: 12px;
    }

    .update-card h3 {
        font-size: 15px;
    }

    .update-card p {
        font-size: 12px;
    }

    .update-content {
        padding: 16px;
    }

    .policy-card {
        padding: 25px;
    }

    .policy-icon {
        font-size: 44px;
    }

    .policy-card h3 {
        font-size: 17px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 25px 12px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .emblem-circle {
        width: 50px;
        height: 50px;
    }

    .emblem-icon {
        font-size: 25px;
    }

    .search-box input {
        padding: 10px 14px;
        font-size: 12px;
    }

    .search-box button {
        padding: 10px;
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .update-content {
        padding: 14px;
    }

    .policy-card {
        padding: 20px;
    }

    .footer-content {
        padding: 70px 12px 30px;
    }

    .footer-links-section,
    .footer-categories-section {
        width: 100%;
        margin-right: 0;
        display: block;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #0a2463 0%, #1e3c72 50%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo-text p {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 10px 20px;
    display: block;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

nav a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb .separator {
    color: #999;
    margin: 0 5px;
}

.breadcrumb .current {
    color: #666;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 9999;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(255,107,53,0.5);
}

/* Main Post Container */
.post-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Main Content Area */
.post-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Post Header */
.post-category {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #1e3c72;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Post Meta with Share Button */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1e3c72;
    font-size: 15px;
}

.post-date {
    font-size: 13px;
    color: #999;
}

.meta-right {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    align-items: center;
}

.meta-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-right i {
    color: #ff6b35;
}

/* Share Trigger Button */
.share-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
}

.share-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.5);
}

/* Share Menu Dropdown */
.share-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    z-index: 100;
    margin-top: 10px;
    animation: slideDown 0.3s ease;
}

.share-menu-dropdown.active {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.share-menu-item.facebook {
    background: #3b5998;
    color: white;
}

.share-menu-item.twitter {
    background: #1da1f2;
    color: white;
}

.share-menu-item.whatsapp {
    background: #25d366;
    color: white;
}

.share-menu-item.telegram {
    background: #0088cc;
    color: white;
}

.share-menu-item.linkedin {
    background: #0077b5;
    color: white;
}

.share-menu-item.bookmark {
    background: #ff6b35;
    color: white;
}

.share-menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: #f8f9fa;
    padding: 12px 20px;
    font-size: 13px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Google Ads Container */
.google-ad-container {
    margin: 35px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    border: 1px dashed #e0e0e0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-ad-container ins {
    display: block;
    width: 100%;
}

/* Sidebar Google Ad */
.google-ad-sidebar {
    position: sticky;
    top: calc(100px + 350px);
    background: #f8f9fa;
    border: 1px dashed #e0e0e0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Table of Contents */
.toc-inline {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #ff6b35;
}

.toc-inline h4 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

#tocList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

#tocList li {
    margin: 0;
}

#tocList a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    background: white;
}

#tocList a:hover,
#tocList a.active {
    background: #1e3c72;
    color: white;
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

/* Post Body Content */
.post-body {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 500;
    color: #1e3c72;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #ff6b35;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #1e3c72;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6b35;
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-body h2 i {
    color: #ff6b35;
    font-size: 28px;
}

.post-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3c72;
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-body h3 i {
    color: #ff6b35;
    font-size: 20px;
}

.post-body strong {
    color: #1e3c72;
    font-weight: 700;
}

/* Lists */
.content-list {
    margin: 20px 0;
    padding-left: 30px;
}

.content-list li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.content-list li::marker {
    color: #ff6b35;
    font-weight: bold;
}

/* Info Boxes */
.info-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid;
}

.info-box-success {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.info-box-warning {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-box-success .info-icon {
    color: #4caf50;
}

.info-box-warning .info-icon {
    color: #ff9800;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e3c72;
}

.info-content p {
    margin: 0;
    font-size: 15px;
}

/* Table */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.content-table thead {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.content-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}

.content-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.content-table tbody tr:hover {
    background: #f8f9fa;
}

/* Steps Container */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.step-item:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35, #ff8c5a);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
}

/* Post Tags */
.post-tags {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.post-tags h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.tag:hover {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
    transform: translateY(-2px);
}

/* Social Share Bottom */
.social-share-bottom {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 12px;
    text-align: center;
}

.social-share-bottom h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.share-btn-large.facebook { background: #3b5998; }
.share-btn-large.twitter { background: #1da1f2; }
.share-btn-large.whatsapp { background: #25d366; }
.share-btn-large.telegram { background: #0088cc; }
.share-btn-large.linkedin { background: #0077b5; }

.share-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid #ff6b35;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ff6b35;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.author-bio-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Related Posts */
.related-posts {
    margin: 40px 0;
}

.related-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-category {
    display: inline-block;
    padding: 4px 12px;
    background: #ff6b35;
    color: white;
    font-size: 11px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.related-post-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-date {
    font-size: 12px;
    color: #999;
}

/* Comments Section */
.comments-section {
    margin: 40px 0;
}

.comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.comment-form h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

/* Right Sidebar - No Scrolling, No Gaps */
.post-sidebar-right {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-widget {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0 !important;
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6b35;
}

/* Popular Posts Widget - No Extra Space */
.popular-widget {
    position: sticky;
    top: 100px;
    margin-bottom: 0 !important;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    cursor: pointer;
}

.popular-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.popular-content h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-date {
    font-size: 11px;
    color: #999;
}

/* Category List - Tighter Spacing */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #1e3c72;
    color: white;
    padding-left: 20px;
}

.category-list span {
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.6);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f2027 100%);
    color: white;
    padding: 0;
    margin-top: 60px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.footer-wave path {
    fill: #0a1929;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 100px 20px 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .post-container {
        grid-template-columns: 1fr 320px;
    }
    
    .post-content {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .post-container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar-right {
        position: static;
    }
    
    .popular-widget,
    .google-ad-sidebar {
        position: static;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #tocList {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #0a2463;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav a {
        padding: 15px 25px;
        width: 100%;
    }
    
    .post-content {
        padding: 25px 20px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-body {
        font-size: 16px;
    }
    
    .post-body h2 {
        font-size: 24px;
    }
    
    .post-body h3 {
        font-size: 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .share-menu-dropdown {
        right: auto;
        left: 0;
    }
}

@media (max-width: 480px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .toc-inline {
        padding: 20px;
    }
}
/* ========================================
   POST PAGE STYLING - START
   ======================================== */

/* Breadcrumb Navigation */
.breadcrumb-container {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb .separator {
    color: #999;
    margin: 0 5px;
}

.breadcrumb .current {
    color: #666;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 9999;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff6b35 50%, #ff8c5a 100%);
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(255,107,53,0.5);
}

/* Main Post Container */
.post-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Main Content Area */
.post-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Post Category Badges */
.post-category {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white !important;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

/* Post Title */
.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #1e3c72;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* Post Meta */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1e3c72;
    font-size: 15px;
}

.post-date {
    font-size: 13px;
    color: #999;
}

.meta-right {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    align-items: center;
}

.meta-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-right i {
    color: #ff6b35;
}

/* Share Button */
.share-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
}

.share-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.5);
}

/* Share Menu Dropdown */
.share-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    z-index: 100;
    margin-top: 10px;
}

.share-menu-dropdown.active {
    display: flex;
}

.share-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: white;
}

.share-menu-item.facebook { background: #3b5998; }
.share-menu-item.twitter { background: #1da1f2; }
.share-menu-item.whatsapp { background: #25d366; }
.share-menu-item.telegram { background: #0088cc; }
.share-menu-item.linkedin { background: #0077b5; }
.share-menu-item.bookmark { background: #ff6b35; }

.share-menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: #f8f9fa;
    padding: 12px 20px;
    font-size: 13px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Post Body Content */
.post-body {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #1e3c72;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6b35;
}

.post-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3c72;
    margin: 30px 0 15px;
}

.post-body strong {
    color: #1e3c72;
    font-weight: 700;
}

.post-body ul,
.post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Post Tags */
.post-tags {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.post-tags h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.tag:hover {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
    transform: translateY(-2px);
}

/* Social Share Bottom */
.social-share-bottom {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 12px;
    text-align: center;
}

.social-share-bottom h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.share-btn-large.facebook { background: #3b5998; }
.share-btn-large.twitter { background: #1da1f2; }
.share-btn-large.whatsapp { background: #25d366; }
.share-btn-large.telegram { background: #0088cc; }
.share-btn-large.linkedin { background: #0077b5; }

.share-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 5px solid #ff6b35;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ff6b35;
    flex-shrink: 0;
}

.author-bio-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.author-bio-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Related Posts */
.related-posts {
    margin: 40px 0;
}

.related-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-category {
    display: inline-block;
    padding: 4px 12px;
    background: #ff6b35;
    color: white;
    font-size: 11px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.related-post-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-date {
    font-size: 12px;
    color: #999;
}

/* Comments Section */
.comments-section {
    margin: 40px 0;
}

.comments-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.comment-form h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

/* Right Sidebar */
.post-sidebar-right {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6b35;
}

/* Popular Posts */
.popular-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    cursor: pointer;
}

.popular-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post-item:hover {
    transform: translateX(5px);
}

.popular-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}

.popular-content h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-date {
    font-size: 11px;
    color: #999;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #1e3c72;
    color: white;
    padding-left: 20px;
}

.category-list span {
    background: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.6);
}

/* Responsive */
@media (max-width: 1200px) {
    .post-container {
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 992px) {
    .post-container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar-right {
        position: static;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-content {
        padding: 25px 20px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-body {
        font-size: 16px;
    }
    
    .post-body h2 {
        font-size: 24px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

/* POST PAGE STYLING - END */
/* Hide Hero Section on Post Pages */
.single .hero {
    display: none !important;
}

.single-post .hero {
    display: none !important;
}

body.single .hero {
    display: none !important;
}