/* =========================
   GLOBAL RESET & BASE
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
  background: linear-gradient(135deg, #0b2d5c, #081f3a);
}

/* =========================
   GLOBAL IMAGE
   ========================= */
img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================
   CARD
   ========================= */
.card {
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* =========================
   GRADIENT BORDER BANNER
   ========================= */
.banner-box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding: 4px;
  border-radius: 20px;
  overflow: hidden;
}

/* Animated gradient border */
.banner-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #6a11cb, #2575fc, #00c6ff, #6a11cb);
  background-size: 300% 300%;
  animation: snakeMove 4s linear infinite;
  z-index: 0;
}

/* Image inside banner */
.banner-box img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
}

/* =========================
   ANIMATION
   ========================= */
@keyframes snakeMove {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}

/* =========================
   NAVBAR HIRE BUTTON (NO MOVEMENT)
   ========================= */
.hire-btn {
  background-color: #fff !important;
  color: #0d6efd !important;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
  padding: 0.375rem 1rem !important;
  border: 2px solid #fff;
}

/* Hover without movement */
.hire-btn:hover {
  background-color: #f8f9fa !important;
  color: #0d6efd !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* On mobile - text only, no button style */
@media (max-width: 991px) {
  .hire-btn {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border: none !important;
    margin-left: 0;
    padding: 10px 0 !important;
    display: block;
    text-align: center;
    box-shadow: none !important;
    font-weight: normal;
    border-radius: 0;
  }

  .hire-btn:hover {
    background-color: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

/* =========================
   NAVBAR
   ========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav {
  text-align: center;
}

.navbar-nav .nav-link {
  padding: 10px 0;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .hero-section .mt-4 {
    margin-bottom: 20px;
  }

  .banner-box {
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .banner-box {
    padding: 2px;
    border-radius: 14px;
  }

  .banner-box img {
    border-radius: 12px;
  }

  body {
    font-size: 14px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* =========================
   FOOTER
   ========================= */
footer {
  padding: 1.2rem 0;
}
