/* Jobs Section */
#tabs{
    margin-top:30px;
    padding:20px;
}

.card1s-wrapper1{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    max-width:1400px;
    margin:auto;
}

/* Card Container */
.card1-container1{
    width:320px;
    display:flex;
}

/* Card */
.card1{
    width:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s ease;
    position:relative;
}

.card1:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    border-color:#075ebb;
}

/* Card Content */
.card1-content{
    display:flex;
    flex-direction:column;
    /* height:100%; */
}

/* Image */
.card1 img{
    width:100%;
    height:220px;
    object-fit:contain;
  background: #fff;
}

/* Content Area */
.card1-content div{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:10px 20px 8px 20px;
}

/* Heading */
.card1 h4{
    font-size:24px;
    line-height:1.35;
    font-weight:700;
    color:#1e293b;
    margin:0;
    min-height:40px;
}

.card1 h4 span{
    color:#64748b;
    font-size:15px !important;
    font-weight:500;
}

/* Ignore <br> spacing */
.card1 br{
    display:none;
}

/* Button */
.button{
display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin-top: 25px;
    border-radius: 12px;
    background: #075ebb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
}

.button:hover{
    background:#0b74ff;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(7,94,187,.3);
}

/* Glow Effect */
.glow{
    position:absolute;
    inset:0;
    border-radius:18px;
    pointer-events:none;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.15),
        transparent 40%
    );
    opacity:0;
    transition:.35s;
}

.card1:hover .glow{
    opacity:1;
}
.card1-content > div {
    position: relative;
}
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;              /* remove default space */
    padding: 0;   
    text-align: start;      /* remove default padding */
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.dropdown-content.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
    padding: 15px;
    text-align: start;
}

.dropdown-content ul {
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    list-style: none;
    position: relative;
    padding: 10px 0 10px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-content li::before {
     content: "➜"; /* You can also use "→", "❯", "›" */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    color: #007bff;
}

.dropdown-content li:hover::before {
    opacity: 1;
      transform: translateY(-50%) translateX(0);
}

.dropdown-content li:hover {
    color: #007bff;
    background-color: #f0f8ff;
    border-radius: 5px;
}

.apply-btn {
    display: inline-block;
    margin-top: 10px;
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
}

.apply-btn:hover {
    background: #218838;
}
/* Responsive */
@media(max-width:992px){

.card1-container1{
    width:48%;
}

}

@media(max-width:768px){

.card1-container1{
    width:100%;
}

.card1 img{
    width:100%;
    height:210px;
}

.card1 h4{
    font-size:20px;
    min-height:auto;
}

}