/* Manpower Cards Grid - Clean White Style */
.manpower-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.manpower-card-item {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* ABOUT US section decorative elements (keep original background colour) */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    z-index: 0;
}

.about-section::before {
    background-image:
        radial-gradient(circle at 5% 15%, transparent 0, transparent 22px, rgba(255, 213, 79, 0.65) 23px, rgba(255, 213, 79, 0.65) 25px, transparent 26px),
        radial-gradient(circle at 90% 20%, transparent 0, transparent 26px, rgba(255, 182, 193, 0.7) 27px, rgba(255, 182, 193, 0.7) 29px, transparent 30px),
        linear-gradient(120deg, transparent 0 60%, rgba(255,255,255,0.25) 61%, rgba(255,255,255,0.25) 63%, transparent 64%);
    background-size: 242px 242px, 286px 286px, 396px 396px;
    background-position: left -40px top -20px, right -60px top 10px, left -60px bottom -50px;
    background-repeat: no-repeat;
}

.about-section::after {
    background-image:
        linear-gradient(135deg, transparent 0 45%, rgba(59,130,246,0.3) 46%, rgba(59,130,246,0.3) 48%, transparent 49%),
        radial-gradient(circle at 20% 78%, rgba(255,255,255,0.18) 0, rgba(255,255,255,0.18) 6px, transparent 7px),
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.18) 0, rgba(255,255,255,0.18) 4px, transparent 5px),
        radial-gradient(circle at 80% 72%, rgba(255,255,255,0.18) 0, rgba(255,255,255,0.18) 5px, transparent 6px);
    background-size: 374px 374px, 13.2px 13.2px, 11px 11px, 12.1px 12.1px;
    background-position: center -120px, 18% 80%, 28% 72%, 78% 72%;
    background-repeat: no-repeat;
}

/* CEO / Managing Director Message Section */
.ceo-message-section {
    padding: 70px 0;
    background: #FFA726;
    position: relative;
}

.ceo-message-section::before,
.ceo-message-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    z-index: 0;
}

.ceo-message-section::before {
    background-image:
        radial-gradient(circle at 10% 20%, transparent 0, transparent 32px, #FFD54F 33px, #FFD54F 35px, transparent 36px),
        radial-gradient(circle at 80% 15%, transparent 0, transparent 40px, #FFB6C1 41px, #FFB6C1 43px, transparent 44px),
        linear-gradient(120deg, transparent 0 60%, rgba(255,255,255,0.35) 61%, rgba(255,255,255,0.35) 63%, transparent 64%),
        linear-gradient(300deg, transparent 0 55%, rgba(16,185,129,0.4) 56%, rgba(16,185,129,0.4) 58%, transparent 59%);
    background-size: 260px 260px, 320px 320px, 420px 420px, 380px 380px;
    background-position: left -40px top -10px, right -60px top 40px, left -80px bottom -40px, right -40px bottom -60px;
    background-repeat: no-repeat;
}

.ceo-message-section::after {
    background-image:
        linear-gradient(135deg, transparent 0 45%, rgba(59,130,246,0.4) 46%, rgba(59,130,246,0.4) 48%, transparent 49%),
        linear-gradient(315deg, transparent 0 55%, rgba(236,72,153,0.35) 56%, rgba(236,72,153,0.35) 58%, transparent 59%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 6px, transparent 7px),
        radial-gradient(circle at 30% 75%, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 4px, transparent 5px),
        radial-gradient(circle at 75% 70%, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 5px, transparent 6px),
        radial-gradient(circle at 70% 82%, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 3px, transparent 4px);
    background-size: 420px 420px, 360px 360px, 12px 12px, 10px 10px, 11px 11px, 9px 9px;
    background-position: center -120px, center bottom -80px, 20% 78%, 28% 72%, 78% 72%, 70% 84%;
    background-repeat: no-repeat;
}

.ceo-message-box {
    position: relative;
    background: transparent;
    border-radius: 20px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.ceo-accent-shape {
    position: absolute;
    top: -18px;
    right: 8%;
    width: 132px;
    height: 132px;
    border-radius: 32px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transform: rotate(10deg);
    z-index: 0;
}

.ceo-accent-shape-2 {
    top: auto;
    bottom: -22px;
    right: auto;
    left: 6%;
    width: 99px;
    height: 99px;
    border-radius: 999px;
    border-style: dashed;
    border-color: rgba(0, 0, 0, 0.25);
    border-width: 2px;
}

.ceo-accent-shape-2::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ceo-accent-clusters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ceo-accent-clusters::before,
.ceo-accent-clusters::after {
    content: '';
    position: absolute;
    opacity: 0.4;
}

/* Small diagonal lines near text */
.ceo-accent-clusters::before {
    top: 18%;
    left: 4%;
    width: 77px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #F97316);
    transform: rotate(-12deg);
}

/* Tiny triangle cluster near bottom-right of text */
.ceo-accent-clusters::after {
    bottom: 10%;
    left: 48%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        18px -10px 0 rgba(249, 115, 22, 0.8),
        36px -20px 0 rgba(59, 130, 246, 0.8);
}

.ceo-message-text,
.ceo-message-photo {
    position: relative;
    z-index: 1;
}

.ceo-message-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 49.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.ceo-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18.7px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    background: #F97316; /* orange box */
    padding: 4px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ceo-message-body {
    font-family: 'Roboto', sans-serif;
    font-size: 19.8px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 700;
    border-left: 3px solid #4B5563;
    padding-left: 16px;
}

.ceo-signature {
    margin-top: 8px;
    padding-left: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 700;
    color: #000000;
}

.ceo-message-photo {
    background: #C0C0C0;
    border-radius: 16px;
    padding: 8px;
}

.ceo-message-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

@media (max-width: 992px) {
    .ceo-message-section {
        padding: 50px 0;
    }
    
    .ceo-message-box {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 25px;
    }
    
    .ceo-message-photo {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .ceo-message-title {
        font-size: clamp(32px, 5vw, 42px);
    }
    
    .ceo-message-body {
        font-size: clamp(16px, 2.5vw, 19.8px);
    }
}

@media (max-width: 768px) {
    .ceo-message-section {
        padding: 40px 0;
    }
    
    .ceo-message-box {
        padding: 25px 20px;
        gap: 20px;
        border-radius: 16px;
    }
    
    .ceo-message-photo {
        max-width: 250px;
        padding: 6px;
    }
    
    .ceo-label {
        font-size: clamp(14px, 3vw, 18.7px);
        padding: 3px 12px;
        letter-spacing: 1.5px;
    }
    
    .ceo-message-title {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 15px;
    }
    
    .ceo-message-body {
        font-size: clamp(15px, 3vw, 18px);
        line-height: 1.7;
        margin-bottom: 12px;
        padding-left: 12px;
        border-left-width: 2px;
    }
    
    .ceo-signature {
        font-size: clamp(16px, 3vw, 19.8px);
        padding-left: 12px;
        margin-top: 6px;
    }
    
    .ceo-accent-shape {
        width: 80px;
        height: 80px;
        top: -10px;
        right: 5%;
    }
    
    .ceo-accent-shape-2 {
        width: 60px;
        height: 60px;
        bottom: -12px;
        left: 5%;
    }
    
    .ceo-accent-clusters::before {
        width: 50px;
        top: 15%;
        left: 3%;
    }
    
    .ceo-accent-clusters::after {
        bottom: 8%;
        left: 45%;
    }
}

@media (max-width: 480px) {
    .ceo-message-section {
        padding: 30px 0;
    }
    
    .ceo-message-box {
        padding: 20px 15px;
        gap: 18px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    }
    
    .ceo-message-photo {
        max-width: 200px;
        padding: 5px;
        border-radius: 12px;
    }
    
    .ceo-message-photo img {
        border-radius: 8px;
    }
    
    .ceo-label {
        font-size: 13px;
        padding: 3px 10px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .ceo-message-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .ceo-message-body {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        padding-left: 10px;
    }
    
    .ceo-signature {
        font-size: 15px;
        padding-left: 10px;
        margin-top: 5px;
    }
    
    .ceo-accent-shape {
        width: 60px;
        height: 60px;
        top: -8px;
        right: 3%;
        border-width: 2px;
    }
    
    .ceo-accent-shape-2 {
        width: 45px;
        height: 45px;
        bottom: -10px;
        left: 3%;
    }
    
    .ceo-accent-shape-2::before {
        inset: 10px;
    }
    
    .ceo-accent-clusters::before {
        width: 40px;
        height: 1.5px;
        top: 12%;
        left: 2%;
    }
    
    .ceo-accent-clusters::after {
        bottom: 6%;
        left: 42%;
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 10px;
    }
}

/* Worldwide Domination Section */
.worldwide-section {
    padding: 80px 0 40px;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.worldwide-section .container {
    text-align: center;
}

.worldwide-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 52.8px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin: 0 auto 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #FFB74D;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.worldwide-map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.worldwide-map {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    background-image: url('../images/map.png');
    background-size: 119% auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: visible;
}

/* Bangladesh Starting Point */
.bangladesh-point {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #FF4444;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.4), 0 6px 15px rgba(255, 68, 68, 0.6);
    z-index: 15;
    transform: translate(-50%, -50%);
    animation: bangladeshPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bangladesh-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

@keyframes bangladeshPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.4), 0 8px 20px rgba(255, 68, 68, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0.2), 0 12px 30px rgba(255, 68, 68, 0.8);
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.connection-line {
    stroke-width: 3;
    fill: none;
    opacity: 0.85;
    filter: drop-shadow(0 0 4px rgba(255, 68, 68, 0.8));
    stroke-linecap: round;
    stroke-linejoin: round;
}

.connection-line-animated {
    stroke-dasharray: 8 12;
    animation: lineWave 2s ease-in-out infinite, lineGlow 3s ease-in-out infinite;
}

@keyframes lineWave {
    0% {
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dashoffset: -20;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.75;
        stroke-width: 3;
    filter: drop-shadow(0 0 3px rgba(255, 68, 68, 0.6));
    }
    25% {
        opacity: 0.9;
        stroke-width: 3.5;
        filter: drop-shadow(0 0 6px rgba(255, 68, 68, 0.9)) drop-shadow(0 0 10px rgba(255, 112, 67, 0.5));
    }
    50% {
        opacity: 1;
        stroke-width: 4;
        filter: drop-shadow(0 0 8px rgba(255, 68, 68, 1)) drop-shadow(0 0 15px rgba(255, 112, 67, 0.7));
    }
    75% {
        opacity: 0.9;
        stroke-width: 3.5;
        filter: drop-shadow(0 0 6px rgba(255, 68, 68, 0.9)) drop-shadow(0 0 10px rgba(255, 112, 67, 0.5));
    }
}


/* Country Badge Styles */
.country-badge {
    position: absolute;
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Size Variations - Made Smaller */
.country-badge.size-small {
    padding: 5px 8px;
    min-width: 120px;
    gap: 5px;
    transform: scale(0.65);
}

.country-badge.size-small .country-flag {
    width: 24px;
    height: 24px;
}

.country-badge.size-small .country-name {
    font-size: 11px;
}

.country-badge.size-small .worker-count {
    font-size: 14px;
}

.country-badge.size-small .worker-label {
    font-size: 8px;
}

.country-badge.size-small .growth-indicator {
    width: 16px;
    height: 16px;
}

.country-badge.size-small .growth-indicator i {
    font-size: 9px;
}

.country-badge.size-medium {
    padding: 6px 10px;
    min-width: 140px;
    gap: 6px;
    transform: scale(0.72);
}

.country-badge.size-medium .country-flag {
    width: 28px;
    height: 28px;
}

.country-badge.size-medium .country-name {
    font-size: 12px;
}

.country-badge.size-medium .worker-count {
    font-size: 15px;
}

.country-badge.size-medium .worker-label {
    font-size: 9px;
}

.country-badge.size-medium .growth-indicator {
    width: 18px;
    height: 18px;
}

.country-badge.size-medium .growth-indicator i {
    font-size: 10px;
}

.country-badge.size-large {
    padding: 8px 12px;
    min-width: 160px;
    gap: 8px;
    transform: scale(0.8);
}

.country-badge.size-large .country-flag {
    width: 32px;
    height: 32px;
}

.country-badge.size-large .country-name {
    font-size: 13px;
}

.country-badge.size-large .worker-count {
    font-size: 17px;
}

.country-badge.size-large .worker-label {
    font-size: 10px;
}

.country-badge.size-large .growth-indicator {
    width: 20px;
    height: 20px;
}

.country-badge.size-large .growth-indicator i {
    font-size: 11px;
}

/* Animations */
@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px) scale(var(--badge-scale, 0.7));
    }
    50% {
        transform: translateY(-6px) scale(var(--badge-scale, 0.7));
    }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 167, 38, 0.5), 0 4px 20px rgba(0, 0, 0, 0.7);
    }
}

@keyframes badgeFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(var(--badge-scale, 0.7)) translateY(0);
    }
}

.country-badge {
    animation: badgeFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), badgeFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite, badgePulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s, 0.8s, 0.8s;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-badge.size-small {
    --badge-scale: 0.65;
    animation: badgeFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), badgeFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite, badgePulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s, 0.8s, 0.8s;
}

.country-badge.size-medium {
    --badge-scale: 0.72;
    animation: badgeFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), badgeFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite, badgePulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s, 0.8s, 0.8s;
}

.country-badge.size-large {
    --badge-scale: 0.8;
    animation: badgeFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), badgeFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite, badgePulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s, 0.8s, 0.8s;
}

/* Staggered animation delays for visual variety */
.country-badge:nth-child(1) { animation-delay: 0s, 0.8s, 0.8s; }
.country-badge:nth-child(2) { animation-delay: 0.15s, 0.95s, 0.95s; }
.country-badge:nth-child(3) { animation-delay: 0.3s, 1.1s, 1.1s; }
.country-badge:nth-child(4) { animation-delay: 0.45s, 1.25s, 1.25s; }
.country-badge:nth-child(5) { animation-delay: 0.6s, 1.4s, 1.4s; }
.country-badge:nth-child(6) { animation-delay: 0.75s, 1.55s, 1.55s; }
.country-badge:nth-child(7) { animation-delay: 0.9s, 1.7s, 1.7s; }
.country-badge:nth-child(8) { animation-delay: 1.05s, 1.85s, 1.85s; }
.country-badge:nth-child(9) { animation-delay: 1.2s, 2s, 2s; }
.country-badge:nth-child(10) { animation-delay: 1.35s, 2.15s, 2.15s; }
.country-badge:nth-child(11) { animation-delay: 1.5s, 2.3s, 2.3s; }
.country-badge:nth-child(12) { animation-delay: 1.65s, 2.45s, 2.45s; }
.country-badge:nth-child(13) { animation-delay: 1.8s, 2.6s, 2.6s; }
.country-badge:nth-child(14) { animation-delay: 1.95s, 2.75s, 2.75s; }
.country-badge:nth-child(15) { animation-delay: 2.1s, 2.9s, 2.9s; }
.country-badge:nth-child(16) { animation-delay: 2.25s, 3.05s, 3.05s; }
.country-badge:nth-child(17) { animation-delay: 2.4s, 3.2s, 3.2s; }
.country-badge:nth-child(18) { animation-delay: 2.55s, 3.35s, 3.35s; }
.country-badge:nth-child(19) { animation-delay: 2.7s, 3.5s, 3.5s; }
.country-badge:nth-child(20) { animation-delay: 2.85s, 3.65s, 3.65s; }
.country-badge:nth-child(n+21) { animation-delay: 3s, 3.8s, 3.8s; }

.country-badge:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(calc(var(--badge-scale, 0.7) * 1.15));
    box-shadow: 0 8px 30px rgba(255, 167, 38, 0.6), 0 4px 20px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.country-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.country-workers {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.worker-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.worker-label {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.growth-indicator {
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.growth-indicator i {
    color: #FFFFFF;
    font-size: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .worldwide-map-container {
        min-height: 500px;
    }
    
    .worldwide-map {
        min-height: 500px;
    }
    
    .country-badge {
        min-width: 180px;
        padding: 10px 14px;
    }
}

@media (max-width: 992px) {
    .worldwide-title {
        font-size: clamp(28px, 4.5vw, 42px);
        padding: 12px 30px;
    }
    
    .worldwide-map-container {
        min-height: 450px;
    }
    
    .worldwide-map {
        min-height: 450px;
        background-size: 130% auto;
    }
    
    .country-badge {
        transform: scale(0.6) !important;
    }
    
    .country-badge.size-small {
        transform: scale(0.5) !important;
    }
    
    .country-badge.size-medium {
        transform: scale(0.55) !important;
    }
    
    .country-badge.size-large {
        transform: scale(0.6) !important;
    }
}

@media (max-width: 768px) {
    .worldwide-section {
        padding: 40px 0 20px;
    }
    
    .worldwide-title {
        font-size: clamp(24px, 5vw, 35px);
        padding: 12px 25px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .worldwide-map-container {
        min-height: 350px;
        padding: 0 10px;
    }
    
    .worldwide-map {
        min-height: 350px;
        padding-bottom: 70%;
        background-size: 140% auto;
        background-position: center 20%;
    }
    
    .country-badge {
        transform: scale(0.5) !important;
        min-width: 150px;
    }
    
    .country-badge.size-small {
        transform: scale(0.4) !important;
    }
    
    .country-badge.size-medium {
        transform: scale(0.45) !important;
    }
    
    .country-badge.size-large {
        transform: scale(0.5) !important;
    }
    
    .bangladesh-point {
        width: 24px;
        height: 24px;
        border: 2px solid #FFFFFF;
        box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.4), 0 4px 12px rgba(255, 68, 68, 0.6);
    }
    
    .bangladesh-flag {
        width: 16px;
        height: 16px;
    }
    
    .connection-line {
        stroke-width: 2;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .worldwide-section {
        padding: 30px 0 15px;
    }
    
    .worldwide-title {
        font-size: clamp(20px, 6vw, 28px);
        padding: 10px 20px;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }
    
    .worldwide-map-container {
        min-height: 300px;
        padding: 0 5px;
    }
    
    .worldwide-map {
        min-height: 300px;
        padding-bottom: 80%;
        background-size: 160% auto;
        background-position: center 25%;
    }
    
    .country-badge {
        transform: scale(0.4) !important;
        min-width: 120px;
    }
    
    .country-badge.size-small {
        transform: scale(0.35) !important;
    }
    
    .country-badge.size-medium {
        transform: scale(0.38) !important;
    }
    
    .country-badge.size-large {
        transform: scale(0.4) !important;
    }
    
    .bangladesh-point {
        width: 20px;
        height: 20px;
        border: 2px solid #FFFFFF;
        box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.4), 0 3px 10px rgba(255, 68, 68, 0.6);
    }
    
    .bangladesh-flag {
        width: 14px;
        height: 14px;
    }
    
    .connection-line {
        stroke-width: 1.5;
        opacity: 0.6;
    }
    
    .connection-lines {
        opacity: 0.8;
    }
}

/* Travel Agency Section */
.travel-agency-section {
    padding: 120px 0;
    min-height: auto;
    background: #F5F5F5;
    background-image: url('../images/neststep.png');
    background-size: 25%;
    background-position: center 70%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.travel-agency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.85);
    z-index: 0;
}

.travel-agency-section .container {
    position: relative;
    z-index: 1;
}

.travel-agency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.travel-agency-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin: -20px auto 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #FFA726;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.travel-agency-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 65px;
    font-weight: 600;
    color: #FFA726;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.travel-agency-coming-soon {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #666;
    font-style: italic;
    letter-spacing: 2px;
    animation: comingSoonWave 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes comingSoonWave {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0) rotate(0deg);
        letter-spacing: 2px;
    }
    25% {
        opacity: 1;
        transform: translateY(-8px) rotate(-2deg);
        letter-spacing: 4px;
    }
    50% {
        opacity: 0.9;
        transform: translateY(0) rotate(0deg);
        letter-spacing: 2px;
    }
    75% {
        opacity: 1;
        transform: translateY(-8px) rotate(2deg);
        letter-spacing: 4px;
    }
}

.travel-agency-mother-concern {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    text-align: center;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .travel-agency-section {
        padding: 80px 0;
        min-height: auto;
        background-size: 96% auto;
    }
    
    .travel-agency-section::before {
        background: rgba(245, 245, 245, 0.9);
    }
    
    .travel-agency-title {
        font-size: clamp(28px, 5vw, 36px);
        padding: 12px 25px;
        letter-spacing: 1px;
    }
    
    .travel-agency-subtitle {
        font-size: clamp(43px, 8.1vw, 58px);
    }
    
    .travel-agency-coming-soon {
        font-size: clamp(20px, 4vw, 26px);
    }
    
    .travel-agency-mother-concern {
        font-size: clamp(14px, 2.5vw, 18px);
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .travel-agency-section {
        padding: 60px 0;
        min-height: auto;
        background-size: 108% auto;
    }
    
    .travel-agency-section::before {
        background: rgba(245, 245, 245, 0.92);
    }
    
    .travel-agency-content {
        padding: 0 15px;
    }
    
    .travel-agency-title {
        font-size: clamp(20px, 6vw, 28px);
        padding: 10px 20px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .travel-agency-subtitle {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .travel-agency-coming-soon {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .travel-agency-mother-concern {
        font-size: 14px;
        margin-top: 10px;
    }
}

/* Proud Member Section */
.proud-member-section {
    padding: 60px 0;
    background: #F5F5F5;
    text-align: center;
}

.proud-member-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.proud-member-section .member-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proud-member-section .member-logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 4px;
}

.proud-member-section .member-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .proud-member-section {
        padding: 40px 0;
    }
    
    .proud-member-content {
        gap: 15px;
    }
    
    .proud-member-section .member-text {
        font-size: clamp(18px, 4vw, 22px);
    }
    
    .proud-member-section .member-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .proud-member-section {
        padding: 30px 0;
    }
    
    .proud-member-section .member-text {
        font-size: 16px;
    }
    
    .proud-member-section .member-logo {
        max-width: 120px;
    }
}

.manpower-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.manpower-card-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #5DADE2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 26.4px;
    font-weight: 700;
    color: #FFFFFF;
}

.manpower-card-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.manpower-card-item p {
    font-size: 15.4px;
    line-height: 1.6;
    color: #666;
}

/* Services Section Redesign */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.services-section::before {
    width: 330px;
    height: 330px;
    background: #5DADE2;
    top: 10%;
    left: -100px;
}

.services-section::after {
    width: 275px;
    height: 275px;
    background: #FFA726;
    bottom: 10%;
    right: -80px;
}

/* Additional Decorative Elements */
.services-decorative-dots {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 165px;
    height: 165px;
    background-image: radial-gradient(circle, rgba(93, 173, 226, 0.15) 3px, transparent 3px);
    background-size: 20px 20px;
    z-index: 0;
    animation: dotsFloat 10s ease-in-out infinite;
}

@keyframes dotsFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.services-decorative-lines {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 132px;
    height: 132px;
    z-index: 0;
}

.services-decorative-lines::before,
.services-decorative-lines::after {
    content: '';
    position: absolute;
    background: rgba(255, 167, 38, 0.1);
}

.services-decorative-lines::before {
    width: 110px;
    height: 3px;
    top: 0;
    left: 0;
    transform-origin: left;
    animation: lineExpand 6s ease-in-out infinite;
}

.services-decorative-lines::after {
    width: 3px;
    height: 88px;
    bottom: 0;
    right: 0;
    transform-origin: bottom;
    animation: lineExpand 6s ease-in-out infinite 0.5s;
}

@keyframes lineExpand {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* Neon Light World Map with Flight Path */
.services-section .container::before {
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 100%;
    max-width: 1980px;
    height: 990px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='3' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23glow)'%3E%3Cpath d='M150,300 Q300,200 450,280 T750,300 Q900,250 1050,300' stroke='%235DADE2' stroke-width='2' fill='none' stroke-dasharray='10,5' opacity='0.6'%3E%3Canimate attributeName='stroke-dashoffset' from='0' to='30' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.4;0.8;0.4' dur='3s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M200,350 Q400,280 600,340 T1000,360' stroke='%23FFA726' stroke-width='2' fill='none' stroke-dasharray='8,4' opacity='0.6'%3E%3Canimate attributeName='stroke-dashoffset' from='0' to='24' dur='2.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.4;0.8;0.4' dur='3.5s' repeatCount='indefinite'/%3E%3C/path%3E%3Cpath d='M100,250 Q250,180 400,240 Q550,200 700,250 Q850,220 1000,260' stroke='%235DADE2' stroke-width='1.5' fill='none' stroke-dasharray='6,3' opacity='0.5'%3E%3Canimate attributeName='stroke-dashoffset' from='0' to='18' dur='3s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.3;0.7;0.3' dur='4s' repeatCount='indefinite'/%3E%3C/path%3E%3Ccircle cx='150' cy='300' r='8' fill='%23FF4757' opacity='0.8'%3E%3Canimate attributeName='r' values='6;10;6' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.6;1;0.6' dur='2s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='1050' cy='300' r='8' fill='%23FF4757' opacity='0.8'%3E%3Canimate attributeName='r' values='6;10;6' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.6;1;0.6' dur='2s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='600' cy='320' r='6' fill='%235DADE2' opacity='0.7'%3E%3Canimate attributeName='r' values='4;8;4' dur='2.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='opacity' values='0.5;0.9;0.5' dur='2.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Flying Plane Animation */
.services-section .container::after {
    content: '✈';
    position: absolute;
    font-size: 72.6px;
    color: #FFA726;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 12px rgba(255, 167, 38, 0.6));
    animation: flyPlane 15s linear infinite;
}

@keyframes flyPlane {
    0% {
        left: 10%;
        top: 45%;
        transform: rotate(-15deg) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    25% {
        left: 30%;
        top: 35%;
        transform: rotate(-10deg) scale(1.1);
    }
    50% {
        left: 50%;
        top: 40%;
        transform: rotate(0deg) scale(1.2);
    }
    75% {
        left: 70%;
        top: 38%;
        transform: rotate(10deg) scale(1.1);
    }
    95% {
        opacity: 0.8;
    }
    100% {
        left: 90%;
        top: 45%;
        transform: rotate(15deg) scale(1);
        opacity: 0;
    }
}

/* Second Plane Flying Right to Left */
.plane-reverse {
    position: absolute;
    font-size: 72.6px;
    color: #5DADE2;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 0 12px rgba(93, 173, 226, 0.6));
    animation: flyPlaneReverse 15s linear infinite;
}

@keyframes flyPlaneReverse {
    0% {
        right: 10%;
        top: 52%;
        transform: rotate(165deg) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    25% {
        right: 30%;
        top: 48%;
        transform: rotate(170deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        right: 50%;
        top: 50%;
        transform: rotate(180deg) scale(1.2);
        opacity: 0.5;
    }
    75% {
        right: 70%;
        top: 46%;
        transform: rotate(190deg) scale(1.1);
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        right: 90%;
        top: 52%;
        transform: rotate(195deg) scale(1);
        opacity: 0;
    }
}

.services-decorative-shapes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-decorative-shapes::before,
.services-decorative-shapes::after {
    content: '';
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.03;
}

.services-decorative-shapes::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #14B8A6, #3B82F6);
    top: 5%;
    right: 15%;
    animation: shapeRotate 20s linear infinite;
}

.services-decorative-shapes::after {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #D946A6, #A855F7);
    bottom: 10%;
    left: 10%;
    animation: shapeRotate 25s linear infinite reverse;
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        transform: rotate(180deg);
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        transform: rotate(360deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #FFFFFF;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #FFFFFF;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #D946A6 0%, #C026D3 100%);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.service-icon-bmet {
    flex-direction: column;
    gap: 5px;
}

.service-icon-bmet i {
    font-size: 32px;
}

.bmet-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13.2px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1;
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26.4px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16.5px;
    line-height: 1.7;
    color: #64748B;
}

/* Manpower Section */
.manpower-section {
    background: #F8F9FA;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Recruitment Image on Left Side */
.recruitment-decorative-flights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.recruitment-decorative-map {
    position: absolute;
    top: 60%;
    left: 8%;
    transform: translateY(-50%);
    width: 275px;
    height: 440px;
    opacity: 0.8;
    z-index: 0;
    background-image: url('../images/ctt.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-52%) scale(1.02);
    }
}

.section-title-white {
    font-family: 'Rajdhani', sans-serif;
    font-size: 46.2px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle-white {
    color: #666;
    font-size: 16.5px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.manpower-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.manpower-item {
    background: #F8F9FA;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding-top: 0;
}

.manpower-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.manpower-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -35px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 38.5px;
    color: #00BCD4;
    font-weight: bold;
    z-index: 1;
}

.manpower-header {
    position: relative;
    margin: 0;
    padding: 0;
}

.manpower-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 70.4px;
    font-weight: 700;
    color: #FFFFFF;
    padding: 25px 20px;
    margin: 0;
    border-radius: 25px 25px 0 0;
    position: relative;
}

.manpower-number::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid inherit;
}

.manpower-item:nth-child(1) .manpower-number {
    background: linear-gradient(180deg, #1E88E5 0%, #1565C0 100%);
}

.manpower-item:nth-child(1) .manpower-number::after {
    border-top-color: #1565C0;
}

.manpower-item:nth-child(2) .manpower-number {
    background: linear-gradient(180deg, #FFA726 0%, #FB8C00 100%);
}

.manpower-item:nth-child(2) .manpower-number::after {
    border-top-color: #FB8C00;
}

.manpower-item:nth-child(3) .manpower-number {
    background: linear-gradient(180deg, #26C6DA 0%, #00ACC1 100%);
}

.manpower-item:nth-child(3) .manpower-number::after {
    border-top-color: #00ACC1;
}

.manpower-item:nth-child(4) .manpower-number {
    background: linear-gradient(180deg, #42A5F5 0%, #1E88E5 100%);
}

.manpower-item:nth-child(4) .manpower-number::after {
    border-top-color: #1E88E5;
}

.manpower-item:nth-child(5) .manpower-number {
    background: linear-gradient(180deg, #AB47BC 0%, #8E24AA 100%);
}

.manpower-item:nth-child(5) .manpower-number::after {
    border-top-color: #8E24AA;
}

.manpower-content {
    padding: 25px 20px 30px;
    background: #FFFFFF;
    border-radius: 0 0 25px 25px;
}

.manpower-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17.6px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 20px 0;
    line-height: 1.3;
    min-height: 40px;
}

.manpower-icon {
    font-size: 60px;
    margin: 20px 0;
    color: #1E3A5F;
}

.manpower-item:nth-child(1) .manpower-icon {
    color: #1E88E5;
}

.manpower-item:nth-child(2) .manpower-icon {
    color: #FFA726;
}

.manpower-item:nth-child(3) .manpower-icon {
    color: #26C6DA;
}

.manpower-item:nth-child(4) .manpower-icon {
    color: #42A5F5;
}

.manpower-item:nth-child(5) .manpower-icon {
    color: #AB47BC;
}

.manpower-content p {
    font-size: 14.3px;
    color: #1E3A5F;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #F5EFE7;
    position: relative;
    overflow: hidden;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

/* Decorative Circles */
.team-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.team-decoration-circle-1 {
    width: 200px;
    height: 200px;
    background: #C8E6C9;
    top: 10%;
    left: 5%;
}

.team-decoration-circle-2 {
    width: 150px;
    height: 150px;
    background: #FFCCBC;
    top: 20%;
    left: 2%;
}

.team-decoration-circle-3 {
    width: 180px;
    height: 180px;
    background: #E1BEE7;
    top: 50%;
    right: 8%;
}

.team-decoration-circle-4 {
    width: 220px;
    height: 220px;
    background: #BBDEFB;
    bottom: 10%;
    right: 5%;
}

.team-decoration-circle-5 {
    width: 160px;
    height: 160px;
    background: #F8BBD0;
    bottom: 15%;
    left: 10%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.team-card {
    background: #FFFFFF;
    border-radius: 35px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.team-photo {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA726, #FF7043, #AB47BC, #5C6BC0);
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13.2px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.team-badge.md {
    background: #FF5722;
}

.team-badge.admin {
    background: #2196F3;
}

.team-badge.hr {
    background: #4CAF50;
}

.team-info {
    padding: 0;
    text-align: center;
}

.team-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 5px;
}

.team-role {
    font-size: 13.2px;
    color: #888;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 10px;
}

.team-stats span {
    font-size: 17.6px;
    color: #FFB300;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .manpower-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 40px 25px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .service-card h3 {
        font-size: clamp(22px, 3.5vw, 26.4px);
    }
    
    /* Recruitment Process Section Tablet Responsive */
    .manpower-section {
        padding: 60px 0;
    }
    
    .section-title-white {
        font-size: clamp(32px, 5vw, 46.2px);
    }
    
    .section-subtitle-white {
        font-size: clamp(15px, 2.5vw, 16.5px);
        margin-bottom: 40px;
    }
    
    .manpower-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .manpower-item:not(:last-child)::after {
        display: none;
    }
    
    .manpower-number {
        font-size: clamp(50px, 7vw, 70.4px);
        padding: 22px 18px;
    }
    
    .manpower-content h3 {
        font-size: clamp(16px, 3.5vw, 17.6px);
    }
    
    .manpower-icon {
        font-size: clamp(45px, 7vw, 60px);
    }
    
    .recruitment-decorative-map {
        width: 200px;
        height: 320px;
        left: 5%;
        opacity: 0.6;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .manpower-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        font-size: 32px;
    }
    
    .service-card h3 {
        font-size: clamp(20px, 5vw, 26.4px);
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: clamp(14px, 3.5vw, 16.5px);
        line-height: 1.6;
    }
    
    .service-icon-bmet i {
        font-size: 28px;
    }
    
    .bmet-text {
        font-size: clamp(11px, 2.5vw, 13.2px);
    }
    
    /* Recruitment Process Section Mobile Responsive */
    .manpower-section {
        padding: 50px 0;
    }
    
    .section-title-white {
        font-size: clamp(28px, 7vw, 46.2px);
        margin-bottom: 12px;
    }
    
    .section-subtitle-white {
        font-size: clamp(14px, 3.5vw, 16.5px);
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .manpower-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .manpower-item {
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .manpower-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Hide arrows between items on mobile */
    .manpower-item:not(:last-child)::after {
        display: none;
    }
    
    .manpower-number {
        font-size: clamp(45px, 10vw, 70.4px);
        padding: 20px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .manpower-number::after {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 12px solid inherit;
        bottom: -12px;
    }
    
    .manpower-content {
        padding: 20px 15px 25px;
        border-radius: 0 0 20px 20px;
    }
    
    .manpower-content h3 {
        font-size: clamp(16px, 4vw, 17.6px);
        margin: 0 0 15px 0;
        min-height: auto;
    }
    
    .manpower-icon {
        font-size: clamp(40px, 9vw, 60px);
        margin: 15px 0;
    }
    
    .manpower-content p {
        font-size: clamp(13px, 3.2vw, 14.3px);
        line-height: 1.5;
    }
    
    /* Hide or adjust decorative map on mobile */
    .recruitment-decorative-map {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.team-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
    position: relative;
}

.team-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 38.5px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.team-modal-close:hover {
    color: #333;
}

.team-modal-body {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.team-modal-photo {
    flex-shrink: 0;
}

.team-modal-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #FFA726, #FF7043, #AB47BC, #5C6BC0);
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.team-modal-info {
    flex: 1;
}

.team-modal-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30.8px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0 0 10px 0;
}

.modal-role {
    font-size: 17.6px;
    color: #FFA726;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-blood-group {
    display: inline-block;
    background: #FF5252;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 15.4px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(255, 82, 82, 0.3);
}

.modal-stars {
    color: #FFB300;
    font-size: 22px;
    margin-bottom: 20px;
}

.modal-details p {
    font-size: 16.5px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.modal-contact {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15.4px;
    color: #666;
    margin-bottom: 10px;
}

.modal-contact i {
    color: #FFA726;
    width: 20px;
}

.modal-contact .fa-whatsapp {
    color: #25D366;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .team-modal-body {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .team-modal-photo {
        margin: 0 auto;
    }
    
    .team-modal-photo img {
        width: 150px;
        height: 150px;
    }
    
    .modal-contact p {
        justify-content: center;
    }
}

/* Service Details Section */
.service-details-section {
    padding: 50px 0;
    background: #F9F9F9;
    position: relative;
    overflow: hidden;
}

/* Background Elements for Service Details */
.service-details-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.08) 0%, transparent 70%);
    top: 10%;
    right: -150px;
    border-radius: 50%;
    animation: floatBubble 15s ease-in-out infinite;
}

.service-details-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.08) 0%, transparent 70%);
    bottom: 15%;
    left: -100px;
    border-radius: 50%;
    animation: floatBubble 12s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Decorative Dots Pattern */
.service-details-section .container {
    position: relative;
    z-index: 1;
}

.service-details-section .container::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 167, 38, 0.15) 2px, transparent 2px);
    background-size: 25px 25px;
    animation: dotsMove 20s linear infinite;
}

.service-details-section .container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(93, 173, 226, 0.12) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: dotsMove 25s linear infinite reverse;
}

@keyframes dotsMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Additional Decorative Elements */
.service-detail-content {
    position: relative;
    overflow: visible;
}

/* Curved Lines */
.service-detail-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 167, 38, 0.2);
    border-radius: 0 0 100% 0;
    border-top: none;
    border-left: none;
    z-index: -1;
}

/* Concentric Circles */
.service-detail-content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: 
        radial-gradient(circle, transparent 20px, rgba(255, 167, 38, 0.15) 20px, rgba(255, 167, 38, 0.15) 22px, transparent 22px),
        radial-gradient(circle, transparent 35px, rgba(255, 167, 38, 0.15) 35px, rgba(255, 167, 38, 0.15) 37px, transparent 37px),
        radial-gradient(circle, transparent 50px, rgba(255, 167, 38, 0.15) 50px, rgba(255, 167, 38, 0.15) 52px, transparent 52px);
    z-index: -1;
    animation: rotateCircles 20s linear infinite;
}

@keyframes rotateCircles {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* X Marks */
.service-details-section .service-detail:nth-child(odd)::before {
    content: '×';
    position: absolute;
    top: 15%;
    right: 10%;
    font-size: 66px;
    color: rgba(255, 167, 38, 0.15);
    font-weight: 300;
    animation: floatX 8s ease-in-out infinite;
}

.service-details-section .service-detail:nth-child(even)::before {
    content: '×';
    position: absolute;
    bottom: 20%;
    left: 8%;
    font-size: 55px;
    color: rgba(93, 173, 226, 0.15);
    font-weight: 300;
    animation: floatX 10s ease-in-out infinite reverse;
}

@keyframes floatX {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(45deg);
    }
}

/* Circle Outlines */
.service-details-section .service-detail:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(93, 173, 226, 0.2);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.service-details-section .service-detail:nth-child(even)::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 12%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 167, 38, 0.2);
    border-radius: 50%;
    animation: pulse 7s ease-in-out infinite;
}

/* Hexagon Shapes */
.service-detail:nth-child(1) .service-detail-content {
    position: relative;
}

.service-detail:nth-child(1) .service-detail-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 15%;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex 12s ease-in-out infinite;
}

@keyframes floatHex {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Wavy Lines */
.service-detail:nth-child(2) .service-detail-text::before {
    content: '〰';
    position: absolute;
    top: -15px;
    left: 20%;
    font-size: 44px;
    color: rgba(93, 173, 226, 0.2);
    animation: wave 5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.2);
    }
}

/* Square Outlines */
.service-detail:nth-child(3) .service-detail-content::before {
    content: '';
    position: absolute;
    top: -25px;
    right: 8%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 167, 38, 0.2);
    transform: rotate(45deg);
    animation: rotateSquare 15s linear infinite;
}

@keyframes rotateSquare {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

/* Triangle */
.service-detail:nth-child(4) .service-detail-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(93, 173, 226, 0.15);
    animation: floatTriangle 10s ease-in-out infinite;
}

@keyframes floatTriangle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.service-detail {
    margin-bottom: 40px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
}

.service-detail-icon i {
    font-size: 35px;
    color: #FFFFFF;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28.6px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
}

.service-detail-text > p {
    font-size: 15.4px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-text h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 19.8px;
    font-weight: 700;
    color: #FFA726;
    margin: 15px 0 10px 0;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-detail-text ul li {
    font-size: 15.4px;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    font-weight: 600;
}

.service-detail-text ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #FFA726;
    font-size: 15.4px;
}

/* Responsive Service Details */
@media (max-width: 992px) {
    .service-detail-content {
        flex-direction: column !important;
        padding: 40px 30px;
        gap: 30px;
        text-align: center;
    }
    
    .service-detail-icon {
        margin: 0 auto;
    }
    
    .service-detail-text ul li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .service-detail-content {
        padding: 30px 20px;
    }
    
    .service-detail-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-detail-icon i {
        font-size: 40px;
    }
    
    .service-detail-text h2 {
        font-size: 28.6px;
    }
    
    .service-detail-text h3 {
        font-size: 22px;
    }
}

/* Services Page Specific Styling */
.services-page {
    padding: 80px 0 !important;
}

/* Jobs Section Styling */
.jobs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Jobs Section Background Elements */
.jobs-section::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.5) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    animation: jobsPulse 8s ease-in-out infinite;
}

.jobs-section::after {
    content: '';
    position: absolute;
    width: 385px;
    height: 385px;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.5) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
    animation: jobsPulse 10s ease-in-out infinite reverse;
}

@keyframes jobsPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Decorative Shapes for Jobs Section */
.jobs-section .container {
    position: relative;
    z-index: 1;
}

.jobs-section .container::before {
    content: '✈';
    position: absolute;
    font-size: 145.2px;
    color: rgba(255, 167, 38, 0.5);
    top: -40px;
    right: 10%;
    transform: rotate(-15deg);
    animation: floatPlane 6s ease-in-out infinite;
}

/* Globe background element removed */
/* .jobs-section .container::after {
    content: '🌍';
    position: absolute;
    font-size: 726px;
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateGlobe 20s linear infinite;
} */

@keyframes floatPlane {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-20px);
    }
}

@keyframes rotateGlobe {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    z-index: 1;
}

/* Job Photo */
.job-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.job-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.job-card:hover .job-photo img {
    transform: scale(1.1);
}

.job-card-content {
    padding: 30px;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12.1px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.job-card-header {
    margin-bottom: 20px;
}

.job-title-section {
    width: 100%;
}

.job-title {
    font-size: 24.2px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
}

.job-location {
    color: #7F8C8D;
    font-size: 15.4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-location i {
    color: #FFA726;
}

.job-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 10px;
}

.job-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.job-meta-item i {
    font-size: 22px;
    color: #FFA726;
}

.job-meta-item span {
    font-size: 14.3px;
    font-weight: 600;
    color: #2C3E50;
}

.job-description {
    display: none;
}

.job-highlights {
    margin-bottom: 25px;
}

.job-highlight-section h4 {
    font-size: 16.5px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-highlight-section h4 i {
    color: #4CAF50;
    font-size: 17.6px;
}

.job-highlight-section ul {
    list-style: none;
    padding: 0;
}

.job-highlight-section ul li {
    padding: 8px 0;
    color: #666;
    font-size: 14.3px;
    padding-left: 20px;
    position: relative;
}

.job-highlight-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.job-card-footer {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-view-details,
.btn-apply-job {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15.4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-view-details {
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-view-details::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-view-details:hover::before {
    left: 100%;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(93, 173, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-view-details i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-view-details:hover i {
    transform: scale(1.1);
}

.btn-apply-job {
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
}

.btn-apply-job:hover {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
}

/* Job Modal Styling */
.job-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.job-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.job-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35.2px;
    color: #999;
    cursor: pointer;
    z-index: 10002;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.job-modal-close:hover {
    color: #333;
    background: #f5f5f5;
    transform: rotate(90deg);
}

.job-modal-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #FFA726 0%, #FF7043 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.job-modal-header h2 {
    font-size: 35.2px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

.job-modal-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.job-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 15px;
    border-radius: 8px;
}

.job-modal-meta-item i {
    font-size: 22px;
}

.job-modal-meta-item span {
    font-size: 15.4px;
    font-weight: 500;
}

.job-modal-body {
    padding: 40px;
}

.job-modal-section {
    margin-bottom: 30px;
}

.job-modal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
}

.job-modal-section p {
    color: #555;
    line-height: 1.8;
    font-size: 16.5px;
}

.job-modal-section ul {
    list-style: none;
    padding: 0;
}

.job-modal-section ul li {
    padding: 10px 0;
    color: #666;
    font-size: 15.4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-modal-section ul li i {
    color: #4CAF50;
    font-size: 17.6px;
}

.job-modal-actions {
    padding: 0 40px 40px;
}

.btn-apply-now {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
    text-align: center;
    border-radius: 10px;
    font-size: 17.6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-apply-now:hover {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 167, 38, 0.3);
}

/* Loading and Error States */
.loading-jobs,
.no-jobs,
.error-jobs {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.loading-jobs i {
    font-size: 52.8px;
    color: #FFA726;
    margin-bottom: 20px;
}

.no-jobs i,
.error-jobs i {
    font-size: 70.4px;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.no-jobs h3,
.error-jobs h3 {
    font-size: 26.4px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.no-jobs p,
.error-jobs p {
    color: #999;
    font-size: 15.4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-meta {
        grid-template-columns: 1fr;
    }
    
    .job-card-footer {
        flex-direction: column;
    }
    
    .job-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .job-modal-header,
    .job-modal-body,
    .job-modal-actions {
        padding: 20px;
    }
    
    .job-modal-header h2 {
        font-size: 26.4px;
    }
    
    .job-modal-meta {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Redesign - Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 50%, #FFA726 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 167, 38, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 112, 67, 0.2) 0%, transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.contact-hero-title {
    font-size: 70.4px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-hero-divider {
    width: 100px;
    height: 4px;
    background: white;
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: rotateY(360deg);
}

.contact-info-icon i {
    font-size: 35.2px;
    color: white;
}

.contact-info-card h3 {
    font-size: 24.2px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
}

.contact-info-card p {
    color: #666;
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFA726;
    font-weight: 600;
    font-size: 15.4px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info-link:hover {
    gap: 12px;
    color: #FF7043;
}

.contact-info-link i {
    font-size: 13.2px;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: white;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-header {
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 39.6px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.contact-form-header p {
    color: #666;
    font-size: 17.6px;
}

.modern-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-contact-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.modern-contact-form .form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 8px;
    font-size: 13.2px;
    font-weight: 600;
    color: #FFA726;
    opacity: 0;
    transition: all 0.3s;
}

.modern-contact-form .form-group input:focus + label,
.modern-contact-form .form-group textarea:focus + label,
.modern-contact-form .form-group input:not(:placeholder-shown) + label,
.modern-contact-form .form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16.5px;
    color: #2C3E50;
    background: white;
    transition: all 0.3s;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #FFA726;
    box-shadow: 0 0 0 4px rgba(255, 167, 38, 0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.btn-contact-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 19.8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 167, 38, 0.4);
}

.btn-contact-submit i {
    font-size: 19.8px;
    transition: transform 0.4s;
}

.btn-contact-submit:hover i {
    transform: translateX(5px);
}

/* Contact Map Wrapper */
.contact-map-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-map-header {
    padding: 40px;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 50%, #FFA726 100%);
    color: white;
}

.contact-map-header h2 {
    font-size: 35.2px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
}

.contact-map-header p {
    font-size: 17.6px;
    opacity: 0.95;
}

.contact-map {
    height: 500px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact Page Styling */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.contact-section .section-title {
    font-size: 52.8px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    border-radius: 2px;
}

.contact-section .section-subtitle {
    text-align: center;
    color: #7F8C8D;
    font-size: 19.8px;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFA726, #FF7043);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 26.4px;
    color: white;
}

.contact-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.contact-details p {
    color: #555;
    font-size: 16.5px;
    line-height: 1.8;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 35.2px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    font-family: 'Rajdhani', sans-serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15.4px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 16.5px;
    color: #2C3E50;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFA726;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17.6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 167, 38, 0.3);
}

.btn-submit i {
    font-size: 19.8px;
}

/* Map Container */
.contact-section iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive Contact Page Redesign */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 52.8px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }
    
    .contact-hero-title {
        font-size: 39.6px;
    }
    
    .contact-hero-subtitle {
        font-size: 17.6px;
    }
    
    .contact-info-section {
        padding: 60px 0;
        margin-top: -30px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-info-icon i {
        font-size: 30.8px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-header h2 {
        font-size: 30.8px;
    }
    
    .modern-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-map-wrapper {
        padding: 0;
    }
    
    .contact-map-header {
        padding: 30px 20px;
    }
    
    .contact-map-header h2 {
        font-size: 26.4px;
    }
    
    .contact-map {
        height: 350px;
    }
}

/* Old Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section .section-title {
        font-size: 39.6px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: 35.2px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 22px;
    }
    
    .contact-details h3 {
        font-size: 19.8px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-form h2 {
        font-size: 28.6px;
    }
}
