body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.container {
  max-width: 900px;
  margin-top: 40px;
}

.page-heading {
  text-align: center;
  color: #0056b3;
  font-weight: 700;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: #fff;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.01);
}

.news-title {
  font-size: 25px;
  font-weight: 1000;
  color: #420000;
  margin-bottom: 15px;
}

.main-thumbnail {
  border-radius: 12px;
  width: 100%;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cat-label {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 13px;
    color: #222;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
}
.cat-kaup {
    background: #FFEBEB;
    color: #d12222;
}
.cat-udupi {
    background: #EAF4FF;
    color: #1877f3;
}
.cat-mangalore {
    background: #FFF9E3;
    color: #E9A800;
}

.meta {
  font-size: 15px;
  color: #555;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

.image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-slider img {
  display: none;
  width: 100%;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

.image-slider img.active {
  display: block;
}

.nav-btn {
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.share-section {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  text-align: center;
}

.share-section h6 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a3d62;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Platform Colors */
.share-icons .whatsapp { background-color: #25D366; }
.share-icons .facebook { background-color: #1877F2; }
.share-icons .twitter  { background-color: #1DA1F2; }
.share-icons .telegram { background-color: #0088cc; }
.share-icons .copylink { background-color: #6c757d; }

/* Hover Effects with Glow */
.share-icons .whatsapp:hover { background-color: #20b858; box-shadow: 0 0 10px #25D366; }
.share-icons .facebook:hover { background-color: #0f5ed7; box-shadow: 0 0 10px #1877F2; }
.share-icons .twitter:hover  { background-color: #0d8ddc; box-shadow: 0 0 10px #1DA1F2; }
.share-icons .telegram:hover { background-color: #0070b7; box-shadow: 0 0 10px #0088cc; }
.share-icons .copylink:hover { background-color: #555; box-shadow: 0 0 10px #6c757d; }

/* YouTube embed style */
.youtube-video iframe {
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  height: 340px;
  border: none;
  display: block;
  margin: 0 auto;
}