/* ============================================
   INVESTMENT YOJANA SECTION
   ============================================ */
.investment-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.investment-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.investment-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid #16a34a;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    opacity: 0.08;
    border-radius: 0 0 100% 0;
}

.investment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    opacity: 0.08;
    border-radius: 100% 0 0 0;
}

.investment-content {
    position: relative;
    z-index: 2;
}

.investment-title {
    color: #16a34a;
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: -2px;
}

.investment-subtitle-hindi {
    color: #1a1a2e;
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 0;
}

.investment-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #16a34a, #22c55e, #fbbf24);
    margin: 20px 0;
    border-radius: 3px;
}

.investment-tagline {
    color: #1a1a2e;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.investment-highlight {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 25px 0;
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.investment-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50%, 50%); }
}

.investment-highlight p {
    font-size: 1.1rem;
    font-weight: 600;
}

.investment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: #f0fdf4;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #d1fae5;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #dcfce7;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(22, 163, 74, 0.3);
}

.feature-item span {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
}

.investment-cta-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    border: none !important;
    color: #1a1a2e !important;
    padding: 15px !important;
    font-size: 18px !important;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4) !important;
    transition: all 0.3s !important;
}

.investment-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5) !important;
}

.investment-contact {
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-item {
    padding: 5px;
}

.contact-item i {
    display: block;
    margin: 0 auto 5px;
}

.investment-image-wrapper {
    position: relative;
    padding: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-image-circle {
    width: 100%;
    max-width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #16a34a;
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.3);
    position: relative;
    z-index: 2;
}

.investment-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
    padding: 15px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    z-index: 3;
    border: 4px solid white;
    font-size: 11px;
    line-height: 1.2;
}

.investment-badge i {
    position: absolute;
    font-size: 20px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.investment-graphic-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
    z-index: 3;
}

/* ============================================
   VACANCY SECTION
   ============================================ */
.vacancy-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    position: relative;
}

.vacancy-main-banner {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #1e3a8a;
}

.urgent-strip {
    background: linear-gradient(135deg, #dc3545, #b91c1c);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.urgent-strip i {
    font-size: 28px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.vacancy-location-strip {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.company-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 38px;
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.company-tag {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
}

.company-tag .star {
    color: #fbbf24;
    font-size: 24px;
    margin: 0 8px;
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.vacancy-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 25px;
    background: #f9fafb;
}

.info-box {
    text-align: center;
    background: white;
    padding: 18px 12px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.info-box:hover {
    border-color: #1e3a8a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-box i {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.info-box small {
    display: block;
    color: #dc3545;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin: 5px 0 8px;
}

.info-box strong {
    display: block;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.vacancy-details-title {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 18px;
    margin: 0;
    font-size: 24px;
    letter-spacing: 3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.vacancy-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid #e5e7eb;
}

.vacancy-card:hover {
    transform: translateY(-8px);
    border-color: #1e3a8a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vacancy-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
    border: 3px solid white;
}

.vacancy-title {
    color: #1e3a8a;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacancy-details {
    padding-top: 10px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 13px;
    line-height: 1.5;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.detail-row i {
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.detail-row span {
    flex: 1;
}

.info-highlight-box {
    padding: 25px 30px;
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.info-highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.info-highlight-box.green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.info-highlight-box.red {
    background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
}

.info-highlight-box i {
    font-size: 36px;
    flex-shrink: 0;
}

.info-highlight-box strong {
    font-weight: 700;
}

.vacancy-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 35px;
    color: white;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.vacancy-contact-btn {
    background: white !important;
    border: 2px solid transparent !important;
    color: #1a1a2e !important;
    font-weight: 700 !important;
    padding: 12px !important;
    transition: all 0.3s !important;
}

.vacancy-contact-btn:hover {
    background: #fbbf24 !important;
    color: #1a1a2e !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.vacancy-footer-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .investment-title {
        font-size: 3.5rem;
    }
    
    .investment-subtitle-hindi {
        font-size: 2rem;
    }
    
    .investment-image-circle {
        height: 350px;
        max-width: 350px;
    }
    
    .vacancy-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-banner {
        font-size: 26px;
    }
    
    .vacancy-location-strip {
        font-size: 20px;
    }
    
    .urgent-strip {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .investment-card {
        padding: 30px 20px;
    }
    
    .investment-title {
        font-size: 2.8rem;
    }
    
    .investment-subtitle-hindi {
        font-size: 1.8rem;
    }
    
    .investment-tagline {
        font-size: 1.3rem;
    }
    
    .investment-features {
        grid-template-columns: 1fr;
    }
    
    .investment-image-circle {
        height: 280px;
        max-width: 280px;
    }
    
    .investment-badge {
        width: 100px;
        height: 100px;
        font-size: 9px;
    }
    
    .investment-graphic-bottom {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .vacancy-info-grid {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
    }
    
    .urgent-strip {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .company-banner {
        font-size: 20px;
        padding: 15px;
    }
    
    .vacancy-location-strip {
        font-size: 16px;
        padding: 12px;
    }
    
    .vacancy-details-title {
        font-size: 18px;
    }
}
