* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; background: #f5f5f5; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Header Styles */
header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); z-index: 100; }

/* Top Header */
.top-header { background: #fff; border-bottom: 1px solid #e0e0e0; padding: 8px 0; }
.top-header .container { display: flex; justify-content: space-between; align-items: center; }
.top-left { display: flex; gap: 15px; align-items: center; font-size: 13px; }
.edition-label { color: #666; }
.date-display { color: #333; font-weight: 500; }
.top-right { display: flex; gap: 10px; }
.btn-download, .btn-watch-live { padding: 6px 15px; font-size: 12px; text-decoration: none; border-radius: 4px; font-weight: 600; }
.btn-download { background: #fff; color: #333; border: 1px solid #ddd; }
.btn-watch-live { background: #e53935; color: #fff; }

/* Main Header */
.main-header { padding: 12px 0; border-bottom: 1px solid #e0e0e0; background: #fff; z-index: 1000; transition: all 0.3s ease; }

/* Sticky class when scrolling */
.main-header.sticky { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; width: 100% !important; box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important; }

/* Add padding when header becomes sticky */
body.header-sticky { padding-top: 70px; }

/* Remove extra padding */
.home-wrapper { padding-top: 30px; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-link { text-decoration: none; display: inline-block; }
.logo-text { display: flex; align-items: center; font-size: 32px; font-weight: 900; }
.logo-news { color: #000; background: #000; color: #fff; padding: 5px 10px; }
.logo-number { color: #fff; background: #e53935; padding: 5px 10px; }
.logo img { height: 45px; }
.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav a { color: #333; text-decoration: none; padding: 10px 15px; font-weight: 500; font-size: 13px; text-transform: capitalize; transition: all 0.3s; position: relative; white-space: nowrap; }
.main-nav a:hover { background: #f5f5f5; color: #e53935; }
.main-nav a.dropdown-link { display: flex; align-items: center; gap: 4px; }
.dropdown-arrow { font-size: 10px; color: #999; }
.notification-icon { font-size: 16px; padding: 8px 12px !important; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.search-btn { background: #f0f0f0; border: 1px solid #ddd; padding: 8px 15px; border-radius: 20px; font-size: 13px; cursor: pointer; }
.signin-btn { background: #000; color: #fff; padding: 8px 20px; text-decoration: none; border-radius: 4px; font-size: 13px; font-weight: 600; }

/* Trending Bar */
.trending-bar { background: #f8f8f8; border-bottom: 1px solid #e0e0e0; padding: 10px 0; }
.trending-content { display: flex; justify-content: space-between; align-items: center; }
.trending-label { font-weight: 700; font-size: 13px; color: #e53935; margin-right: 15px; }
.trending-items { display: flex; gap: 20px; flex: 1; }
.trending-items a { color: #333; text-decoration: none; font-size: 13px; }
.trending-items a:hover { color: #e53935; }
.social-follow { display: flex; gap: 10px; align-items: center; font-size: 13px; }
.social-follow span { color: #666; font-weight: 500; }
.social-icon { color: #666; text-decoration: none; font-size: 16px; }
.social-icon:hover { color: #e53935; }

/* Breaking News */
.breaking-news { background: #e53935; color: #fff; padding: 10px 0; }
.breaking-news .container { display: flex; align-items: center; gap: 15px; }
.breaking-label { background: #fff; color: #e53935; padding: 5px 12px; font-weight: 700; font-size: 12px; text-transform: uppercase; }
.breaking-text { font-size: 14px; animation: scroll-left 20s linear infinite; }

/* Home Wrapper */
.home-wrapper { background: #f8f9fa; padding: 30px 0; }
.home-layout { display: grid; grid-template-columns: 280px 1fr 300px; gap: 25px; max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Left Sidebar - Featured News */
.left-sidebar { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); height: fit-content; position: sticky; top: 80px; }
.section-title-small { font-size: 20px; color: #1a1a1a; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid #e53935; }

.featured-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.featured-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.featured-item-link { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.featured-item-image { width: 90px; height: 70px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.featured-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.featured-item:hover .featured-item-image img { transform: scale(1.1); }
.featured-item-content h4 { font-size: 14px; line-height: 1.5; margin-bottom: 6px; color: #1a1a1a; font-weight: 600; }
.featured-item:hover h4 { color: #e53935; }
.featured-date { font-size: 11px; color: #999; }

/* Main Content Area - Latest Headlines */
.main-content-area { min-width: 0; }
.latest-section { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* Section Headers */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
.section-title { font-size: 26px; color: #1a1a1a; font-weight: 700; position: relative; padding-left: 15px; }
.section-title::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 28px; background: #e53935; border-radius: 3px; }

.filter-tabs { display: flex; gap: 10px; }
.tab-btn { background: #f5f5f5; border: none; padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; color: #666; }
.tab-btn:hover, .tab-btn.active { background: #e53935; color: #fff; }

/* Latest Grid - Vertical Card Layout */
.latest-grid { display: flex; flex-direction: column; gap: 20px; }
.latest-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.latest-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); border-color: #e0e0e0; }
.latest-card-link { text-decoration: none; color: inherit; display: block; }
.latest-card-image { position: relative; width: 100%; height: 300px; overflow: hidden; }
.latest-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.latest-card:hover .latest-card-image img { transform: scale(1.05); }
.card-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.latest-card:hover .card-overlay { opacity: 1; }
.read-more { color: #fff; font-weight: 600; font-size: 14px; }
.latest-card-content { padding: 20px; }
.card-category { display: inline-block; background: #fff3e0; color: #f57c00; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.latest-card-content h3 { font-size: 20px; line-height: 1.5; margin-bottom: 12px; color: #1a1a1a; font-weight: 600; }
.latest-card-content p { color: #666; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.card-footer { display: flex; gap: 15px; align-items: center; padding-top: 12px; border-top: 1px solid #f0f0f0; }
.card-date, .card-source { font-size: 11px; color: #999; }

/* Right Sidebar */
.right-sidebar { height: fit-content; position: sticky; top: 80px; }
.sidebar-sticky { display: flex; flex-direction: column; gap: 20px; }
.sidebar-title { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: #1a1a1a; }
.sidebar-banner { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.sidebar-banner img { width: 100%; display: block; }

.trending-widget { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.trending-list { display: flex; flex-wrap: wrap; gap: 8px; }
.trending-tag { display: inline-block; background: #f5f5f5; color: #666; padding: 6px 14px; border-radius: 20px; font-size: 12px; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.trending-tag:hover { background: #e53935; color: #fff; }

.news-list { margin: 20px 0; }
.news-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #e0e0e0; padding-bottom: 15px; background: #fff; }
.news-item img { width: 180px; height: 120px; object-fit: cover; border-radius: 4px; }
.news-item h3 { font-size: 16px; margin-bottom: 8px; }
.news-item a { color: #222; font-weight: 600; }
.news-item a:hover { color: #d32f2f; }

.single-news { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.single-news img { width: 100%; margin: 20px 0; }
.meta { color: #666; margin: 10px 0; }

.contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin: 10px 0; }
.contact-form button { padding: 10px 30px; background: #333; color: #fff; border: none; cursor: pointer; }

/* Footer Styles */
/* Footer Styles - Modern & Professional */
footer { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); color: #fff; margin-top: 60px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #e53935 0%, #ff5252 50%, #e53935 100%); }

.footer-main { padding: 60px 0 40px; }

.footer-content-wrapper { display: grid; grid-template-columns: 1.2fr 0.8fr 1.5fr; gap: 50px; align-items: start; }

/* Brand Section */
.footer-brand-section { }
.footer-logo-large { margin-bottom: 20px; display: block; }
.footer-logo-large img { height: 55px; max-width: 200px; object-fit: contain; }
.footer-logo-large .logo-text { display: inline-flex; align-items: center; font-size: 32px; font-weight: 900; }
.footer-logo-large .logo-news { background: #fff; color: #000; padding: 5px 10px; display: inline-block; }
.footer-logo-large .logo-number { background: #e53935; color: #fff; padding: 5px 10px; display: inline-block; }

.footer-description { color: #bbb; font-size: 14px; line-height: 1.7; margin-bottom: 30px; }

.footer-social-section h5 { color: #e53935; font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; }

.footer-social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3); }
.social-icon.facebook:hover { background: #1877f2; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.whatsapp:hover { background: #25d366; }
.social-icon svg { color: #fff; }

/* Links Grid */
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.footer-link-column h4 { color: #e53935; font-size: 14px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-link-column h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: linear-gradient(90deg, #e53935, transparent); }

.footer-link-column ul { list-style: none; }
.footer-link-column ul li { margin-bottom: 10px; }
.footer-link-column ul li a { color: #ccc; text-decoration: none; font-size: 13px; transition: all 0.3s; display: inline-block; position: relative; padding-left: 15px; }
.footer-link-column ul li a::before { content: '▸'; position: absolute; left: 0; color: #e53935; opacity: 0; transition: all 0.3s; }
.footer-link-column ul li a:hover { color: #fff; padding-left: 20px; }
.footer-link-column ul li a:hover::before { opacity: 1; }

/* Contact Card */
.footer-contact-card { background: transparent; border: 2px solid #e53935; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3); position: relative; overflow: hidden; }
.footer-contact-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200px; height: 200px; background: rgba(255,255,255,0.1); border-radius: 50%; }

.contact-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; position: relative; z-index: 1; background: transparent; }
.contact-card-header .contact-icon { font-size: 28px; }
.contact-card-header h4 { color: #fff; font-size: 18px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

.contact-details { position: relative; z-index: 1; }
.contact-item { display: flex; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.contact-item:last-child { border-bottom: none; margin-bottom: 20px; }
.contact-item .icon { font-size: 20px; flex-shrink: 0; }
.contact-item .info { flex: 1; }
.contact-item .info strong { color: #fff; font-size: 15px; display: block; margin-bottom: 3px; }
.contact-item .info small { color: rgba(255,255,255,0.8); font-size: 11px; }
.contact-item .info p { color: rgba(255,255,255,0.95); font-size: 13px; line-height: 1.6; margin: 0; }
.contact-item .info a { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }
.contact-item .info a:hover { text-decoration: underline; }

.footer-map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); margin-top: 20px; position: relative; z-index: 1; }
.footer-map-embed iframe { display: block; }

/* Footer Bottom */
.footer-bottom { background: #000; padding: 20px 0; border-top: 1px solid #333; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { margin: 0; font-size: 12px; color: #999; }
.footer-bottom .copyright { color: #fff; font-weight: 600; }
.footer-bottom .disclaimer { color: #888; font-size: 11px; }

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content-wrapper { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-contact-card { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .footer-main { padding: 40px 0 30px; }
    .footer-content-wrapper { grid-template-columns: 1fr; gap: 35px; }
    .footer-brand-section { text-align: center; }
    .footer-social-icons { justify-content: center; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .footer-contact-card { padding: 25px; }
    .footer-bottom-flex { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .footer-main { padding: 30px 0 20px; }
    .footer-logo-large img { height: 45px; }
    .footer-description { font-size: 13px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-link-column h4 { font-size: 13px; }
    .footer-link-column ul li a { font-size: 12px; }
    .contact-card-header h4 { font-size: 16px; }
    .contact-item .info p { font-size: 12px; }
    .footer-map-embed iframe { height: 150px; }
}

.section-title { font-size: 24px; color: #d32f2f; margin: 30px 0 20px; padding-bottom: 10px; border-bottom: 3px solid #d32f2f; text-transform: uppercase; font-weight: 700; }

@media (max-width: 1200px) {
    .home-layout { grid-template-columns: 1fr 280px; }
    .left-sidebar { display: none; }
    .latest-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Header Responsive */
    .top-header { 
        padding: 6px 0;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
    }
    .top-header .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .top-left { 
        display: flex;
        font-size: 11px;
        gap: 10px;
        align-items: center;
    }
    .edition-label {
        color: #666;
        font-weight: 500;
    }
    .date-display {
        color: #333;
        font-weight: 600;
    }
    .top-right { 
        display: none; /* Hide download and watch live buttons */
    }
    
    /* Main Header - Single Row Layout */
    .main-header { 
        padding: 12px 0;
        background: #fff;
        border-bottom: 2px solid #f0f0f0;
    }
    .header-content { 
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    /* Logo - Left Side */
    .logo { 
        flex: 0 0 auto;
    }
    .logo img { 
        height: 45px; 
        max-width: 140px;
    }
    .logo-text { 
        font-size: 36px;
        display: inline-flex;
    }
    .logo-news, .logo-number { 
        padding: 5px 10px;
        font-size: 36px;
    }
    
    /* Hide main navigation on mobile */
    .main-nav { display: none; }
    
    /* Right Side - Search and Sign In in One Row */
    .header-actions { 
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        flex: 0 0 auto;
    }
    
    /* Mobile Header Buttons - Compact */
    .btn-download, .btn-watch-live {
        display: none; /* Hide these buttons from header */
    }
    
    .search-btn { 
        padding: 10px; 
        font-size: 20px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 3px 12px rgba(245, 87, 108, 0.4);
        transition: all 0.3s;
        flex-shrink: 0;
    }
    .search-btn:active {
        transform: scale(0.92);
        box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
    }
    .signin-btn { 
        padding: 10px 18px; 
        font-size: 12px;
        border-radius: 22px;
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        color: #fff;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 3px 12px rgba(79, 172, 254, 0.4);
        transition: all 0.3s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .signin-btn:active {
        transform: scale(0.92);
        box-shadow: 0 2px 8px rgba(79, 172, 254, 0.3);
    }
    
    /* Hide trending bar on mobile */
    .trending-bar { display: none; }
    
    .breaking-news { padding: 8px 0; }
    .breaking-text { font-size: 13px; }
    
    /* Sticky header adjustments */
    body.header-sticky { padding-top: 60px; }
    
    /* Add padding for sticky bottom nav */
    body { padding-bottom: 70px; }
    
    /* Hide main footer content on mobile */
    footer .footer-main { display: none; }
    footer .footer-bottom { display: none; }
    
    /* Content */
    .home-layout { grid-template-columns: 1fr; }
    .right-sidebar { display: none; }
    .section-title { font-size: 22px; }
    .filter-tabs { overflow-x: auto; }
    
    /* Latest Headlines - Full Width Cards */
    .latest-section { 
        padding: 15px 0; /* Remove side padding */
        border-radius: 0; /* Remove border radius for full width */
    }
    .section-header {
        padding: 0 15px; /* Add padding only to header */
        margin-bottom: 15px;
    }
    .latest-grid { 
        display: flex; 
        flex-direction: column; 
        gap: 0; /* Remove gap between cards */
    }
    .latest-card { 
        width: 100%; 
        margin: 0;
        border-radius: 0; /* Remove border radius */
        border-left: none; /* Remove side borders */
        border-right: none; /* Remove side borders */
        border-top: none; /* Remove top border */
    }
    .latest-card:first-child {
        border-top: 1px solid #f0f0f0;
    }
    .latest-card-image { 
        height: 220px;
        border-radius: 0; /* Remove border radius from image */
    }
    .latest-card-content { 
        padding: 15px; 
    }
    .latest-card-content h3 { 
        font-size: 18px; 
    }
    .latest-card-content p { 
        font-size: 14px; 
    }
    
    /* Make container full width on mobile for latest section */
    .home-wrapper .container { 
        padding: 0; 
    }
    .main-content-area { 
        padding: 0; 
    }
}

@media (max-width: 480px) {
    /* Extra small phones */
    .top-header .container { flex-direction: column; gap: 8px; align-items: flex-start; }
    .top-left { width: 100%; justify-content: space-between; }
    .top-right { width: 100%; }
    
    .logo-text { font-size: 20px; }
    .logo img { height: 40px; }
    
    .main-nav a { 
        font-size: 11px; 
        padding: 6px 10px; 
    }
    
    .search-btn { font-size: 11px; padding: 6px 10px; }
    .signin-btn { font-size: 11px; padding: 6px 12px; }
    
    .breaking-label { font-size: 11px; padding: 4px 10px; }
    .breaking-text { font-size: 12px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet styles */
    .main-nav { 
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav a { font-size: 12px; padding: 10px 12px; }
    
    .header-actions { gap: 8px; }
    .search-btn { padding: 7px 12px; font-size: 12px; }
    .signin-btn { padding: 7px 16px; font-size: 12px; }
    
    /* Hide trending bar on tablet */
    .trending-bar { display: none; }
}


/* Video Widget Styles */
.video-widget { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 20px; cursor: pointer; transition: all 0.3s; }
.video-widget:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.12); }
.video-thumbnail { position: relative; width: 100%; height: 180px; overflow: hidden; background: #000; }
.video-thumbnail iframe, .video-thumbnail video { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(229, 57, 53, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: all 0.3s; pointer-events: none; }
.video-widget:hover .play-overlay { background: rgba(229, 57, 53, 1); transform: translate(-50%, -50%) scale(1.1); }
.video-title { padding: 15px; font-size: 14px; line-height: 1.5; color: #1a1a1a; font-weight: 600; }

/* Video Modal */
.video-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); }
.video-modal-content { position: relative; margin: 5% auto; width: 80%; max-width: 900px; }
.video-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.video-close:hover { color: #e53935; }
#videoContainer { background: #000; border-radius: 8px; overflow: hidden; }


/* Video Preview in Latest Headlines */
.video-preview { position: relative; }
.video-play-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.latest-card:hover .video-play-overlay { background: rgba(0,0,0,0.6); }
.play-button { width: 80px; height: 80px; background: rgba(229, 57, 53, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; padding-left: 5px; transition: all 0.3s; }
.latest-card:hover .play-button { background: rgba(229, 57, 53, 1); transform: scale(1.1); }


/* Sidebar Banners in Featured Section */
.sidebar-banners { margin-top: 30px; padding-top: 20px; border-top: 2px solid #f0f0f0; }
.sidebar-banner { margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s; }
.sidebar-banner:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.sidebar-banner img { width: 100%; display: block; }


/* Category Page Styles */
.category-page { background: #f8f9fa; padding: 30px 0; }
.category-header { text-align: center; padding: 40px 0; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border-radius: 12px; margin-bottom: 40px; }
.category-title { font-size: 36px; font-weight: 700; margin-bottom: 10px; }
.category-description { font-size: 16px; opacity: 0.9; }

.category-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.category-main { min-width: 0; }

.news-grid-category { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 40px; }
.category-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.category-card-link { text-decoration: none; color: inherit; display: block; }
.category-card-image { position: relative; height: 220px; overflow: hidden; }
.category-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-content { padding: 20px; }
.category-card-content h3 { font-size: 18px; line-height: 1.5; margin-bottom: 10px; color: #1a1a1a; font-weight: 600; }
.category-card-content .subtitle { font-size: 14px; color: #666; margin-bottom: 10px; font-weight: 500; }
.category-card-content p { color: #666; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }

.api-news-section { margin-top: 40px; }
.api-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.api-news-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s; }
.api-news-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.api-news-card a { text-decoration: none; color: inherit; display: block; }
.api-news-card img { width: 100%; height: 150px; object-fit: cover; }
.api-news-card h4 { padding: 15px; font-size: 14px; line-height: 1.5; color: #1a1a1a; }
.api-date { display: block; padding: 0 15px 15px; font-size: 12px; color: #999; }

.category-sidebar { position: sticky; top: 80px; height: fit-content; }
.sidebar-widget { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 20px; }
.widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #1a1a1a; padding-bottom: 10px; border-bottom: 2px solid #e53935; }
.sidebar-news-item { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.sidebar-news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-news-item a { display: flex; gap: 12px; text-decoration: none; color: inherit; }
.sidebar-news-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
.sidebar-news-item h4 { font-size: 13px; line-height: 1.5; color: #1a1a1a; font-weight: 600; margin-bottom: 5px; }
.sidebar-news-item:hover h4 { color: #e53935; }
.item-date { font-size: 11px; color: #999; }

.sidebar-video { position: relative; margin-bottom: 15px; cursor: pointer; border-radius: 8px; overflow: hidden; }
.sidebar-video img { width: 100%; height: 120px; object-fit: cover; }
.video-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(229, 57, 53, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.sidebar-video h4 { padding: 10px; font-size: 13px; line-height: 1.4; color: #1a1a1a; }

.no-news { text-align: center; padding: 60px 20px; color: #999; font-size: 16px; }

@media (max-width: 1024px) {
    .category-layout { grid-template-columns: 1fr; }
    .news-grid-category { grid-template-columns: 1fr; }
    .api-news-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Videos Page - YouTube Style Layout */
.videos-page { background: #f9f9f9; padding: 20px 0; min-height: 80vh; }
.videos-page-header { padding: 30px 0; }
.videos-page-header h1 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.videos-page-header p { color: #666; font-size: 14px; }

.videos-page-layout { display: grid; grid-template-columns: 1fr 350px; gap: 30px; }
.videos-content { min-width: 0; }

.section-header-videos { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #e0e0e0; }
.section-header-videos h2 { font-size: 22px; font-weight: 700; color: #1a1a1a; }
.video-count { color: #666; font-size: 14px; }
.view-all-link { color: #e53935; text-decoration: none; font-weight: 600; font-size: 14px; }
.view-all-link:hover { color: #c62828; }

/* Videos Grid */
.videos-grid-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.video-item { cursor: pointer; }
.video-thumbnail-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: 12px; overflow: hidden; }
.video-thumbnail-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-thumbnail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.video-item:hover .video-thumbnail-img img { transform: scale(1.05); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.9; transition: opacity 0.3s; }
.video-item:hover .video-play-btn { opacity: 1; }
.video-duration-badge { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.8); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.video-info { padding: 12px 0; }
.video-info h3 { font-size: 15px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 6px; }
.video-metadata { font-size: 13px; color: #666; }
.no-videos-msg { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: #999; }

/* Web News List */
.web-news-section { margin-top: 40px; }
.web-news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.web-news-item { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s; }
.web-news-item:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.web-news-item a { display: flex; gap: 15px; text-decoration: none; color: inherit; padding: 12px; }
.web-news-thumb { width: 200px; height: 120px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.web-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.web-news-details { flex: 1; display: flex; flex-direction: column; }
.news-badge { display: inline-block; background: #fff3e0; color: #f57c00; padding: 3px 8px; border-radius: 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; width: fit-content; }
.web-news-details h4 { font-size: 15px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 6px; }
.web-news-details p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 8px; }
.news-time { font-size: 12px; color: #999; margin-top: auto; }

/* Sidebar */
.videos-sidebar-right { position: sticky; top: 80px; height: fit-content; }
.sidebar-box { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 20px; }
.sidebar-box-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #e53935; }
.sidebar-video-item { display: flex; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; cursor: pointer; }
.sidebar-video-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-video-thumb { position: relative; width: 120px; height: 70px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.sidebar-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; background: rgba(229, 57, 53, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; padding-left: 2px; }
.sidebar-video-info { flex: 1; }
.sidebar-video-info h4 { font-size: 13px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 4px; }
.sidebar-video-info span { font-size: 11px; color: #999; }
.sidebar-news-mini { display: flex; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.sidebar-news-mini:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-news-mini a { display: flex; gap: 10px; text-decoration: none; color: inherit; }
.sidebar-news-mini img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
.sidebar-news-mini h4 { font-size: 13px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 4px; }
.sidebar-news-mini span { font-size: 11px; color: #999; }

@media (max-width: 1200px) {
    .videos-page-layout { grid-template-columns: 1fr; }
    .videos-grid-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .videos-grid-main { grid-template-columns: 1fr; }
    .web-news-list { grid-template-columns: 1fr; }
    .web-news-item a { flex-direction: column; }
    .web-news-thumb { width: 100%; height: 180px; }
}


/* More from Web Section on Videos Page */
.more-from-web { margin-top: 50px; padding-top: 40px; border-top: 2px solid #e0e0e0; }
.web-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.web-news-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; }
.web-news-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.web-news-card a { text-decoration: none; color: inherit; display: block; }
.web-news-image { position: relative; height: 180px; overflow: hidden; }
.web-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.web-news-card:hover .web-news-image img { transform: scale(1.05); }
.web-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.web-news-card:hover .web-overlay { opacity: 1; }
.read-more-btn { color: #fff; font-weight: 600; font-size: 14px; }
.web-news-content { padding: 15px; }
.web-category { display: inline-block; background: #fff3e0; color: #f57c00; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.web-news-content h4 { font-size: 16px; line-height: 1.5; margin-bottom: 10px; color: #1a1a1a; font-weight: 600; }
.web-news-content p { color: #666; font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.web-date { display: block; font-size: 12px; color: #999; }

@media (max-width: 1024px) {
    .web-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .web-news-grid { grid-template-columns: 1fr; }
}


/* Latest Page Styles */
.latest-page { background: #f9f9f9; padding: 20px 0; min-height: 80vh; }
.latest-page-header { padding: 30px 0; text-align: center; }
.latest-page-header h1 { font-size: 32px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.latest-page-header p { color: #666; font-size: 15px; }

.latest-page-layout { display: grid; grid-template-columns: 1fr 350px; gap: 30px; }
.latest-content { min-width: 0; }

.section-header-latest { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #e0e0e0; }
.section-header-latest h2 { font-size: 24px; font-weight: 700; color: #1a1a1a; }
.news-count { color: #666; font-size: 14px; background: #f0f0f0; padding: 5px 12px; border-radius: 20px; }
.api-badge { background: #e53935; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Latest News Grid */
.latest-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }
.latest-news-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; }
.latest-news-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.latest-news-link { text-decoration: none; color: inherit; display: block; }
.latest-news-image { position: relative; height: 200px; overflow: hidden; }
.latest-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.latest-news-card:hover .latest-news-image img { transform: scale(1.05); }
.news-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.latest-news-card:hover .news-overlay { opacity: 1; }
.read-btn { color: #fff; font-weight: 600; font-size: 14px; }
.latest-news-content { padding: 18px; }
.news-category-badge { display: inline-block; background: #e3f2fd; color: #1976d2; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.latest-news-content h3 { font-size: 17px; line-height: 1.5; margin-bottom: 8px; color: #1a1a1a; font-weight: 600; }
.news-subtitle { font-size: 14px; color: #666; margin-bottom: 8px; font-weight: 500; }
.news-excerpt { color: #666; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.news-footer { padding-top: 10px; border-top: 1px solid #f0f0f0; }
.news-date { font-size: 12px; color: #999; }

/* API Latest Grid */
.api-latest-section { margin-top: 40px; }
.api-latest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.api-latest-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: all 0.3s; }
.api-latest-card:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.api-latest-card a { display: flex; gap: 15px; text-decoration: none; color: inherit; padding: 12px; }
.api-latest-image { position: relative; width: 180px; height: 120px; flex-shrink: 0; border-radius: 8px; overflow: hidden; }
.api-latest-image img { width: 100%; height: 100%; object-fit: cover; }
.api-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s; }
.api-latest-card:hover .api-overlay { opacity: 1; }
.external-icon { font-size: 24px; }
.api-latest-content { flex: 1; }
.api-category { display: inline-block; background: #fff3e0; color: #f57c00; padding: 3px 8px; border-radius: 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.api-latest-content h4 { font-size: 15px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 6px; }
.api-latest-content p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 8px; }
.api-footer { display: flex; justify-content: space-between; font-size: 11px; color: #999; }

/* Latest Sidebar */
.latest-sidebar { position: sticky; top: 80px; height: fit-content; }
.trending-item { display: flex; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; }
.trending-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.trending-item a { display: flex; gap: 10px; text-decoration: none; color: inherit; }
.trending-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
.trending-item h4 { font-size: 13px; line-height: 1.4; color: #1a1a1a; font-weight: 600; margin-bottom: 4px; }
.trending-item span { font-size: 11px; color: #999; }
.category-list { display: flex; flex-wrap: wrap; gap: 8px; }
.category-link { display: inline-block; background: #f5f5f5; color: #333; padding: 8px 14px; border-radius: 20px; font-size: 13px; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.category-link:hover { background: #e53935; color: #fff; }
.sidebar-video-mini { position: relative; margin-bottom: 15px; cursor: pointer; border-radius: 8px; overflow: hidden; }
.sidebar-video-mini img { width: 100%; height: 120px; object-fit: cover; }
.mini-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(229, 57, 53, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; padding-left: 3px; }
.sidebar-video-mini h4 { padding: 10px; font-size: 13px; line-height: 1.4; color: #1a1a1a; background: #fff; }
.no-content { text-align: center; padding: 60px 20px; color: #999; font-size: 16px; grid-column: 1/-1; }

@media (max-width: 1200px) {
    .latest-page-layout { grid-template-columns: 1fr; }
    .latest-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .latest-news-grid { grid-template-columns: 1fr; }
    .api-latest-grid { grid-template-columns: 1fr; }
    .api-latest-card a { flex-direction: column; }
    .api-latest-image { width: 100%; height: 180px; }
}


/* Contact Page Styles */
.contact-page { background: #f9f9f9; padding: 30px 0; min-height: 80vh; }
.contact-header { text-align: center; padding: 40px 0; }
.contact-header h1 { font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.contact-header p { font-size: 16px; color: #666; }

.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; margin-top: 40px; }

/* Contact Form */
.contact-form-section { }
.form-card { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.form-card h2 { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.form-subtitle { color: #666; font-size: 14px; margin-bottom: 30px; }

.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; font-size: 14px; }
.alert svg { flex-shrink: 0; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #f44336; }

.contact-form-modern { }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 14px; transition: all 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #e53935; box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1); }
.form-group textarea { resize: vertical; }

.submit-btn { width: 100%; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border: none; padding: 14px 24px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229, 57, 53, 0.3); }
.submit-btn svg { transition: transform 0.3s; }
.submit-btn:hover svg { transform: translateX(5px); }

/* Contact Sidebar */
.contact-sidebar { }
.info-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin-bottom: 20px; }
.info-card h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #e53935; }

.info-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-icon { font-size: 28px; flex-shrink: 0; }
.info-content h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.info-content p { font-size: 13px; color: #666; line-height: 1.6; }

/* Social Links */
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link-btn { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.3s; }
.social-link-btn svg { flex-shrink: 0; }
.social-link-btn.facebook { background: #1877f2; color: #fff; }
.social-link-btn.facebook:hover { background: #145dbf; transform: translateX(5px); }
.social-link-btn.twitter { background: #1da1f2; color: #fff; }
.social-link-btn.twitter:hover { background: #0c85d0; transform: translateX(5px); }
.social-link-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.social-link-btn.instagram:hover { transform: translateX(5px); }
.social-link-btn.youtube { background: #ff0000; color: #fff; }
.social-link-btn.youtube:hover { background: #cc0000; transform: translateX(5px); }

/* Quick Links */
.quick-links { list-style: none; }
.quick-links li { margin-bottom: 12px; }
.quick-links li:last-child { margin-bottom: 0; }
.quick-links a { color: #666; text-decoration: none; font-size: 14px; transition: all 0.3s; display: flex; align-items: center; }
.quick-links a:before { content: '→'; margin-right: 8px; color: #e53935; font-weight: 700; }
.quick-links a:hover { color: #e53935; transform: translateX(5px); }

.contact-map-embed { margin-top: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.contact-map-embed iframe { display: block; }

/* Modern Contact Page Styles */
.contact-page-modern { background: #f5f7fa; padding: 40px 0; min-height: 80vh; }

.contact-hero { background: linear-gradient(135deg, #e53935 0%, #c62828 100%); padding: 60px 0; text-align: center; color: #fff; margin-bottom: 50px; }
.hero-content h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; }
.hero-content p { font-size: 18px; opacity: 0.95; max-width: 700px; margin: 0 auto; }

.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 50px; }
.info-card-modern { background: #fff; border-radius: 12px; padding: 30px 20px; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: all 0.3s; }
.info-card-modern:hover { transform: translateY(-5px); box-shadow: 0 6px 25px rgba(0,0,0,0.12); }
.card-icon { font-size: 48px; margin-bottom: 15px; }
.info-card-modern h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.info-card-modern p { font-size: 14px; color: #666; margin-bottom: 5px; }
.info-card-modern p a { color: #e53935; text-decoration: none; font-weight: 600; }
.info-card-modern p a:hover { text-decoration: underline; }
.small-text { font-size: 12px !important; color: #999 !important; }

.contact-main-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-bottom: 50px; }

.contact-form-wrapper { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.form-header { margin-bottom: 30px; }
.form-header h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.form-header p { font-size: 15px; color: #666; }

.modern-contact-form { }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 10px; }
.form-field label svg { color: #e53935; }
.form-field input, .form-field textarea { width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 14px; transition: all 0.3s; font-family: inherit; background: #f8f9fa; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: #e53935; box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.1); background: #fff; }
.form-field textarea { resize: vertical; min-height: 140px; }

.submit-button { width: 100%; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border: none; padding: 16px 24px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; margin-top: 10px; }
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4); }
.submit-button svg { transition: transform 0.3s; }
.submit-button:hover svg { transform: translateX(5px); }

.contact-details-sidebar { display: flex; flex-direction: column; gap: 20px; }
.detail-card { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.detail-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #f0f0f0; }
.header-icon { font-size: 28px; }
.detail-card-header h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin: 0; }
.detail-card-body { }
.detail-card-body p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 5px; }
.detail-card-body p strong { color: #1a1a1a; }
.landmark { display: flex; align-items: center; gap: 8px; margin-top: 15px; padding: 10px; background: #f8f9fa; border-radius: 8px; }
.landmark svg { color: #e53935; flex-shrink: 0; }
.landmark span { font-size: 13px; color: #666; }

.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.hours-row:last-child { border-bottom: none; }
.hours-row span { font-size: 14px; color: #666; }
.hours-row strong { font-size: 14px; color: #1a1a1a; }

.social-buttons { display: flex; flex-direction: column; gap: 10px; }
.social-btn { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.3s; }
.social-btn svg { flex-shrink: 0; }
.social-btn.facebook { background: #1877f2; color: #fff; }
.social-btn.facebook:hover { background: #145dbf; transform: translateX(5px); }
.social-btn.twitter { background: #1da1f2; color: #fff; }
.social-btn.twitter:hover { background: #0c85d0; transform: translateX(5px); }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.social-btn.instagram:hover { transform: translateX(5px); }
.social-btn.youtube { background: #ff0000; color: #fff; }
.social-btn.youtube:hover { background: #cc0000; transform: translateX(5px); }

.map-section { margin-top: 50px; padding: 40px 0; }
.map-section h2 { font-size: 28px; font-weight: 700; color: #1a1a1a; text-align: center; margin-bottom: 30px; }
.map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-container iframe { display: block; }

@media (max-width: 1200px) {
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-main-section { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-hero { padding: 40px 20px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 15px; }
    .contact-form-wrapper { padding: 25px; }
    .form-header h2 { font-size: 24px; }
}

/* Live Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    position: relative;
}

.video-modal-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.video-close:hover {
    color: #e53935;
}

.video-modal .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.video-modal .video-wrapper iframe,
.video-modal .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.notification-icon {
    position: relative;
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 8px 0;
        justify-content: space-around;
        align-items: center;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #666;
        font-size: 10px;
        font-weight: 500;
        padding: 5px 10px;
        transition: all 0.3s;
        flex: 1;
        max-width: 80px;
    }
    
    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: #e53935;
    }
    
    .mobile-nav-icon {
        font-size: 22px;
        margin-bottom: 3px;
    }
    
    .mobile-nav-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }
    
    .mobile-nav-label {
        font-size: 10px;
        text-align: center;
    }
}

/* Legal Pages Styles */
.legal-page { background: #f9f9f9; padding: 40px 0; min-height: 80vh; }
.legal-header { text-align: center; padding: 50px 0 30px; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border-radius: 12px; margin-bottom: 40px; }
.legal-header h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; }
.last-updated { font-size: 14px; opacity: 0.9; }

.legal-content { background: #fff; border-radius: 12px; padding: 50px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); max-width: 1000px; margin: 0 auto; }
.legal-section { margin-bottom: 40px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 3px solid #e53935; }
.legal-section h3 { font-size: 20px; font-weight: 600; color: #333; margin: 20px 0 10px; }
.legal-section p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px; }
.legal-section ul { margin: 15px 0 15px 30px; }
.legal-section ul li { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 8px; }
.legal-section a { color: #e53935; text-decoration: none; font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }

.contact-info { background: #f8f9fa; padding: 20px; border-radius: 8px; border-left: 4px solid #e53935; margin-top: 15px; }
.contact-info p { margin-bottom: 10px; font-size: 14px; }
.contact-info p:last-child { margin-bottom: 0; }

/* Sitemap Page Styles */
.sitemap-page { background: #f9f9f9; padding: 40px 0; min-height: 80vh; }
.sitemap-header { text-align: center; padding: 50px 0 30px; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border-radius: 12px; margin-bottom: 40px; }
.sitemap-header h1 { font-size: 42px; font-weight: 700; margin-bottom: 10px; }
.sitemap-header p { font-size: 16px; opacity: 0.9; }

.sitemap-content { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.sitemap-section h2 { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #e53935; }
.sitemap-links { list-style: none; }
.sitemap-links li { margin-bottom: 12px; }
.sitemap-links li a { color: #555; text-decoration: none; font-size: 14px; transition: all 0.3s; display: inline-block; }
.sitemap-links li a:hover { color: #e53935; padding-left: 5px; }
.sitemap-date { display: block; font-size: 12px; color: #999; margin-top: 3px; }

.sitemap-footer-note { background: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 4px solid #e53935; }
.sitemap-footer-note p { font-size: 14px; color: #555; margin-bottom: 8px; }
.sitemap-footer-note p:last-child { margin-bottom: 0; }
.sitemap-footer-note a { color: #e53935; text-decoration: none; font-weight: 600; }
.sitemap-footer-note a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
    .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .legal-content { padding: 35px; }
}

@media (max-width: 768px) {
    .sitemap-grid { grid-template-columns: 1fr; gap: 25px; }
    .legal-header h1, .sitemap-header h1 { font-size: 32px; }
    .legal-content { padding: 25px; }
    .legal-section h2 { font-size: 22px; }
    .sitemap-content { padding: 25px; }
}

/* About Page Styles */
.about-page { background: #f5f7fa; padding: 40px 0; min-height: 80vh; }

.about-hero { text-align: center; padding: 60px 20px; background: linear-gradient(135deg, #e53935 0%, #c62828 100%); color: #fff; border-radius: 12px; margin-bottom: 50px; }
.about-hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; }
.about-hero p { font-size: 18px; opacity: 0.95; }

/* Certificate Section */
.certificate-section { margin-bottom: 60px; }
.certificate-card { background: #fff; border-radius: 16px; padding: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 8px solid #d4af37; position: relative; }
.certificate-card::before { content: ''; position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; border: 2px solid #d4af37; border-radius: 8px; pointer-events: none; }

.certificate-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.org-logo h2 { font-size: 24px; color: #e53935; font-weight: 700; margin-bottom: 10px; }
.org-logo h3 { font-size: 20px; color: #333; font-weight: 600; margin-bottom: 8px; }
.reg-info { font-size: 12px; color: #666; font-style: italic; }

.certificate-body { position: relative; z-index: 1; }
.certificate-title { text-align: center; margin-bottom: 30px; }
.certificate-title h2 { font-size: 32px; color: #d4af37; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.certificate-title p { font-size: 18px; color: #666; font-style: italic; }

.recipient-info { text-align: center; margin: 40px 0; padding: 30px; background: linear-gradient(135deg, #fff9e6 0%, #fff 100%); border-radius: 12px; }
.recipient-info h1 { font-size: 36px; color: #e53935; font-weight: 700; margin-bottom: 10px; }
.recipient-info h3 { font-size: 24px; color: #333; font-weight: 600; }

.certificate-content { text-align: center; margin: 30px 0; line-height: 2; }
.certificate-content p { font-size: 16px; color: #444; margin-bottom: 20px; }
.certificate-content strong { color: #e53935; font-weight: 700; }

.covid-badge { text-align: center; margin: 30px 0; padding: 15px; background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%); border-radius: 50px; display: inline-block; width: 100%; }
.badge-icon { font-size: 24px; margin-right: 10px; }
.badge-text { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: 2px; }

.certificate-footer { margin-top: 50px; }
.associated-org { text-align: center; margin-bottom: 40px; padding: 15px; background: #f8f9fa; border-radius: 8px; }
.associated-org p { font-size: 14px; color: #666; }

.signatures { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }
.signature-block { text-align: center; }
.signature-line { height: 2px; background: #333; margin-bottom: 10px; width: 200px; margin: 0 auto 15px; }
.signature-block p { font-size: 14px; color: #333; margin-bottom: 5px; }
.designation { color: #666; font-size: 13px; }
.org-name { color: #888; font-size: 12px; font-style: italic; }
.location { color: #999; font-size: 12px; }

/* About Content */
.about-content-section { margin-bottom: 60px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.about-card { background: #fff; border-radius: 12px; padding: 40px 30px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.about-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-icon { font-size: 48px; margin-bottom: 20px; }
.about-card h3 { font-size: 22px; color: #1a1a1a; font-weight: 700; margin-bottom: 15px; }
.about-card p { font-size: 15px; color: #666; line-height: 1.8; }

/* Recognition Section */
.recognition-section { margin-bottom: 60px; }
.recognition-section h2 { font-size: 32px; color: #1a1a1a; font-weight: 700; text-align: center; margin-bottom: 40px; }
.recognition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.recognition-item { background: #fff; border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.recognition-icon { font-size: 48px; margin-bottom: 20px; }
.recognition-item h4 { font-size: 18px; color: #e53935; font-weight: 700; margin-bottom: 10px; }
.recognition-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* Team Section */
.team-section { margin-bottom: 60px; }
.team-section h2 { font-size: 32px; color: #1a1a1a; font-weight: 700; text-align: center; margin-bottom: 40px; }
.team-grid { display: flex; justify-content: center; }
.team-member { background: #fff; border-radius: 12px; padding: 40px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.08); max-width: 400px; }
.member-avatar { font-size: 80px; margin-bottom: 20px; }
.team-member h3 { font-size: 24px; color: #1a1a1a; font-weight: 700; margin-bottom: 8px; }
.member-role { font-size: 16px; color: #e53935; font-weight: 600; margin-bottom: 5px; }
.member-dob { font-size: 13px; color: #999; margin-bottom: 15px; }
.member-bio { font-size: 14px; color: #666; line-height: 1.6; }

/* CTA Section */
.about-cta { text-align: center; padding: 60px 40px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 12px; color: #fff; }
.about-cta h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.about-cta p { font-size: 18px; margin-bottom: 30px; opacity: 0.95; }
.cta-button { display: inline-block; padding: 15px 40px; background: #fff; color: #667eea; border-radius: 30px; font-size: 16px; font-weight: 700; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.3); }

@media (max-width: 1024px) {
    .about-grid, .recognition-grid { grid-template-columns: 1fr; }
    .signatures { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-hero { padding: 40px 20px; }
    .about-hero h1 { font-size: 32px; }
    .certificate-card { padding: 30px 20px; border: 4px solid #d4af37; }
    .certificate-title h2 { font-size: 24px; }
    .recipient-info h1 { font-size: 28px; }
    .certificate-content p { font-size: 14px; }
    .about-cta { padding: 40px 20px; }
    .about-cta h2 { font-size: 28px; }
}


/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Hero Section - New Layout */
.about-hero-section {
    position: relative;
    background: #fff;
    padding: 60px 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(229, 57, 53, 0.03) 0%, transparent 50%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    color: #1a1a1a;
}

.hero-badge {
    display: inline-block;
    background: rgba(229, 57, 53, 0.1);
    border: 2px solid #e53935;
    color: #e53935;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a1a 0%, #e53935 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 10px;
    border-left: 3px solid #e53935;
    transition: all 0.3s;
    color: #333;
}

.feature-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #e53935;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.stat-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: #e53935;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
    color: #e53935;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #666;
}

/* Introduction Section */
.about-intro-section {
    margin-bottom: 60px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 3px solid #e53935;
}

.logo-display {
    text-align: center;
}

.logo-text-large {
    display: inline-flex;
    align-items: center;
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
}

.logo-live-large {
    background: #000;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
}

.logo-number-large {
    background: #e53935;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
}

.logo-india-text {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.logo-tagline {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Section Heading */
.section-heading {
    font-size: 32px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e53935, #ff5252);
    border-radius: 2px;
}

/* About Content Section */
.about-content-section {
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.2);
    border-color: #e53935;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #e53935 0%, #ff5252 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.card-icon {
    width: 40px;
    height: 40px;
    color: #fff;
}

.about-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Certificate Section */
.certificate-section {
    margin-bottom: 60px;
}

.certificate-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid #e53935;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.certificate-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.org-logo h2 {
    font-size: 20px;
    color: #e53935;
    margin-bottom: 8px;
    font-weight: 700;
}

.org-logo h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.reg-info {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.certificate-body {
    text-align: center;
}

.certificate-title h2 {
    font-size: 32px;
    color: #e53935;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.certificate-title p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.recipient-info h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 900;
}

.recipient-info h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 600;
}

.certificate-content {
    margin: 30px 0;
    padding: 25px;
    background: rgba(229, 57, 53, 0.05);
    border-radius: 12px;
}

.certificate-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.covid-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e53935;
    padding: 12px 25px;
    border-radius: 30px;
    margin: 25px 0;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #e53935;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.associated-org {
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.associated-org p {
    font-size: 14px;
    color: #333;
}

.signatures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.signature-block {
    text-align: center;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: #333;
    margin: 0 auto 10px;
}

.signature-block p {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

.designation {
    font-weight: 600;
    color: #e53935;
}

.org-name {
    font-size: 11px;
    color: #666;
}

.location {
    font-size: 11px;
    color: #999;
}

/* Recognition Section */
.recognition-section {
    margin-bottom: 60px;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.recognition-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.recognition-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.recognition-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.recognition-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    justify-content: center;
}

.team-member {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 400px;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e53935 0%, #ff5252 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.member-avatar svg {
    width: 60px;
    height: 60px;
    color: #fff;
}

.team-member h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: #e53935;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-dob {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Coverage Section */
.coverage-section {
    margin-bottom: 60px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.coverage-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.coverage-item:hover {
    transform: translateY(-5px);
    border-color: #e53935;
    box-shadow: 0 6px 25px rgba(229, 57, 53, 0.15);
}

.coverage-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.coverage-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.coverage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact CTA */
.about-cta {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(229, 57, 53, 0.3);
    margin-bottom: 60px;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 900;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #e53935;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    background: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-stats-grid {
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .certificate-card {
        padding: 30px 20px;
    }
    
    .signatures {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 40px 20px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
}
