.job-hero {
        background: linear-gradient(135deg, #ffffff, rgba(255, 251, 250, 0.12));
        position: relative;
        color: #333;
        padding:15px 0 40px 0;
        min-height: 240px;
        overflow: hidden;
    }
    .inner-page .heading {
        font-size: 2.8rem;
        font-weight: 700;
        color: #2c3e50;
        }

.job-hero::before {
  content: '';
  position: absolute;
  top: 20%; 
  right: 10%; 
  width: 90px; 
  height: 65px;
/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60'%3E%3Crect x='20' y='20' width='60' height='8' rx='4' fill='%2300256b'/%3E%3Ccircle cx='25' cy='24' r='6' fill='%23416da3'/%3E%3Ccircle cx='75' cy='24' r='6' fill='%23416da3'/%3E%3Ccircle cx='25' cy='24' r='9' fill='none' stroke='%2300256b' stroke-width='2' stroke-dasharray='12 6' style='animation: prop1 3s linear infinite'/%3E%3Ccircle cx='75' cy='24' r='9' fill='none' stroke='%2300256b' stroke-width='2' stroke-dasharray='10 5' style='animation: prop2 2.5s linear infinite reverse'/%3E%3Cpath d='M10 30 Q30 15 50 25 Q70 15 90 30' stroke='%231c3d5f' stroke-width='3' fill='none'/%3E%3C/svg%3E");
  background-size: contain; */
  background-repeat: no-repeat;
animation: flyIn 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  opacity: 0.9;
  z-index: 1;
}
/* @keyframes flyIn { 0%, 100% { transform: translateX(150%) translateY(0px) rotate(0deg); opacity: 0; } 10% { opacity: 0.9; } 45% { transform: translateX(20%) translateY(-15px) rotate(8deg); opacity: 1; } 55% { transform: translateX(0%) translateY(-12px) rotate(5deg); opacity: 1; } 90% { opacity: 0.9; } 100% { transform: translateX(-50%) translateY(0px) rotate(2deg); opacity: 0; } }
@keyframes prop1 { to { transform: rotate(360deg); } }
@keyframes prop2 { to { transform: rotate(-360deg); } } */
.job-hero::after {
  content: '';
  position: absolute;
  bottom: 20%; 
  left: 5%; 
  width: 75px; 
  height: 55px;
/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 50'%3E%3Crect x='10' y='15' width='60' height='6' rx='3' fill='%23416da3'/%3E%3Ccircle cx='20' cy='18' r='5' fill='%231c3d5f'/%3E%3Ccircle cx='60' cy='18' r='5' fill='%231c3d5f'/%3E%3Ccircle cx='20' cy='18' r='8' fill='none' stroke='%2300256b' stroke-width='1.8' stroke-dasharray='8 4' style='animation: prop3 4s linear infinite'/%3E%3Ccircle cx='60' cy='18' r='8' fill='none' stroke='%2300256b' stroke-width='1.8' stroke-dasharray='7 3' style='animation: prop4 3.5s linear infinite reverse'/%3E%3C/svg%3E");
  background-size: contain; */
  background-repeat: no-repeat;
  animation: hoverLoop 7s ease-in-out infinite;
  opacity: 0.85;
  z-index: 1;
}
/* @keyframes hoverLoop { 0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); } 25% { transform: translateX(8px) translateY(-6px) rotate(1deg); } 50% { transform: translateX(12px) translateY(-8px) rotate(-2deg); } 75% { transform: translateX(5px) translateY(-10px) rotate(3deg); } }
@keyframes prop3 { to { transform: rotate(360deg); } }
@keyframes prop4 { to { transform: rotate(-360deg); } } */

    @keyframes flyLeft {
        0% {
            transform: translate(0, 0) scale(1);
        }

        50% {
            transform: translate(-30px, -15px) scale(1.05);
        }

        100% {
            transform: translate(0, 0) scale(1);
        }
    }

    @keyframes rotateBody {
        to {
            transform: rotate(360deg);
        }
    }

    .job-hero::after {
        content: '';
        position: absolute;
        bottom: 25%;
        left: 10%;
        width: 80px;
        height: 50px;
        /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 50'%3E%3Crect x='10' y='15' width='60' height='6' rx='3' fill='%23ff8c42'/%3E%3Ccircle cx='20' cy='18' r='5' fill='%23e55a2b'/%3E%3Ccircle cx='60' cy='18' r='5' fill='%23e55a2b'/%3E%3Cg transform='rotate(0 20 18)' style='animation: propSpin 3s linear infinite'%3E%3Ccircle cx='20' cy='18' r='7' fill='none' stroke='%23ff6b35' stroke-width='1.2' stroke-dasharray='6 3'/%3E%3C/g%3E%3Cg transform='rotate(0 60 18)' style='animation: propSpin 4s linear infinite reverse'%3E%3Ccircle cx='60' cy='18' r='7' fill='none' stroke='%23ff6b35' stroke-width='1.2' stroke-dasharray='5 5'/%3E%3C/g%3E%3C/svg%3E");
        background-size: contain; */
        background-repeat: no-repeat;
        animation: hoverRight 5s ease-in-out infinite;
        opacity: 0.8;
        z-index: 1;
    }

    @keyframes propSpin {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes hoverRight {

        0%,
        100% {
            transform: translateX(0) rotate(0deg);
        }

        50% {
            transform: translateX(15px) rotate(-3deg);
        }
    }

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

    .job-hero .col-md-9 {
        text-align: left;
    }

    .job-hero a {
        color: #444 !important;
    }

    @media (min-width: 768px) {
        .job-hero .job-logo-header:hover {
            transform: scale(1.05);
        }

        .job-hero::before,
        .job-hero::after {
            filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
        }
    }

    @keyframes rotate {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .job-hero .job-logo-header {
        transition: transform 0.3s;
    }

    .job-hero .col-md-9 {
        text-align: left;
    }

    @media (min-width: 768px) {
        .job-hero .job-logo-header:hover {
            transform: scale(1.05);
        }
    }

    .company-overview .row {
        display: flex;
        flex-wrap: wrap;
    }

    .company-overview .row > [class*="col-"] {
        display: flex;
    }

    .company-overview .job-card {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .job-card {
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 16px;
        padding: 15px 25px ;
        margin-bottom: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        position: relative;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #ff8c42, #f7931e);
        border-radius: 16px 16px 0 0;
    }

    .job-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
        border-color: rgba(255, 107, 53, 0.2);
    }

    .job-card h3 {
        color: #2c3e50;
        font-size: 2.4rem;
        font-weight: 600;
        margin-bottom: 18px;
        position: relative;
    }

    .job-card h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #f18430;
        border-radius: 2px;
    }

    .summary-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .apply-btn {
        background: #f18430;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        font-weight: bold;
        transition: background 0.3s;    display: inline-block;
         margin:30px 0
    }

    .apply-btn:hover {
        background: #f18430;color: white;
    }

    .respons-list,
    .req-list,
    .benefits-list {
        list-style-type: none;
        padding: 0;
    }

    .respons-list li,
    .req-list li,
    .benefits-list li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .respons-list li:before,
    .req-list li:before,
    .benefits-list li:before {
        content: '✓ ';
        color: #28a745;
        font-weight: bold;
    }

    .short-desc {
        font-style: italic;
        font-size: 1.1em;
        margin: 20px 0;
    }

    .job-logo-header {
        max-width: 100px;
        margin: 0 auto 10px;
    }

    .job-summary-box {
        background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);

        border-radius: 16px;
        box-shadow: 0 12px 35px rgb(211 211 211 / 25%), 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 10px;
        margin: 0px 0 20px 0;
        position: relative;
        overflow: hidden;
    }

    .job-summary-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        /* background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35); */
    }

    .summary-field {
        padding: 15px;
        margin:  0px 0;
        background: rgba(255, 107, 53, 0.05);
        border-left: 5px solid #ffdbcb;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .summary-field:hover {
        background: rgba(255, 107, 53, 0.12);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    }

    .summary-field strong {
        color: #e55a2b;
        font-size: 1.05em;
        display: block;
    }

    .summary-field small {
        font-size: 0.8em;
        color: #000;
    }

    @media (max-width: 768px) {
        .summary-grid {
            grid-template-columns: 1fr;
        }
    }