.job-card {
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #f0f4f8;
            text-align: center;
        }
        .job-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .job-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .job-exp {
            display: inline-block;
            background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
            color: #ffffff;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .job-desc {
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .tech-item1 {
            text-align: center;
            padding: 1.10rem;
        }

        .career-hero {
            position: relative;
            padding: 220px 0 150px;
            text-align: left;
        }

        .career-hero .page-header__title {
            font-size: 58px;
            line-height: 1.1;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .career-hero .page-header__title span {
            color: #FA5674;
        }

        .career-hero .page-header__text {
            color: #ffffff;
            font-size: 18px;
            max-width: 580px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .page-header__btn-box .thm-btn {
            margin-right: 15px;
            margin-bottom: 10px;
        }

        /* Make sure background image is dark overlay for better text readability */
        .page-header__bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
            z-index: 1;
        }

        .page-header__inner {
            position: relative;
            z-index: 2;
        }
        
        .feature-card {
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #f0f4f8;
            text-align: center;
            background: #ffffff;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .feature-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        .feature-icon-wrap {
            display: inline-block;
            background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
            color: #ffffff;
            padding: 15px;
            border-radius: 50%;
            font-size: 24px;
            margin-bottom: 20px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
        }
        .feature-desc {
            font-size: 15px;
            color: #666666;
            line-height: 1.6;
        }
        .tech-item1 {
            text-align: center;
            padding: 1.10rem;
        }

 /* ====================== HERO SECTION ====================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.85;
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.1));
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    right: -80px;
    filter: blur(60px);
}

.shape-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: 10%;
    filter: blur(50px);
}

/* Content Area */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.hero-content {
    padding: 40px 0;
}

/* Tagline */
.tagline-box {
    margin-bottom: 1.25rem;
}

.tagline {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Title */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #60a5fa;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(96, 165, 250, 0.3);
    z-index: -1;
}

/* Description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.icon-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
}

/* ====================== SOLUTION / ABOUT SECTION ====================== */
.solution-section {
    background-color: #12141d;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.solution-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    background-position: left center;
}

.shape-2 {
    background-position: right center;
}

/* Grid Layout */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
}

/* Image Side */
.solution-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.solution-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.solution-image:hover .solution-img {
    transform: scale(1.04);
}

/* Content Side */
.solution-content {
    color: #e2e8f0;
}

.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tagline-decor {
    height: 2px;
    background: linear-gradient(to right, #3b82f6, transparent);
    flex: 1;
}

.tagline-decor.right {
    background: linear-gradient(to left, #3b82f6, transparent);
}

.section-tagline {
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    white-space: nowrap;
}

/* Title */
.section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

/* Text */
.section-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 24px;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Highlighted Line */
.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: #FA5674;
    margin: 28px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(250, 86, 116, 0.2);
    border-bottom: 1px solid rgba(250, 86, 116, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solution-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
}