/*--------------------------------------------------------------

Template: Theme Name
Author: 
Version:  1
Design and Developed by: 

Note: This is the file where you can add your custom styles to change the look of the theme. But don't modify "style.css" file.

---------------------------------------------------------------*/

/* ----------------------------------------------------
	You can put your custom css code here: 
-------------------------------------------------------*/

/* =====================================================
	EVENT CARDS
   ===================================================== */

/* Event card container */
.event-text-img {
  display: flex;
  flex-direction: row;
  min-height: 200px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Event image container */
.event-text-img .event-img3 {
  flex-shrink: 0;
  width: 200px;
  min-width: 200px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Event image */
.event-text-img .event-img3 img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

/* Event content area */
.event-text-img .visual-inner {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

/* Event title */
.event-text-img .blog-title {
  margin-bottom: 10px;
}

.event-text-img .blog-title a {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Event description */
.event-text-img .blog-content {
  flex: 1;
  overflow: hidden;
}

.event-text-img .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.6;
  color: #666;
}

/* Event meta info */
.event-text-img .blog-meta {
  margin-bottom: 10px;
}

/* Read more link */
.event-text-img .readmore {
  margin-top: auto;
  padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .event-text-img {
    flex-direction: column;
    min-height: auto;
  }

  .event-text-img .event-img3 {
    width: 100%;
    min-width: 100%;
    height: 160px;
  }

  .event-text-img .event-img3 img {
    min-height: 160px;
  }
}

/* =====================================================
   NEWS CARDS 
   ===================================================== */

/* News card wrapper */
.news-page-area .col-md-4,
.news-area .col-md-4,
#home-news-container > .col-md-4 {
  display: flex;
}

/* News card container */
.news-are {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 450px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-are:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* News card image container */
.news-are .news-img {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: visible;
}

/* News card image */
.news-are .news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* News date overlay */
.news-are .news-img .news-date {
  position: absolute;
  bottom: 10;
  left: 10;
  padding: 8px 15px;
  z-index: 10;
}

.news-are .news-img .news-date .published3 {
  color: #fff;
  font-size: 14px;
}

/* News card content area */
.news-are .img-text {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 250px;
  background: #f8f9fa;
}

/* News card title */
.news-are .img-text h3 {
  margin: 0 0 12px 0;
  height: 52px;
  overflow: hidden;
}

.news-are .img-text h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.news-are .img-text h3 a:hover {
  color: #f7931e;
}

/* News card description  */
.news-are .img-text p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #666;
  height: 77px;
  flex-shrink: 0;
}

/* Read more button */
.news-are .img-text .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Responsive news cards */
@media (max-width: 991px) {
  .news-are {
    height: 400px;
  }

  .news-are .news-img,
  .news-are .news-img img {
    height: 160px;
  }

  .news-are .img-text {
    height: 240px;
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .news-are {
    height: auto;
    min-height: 380px;
  }

  .news-are .img-text {
    height: auto;
    min-height: 200px;
  }
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonial-img > img {
  min-width: 100%;
  min-height: 250px;
  object-fit: cover;
}

/* Number Styles */
#testimonials-container .slick-dots {
  bottom: 50px;
}

#testimonials-container .slick-dots li button:before {
  color: #aaa;
}

#testimonials-container .slick-dots li.slick-active button:before {
  color: #222;
}

/* =====================================================
   STATIC INFO COUNTERS SECTION
   ===================================================== */
.counter-area {
  background: #2d3e50;
}

/* Icon */
.stat-icon {
  margin-bottom: 14px;
}

.stat-icon img {
  width: 60px;
  height: 60px;
}

/* Text */
.stat-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Responsive */
@media (max-width: 767px) {
  .stat-number {
    font-size: 34px;
  }
}
