

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Noto Sans Devanagari;
}

body {
  line-height: 1.6;
  color: #fff;
}

.transparent-header{
width:100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 99;
box-shadow: 0 0 10px #000;
background: #171717;
background-image: url(../Images/black-paper.png);
}

.news-section {
  padding: 120px 400px 50px 400px;
  background-color: #171717; 
  background-image: url(../Images/black-paper.png);
  color: #f0f0f0;
  max-width: 100%;
  margin: auto;
}

.section-title {
  color: #FCF6F5;
  font-size: 1.7rem;
  font-weight: bold;
  padding-left: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
  background-color: #FCF6F5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
}

.media img,
.media iframe {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}

.media iframe {
  aspect-ratio: 16 / 9;
  border: none;
}

.news-content {
  padding: 10px 25px;
}

.media img:hover {
  transform: scale(1.01);
}

.news-content p{
  font-size: 1.1rem;
  color: #111b29;
  text-align: justify;
  line-height: 2;
  padding: 0px 30px 0px 30px;
}

.date {
  color: #111b29;
  font-size: 0.9rem;
  text-transform: uppercase;
   padding: 0px 30px 0px 30px;
}

.news-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 10px 0;
  margin-bottom: 0px;
  color: #111b29;
  border: none;
  text-align: center;
  padding: 0px 30px 10px 30px;
}

.news-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}


@media screen and (min-width: 1024px) and (max-width: 1440px){ 
  .news-section {
   padding: 110px 50px 20px 50px;
}
}


@media (max-width: 768px) {

.news-section {
  padding: 100px 10px 15px 10px;
}

.section-title {
  font-size: 16px;
}

  .news-title {
  font-size: 1.2rem;
  text-align: center;
  padding: 0px;
  padding-bottom: 5px;
  }

  .news-content p{
   padding: 0px;
  }

  .media, .news-content {
    flex: 1;
  }

  .media iframe,
  .media img {
    width: 100%;
    height: auto;
  }

  .news-content {
    padding: 15px;
    padding-top: 0px;
  }

  .date {
   padding: 0px;
   font-size: 10px;
  }

}

.read-more-btn {
  width: fit-content;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #212b39;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #344255;
}



.share-buttons {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 30px 20px 30px;
  justify-content: right;
}

.share-buttons span {
  font-weight: bold;
  color: #111b29;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #111b29;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.share-buttons a:hover {
  background: #555;
  color: #fff;
}


/* Tablet adjustments */
@media (max-width: 1024px) {
  .share-buttons {
    padding: 0px 30px 15px 30px;
    justify-content: center;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .share-buttons {
    padding: 10px;
    justify-content: right;
    gap: 8px;
  }

  .share-buttons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .share-buttons a i{
     padding-top: 0px;
     padding-right: 0px;
     color: white;
  }

  .share-buttons span {
    font-size: 14px;
  }
}