@font-face{
    font-family: 'Poppins';
    src: url("../fonts//Poppins-Regular.ttf") format('truetype');
}

@font-face{
    font-family: 'Poppins-Bold';
    src: url("../fonts//Poppins-Bold.ttf") format('truetype');
}

@font-face{
    font-family: 'Schabo';
    src: url("../fonts//schabo.woff") format('truetype');
}



/* Projects & Experience Section Styles */
.projects-experience-section {
  padding: 5rem 2rem;
  background: #0f172a;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}

.highlight {
  background: linear-gradient(90deg, #22d3ee, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Cards */
.card {
  display: block;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #334155;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #22d3ee;
}

/* Project Card */
.project-card {
  height: 100%;
}

.card-image {
  height: 200px;
  background: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  text-align: center;
  color: #94a3b8;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.card-description {
  color: #cbd5e1;
  line-height: 1.6;
}

/* Experience Card */
.experience-card {
  height: 100%;
}

.card-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  gap: 1rem;
}

.company-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.company-info {
  flex: 1;
}

.duration {
  display: inline-block;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.role {
  color: #22d3ee;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Divider */
.divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #475569, transparent);
  height: 100%;
  margin: 0 1rem;
}

/* View More Buttons */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #22d3ee;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 1px solid #334155;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-more-btn:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .projects-experience-section {
    padding: 3rem 1.5rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .divider {
    display: none;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .projects-experience-section {
    padding: 2rem 1rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

.role-p {
  color: #0955d7;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
