.news-section {
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.news-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
    position: relative;
    display: inline-block;
}
.news-section h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #0056b3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.news-container-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}
.news-container {
    display: flex;
    transform: translateX(0);
    transition: transform 0.5s ease-out;
    width: max-content;
    padding: 10px 0;
    will-change: transform;
}
.news-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 0 0 300px;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover img {
    transform: scale(1.05);
}
.news-content {
    padding: 20px;
}
.news-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #222;
    transition: color 0.3s ease;
}
.news-card:hover .news-content h3 {
    color: #0056b3;
}
.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    color: #0056b3;
    border: 1px solid #0056b3;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.read-more:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}
.arrow-buttons {
    text-align: center;
    margin-top: 20px;
}
.arrow-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 18px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.arrow-buttons button:hover {
    background: #0056b3;
    color: white;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .news-card {
        flex: 0 0 280px;
    }
    .arrow-buttons button {
        padding: 8px 16px;
    }
}
.news-image{

    display: flex;
    justify-content: center;

    
}
.news-image img{

    justify-content: center;
    height: 300px!important;
    width: 600px!important;
    
}
.newsDetailsRow{
    margin-bottom: 15px!important;
}
.viewAllNewsButton
{
  text-decoration: none!important;
  border: 1px solid #0056b3;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
}

.viewAllNewsButton:hover
{
  text-decoration: none!important;
  border: 1px solid #0056b3;
  background-color: #0056b3;
  border-radius: 15px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  color: white;
  transition: all 0.3s ease;
}