/* Global Styles */
/* :root {
  --primary-color: #f7941d;
  --secondary-color: #2d5d86;
  --dark-blue: #1e3a5f;
  --light-gray: #f5f5f5;
  --text-color: #333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 1rem 0.8rem;
  font-size: 0.9rem;
}

.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-brand img {
  max-height: 60px;
} */

/* Hero Banner */
/* .hero-banner {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.banner-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
} */

.news-dropdown {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.news-dropdown .dropdown-toggle {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
}

.news-dropdown .dropdown-menu {
  min-width: 200px;
}

/* Section Titles */
.section-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

.section-hr {
  margin: 0 0 1rem 0;
}

.sub-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* News Links */
.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-link:hover {
  color: inherit;
}

/* Featured News */
.featured-news-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.featured-news-item img {
  width: 100%;
  height: 348px;
  object-fit: cover;
}

.featured-news-item .news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.featured-news-item h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.featured-news-item p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Side News Items */
.side-news-item {
  position: relative;
  background: white;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.5rem;
  /* height: calc(33.333% - 1rem); */
}

.side-news-item .news-content {
  padding-left: 2.5rem;
}

.side-news-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Date Badge */
.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  z-index: 1;
}

.orange-badge {
  width: auto;
  height: auto;
  padding: 5px 10px;
}

.date-badge .day {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.date-badge .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

/* News Grid */
.news-grid-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.news-grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-grid-item .news-content {
  padding: 1rem;
  background: white;
}

.news-grid-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.news-grid-item .category {
  display: inline-block;
  color: #777;
  font-size: 0.8rem;
}

/* Read More Link */
.read-more {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 0.3rem;
  font-size: 0.8rem;
}

/* Pagination */
.pagination {
  margin-top: 2rem;
}

.pagination .page-link {
  color: var(--text-color);
  border: 1px solid #ddd;
  padding: 0.5rem 0.8rem;
  margin: 0 0.2rem;
  font-size: 0.9rem;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Footer Styles */
.footer-logo {
  max-height: 60px;
}

.contact-info li {
  display: flex;
  align-items: start;
}

.contact-info i {
  margin-top: 5px;
}

.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color) !important;
}

/* Hover Effects */
.featured-news-item:hover img,
.news-grid-item:hover img {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.side-news-item:hover,
.news-grid-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-banner {
      height: 300px;
  }

  .news-dropdown {
      right: 20px;
  }

  .featured-news-item img {
      height: 350px;
  }

  .side-news-item {
      height: auto;
      margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
      height: 250px;
  }

  .section-title {
      font-size: 1.8rem;
  }

  .featured-news-item img {
      height: 300px;
  }

  .featured-news-item h2 {
      font-size: 1.3rem;
  }

  .news-grid-item {
      margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-banner {
      height: 200px;
  }

  .news-dropdown .dropdown-toggle {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
  }

  .section-title {
      font-size: 1.5rem;
  }

  .featured-news-item img {
      height: 250px;
  }

  .featured-news-item h2 {
      font-size: 1.2rem;
  }

  .date-badge {
      width: 30px;
      height: 30px;
  }

  .date-badge .day {
      font-size: 1rem;
  }
}