 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #fff5f0 0%, #f0f8ff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 126, 34, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo i {
  font-size: 2rem;
  color: #e67e22;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  color: #e67e22;
  border-color: #e67e22;
  background: rgba(230, 126, 34, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  height: 50vh;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

/* CEO Section */
.ceo-section {
  margin-bottom: 4rem;
}

.ceo-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(243, 156, 18, 0.05));
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ceo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Developers Section */
.developers-section {
  margin-top: 3rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.developer-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.developer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Member Image */
.member-image {
  position: relative;
  overflow: hidden;
}

.ceo-card .member-image {
  aspect-ratio: 2/3;

}

.developer-card .member-image {
  aspect-ratio: 2/2;
  
  

}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: contain;
  transition: transform 0.3s ease;

}

.team-member:hover .member-photo {
  transform: scale(1.05);
  
}

.ceo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #e67e22;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Member Content */
.member-content {
  padding: 2rem;
}

.ceo-card .member-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.developer-card .member-name {
  font-size: 1.5rem;
}

.member-position {
  font-size: 1.25rem;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 1rem;
}

.developer-card .member-position {
  font-size: 1rem;
}

.member-bio {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.member-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  font-weight: 600;
  color: #2c3e50;
}

.detail-value {
  color: #e67e22;
  font-weight: 600;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #e67e22;
  color: white;
  border-color: #e67e22;
}

.contact-infoteam {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-link:hover {
  color: #e67e22;
}

.contact-link i {
  width: 16px;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: white;
  color: #e67e22;
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  border: 2px solid white;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #e67e22;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .ceo-card {
    grid-template-columns: 1fr;
  }

  .developers-grid {
    grid-template-columns: 1fr;
  }

  .member-content {
    padding: 1.5rem;
  }

  .member-name {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .member-content {
    padding: 1rem;
  }
}


.team-member.member-image img{
    background-size: cover;
    border: 5px solid red;


}