@font-face {
  font-family: 'Chillax';
  src: url('../fonts/Chillax-Variable.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Variable.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

:root {
  /* Base colors */
  --background: white;
  --foreground: #171717;
  --card: white;
  --card-foreground: #171717;
  --popover: white;
  --popover-foreground: #171717;
  --border: #E3E3E3;
  --input: #E3E3E3;
  --ring: #E3E3E3;
  --radius: 0.5rem;
  --destructive: #FB1919;
  --destructive-foreground: #FAFAFA;
  --accent-foreground: #FAFAFA;
  
  /* Primary colors */
  --primary: #1933FB;
  --primary-foreground: #1933FB;
  --primary-10: #E8F3FF;
  --primary-15: #D6E9FF;
  --primary-20: #B5D5FF;
  --primary-30: #88B8FF;
  --primary-40: #598CFF;
  --primary-50: #3460FF;
  --primary-60: #112FFF;
  --primary-70: #0A23C9;
  --primary-80: #12279D;
  --primary-90: #0B155B;
  
  /* Secondary colors */
  --secondary: #03FC55;
  --secondary-foreground: #EEFFF2;
  --secondary-10: #EEFFF2;
  --secondary-15: #D6FFE3;
  --secondary-20: #AFFFCA;
  --secondary-30: #72FFA1;
  --secondary-40: #2EFA70;
  --secondary-50: #00BE3C;
  --secondary-60: #009532;
  --secondary-70: #07742C;
  --secondary-80: #085F28;
  --secondary-90: #003613;
  
  /* Muted colors */
  --muted: #6D6D6D;
  --muted-foreground: #888888;
  --muted-alt: #E7E7E7;
  --muted-10: #F6F6F6;
  --muted-15: #E7E7E7;
  --muted-20: #D1D1D1;
  --muted-30: #B0B0B0;
  --muted-40: #888888;
  --muted-50: #6D6D6D;
  --muted-60: #5D5D5D;
  --muted-70: #4F4F4F;
  --muted-80: #454545;
  --muted-90: #3D3D3D;
  --muted-95: #020202;
  
  /* Destructive colors */
  --destructive-10: #FEE8E8;
  --destructive-20: #FED1D1;
  --destructive-30: #FEBABA;
  --destructive-40: #FD8C8C;
  --destructive-50: #FB1919;
  
  /* Accent */
  --accent: #03FC55;
  
  /* Gradient colors */
  --gradient-start: #1933fb;
  --gradient-middle: #142ac9;
  --gradient-end: #020202;
  
  /* Shadow colors */
  --shadow-button: 0px 0px 0px 2px #009532;
  --shadow-header: 0px 0.25rem 0.75rem 0px #0B155B14;
  --shadow-color: #0B155B14;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Header */
.header {
  background: white;
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--primary-90);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 50%, var(--gradient-end) 100%);
  color: white;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-text {
  font-size: 1rem;
  font-weight: 500;
}

.badge-icon {
  font-size: 1.25rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.text-primary {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-main-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.02);
}

/* Projects Section */
.projects-section {
  padding: 6rem 0;
  background-color: var(--muted-10);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-90);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--muted-10);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-10);
  border-radius: 12px;
}

.project-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(213deg) brightness(104%) contrast(97%);
}

.project-candidates {
  text-align: center;
}

.candidate-count {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.candidate-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-90);
  margin-bottom: 1rem;
}

.project-description {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background-color: var(--primary-10);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Technologies Section */
.technologies-section {
  padding: 6rem 0;
  background-color: var(--muted-10);
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.tech-category {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.tech-category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-90);
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tech-tag {
  background-color: var(--primary-10);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--primary-20);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--muted-10);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background-color: white;
  border-color: var(--primary-20);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-10);
  border-radius: 20px;
}

.benefit-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(213deg) brightness(104%) contrast(97%);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-90);
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-80) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Form Styles */
.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bootcamp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(3, 252, 85, 0.1);
}

/* File Upload Styles */
.file-upload-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.file-upload-label:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
}

.file-upload-icon {
  font-size: 1.2rem;
}

.file-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  flex: 1;
}

/* Form Submit Button */
.form-submit-btn {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}

.btn-loading {
  display: none;
}

.form-submit-btn.loading .btn-text {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: inline;
}

/* Form Validation */
.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.form-input.success {
  border-color: var(--secondary);
  background: rgba(3, 252, 85, 0.1);
}

.error-message {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.success-message {
  color: var(--secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background-color: var(--secondary);
  color: var(--secondary-90);
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
  margin-bottom: 3rem;
}

.cta-button:hover {
  background-color: var(--secondary-40);
  transform: translateY(-2px);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.cta-stat {
  text-align: center;
}

.cta-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.cta-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background-color: var(--muted-95);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  opacity: 0.8;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--muted-80);
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .image-placeholder {
    width: 300px;
    height: 200px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .technologies-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-category {
    padding: 1.5rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .file-upload-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .file-upload-label {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
