


























































body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
  }
  
  .menu-icon {
    font-size: 28px;
    cursor: pointer;
  }
  
  .logo img {
    height: 40px;
  }
  
  .live-btn,
  .login-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 6px 12px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .side-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: left 0.3s ease;
  }
  
  .side-menu.active {
    left: 0;
  }
  
  .side-menu-overlay.active {
    display: block;
  }
  
  .menu-header {
    margin-bottom: 20px;
  }
  
  
  
  .profile-dropdown {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-radius: 6px;
    overflow: hidden;
    min-width: 150px;
    right: 10px;
    z-index: 2000;
  }
  
  .profile-dropdown.show {
    display: block;
  }
  
  .profile-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
  }
  
  .menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-links li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
  }
  
  .menu-links li:hover {
    background-color: #f2f2f2;
  }
  .right-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap; /* Optional for responsiveness */
  }
  
  .profile-wrapper {
    position: relative;
  }
  
  .profile-circle {
    width: 40px;
    height: 40px;
    background-color: #e0e0e0;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  /* Hide side menu and overlay by default */
.side-menu,
.side-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1000;
}

/* Show menu when active */
.side-menu.active {
  display: block;
  width: 300px;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  overflow-y: auto;
}

/* Show background overlay */
.side-menu-overlay.active {
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Profile circle */
.profile-circle {
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
}

/* Rest of your styling like navbar, buttons, etc. */
.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh; /* full height of screen */
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* enables vertical scrolling */
  transition: left 0.3s ease;
  z-index: 999;
  padding: 20px;
}

/* Optional: make it smoother and prettier */
.side-menu::-webkit-scrollbar {
  width: 6px;
}
.side-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}






body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  background-color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Times New Roman', Times, serif;
  
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-right button {
  border: 1px solid #b30000;
  background-color: transparent;
  color: #b30000;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.top-right .search-icon {
  font-size: 20px;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  background-color: #fafafa;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
}

nav a.active {
  color: #b30000;
}

nav a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #b30000;
  bottom: -5px;
  left: 0;
}

.new-tag {
  color: #b30000;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: -15px;
}


.footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-social {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
#head{
  
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Make sure it stays above everything else */
  


}
#forhight{
  height: 200px;
}
.footer {
  /* position: fixed; */
  bottom: 0px;
  left: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 15px 0;
  z-index: 1000;
  
 
}
#channel{
display: flex;
margin-left:33% ;
font-size: 50px;



}
























.news-area {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
  background: #f7f7f7;
}

/* Main Top Stories */
.top-stories {
  flex: 2;
  margin-right: 20px;
}

.story {
  background-color: white;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #c60000;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.story h3 {
  margin-top: 0;
  color: #222;
}

.story p {
  color: #555;
}

.story a {
  display: inline-block;
  margin-top: 10px;
  color: #c60000;
  text-decoration: none;
  font-weight: bold;
}

/* Sidebar */
.sidebar {
  flex: 1;
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sidebar h2 {
  color: #111;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
}

.sidebar ul li a:hover {
  text-decoration: underline;
  color: #c60000;
}

/* Responsive */
@media (max-width: 768px) {
  .news-area {
    flex-direction: column;
  }

  .top-stories {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .sidebar {
    width: 100%;
  }
}






















.news-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.featured-news-card {
  position: relative;
}

.featured-news-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.featured-news-card h2 {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 10px 15px;
  font-size: 1.5rem;
  border-radius: 5px;
}

/* Grid layout for other stories */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.news-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.news-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

/* Responsive stacking */
@media (max-width: 600px) {
  .news-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-card img {
    width: 100%;
    height: auto;
  }
}
























/* Default (Light mode) styles stay unchanged */

/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

.dark-mode header,
.dark-mode nav,
.dark-mode footer {
  background-color: #1e1e1e;
  color: #fff;
}

.dark-mode a {
  color: #89b4fa;
}

/* Optional: style toggle button */
#darkModeToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 9999;
}



/* Floating WhatsApp Button */
#whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  background-color: #25d366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Chatbox Container */
#whatsapp-chatbox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
  font-family: 'Arial', sans-serif;
}

/* Chatbox Header */
.chat-header {
  background: #25d366;
  color: white;
  padding: 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Chatbox Body */
.chat-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-message.bot {
  background-color: #e5e5ea;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

#chat-input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.chat-body button {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

.chat-body button:hover {
  background: #128c7e;
}
