@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  position: relative;
  background: 
                linear-gradient(to bottom, rgba(255, 255, 255, 0.257) 0%, rgba(8, 24, 58, 0.645) 100%),
                url('../img/bg-image.jpg');
  /* background-image: url('../img/bg-image.jpg'); */
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  width: 600px;
  padding: 20px;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* background-color: rgba(110, 110, 110, 0.151); */
  border-radius: 2%;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #19013A; */
  z-index: 1;
}

.btn-group-custom {
  gap: 10px;
}

.section-colored {
  background-color: #a2a2a2;
  padding: 80px 0;
}

.img-hero {
  width: 50%;
  height: 60%;
}

.text-hero {
  font-family: popins, sans-serif;
  font-weight: bold;
  text-shadow: 6px 6px 4px rgba(0,0,0,0.3);
}

.btn-ctm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-ctm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-ctm:hover::before {
    left: 100%;
}

.btn-primary-ctm {
    background: white;
    color: #2c3e50;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-ctm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.btn-secondary-ctm {
    background: #1e3a5f;
    color: white;
    border: 2px solid #1e3a5f;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-secondary-ctm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
    background: #2c5282;
    border-color: #2c5282;
}

.btn-ctm i {
    font-size: 18px;
}

/* Alternative demo section */
.demo-section {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.demo-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .button-container,
    .demo-buttons {
      flex-direction: column;
      align-items: center;
    }
        
    .btn {
      width: 100%;
      max-width: 250px;
      justify-content: center;
    }
}

/* Additional button variants */
.btn-outline-primary-ctm {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-primary-ctm:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.btn-outline-secondary-ctm {
    background: transparent;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
}

.btn-outline-secondary-ctm:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
}