/* Base Styles */
body {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}


/* Top Contact Bar */
.top-contact-bar {
  background-color: #FDB139;
  font-size: 14px;
}

.top-contact-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-contact-bar a:hover {
  opacity: 0.9;
}

.top-contact-bar i {
  margin-right: 5px;
}

/* Page Header removed*/

/* -------- News details --------- */

/* News Content Section Styles */
.news-content-section {
  background-color: #fff;
}

.news-heading {
  color: #000;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.news-meta {
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

.news-body p  {
  color: #333;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.news-divider {
  border: none;
  border-top: 2px solid #000;
  width: 50%;
  margin: 2rem auto;
}

.company-logo {
  max-height: 60px;
  width: auto;
}

.footer-text {
  color: #333;
  font-weight: 400;
  font-size: 1rem;
}

.social-media {
  margin-top: 1rem;
}

.social-icon {
  color: #000;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #FDB139;
}


  .news-body a {
        text-decoration: none;
  }

.news-body h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
        line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .news-heading {
    font-size: 1.75rem;
  }
  
  .news-body p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .news-heading {
    font-size: 1.5rem;
  }
  
  .news-divider {
    width: 70%;
  }
  
  .company-logo {
    max-height: 50px;
  }

    img.responsive {
      width: 100%;
      height: auto;
    }
}

@media (max-width: 576px) {
  .news-heading {
    font-size: 1.3rem;
  }
  
  .news-body p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .news-divider {
    width: 100%;
  }
  
  .social-icon {
    font-size: 1.1rem;
    margin: 0 0.5rem;
  }
}


/* -------- News details css ends --------- */
