  .news-carousel {
            width: 100%;
            height: 350px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
         
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: rgba(238,238,238,1);
        }
        .news-container {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .news-item {
            min-width: 100%;
            display: flex;
            padding: 0px;
            box-sizing: border-box;
        }
        .news-image {
            width: 50%;
            height: 350px;
           
            object-fit: cover;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .news-content {
            width: 50%;
                padding-left: 30px;
    padding-right: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
		.news-content a{
			width:140px;
			padding:8px 0px
		}
        .news-title {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .news-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .nav-buttons {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }
        .nav-btn {
            background-color: #065632;
    width: 34px;
    height: 50px;
    border-radius: 0;
        }
     
        .news-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .indicator.active {
            background: #fff;
            transform: scale(1.2);
        }
		
		
		
		
@media screen and (max-width:768px){
.news-carousel {
    width: 100%;
    height: 250px;
	        margin-bottom: 20px;
}
.news-desc{
	display:none;
    font-size: 12px;
	 display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-content {
	    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    flex-direction: column;
   justify-content: normal; 
}
.news-title {
font-size: 16px;
 display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.news-content a{
 width:100px!important;
 padding:8px!important;
}
	
}