/* Custom Responsive Tweaks for About Intro Section */
@media (max-width: 768px) {
  .about-intro-section .intro-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro-logo {
    padding: 24px 10px;
  }
  .logo-text-large {
    font-size: 40px;
    flex-direction: column;
    gap: 0;
  }
  .logo-live-large,
  .logo-number-large {
    padding: 8px 16px;
    font-size: 32px;
  }
  .logo-india-text {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 6px;
  }
  .logo-tagline {
    font-size: 13px;
    margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .about-intro-section .intro-content {
    gap: 12px;
  }
  .intro-logo {
    padding: 10px 2px;
  }
  .logo-text-large {
    font-size: 28px;
  }
  .logo-live-large,
  .logo-number-large {
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 900 !important;
    letter-spacing: 1px;
  }
  .logo-india-text {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 2px;
  }
  .logo-tagline {
    font-size: 10px;
    margin-top: 2px;
  }
}
* {
  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;
}

/* Sitemap Page Styles */
.sitemap-page {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
}

.sitemap-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.sitemap-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sitemap-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.sitemap-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 5px;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '→';
  margin: 0 15px;
  color: #666;
  font-weight: bold;
}

.breadcrumb a {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #c62828;
}

.xml-sitemap-notice {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.xml-sitemap-notice h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.xml-sitemap-notice a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.xml-sitemap-notice a:hover {
  color: #c8e6c9;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.sitemap-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #e53935;
}

.sitemap-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sitemap-section h2 {
  color: #e53935;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-links li {
  margin-bottom: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sitemap-links li:last-child {
  border-bottom: none;
}

.sitemap-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.sitemap-links a:hover {
  color: #e53935;
  transform: translateX(5px);
}

.sitemap-date {
  font-size: 0.85rem;
  color: #666;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.sitemap-footer-note {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #e53935;
}

.sitemap-footer-note p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.sitemap-footer-note a {
  color: #e53935;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sitemap-header h1 {
    font-size: 2rem;
  }
  
  .sitemap-description {
    font-size: 1rem;
  }
  
  .sitemap-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sitemap-section {
    padding: 20px;
  }
  
  .breadcrumb ol {
    padding: 10px 15px;
  }
  
  .sitemap-links li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .sitemap-date {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .sitemap-page {
    padding: 20px 0;
  }
  
  .sitemap-header {
    padding: 30px 15px;
    margin-bottom: 30px;
  }
  
  .sitemap-header h1 {
    font-size: 1.8rem;
  }
  
  .sitemap-section {
    padding: 15px;
  }
  
  .xml-sitemap-notice {
    padding: 20px 15px;
  }
}
.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: 8px 12px;
    font-size: 12px;
    background: #0fe4fe;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 228, 254, 0.3);
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    animation: redBorderBlink 1.5s ease-in-out infinite;
    position: relative;
  }
  .search-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(15, 228, 254, 0.4);
  }

  @keyframes redBorderBlink {
    0%,
    100% {
      border-color: transparent;
      box-shadow: 0 2px 8px rgba(15, 228, 254, 0.3);
    }
    50% {
      border-color: #ff0000;
      box-shadow:
        0 2px 8px rgba(15, 228, 254, 0.3),
        0 0 15px rgba(255, 0, 0, 0.6);
    }
  }
  .search-btn .search-icon {
    font-size: 14px;
  }
  .search-btn .search-text {
    font-size: 11px;
    display: inline; /* Always show text */
  }
  .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 {
    padding: 6px 10px;
    font-size: 10px;
    border-radius: 15px;
    min-height: 32px;
  }
  .search-btn .search-icon {
    font-size: 12px;
  }
  .search-btn .search-text {
    display: inline; /* Always show full text */
    font-size: 9px;
  }

  .signin-btn {
    font-size: 11px;
    padding: 6px 12px;
  }

  .breaking-label {
    font-size: 11px;
    padding: 4px 10px;
  }
  .breaking-text {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* Medium phones and small tablets */
  .search-btn .search-text {
    display: inline; /* Show full text */
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  /* Desktop and larger tablets */
  .search-btn {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 20px;
    background: #0fe4fe;
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(15, 228, 254, 0.3);
    animation: redBorderBlink 1.5s ease-in-out infinite;
  }
  .search-btn:hover {
    background: #00d4f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 228, 254, 0.4);
    animation-play-state: running; /* Keep animation on hover */
  }
  .search-btn .search-text {
    display: inline;
    font-size: 13px;
  }
}

@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: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .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;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .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;
  }
}

/* Single Article Page - Unique Layout */
.single-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.hero-content {
  color: white;
  max-width: 800px;
}

.hero-category {
  display: inline-block;
  background: #e53935;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  opacity: 0.9;
}

.hero-date,
.hero-reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-date::before {
  content: "📅";
  font-size: 16px;
}

.hero-reading-time::before {
  content: "⏱️";
  font-size: 16px;
}

/* Article Content Wrapper */
.single-article-wrapper {
  background: #f8f9fa;
  padding: 60px 0;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Article Content */
.article-main {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.article-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2,
.article-content h3 {
  color: #1a1a1a;
  margin: 32px 0 16px 0;
  font-weight: 700;
}

.article-content h2 {
  font-size: 28px;
  border-left: 4px solid #e53935;
  padding-left: 16px;
}

.article-content h3 {
  font-size: 22px;
}

/* Social Share */
.social-share {
  border-top: 2px solid #f0f0f0;
  padding-top: 30px;
}

.social-share h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn.copy {
  background: #f0f0f0;
  color: #333;
  border-color: #ddd;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-banner-single {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.sidebar-banner-single:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sidebar-banner-single img {
  width: 100%;
  display: block;
}

/* Related News Widget */
.related-news-widget {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.related-news-widget .widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e53935;
  position: relative;
}

.related-article {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.related-article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s;
}

.related-link:hover {
  transform: translateX(5px);
}

.related-content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.related-link:hover .related-content h4 {
  color: #e53935;
}

.related-date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .single-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 36px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .article-main {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .single-hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-overlay {
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .single-article-wrapper {
    padding: 30px 0;
  }

  .article-main {
    padding: 20px;
    border-radius: 12px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .share-buttons {
    justify-content: center;
  }

  .related-news-widget {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .hero-category {
    font-size: 11px;
    padding: 6px 12px;
  }

  .article-main {
    padding: 15px;
  }

  .share-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
/* Enhanced Article Content Styling for HTML Elements */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #1a1a1a;
  font-weight: 700;
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.article-content h1 {
  font-size: 32px;
  border-left: 5px solid #e53935;
  padding-left: 20px;
}

.article-content h2 {
  font-size: 28px;
  border-left: 4px solid #e53935;
  padding-left: 16px;
}

.article-content h3 {
  font-size: 24px;
  color: #e53935;
}

.article-content h4 {
  font-size: 20px;
  color: #333;
}

.article-content h5 {
  font-size: 18px;
  color: #333;
}

.article-content h6 {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-content ul li {
  list-style-type: disc;
}

.article-content ol li {
  list-style-type: decimal;
}

.article-content blockquote {
  background: #f8f9fa;
  border-left: 5px solid #e53935;
  margin: 30px 0;
  padding: 20px 25px;
  font-style: italic;
  font-size: 18px;
  color: #555;
  border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
  margin-bottom: 0;
}

.article-content code {
  background: #f1f3f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #d73a49;
}

.article-content pre {
  background: #f8f8f8;
  border: 1px solid #e1e4e8;
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}

.article-content pre code {
  background: none;
  padding: 0;
  color: #333;
  font-size: 14px;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.article-content table th,
.article-content table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.article-content table th {
  background: #e53935;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.article-content table tr:hover {
  background: #f8f9fa;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content a {
  color: #e53935;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.article-content a:hover {
  border-bottom-color: #e53935;
  color: #c62828;
}

.article-content strong,
.article-content b {
  font-weight: 700;
  color: #1a1a1a;
}

.article-content em,
.article-content i {
  font-style: italic;
  color: #555;
}

.article-content hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #e53935, transparent);
  margin: 40px 0;
  border-radius: 2px;
}

/* Responsive adjustments for article content */
@media (max-width: 768px) {
  .article-content h1 {
    font-size: 26px;
    padding-left: 15px;
  }

  .article-content h2 {
    font-size: 22px;
    padding-left: 12px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-content table {
    font-size: 14px;
  }

  .article-content table th,
  .article-content table td {
    padding: 8px 10px;
  }

  .article-content blockquote {
    padding: 15px 20px;
    font-size: 16px;
  }

  .article-content pre {
    padding: 15px;
    font-size: 13px;
  }
}
/* API News Sidebar Styles */
.sidebar-box-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.live-indicator {
  font-size: 11px;
  background: #ff4444;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.sidebar-api-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.sidebar-api-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-api-item:hover {
  transform: translateX(3px);
}

.sidebar-api-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.sidebar-api-image {
  position: relative;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.sidebar-api-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sidebar-api-item:hover .sidebar-api-image img {
  transform: scale(1.05);
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  font-size: 24px;
  color: #999;
}

.external-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #e53935;
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.sidebar-api-content {
  flex: 1;
  min-width: 0;
}

.sidebar-api-content h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.sidebar-api-link:hover .sidebar-api-content h4 {
  color: #e53935;
}

.sidebar-api-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.api-time {
  font-size: 11px;
  color: #999;
  font-weight: 500;
}

.api-category-small {
  font-size: 10px;
  background: #fff3e0;
  color: #f57c00;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-api-news {
  text-align: center;
  padding: 30px 20px;
  color: #999;
}

.no-news-icon {
  font-size: 32px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.no-api-news p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #666;
}

.no-api-news small {
  font-size: 12px;
  color: #999;
}

/* Mobile Responsive for API Sidebar */
@media (max-width: 768px) {
  .sidebar-api-image {
    width: 70px;
    height: 50px;
  }

  .sidebar-api-content h4 {
    font-size: 13px;
  }

  .api-time {
    font-size: 10px;
  }

  .api-category-small {
    font-size: 9px;
    padding: 1px 4px;
  }

  .live-indicator {
    font-size: 10px;
    padding: 2px 6px;
  }

  .no-api-news {
    padding: 20px 15px;
  }

  .no-news-icon {
    font-size: 24px;
  }
}
/* Live TV Button Styles */
.live-indicator-btn {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
  color: white !important;
  padding: 6px 12px !important;
  border-radius: 15px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3) !important;
  border: 1px solid #ff0000 !important;
}

.live-indicator-btn:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4) !important;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Video Modal Improvements */
.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);
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-content h3 {
  margin: 0 0 15px 0;
  color: #e53935;
  font-size: 18px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper iframe,
.video-wrapper video {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #999;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.9);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.video-close:hover {
  color: #e53935;
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

/* Mobile Responsive for Video Modal */
@media (max-width: 768px) {
  .video-modal-content {
    margin: 10px;
    padding: 15px;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 250px;
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .live-indicator-btn {
    font-size: 10px !important;
    padding: 5px 10px !important;
  }
}
