

/* Hero Carousel Section - Remove Gap */
.hero-carousel-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Service Icon Styles */
.service-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}

.stat-card .service-icon {
  filter: invert(0.3);
}

/* Stat Card Border */
.stat-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Leadership Grid Layout */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leadership-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
}

.leadership-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #0c5485;
}

.leadership-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.leadership-card:hover .leadership-img {
  background-color: #f8f9fa;
}

.leadership-card:hover .leadership-img img {
  filter: none;
  opacity: 1;
  visibility: visible;
  display: block;
}

.leadership-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #172a28;
}

.leadership-card p {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Sitename Text Shadow */
.sitename {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about-hospital-section {
  background-color: #f8f9fa;
}

.about-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c5485;
  margin-bottom: 10px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0c5485, #00b6a1);
  border-radius: 2px;
}

.content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #172a28;
  margin-bottom: 20px;
}

.content p.lead {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 25px;
}

.content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 20px;
}

.about-mission-vision {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.mission-card, .vision-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h5, .vision-card h5 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.mission-card p, .vision-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

.objectives-list {
  margin-top: 30px;
}

.objective-item {
  display: flex;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.objective-item:hover {
  transform: translateX(5px);
}

.objective-number {
  background-color: #0c5485;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(12, 84, 133, 0.3);
}

.objective-content {
  flex-grow: 1;
}

.objective-content strong {
  color: #172a28;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.objective-content p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.about-image-card:hover img {
  transform: scale(1.05);
}

/* Committee Page Styles */
.committee-section {
  background-color: #f8f9fa;
}

.committee-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.committee-list {
  margin-top: 30px;
}

.committee-card {
  display: flex;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
}

.committee-card:hover {
  transform: translateX(5px);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.committee-number {
  background-color: #0c5485;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(12, 84, 133, 0.3);
}

.committee-content {
  flex-grow: 1;
}

.committee-content h5 {
  color: #172a28;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.committee-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
}

.committee-mission {
  margin-top: 40px;
  background-color: #e9f2f8;
  padding: 30px;
  border-radius: 8px;
}

.mission-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h5 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.mission-card p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

.committee-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  color: #0c5485;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Awards Page Styles */
.awards-section {
  background-color: #f8f9fa;
}

.awards-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.award-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.award-image-wrapper {
  position: relative;
  overflow: hidden;
}

.award-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.award-card:hover .award-image-wrapper img {
  transform: scale(1.05);
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 84, 133, 0.8), rgba(12, 84, 133, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.3s ease;
}

.award-card:hover .award-overlay {
  opacity: 1;
}

.award-content {
  padding: 20px;
  width: 100%;
}

.award-content h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.award-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c5485;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.award-view-btn:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.award-info {
  padding: 20px;
}

.award-title {
  color: #172a28;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.award-institution {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: italic;
}

.awards-pagination {
  margin-top: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination li {
  list-style: none;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #6c757d;
  text-decoration: none;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination a:hover {
  background-color: #0c5485;
  color: #ffffff;
  border-color: #0c5485;
  transform: translateY(-2px);
}

.pagination .active a {
  background-color: #0c5485;
  color: #ffffff;
  border-color: #0c5485;
}

/* RTI Page Styles */
.rti-section {
  background-color: #f8f9fa;
}

.rti-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rti-info {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
}

.rti-officials {
  margin-top: 25px;
}

.official-card {
  display: flex;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #00b6a1;
  transition: all 0.3s ease;
}

.official-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.official-number {
  background-color: #0c5485;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(12, 84, 133, 0.3);
}

.official-content {
  flex-grow: 1;
}

.official-content h6 {
  color: #172a28;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.official-name {
  color: #0c5485;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.official-contact {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.rti-description {
  background-color: #e9f2f8;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.rti-description p {
  margin-bottom: 0;
  color: #495057;
  line-height: 1.6;
}

.rti-resources {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.rti-resources h5 {
  border-bottom: 2px solid #0c5485;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.download-card {
  display: flex;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
  transition: all 0.3s ease;
}

.download-card:hover {
  transform: translateX(5px);
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-icon {
  background-color: #0c5485;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.download-content h6 {
  color: #172a28;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.download-desc {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.rti-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.rti-contact {
  background-color: #e9f2f8;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.rti-contact h6 {
  margin-bottom: 10px;
  color: #172a28;
}

.rti-contact p {
  margin-bottom: 0;
  color: #6c757d;
}

/* Schemes & Programs Page Styles */
.schemes-section {
  background-color: #f8f9fa;
}

.schemes-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.scheme-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.scheme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.scheme-image-wrapper {
  position: relative;
  overflow: hidden;
}

.scheme-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.scheme-card:hover .scheme-image-wrapper img {
  transform: scale(1.05);
}

.scheme-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 84, 133, 0.8), rgba(12, 84, 133, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.3s ease;
}

.scheme-card:hover .scheme-overlay {
  opacity: 1;
}

.scheme-content {
  padding: 20px;
  width: 100%;
}

.scheme-content h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.scheme-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c5485;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scheme-view-btn:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.scheme-info {
  padding: 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.scheme-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-size: 0.9rem;
}

.scheme-date i {
  color: #0c5485;
  font-size: 1.1rem;
}

.scheme-description {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
  height: 100%;
}

.scheme-description p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}

.scheme-divider {
  border-color: #e9ecef;
  margin: 20px 0;
}

.schemes-pagination {
  margin-top: 40px;
}


/* General Medicine Department Page Styles */
.general-medicine-section {
  background-color: #f8f9fa;
}

.department-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.department-head-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.department-head-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.head-image-wrapper {
  position: relative;
  overflow: hidden;
}

.head-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.department-head-card:hover .head-image-wrapper img {
  transform: scale(1.05);
}

.head-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 84, 133, 0.8), rgba(12, 84, 133, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.3s ease;
}

.department-head-card:hover .head-overlay {
  opacity: 1;
}

.head-content {
  padding: 20px;
  width: 100%;
}

.head-content h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.head-info {
  padding: 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.head-name {
  color: #172a28;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.head-designation {
  color: #0c5485;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.head-education {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: italic;
}

.department-details {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
  height: 100%;
}

.department-title {
  color: #172a28;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.department-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.department-description {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.department-description p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 0;
}

.department-features {
  background-color: #e9f2f8;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.department-features h5 {
  margin-bottom: 15px;
  color: #172a28;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  padding-left: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

.feature-list li i {
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Services Section Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.stat-card h4 {
  color: #172a28;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Department Head Card Styles */
.department-head-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.department-head-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.head-image-wrapper {
  position: relative;
  overflow: hidden;
}

.head-image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.department-head-card:hover .head-image-wrapper img {
  transform: scale(1.05);
}

.head-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 84, 133, 0.8), rgba(12, 84, 133, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.3s ease;
}

.department-head-card:hover .head-overlay {
  opacity: 1;
}

.head-content {
  padding: 20px;
  width: 100%;
}

.head-content h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.head-info {
  padding: 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.head-name {
  color: #172a28;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.head-designation {
  color: #0c5485;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.head-education {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: italic;
}

.department-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.department-details {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #0c5485;
  height: 100%;
}

.department-title {
  color: #172a28;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.department-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.department-description {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.department-description p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 0;
}

.department-features {
  background-color: #e9f2f8;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #00b6a1;
}

.department-features h5 {
  margin-bottom: 15px;
  color: #172a28;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  padding-left: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

.feature-list li i {
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Gallery Card Modern Styles */
.gallery-card-modern {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.gallery-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-card-modern:hover .gallery-image-wrapper img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 84, 133, 0.8), rgba(12, 84, 133, 0.2));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-card-modern:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  padding: 20px;
  width: 100%;
}

.gallery-content h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c5485;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-view-btn:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.gallery-info {
  padding: 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.gallery-title {
  color: #172a28;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.gallery-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-style: italic;
}

/* Contact Page Styles */
.contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #e9ecef;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #0c5485;
}

.contact-title {
  color: #172a28;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  background-color: #0c5485;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-info-content h6 {
  color: #172a28;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.map-container {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid #e9ecef;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Hover Effects for All Cards */
.card-hover-effect {
  transition: all 0.3s ease;
}

.card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 15px;
  }
  
  .department-content {
    padding: 20px;
  }
  
  .department-title {
    font-size: 1.5rem;
  }
  
  .gallery-image-wrapper img {
    height: 150px;
  }
  
  .map-container iframe {
    height: 300px;
  }
}
