/* CAREER BUTTON WRAPPER */
.career-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 35px 0;
}

/* CAREER BUTTON */
.career-orange-btn {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);

    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, #DFBC7C 0%, #E8CD94 40%, #C49C51 100%);
    
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #452c2f;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 16px;

    border: 3px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
}

/* ICON */
.career-btn-icon {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease-in-out;
}

.career-btn-icon path {
    fill: #452c2f;
}

/* HOVER */
.career-orange-btn:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.career-orange-btn:hover .career-btn-icon {
    transform: translateX(4px);
}

/* SHINE EFFECT */
.career-orange-btn::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(135deg, #DFBC7C 0%, #E8CD94 40%, #C49C51 100%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.career-orange-btn:hover::before {
    animation: career-shine 1.5s ease-out infinite;
}

@keyframes career-shine {
    0% { left: -100px; }
    60% { left: 100%; }
    100% { left: 100%; }
}



/* MOBILE */
@media (max-width: 575px) {

    .career-btn-wrapper {
        margin: 20px 0 10px;
        padding: 12px 10px;
    }

    .career-orange-btn {
        width: 100%;
        max-width: 260px;
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .career-btn-icon {
        width: 18px;
        height: 18px;
    }
}


/* SMALL DEVICES */
@media (min-width: 576px) and (max-width: 767px) {

    .career-orange-btn {
        font-size: 15px;
        padding: 11px 18px;
    }
}


/* TABLETS */
@media (min-width: 768px) and (max-width: 991px) {

    .career-orange-btn {
        padding: 12px 22px;
    }
}


/* =========================================
   📱 TABLET & LARGE MOBILE (≤ 991px)
   ========================================= */
@media (max-width: 991px) {

  .career {
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
  }

  .career__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card {
    padding: 16px;
  }

  .img_slide img,
  .img_slide .owl-carousel .item img {
    height: 200px;
    object-fit: cover;
  }

  .kv {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .smallbtn.primary {
    width: 100%;
    text-align: center;
  }

  .career__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .edutech-orange-button {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;  /* ⬆ increased */
}

}


/* =========================================
   📱 MOBILE DEVICES (≤ 768px)
   ========================================= */
@media (max-width: 768px) {

  .career {
    padding: 30px 15px;
  }

  .career__heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .career__heading p {
    font-size: 14px;
  }

  /* 🔥 SINGLE COLUMN */
  .career__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    border-radius: 16px;
  }

  /* Image slider */
  .img_slide img,
  .img_slide .owl-carousel .item img {
    height: 180px;
  }

  /* Info grid */
  .kv {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .kv__k {
    font-size: 11px;
  }

  .kv__v {
    font-size: 12px;
  }

  /* Button full width */
  .actions {
    justify-content: center;
  }

  .smallbtn.primary {
    width: 100%;
    padding: 10px;
  }

  /* Logo section */
  .career__logos {
    margin-top: 20px;
  }

  .logo-marquee__track {
    animation-duration: 25s;
  }

  /* View more button */
  .edutech-orange-button {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;  /* ⬆ increased */
}

}


/* =========================================
   📱 SMALL PHONES (≤ 480px)
   ========================================= */
@media (max-width: 480px) {

  .career {
    padding: 25px 12px;
  }

  .career__heading h2 {
    font-size: 20px;
  }

  .career__heading p {
    font-size: 13px;
  }

  /* Smaller image */
  .img_slide img,
  .img_slide .owl-carousel .item img {
    height: 150px;
  }

  /* Stack details */
  .kv {
    grid-template-columns: 1fr;
  }

  .kv__item {
    padding: 10px;
  }

  /* Button compact */
  .smallbtn.primary {
    font-size: 13px;
    padding: 9px;
  }

  .edutech-orange-button {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;  /* ⬆ increased */
}

}