/* Careers Page Specific Styles */

/* Career Hero Section */
.career-hero {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #5c6bc0 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.career-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.career-hero-content {
  position: relative;
  z-index: 2;
}

.career-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fff, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.career-hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.career-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.career-stats .stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
}

.career-stats .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffb300;
  margin-bottom: 0.5rem;
}

.career-stats .label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Why Join Section */
.why-join {
  padding: 5rem 0;
  background: #f8f9ff;
}

.why-join h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 3rem;
  position: relative;
}

.why-join h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
  color: #1a237e;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Internships Section */
.internships {
  padding: 5rem 0;
  background: #fff;
}

.internships h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.internship-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.internship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.internship-card:hover::before {
  transform: scaleX(1);
}

.internship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.internship-card.frontend::before {
  background: linear-gradient(90deg, #2196f3, #21cbf3);
}

.internship-card.social-media::before {
  background: linear-gradient(90deg, #e91e63, #f48fb1);
}

.internship-card.sales-marketing::before {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.card-header {
  padding: 2rem 2rem 1.5rem 2rem;
  background: linear-gradient(135deg, #f8f9ff, #f3f4ff);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.role-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.role-info h3 {
  color: #1a237e;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.duration {
  background: rgba(57, 73, 171, 0.1);
  color: #3949ab;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.card-content {
  padding: 0 2rem 2rem 2rem;
}

.card-content h4 {
  color: #1a237e;
  font-size: 1.1rem;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.card-content li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.card-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.card-footer {
  padding: 0 2rem 2rem 2rem;
  text-align: center;
}

.apply-btn {
  display: inline-block;
  background: linear-gradient(45deg, #3949ab, #5c6bc0);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.apply-btn:hover {
  background: linear-gradient(45deg, #1a237e, #3949ab);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 73, 171, 0.3);
}

/* Application Process */
.application-process {
  padding: 5rem 0;
  background: #f8f9ff;
}

.application-process h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #3949ab, #ffb300);
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(45deg, #3949ab, #ffb300);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 25px rgba(57, 73, 171, 0.3);
}

.step h3 {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Apply Section */
.apply-section {
  padding: 5rem 0;
  background: #fff;
}

.apply-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1rem;
}

.apply-section > p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.application-form {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9ff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a237e;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3949ab;
  box-shadow: 0 0 0 3px rgba(57, 73, 171, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.9rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 500;
}

.submit-btn {
  background: linear-gradient(45deg, #ffb300, #ffd54f);
  color: #1a237e;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 179, 0, 0.4);
}

/* Contact Info */
.contact-info {
  padding: 5rem 0;
  background: #f8f9ff;
}

.contact-info h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1rem;
}

.contact-info > p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-method {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.contact-method h3 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-method p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.contact-method a {
  color: #3949ab;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #ffb300;
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-hero h1 {
    font-size: 2.5rem;
  }
  
  .career-hero p {
    font-size: 1.1rem;
  }
  
  .career-stats {
    gap: 1.5rem;
  }
  
  .career-stats .stat {
    padding: 1.5rem 1rem;
    min-width: 120px;
  }
  
  .career-stats .number {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .internship-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .application-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .career-hero h1 {
    font-size: 2rem;
  }
  
  .career-hero p {
    font-size: 1rem;
  }
  
  .career-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .career-stats .stat {
    width: 100%;
    max-width: 200px;
  }
  
  .why-join h2,
  .internships h2,
  .application-process h2,
  .apply-section h2,
  .contact-info h2 {
    font-size: 2rem;
  }
  
  .benefit-card,
  .internship-card {
    padding: 1.5rem;
  }
  
  .card-header {
    padding: 1.5rem;
  }
  
  .card-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .card-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
