/* Detail Pages Custom Styles */

/* Service Detail Styles */
.service-details-area {
  padding: 120px 0 90px;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list i {
  color: #c8aa6e;
  margin-right: 10px;
}

.process-step {
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
  background: #c8aa6e;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

.stat-item h4 {
  color: #c8aa6e;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.sidebar-widget {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.service-links li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.service-links li:last-child {
  border-bottom: none;
}

.service-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-links a:hover {
  color: #c8aa6e;
}

.service-links i {
  margin-right: 10px;
  color: #c8aa6e;
}

.download-link {
  display: block;
  padding: 15px;
  background: white;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.download-link:hover {
  background: #c8aa6e;
  color: white;
}

.download-link i {
  margin-right: 10px;
  color: #c8aa6e;
}

.download-link:hover i {
  color: white;
}

/* Team Detail Styles */
.team-details-area {
  padding: 120px 0 90px;
}

.team-member-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
  color: #333;
}

.position {
  color: #c8aa6e;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #c8aa6e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #333;
  color: white;
}

.contact-form-widget {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.practice-item,
.education-list li,
.admission-list li,
.achievements-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.practice-item:last-child,
.education-list li:last-child,
.admission-list li:last-child,
.achievements-list li:last-child {
  border-bottom: none;
}

.practice-item i,
.education-list i,
.admission-list i,
.achievements-list i {
  color: #c8aa6e;
  margin-right: 10px;
  width: 20px;
}

.case-item {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid #c8aa6e;
}

.case-content i {
  color: #c8aa6e;
  margin-right: 10px;
}

/* Project Detail Styles */
.project-details-area {
  padding: 120px 0 90px;
}

.project-meta {
  margin-bottom: 20px;
}

.project-meta .category,
.project-meta .status {
  background: #c8aa6e;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 10px;
  display: inline-block;
}

.project-meta .status {
  background: #28a745;
}

.project-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.info-item {
  flex: 1;
  min-width: 150px;
}

.results-list li,
.service-item,
.team-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.results-list li:last-child,
.service-item:last-child,
.team-list li:last-child {
  border-bottom: none;
}

.results-list i,
.service-item i,
.team-list i {
  color: #c8aa6e;
  margin-right: 10px;
}

.project-info .info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.project-info .info-row:last-child {
  border-bottom: none;
}

.project-info .label {
  font-weight: 600;
  color: #666;
}

.project-info .value {
  color: #333;
}

.project-info .value.success {
  color: #28a745;
  font-weight: 600;
}

.share-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-link {
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.share-link.facebook {
  background: #3b5998;
}

.share-link.twitter {
  background: #1da1f2;
}

.share-link.linkedin {
  background: #0077b5;
}

.share-link:hover {
  opacity: 0.8;
  color: white;
}

.share-link i {
  margin-right: 10px;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 170, 110, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.single-project:hover .project-overlay {
  opacity: 1;
}

.project-content {
  text-align: center;
  color: white;
}

.project-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.project-title a {
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-info-bar {
    flex-direction: column;
    gap: 10px;
  }
  
  .info-item {
    min-width: auto;
  }
  
  .social-links {
    gap: 5px;
  }
  
  .share-links {
    gap: 8px;
  }
}

