.hire-dedicated-section {
    padding: 80px 0;
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

.hire-dedicated-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Content (Left) */
.hire-dedicated-content {
    flex: 1;
    max-width: 800px;
}

.dedicated-title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: var(--font-heading, 'Lexend Deca', sans-serif);
}

.dedicated-title .text-primary {
    color: var(--color-primary, #54b248);
}

.dedicated-subtitle {
    font-size: 18px;
    /* Standardized to 18px as per other home page subtitles */
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 45px;
    opacity: 1;
    /* Keeping it clear as per standards */
    font-weight: 500;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary, #54b248);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    /* Pill shape from image */
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(84, 178, 72, 0.2);
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(84, 178, 72, 0.3);
}

/* Visuals (Right) */
.hire-dedicated-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-right: 50px;
}

.floating-elements {
    position: relative;
    width: 450px;
    height: 300px;
}

.circle {
    position: absolute;
    background-color: #d9d9d9;
    border-radius: 50%;
    z-index: 1;
}

.circle-top {
    width: 70px;
    height: 70px;
    top: 25px;
    left: 40px;
}

.circle-bottom {
    width: 70px;
    height: 70px;
    bottom: -10px;
    right: 85px;
}

/* Profile Cards Styling */
.profile-card {
    position: absolute;
    background-color: #54b248;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
    width: 280px;
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.card-mayur {
    top: 70px;
    right: 40px;
}

.card-mahendra {
    bottom: 40px;
    left: 0;
}

.profile-img-placeholder {
    width: 60px;
    height: 60px;
    background-color: #e0e0e0;
    border-radius: 10px;
    flex-shrink: 0;
}

.profile-info h4 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.profile-info p {
    font-size: 13px;
    color: #f0f0f0;
    margin: 5px 0 0 0;
    line-height: 1.2;
    font-weight: 500;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .hire-dedicated-container {
        flex-direction: column;
        text-align: center;
    }

    .hire-dedicated-content {
        margin-bottom: 80px;
    }

    .contact-btn {
        margin: 0 auto;
    }

    .hire-dedicated-visual {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .dedicated-title {
        font-size: 32px;
    }

    .dedicated-subtitle {
        font-size: 18px;
    }

    .floating-elements {
        width: 320px;
        height: 300px;
    }

    .profile-card {
        width: 240px;
    }

    .card-mayur {
        right: 0;
    }

    .card-mahendra {
        left: 0;
    }
}