
.news-slider {
            margin: 150px auto;
            overflow: hidden;
            border-radius: 8px;
        }

        .top-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            float: right;
        }

        .indicators {
            display: flex;
            float:left;
            margin: 15px 25px 0px 0;
           
        }

        .indicator {
            width: 100px;
            height: 6px;
            background: #98999a;
            transition: background 0.3s;
             border-radius: 20px;
        }

        .indicator.active {
            background:#243f51;     
        }

        .nav-buttons {
            display: flex;
            gap: 8px;
            float: left;
        }

        .prev, .next {
            width: 36px;
            height: 36px;
            background: #99999b;
            color: #fff;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            line-height: 0;
        }

        .prev svg {transform: rotate(-180deg);}
        

        .prev:hover, .next:hover {
            background: #88898b;
            border-color: #88898b;
            color: white;
        }

        .view-all {
            margin-left: 20px;
            transition: all 0.3s;
        }


        .slides {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 20px;
            clear: both;
        }

        .news-card {
            flex: 0 0 calc(33.333% - 13.333px);
            padding-right: 20px;
            border-right: 1px solid #ddd;
        }
        .news-card a {color: #6eb1ca;}
        .news-card .content {height: 250px;}
        .news-card h2 {
            font-size: 31px;
            margin-bottom: 30px;
            margin-left: 0;
            color: #244052;
        }
        .news-card .date-slide {
        font-size: 13px;
        margin-top: 50px;
        color:#0e2a33;
        }
      .news-card .bottom-card {    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;}

    


     @media (max-width: 992px) {
            .news-card {
                flex: 0 0 calc(50% - 10px);
            }

            .news-card .content {
                height: auto;
            }
           
        }

        @media (max-width: 768px) {
            .news-card {
                flex: 0 0 100% !important;
            }

           
           .view-all {text-align: center;}

        }

         @media (max-width: 568px) {
            .top-controls 
            {float:none;
                padding:0;
                clear: both;
            }
             .indicators {
                display: inline;
            }
             .indicator {
                margin-bottom: 10px;
            }

        }


        .bd-placeholder-img {
            font-size: 1.125rem;
            text-anchor: middle;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
          }
      
          @media (min-width: 768px) {
            .bd-placeholder-img-lg {
              font-size: 3.5rem;
            }
          }
      
          /* Header and Footer Styles 
            .navbar .dropdown-toggle {
                color: #203d57;
                font-weight: 600;
                text-decoration: none;
                padding: 0 15px;
                font-size: 14px;
            }
      
            .navbar .nav-item a {
                color: #203d57;
                font-weight: 600;
                text-decoration: none;
                padding: 0 15px;
                font-size: 14px;
            }
            
            .login-bt {
                background-color: #1e3d57;
                color: white !important;
                padding: 8px 24px !important;
                border-radius: 20px;
                margin-left: 10px;
                transition: background-color 0.3s;
            }
            
            .login-bt:hover {
                background-color: #152b3e;
            }
            
            .search-icon {
                background: #f2f2f2;
                border: none;
                cursor: pointer;
                color: #1e3d57;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .site-footer {
                background-color: #1e3d57;
                color: white;
                padding: 0;
            }
            
            .footer-content h5 {
                font-size: 14px;
                font-weight: 600;
                letter-spacing: 0.5px;
                margin-bottom: 20px;
            }
            
            .footer-content .text-white-50 {
                font-size: 13px;
                opacity: 0.8;
                line-height: 1.7;
            }
            
            .footer-content .list-unstyled li {
                margin-bottom: 10px;
            }
            
            .footer-content .list-unstyled a:hover {
                opacity: 1;
                text-decoration: underline;
            }
            
            .bg-footer img {
                width: 100%;
                display: block;
                margin-bottom: -2px;
            }
            
            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                background-color: #18324a;
                padding: 15px 0;
            }*/
      
          /* News page specific styles */
          .news-header {
            background-color: #f8f9fa;
            padding: 40px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid #e9ecef;
          }
      
          .news-title {
            color: #1e3d57;
            font-weight: 600;
            margin-bottom: 10px;
          }
      
          .news-subtitle {
            color: #6c757d;
            font-weight: 300;
            margin-bottom: 0;
          }
      
          .news-item {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e9ecef;
          }
      
          .news-item:last-child {
            border-bottom: none;
          }
      
          .news-date {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 10px;
          }
      
          .news-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 20px;
            border-radius: 5px;
          }
      
          .news-content {
            line-height: 1.7;
          }
      
          .read-more {
            color: #1e3d57;
            font-weight: 600;
            text-decoration: none;
          }
      
          .read-more:hover {
            text-decoration: underline;
          }

       




           
