body {
  font-family: Arial, sans-serif;
}


/* ========================================
   AMAZING STYLE 2 - ELEGANT LIST
   For University of Thi-Qar Journal
   ======================================== */

/* Main Container */
.elegant-container {
  font-family: 'Segoe UI', 'Roboto', 'Times New Roman', sans-serif;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #eef2ff;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.elegant-header {
  background: linear-gradient(90deg, #003366 0%, #1a5794 100%);
  padding: 18px 25px;
}

.elegant-header h3 {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.elegant-header h3 i {
  margin-right: 8px;
}

.elegant-header p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* Content Area */
.elegant-content {
  padding: 25px;
}

/* Description Text */
.elegant-description {
  margin: 0 0 20px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #334155;
}

.elegant-description i {
  color: #003366;
  margin-right: 5px;
}

.elegant-description strong {
  color: #003366;
}

/* Grid Layout */
.elegant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Individual List Item */
.elegant-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fafcff;
  padding: 12px 16px;
  border-radius: 12px;
  border-left: 4px solid #003366;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.elegant-item:hover {
  background: #e6f0fa;
  border-left-color: #a6ce39;
  transform: translateX(5px);
}

/* Icon Style */
.elegant-icon {
  font-size: 20px;
  color: #003366;
  width: 24px;
  text-align: center;
}

/* Text Style */
.elegant-text {
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
}

/* Responsive Design */
@media (max-width: 600px) {
  .elegant-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .elegant-content {
    padding: 18px;
  }

  .elegant-header {
    padding: 14px 20px;
  }

  .elegant-header h3 {
    font-size: 16px;
  }

  .elegant-item {
    padding: 10px 14px;
  }

  .elegant-icon {
    font-size: 18px;
  }

  .elegant-text {
    font-size: 12px;
  }
}

/* ========================================
   INDEXING SECTION STYLES
   For University of Thi-Qar Journal
   ======================================== */

/* Main Container */
.indexing-container {
  font-family: 'Segoe UI', 'Roboto', 'Times New Roman', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 30px 25px;
  margin: 20px 0;
  border: 1px solid #eef2ff;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

/* Title Section */
.indexing-title {
  text-align: center;
  margin-bottom: 25px;
}

.indexing-title h3 {
  margin: 0;
  color: #003366;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.indexing-title .title-underline {
  width: 60px;
  height: 3px;
  background: #a6ce39;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Grid Layout for Indexing Logos */
.indexing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Individual Item */
.indexing-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.indexing-item:hover {
  transform: translateY(-5px);
}

/* Logo Image */
.indexing-item img {
  width: auto;
  height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(0%);
}

.indexing-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Item Title */
.indexing-item span {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 8px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .indexing-container {
    padding: 20px 15px;
  }
  
  .indexing-grid {
    gap: 25px;
  }
  
  .indexing-item img {
    height: 50px;
  }
  
  .indexing-title h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .indexing-grid {
    gap: 15px;
  }
  
  .indexing-item img {
    height: 40px;
  }
  
  .indexing-item span {
    font-size: 10px;
  }
}