/* CSR Section Styles - Professional Corporate Theme */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Hero Section */
.csr-hero-section {
  background: linear-gradient(135deg, #1A376B 0%, #2a4a7f 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* CSR Activities Section */
.csr-activities-section {
  background: linear-gradient(135deg, #F4F6F9 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.csr-activities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(251, 183, 5, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(26, 55, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Timeline Styles */
.csr-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #1A376B, #FBB705, #1A376B);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 51.5%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(26, 55, 107, 0.3);
  border: 4px solid white;
  transition: all 0.3s ease;
  z-index: 6;
  position: relative;
}

.timeline-dot.latest-dot {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #1A376B;
  animation: pulse 2s infinite;
}

/* Heart icon positioning adjustment */
.timeline-dot .fa-heartbeat {
  margin-left: 0px;
}

.timeline-date {
  background: white;
  color: #1A376B;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: -25px;
  box-shadow: 0 4px 12px rgba(26, 55, 107, 0.2);
  border: 2px solid #f0f0f0;
  z-index: 7;
  position: relative;
}

.timeline-content {
  width: calc(50% - 50px);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  padding-left: 40px;
}

.timeline-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(26, 55, 107, 0.1);
  border: 1px solid rgba(26, 55, 107, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 55, 107, 0.15);
}

.timeline-card.featured {
  background: linear-gradient(135deg, white 0%, #fafbfc 100%);
  border: 2px solid rgba(251, 183, 5, 0.3);
  box-shadow: 0 15px 40px rgba(26, 55, 107, 0.2);
}

.timeline-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1A376B, #FBB705, #1A376B);
}

.timeline-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #1A376B;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(251, 183, 5, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.timeline-card.featured .card-icon {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #1A376B;
}

.card-title-section {
  flex: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A376B;
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-subtitle {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.card-body {
  line-height: 1.6;
}

.card-description {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.initiative-highlights {
  margin-bottom: 20px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 0.9rem;
}

.highlight-item i {
  color: #FBB705;
  font-size: 16px;
  width: 20px;
}

.activity-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.timeline-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.activity-photo:hover .photo-overlay {
  opacity: 1;
}

.activity-photo:hover .timeline-photo {
  transform: scale(1.05);
}

.view-photo-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: #1A376B;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.view-photo-btn:hover {
  background: white;
  transform: scale(1.05);
}

/* Photo Gallery Styles for Multiple Images */
.activity-photo-gallery {
  margin-top: 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 10px;
}

.photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.photo-item .timeline-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover .timeline-photo {
  transform: scale(1.05);
}

.photo-item .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 55, 107, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-item .view-photo-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 8px;
  border-radius: 50%;
  color: #1A376B;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  text-align: center;
  margin-top: 10px;
}

.gallery-caption p {
  color: #64748b;
  font-style: italic;
  font-size: 14px;
}

/* Responsive adjustments for photo gallery */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .photo-item .timeline-photo {
    height: 180px;
  }
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag {
  background: rgba(26, 55, 107, 0.1);
  color: #1A376B;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Timeline Connectors */
.timeline-item:nth-child(odd) .timeline-card::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(even) .timeline-card::after {
  content: '';
  position: absolute;
  top: 30px;
  left: -15px;
  width: 0;
  height: 0;
  border-right: 15px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(251, 183, 5, 0.3), 0 0 0 0 rgba(251, 183, 5, 0.5);
  }
  50% {
    box-shadow: 0 8px 20px rgba(251, 183, 5, 0.3), 0 0 0 10px rgba(251, 183, 5, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    margin-bottom: 40px;
  }
  
  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 60px !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
  }
  
  .timeline-card::after {
    display: none;
  }
  
  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.csr-latest-activity {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.csr-activity-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(26, 55, 107, 0.1);
  border: 1px solid rgba(26, 55, 107, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.csr-activity-card.featured {
  background: linear-gradient(135deg, white 0%, #fafbfc 100%);
  border: 2px solid rgba(251, 183, 5, 0.2);
  box-shadow: 0 15px 40px rgba(26, 55, 107, 0.15);
}

.csr-activity-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1A376B, #FBB705, #1A376B);
}

.activity-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(251, 183, 5, 0.3);
}

.activity-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.activity-image {
  position: relative;
}

.activity-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-item {
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-item.photo-view-item {
  background: none;
  padding: 0;
  min-height: 140px;
}

.photo-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.activity-photo-thumbnail {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 183, 5, 0.9), rgba(26, 55, 107, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.photo-container:hover .photo-overlay {
  opacity: 1;
}

.photo-container:hover .activity-photo-thumbnail {
  transform: scale(1.05);
}

.view-photo-btn {
  background: white;
  color: #121212;
  border: none;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-photo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Photo Modal Styles */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.photo-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.photo-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 12;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.modal-header {
  padding: 25px 30px 20px;
  border-bottom: 2px solid rgba(26, 55, 107, 0.1);
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #121212;
  margin-bottom: 8px;
}

.modal-header p {
  color: #5E6D87;
  font-size: 1rem;
  margin: 0;
}

.modal-image-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.modal-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.modal-footer {
  padding: 25px 30px;
  background: #F4F6F9;
}

.photo-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5E6D87;
  font-size: 14px;
}

.info-item i {
  color: #1A376B;
  font-size: 16px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 55, 107, 0.3);
}

.gallery-item:nth-child(3) {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
}

.activity-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.gallery-item span {
  font-size: 14px;
  font-weight: 600;
}

.activity-details {
  padding-left: 20px;
}

.activity-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #121212;
  margin-bottom: 15px;
  line-height: 1.3;
}

.activity-description {
  color: #5E6D87;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.activity-highlights {
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #5E6D87;
  font-size: 15px;
}

.highlight-item i {
  color: #1A376B;
  margin-right: 12px;
  width: 16px;
}

.activity-impact {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.impact-badge {
  background: linear-gradient(135deg, rgba(26, 55, 107, 0.1), rgba(251, 183, 5, 0.1));
  color: #1A376B;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(26, 55, 107, 0.2);
}

.impact-badge i {
  color: #FBB705;
}

/* CSR Activities Grid */
.csr-activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.csr-activities-grid .csr-activity-card {
  padding: 25px;
}

.activity-date {
  background: rgba(26, 55, 107, 0.1);
  color: #1A376B;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.csr-activities-grid .activity-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.activity-summary {
  color: #5E6D87;
  line-height: 1.5;
  margin-bottom: 15px;
}

.activity-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* CSR Photo Gallery & News Section */
.csr-gallery-news-section {
  background: linear-gradient(135deg, #F4F6F9 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.csr-gallery-container,
.csr-news-container {
  margin-bottom: 80px;
}

.csr-news-container:last-child {
  margin-bottom: 0;
}

/* Photo Gallery Styles */
.csr-photo-gallery {
  position: relative;
  z-index: 2;
}

.gallery-category {
  margin-bottom: 50px;
}

.gallery-category-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #121212;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(26, 55, 107, 0.1);
}

.gallery-category-title i {
  color: #FBB705;
  font-size: 1.3rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.photo-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(26, 55, 107, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 220px;
}

.photo-item.featured {
  grid-column: span 2;
  height: 300px;
}

.photo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(26, 55, 107, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  text-align: left;
}

.photo-caption h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.photo-caption p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.9;
  color: white;
}

.photo-caption .photo-date {
  background: rgba(251, 183, 5, 0.9);
  color: #121212;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.article-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.photo-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.photo-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.photo-date {
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 183, 5, 0.9), rgba(26, 55, 107, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.view-btn {
  background: white;
  color: #121212;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* News Articles Styles */
.csr-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.news-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 55, 107, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 55, 107, 0.05);
}

.news-article.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.news-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 55, 107, 0.15);
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-article.featured .article-image {
  height: 100%;
}

.article-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.article-placeholder i {
  font-size: 3rem;
  opacity: 0.8;
}

.article-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(251, 183, 5, 0.3);
}

.article-content {
  padding: 25px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.article-date {
  color: #5E6D87;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-category {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.article-category.healthcare {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.2));
  color: #dc3545;
}

.article-category.education {
  background: linear-gradient(135deg, rgba(13, 202, 240, 0.1), rgba(13, 202, 240, 0.2));
  color: #0dcaf0;
}

.article-category.energy {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.1), rgba(25, 135, 84, 0.2));
  color: #198754;
}

.article-category.environment {
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(32, 201, 151, 0.2));
  color: #20c997;
}

.article-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #121212;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-article.featured .article-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.article-excerpt {
  color: #5E6D87;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-btn {
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  transform: translateX(5px);
}

.article-share button {
  background: rgba(26, 55, 107, 0.1);
  color: #1A376B;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-share button:hover {
  background: #FBB705;
  color: #121212;
  transform: scale(1.1);
}

/* Load More Button */
.news-load-more {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  background: linear-gradient(135deg, rgba(26, 55, 107, 0.1), rgba(251, 183, 5, 0.1));
  color: #1A376B;
  border: 2px solid rgba(26, 55, 107, 0.2);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  color: white;
  border-color: #1A376B;
  transform: translateY(-2px);
}

.csr-card-icon i {
  font-size: 28px;
  color: white;
}

.csr-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(251, 183, 5, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.csr-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.csr-badge {
  display: inline-block;
  background: rgba(251, 183, 5, 0.2);
  color: #FBB705;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(251, 183, 5, 0.3);
  backdrop-filter: blur(10px);
}

.csr-hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.csr-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.csr-hero-btn {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(251, 183, 5, 0.3);
  border: 2px solid transparent;
}

.csr-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 183, 5, 0.4);
  background: linear-gradient(135deg, #e6a500, #cc9400);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Main CSR Section */
.csr-section {
  background: #F4F6F9;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.csr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(26, 55, 107, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(251, 183, 5, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.csr-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* CSR Cards Grid */
.csr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.csr-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(26, 55, 107, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 55, 107, 0.05);
  position: relative;
  overflow: hidden;
}

.csr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A376B, #FBB705);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.csr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 55, 107, 0.15);
}

.csr-card:hover::before {
  transform: scaleX(1);
}

.csr-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(26, 55, 107, 0.2);
}

.csr-card-icon i {
  font-size: 28px;
  color: white;
}

.csr-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 15px;
}

.csr-card-description {
  color: #5E6D87;
  line-height: 1.6;
  margin-bottom: 20px;
}

.csr-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.csr-card-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #5E6D87;
  font-size: 14px;
}

.csr-card-features li i {
  color: #FBB705;
  margin-right: 10px;
  font-size: 12px;
}

/* CSR Impact Stats */
.csr-impact-section {
  background: linear-gradient(135deg, #1A376B, #2a4a7f);
  padding: 80px 0;
}

.csr-impact {
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.csr-impact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(251, 183, 5, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.csr-impact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.csr-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.csr-stat {
  text-align: center;
}

.csr-stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #FBB705;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.csr-stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* CSR Partnership */
.csr-partnership-section {
  background: #F4F6F9;
  padding: 80px 0;
}

.csr-partnership {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(26, 55, 107, 0.1);
  text-align: center;
  border: 1px solid rgba(26, 55, 107, 0.05);
  position: relative;
  overflow: hidden;
}

.csr-partnership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1A376B, #FBB705);
}

.csr-partnership-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #121212;
  margin-bottom: 20px;
}

.csr-partnership-description {
  color: #5E6D87;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.csr-partnership-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.csr-partner-item {
  padding: 30px 20px;
  background: linear-gradient(135deg, #F4F6F9, #ffffff);
  border-radius: 12px;
  border: 1px solid rgba(26, 55, 107, 0.05);
  transition: all 0.3s ease;
}

.csr-partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 55, 107, 0.1);
}

.csr-partner-item i {
  font-size: 2.5rem;
  color: #1A376B;
  margin-bottom: 15px;
}

.csr-partner-item p {
  margin: 0;
  color: #5E6D87;
  font-weight: 500;
}

.csr-cta-button {
  background: linear-gradient(135deg, #FBB705, #e6a500);
  color: #121212;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(251, 183, 5, 0.3);
  border: 2px solid transparent;
  font-size: 1.1rem;
}

.csr-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 183, 5, 0.4);
  background: linear-gradient(135deg, #e6a500, #cc9400);
  border-color: rgba(26, 55, 107, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .csr-hero-section {
    padding: 100px 0 60px;
    min-height: 60vh;
  }
  
  .csr-hero-title {
    font-size: 2.5rem;
  }
  
  .csr-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .csr-section {
    padding: 60px 0;
  }
  
  .csr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .csr-card {
    padding: 30px 20px;
  }
  
  .csr-impact-section {
    padding: 60px 0;
  }
  
  .csr-impact-title {
    font-size: 2rem;
  }
  
  .csr-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .csr-stat-number {
    font-size: 2.5rem;
  }
  
  .csr-partnership-section {
    padding: 60px 0;
  }
  
  .csr-partnership {
    padding: 40px 20px;
  }
  
  .csr-partnership-title {
    font-size: 1.8rem;
  }
  
  .csr-partnership-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .csr-hero-title {
    font-size: 2rem;
  }
  
  .csr-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .csr-partnership-logos {
    grid-template-columns: 1fr;
  }
  
  .csr-hero-btn,
  .csr-cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .csr-activities-section {
    padding: 60px 0;
  }
  
  .activity-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .activity-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .activity-photo-thumbnail {
    height: 160px;
  }
  
  .modal-content {
    width: 98vw;
    max-height: 98vh;
    border-radius: 15px;
  }
  
  .modal-image {
    max-height: 65vh;
  }
  
  .modal-header {
    padding: 20px 20px 15px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-footer {
    padding: 20px;
  }
  
  .photo-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .activity-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .activity-photo-thumbnail {
    height: 120px;
  }
  
  .gallery-item:nth-child(3) {
    grid-column: auto;
  }
  
  .activity-details {
    padding-left: 0;
  }
  
  .activity-title {
    font-size: 1.5rem;
  }
  
  .csr-activities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .activity-date-badge {
    position: static;
    margin-bottom: 15px;
    display: inline-flex;
  }
  
  .csr-gallery-news-section {
    padding: 60px 0;
  }
  
  .csr-gallery-container,
  .csr-news-container {
    margin-bottom: 60px;
  }
  
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .photo-item.featured {
    grid-column: span 2;
    height: 250px;
  }
  
  .photo-item {
    height: 180px;
  }
  
  .csr-news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .news-article.featured {
    grid-column: span 1;
    display: block;
  }
  
  .news-article.featured .article-image {
    height: 200px;
  }
  
  .article-content {
    padding: 20px;
  }
}


@media (max-width: 640px) {
  .activity-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item:nth-child(3) {
    grid-column: auto;
  }
  
  .activity-impact {
    flex-direction: column;
    gap: 10px;
  }
  
  .impact-badge {
    justify-content: center;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-item.featured {
    grid-column: span 1;
    height: 200px;
  }
  
  .photo-item {
    height: 160px;
  }
  
  .gallery-category-title {
    font-size: 1.3rem;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-count {
  animation: countUp 0.6s ease-out;
}
