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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--text-medium) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 12px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  line-height: 1.6;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-location i {
  margin-right: 8px;
  color: var(--accent-color);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.btn-primary-custom {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.btn-primary-custom:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-custom {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  background: var(--text-dark);
  color: white;
  padding: 80px 0;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Technology Cards Section */
.tech-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.tech-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tech-card.dotnet .tech-icon {
  background: linear-gradient(135deg, #512bd4, #0078d4);
}

.tech-card.java .tech-icon {
  background: linear-gradient(135deg, #f7931e, #ed8b00);
}

.tech-card.python .tech-icon {
  background: linear-gradient(135deg, #3776ab, #ffd43b);
}

.tech-card.php .tech-icon {
  background: linear-gradient(135deg, #777bb4, #8892bf);
}

.tech-card.mern .tech-icon {
  background: linear-gradient(135deg, #61dafb, #21759b);
}

.tech-card.fullstack .tech-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.tech-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.tech-description {
  color: var(--text-medium);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.tech-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--text-medium);
}

.tech-features li i {
  color: var(--success-color);
  margin-right: 12px;
  font-size: 0.9rem;
}

.tech-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 15px;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.tech-cta {
  display: flex;
  gap: 15px;
}

.btn-learn-more {
  flex: 1;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-compare {
  padding: 12px 15px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-compare:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Career Path Section */
.career-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.career-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.career-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: white;
}

.career-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.career-salary {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--success-color);
  margin-bottom: 15px;
}

.career-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 25px;
}

.career-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.skill-tag {
  background: var(--bg-light);
  color: var(--text-medium);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.comparison-table {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.comparison-header {
  background: var(--gradient-primary);
  color: white;
  padding: 30px;
  text-align: center;
}

.comparison-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.comparison-subtitle {
  opacity: 0.9;
}

.comparison-body {
  padding: 0;
}

.comparison-row {
  display: grid;
  grid-template-columns: 200px repeat(6, 1fr);
  border-bottom: 1px solid var(--border-color);
  min-height: 60px;
  align-items: center;
}

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

.comparison-cell {
  padding: 20px 15px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.comparison-cell:first-child {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  padding-left: 25px;
}

.comparison-cell:last-child {
  border-right: none;
}

.rating-stars {
  color: var(--warning-color);
  font-size: 1.1rem;
}

.difficulty-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.difficulty-beginner {
  background-color: var(--success-color);
  color: white;
}

.difficulty-intermediate {
  background-color: var(--warning-color);
  color: white;
}

.difficulty-advanced {
  background-color: var(--danger-color);
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.cta-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-button {
  padding: 15px 30px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 80px 0 30px;
}
.footer .container .row .text-muted {
  color: #FFF !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-section h6 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .comparison-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    padding-left: 25px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0px;
    margin: 0px;
  }
  .footer-content .footer-section h6.invisible {
    display: none;
  }
  .cta-form {
    flex-direction: column;
    gap: 15px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .tech-card,
  .career-card {
    padding: 25px;
  }
  .stats-section {
    padding: 60px 0;
  }
  .tech-section,
  .career-section,
  .comparison-section,
  .cta-section {
    padding: 60px 0;
  }
}
.invisible {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.fixed-contacts {
  position: fixed;
  top: calc(80vh - 70px);
  left: 30px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
  z-index: 100;
}
.fixed-contacts.contact-us {
  display: flex;
}
.fixed-contacts .contact-buttons {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.fixed-contacts .contact-buttons div {
  height: 50px;
  width: 50px;
  margin: 5px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
.fixed-contacts .contact-buttons div.call {
  background: #0EB1D2;
}
.fixed-contacts .contact-buttons div.whatsapp {
  background: #5EEB5B;
}
.fixed-contacts .contact-buttons div a {
  color: #000;
}
.fixed-contacts .contact-buttons div a i {
  font-size: 25px;
}

@media (max-width: 768px) {
  .fixed-contacts {
    top: unset;
    left: 0px;
    bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .fixed-contacts .contact-buttons {
    width: 100%;
    padding: 0px 10%;
    flex-direction: row;
    justify-content: flex-start;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .fixed-contacts .contact-buttons div {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }
}/*# sourceMappingURL=styles.css.map */