body {
  font-family: 'Arial', sans-serif;
}

.custom-navbar {
  background-color: #eae4e4;
  backdrop-filter: blur(10px);
}

.nav-link {
  color: #005b81 !important;
  margin-left: 15px;
}

/* HERO BACKGROUNDS */
.hero-slide {
  height: 100vh;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
}

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

.bg-slide-1 {
  background-image: url('../img/img-1.jpg');
  background-size: cover;
}

.bg-slide-2 {
  background-image: url('../img/img-2.jpg');
  background-size: cover;
}

.bg-slide-3 {
  background-image: url('../img/img-3.jpg');
  background-size: cover;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-slide p {
  font-size: 1.2rem;
}

/* METRICS */
.metrics h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #005b81;
}

/* CARDS */
.custom-card {
  border: none;
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #005b81, #ed7515);
  color: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.custom-card h5 {
  font-size: 1.3rem;
  font-weight: bold;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #005b81, #ed7515);
  color: white;
  padding: 60px 0;
}

.btn-primary {
  background: #ed7515;
  border: none;
}

.btn-primary:hover {
  background: #d96410;
}

.btn-light {
  background: white;
  color: #005b81;
}

@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2rem;
  }
}

.service-item {
  padding: 15px 20px;
  border-left: 4px solid #ed7515;
  background: #f8f9fa;
  border-radius: 10px;
  transition: 0.3s;
}

.service-item:hover {
  background: white;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-item h5 {
  color: #005b81;
  font-weight: bold;
}

/* HOW IT WORKS */
.how-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.how-card:hover {
  transform: translateY(-10px);
}

/* ICON */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #005b81, #ed7515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

/* CONNECTOR LINE (desktop only) */
.how-wrapper::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #005b81, #ed7515);
  z-index: 0;
}

.how-card {
  z-index: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .how-wrapper::before {
    display: none;
  }
}

/* NEARSHORE SECTION */
.nearshore-section {
  min-height: 80vh;
  background: linear-gradient(
      rgba(0, 91, 129, 0.85),
      rgba(237, 117, 21, 0.85)
    ),
    url('https://images.unsplash.com/photo-1492724441997-5dc865305da7');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

/* Highlight subtitle */
.highlight-text {
  color: #fff;
  font-weight: bold;
  border-left: 4px solid white;
  padding-left: 15px;
}

/* Bullet points */
.nearshore-points p {
  margin-bottom: 8px;
  font-weight: 500;
}

/* Image effect */
.nearshore-section img {
  transition: 0.4s;
}

.nearshore-section img:hover {
  transform: scale(1.05);
}

/* INDUSTRY CARDS */
.industry-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

/* ICON */
.industry-card .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #005b81, #ed7515);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

/* TITLE */
.industry-card h5 {
  color: #005b81;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FOOTER */
.footer-section {
  background: #0b1f2a;
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  color: #ed7515;
  font-weight: bold;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ed7515;
}

/* SOCIAL */
.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ed7515;
}

/* DIVIDER */
.footer-section hr {
  border-color: rgba(255,255,255,0.1);
  margin: 30px 0;
}

/* FIXED CARD SIZE */
.custom-card {
  height: 100%;
  min-height: 280px; /* puedes ajustar */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* ICON */
.custom-card i {
  flex-shrink: 0;
}

/* TITLE */
.custom-card h5 {
  min-height: 50px; /* mantiene títulos alineados */
}

/* TEXT */
.custom-card p {
  min-height: 60px;
  margin-bottom: 0;
}

/* about us */
.about-section {
  background: #0b0c10;
  padding: 100px 0;
  color: #fff;
}

/* BADGE */
.about-badge {
  display: inline-block;
  background: rgba(0, 91, 129, 0.15);
  border: 1px solid rgba(0, 91, 129, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* TITULO */
.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TEXTO */
.about-lead {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.about-text {
  opacity: 0.75;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* HIGHLIGHT */
.about-highlight {
  margin-top: 20px;
  font-weight: 600;
  color: #ed7615;
}

/* CARD */
.about-card {
  background: linear-gradient(135deg, #111, #1a1d29);
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(0, 91, 129, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.about-card:hover {
  border-color: #005b81;
  transform: translateY(-8px);
}

.about-card h3 {
  color: #005b81;
  margin-bottom: 20px;
  font-weight: 600;
}

/* LISTA */
.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card li {
  margin-bottom: 10px;
  font-size: 1rem;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
}

/* Certifications */
.certifications-section {
  background: rgba(0, 91, 129, .5);
  padding: 80px 0;
}

/* BADGE */
.certifications-badge {
  display: inline-block;
  background: rgba(57, 188, 244, 0.15);
  border: 1px solid rgba(2, 43, 60, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

/* TITULO */
.certifications-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* SUBTITLE */
.certifications-subtitle {
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

/* LOGOS */
.cert-logo {
  max-width: 140px;
  opacity: 0.7;
  transition: 0.3s;
  filter: grayscale(100%);
}

.cert-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cert-logo {
    max-width: 100px;
  }
}  

/* Contact Section */
.contact-section {
  background: #f5f5f5;
  padding: 100px 0;
  color: #222;
}

/* TEXTO */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-text {
  opacity: 0.8;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-highlight {
  margin-top: 20px;
  font-weight: 600;
  color: #ed7615;
}

/* FORM WRAPPER */
.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUTS */
.custom-input {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  transition: 0.3s;
}

.custom-input:focus {
  border-color: #ed7615;
  box-shadow: 0 0 0 0.2rem rgba(237, 118, 21, 0.2);
}

/* CHECKBOX */
.form-check-input:checked {
  background-color: #ed7615;
  border-color: #ed7615;
}

/* BOTÓN */
.submit-btn {
  background: #ed7615;
  color: #fff;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.submit-btn:hover {
  background: #d96510;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
}